composer.lock 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "7c8976331d072efc02aaabc03ff4b359",
  8. "packages": [
  9. {
  10. "name": "doctrine/cache",
  11. "version": "1.13.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/cache.git",
  15. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  20. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "~7.1 || ^8.0"
  25. },
  26. "conflict": {
  27. "doctrine/common": ">2.2,<2.4"
  28. },
  29. "require-dev": {
  30. "alcaeus/mongo-php-adapter": "^1.1",
  31. "cache/integration-tests": "dev-master",
  32. "doctrine/coding-standard": "^9",
  33. "mongodb/mongodb": "^1.1",
  34. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  35. "predis/predis": "~1.0",
  36. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  37. "symfony/cache": "^4.4 || ^5.4 || ^6",
  38. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  39. },
  40. "suggest": {
  41. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  42. },
  43. "type": "library",
  44. "autoload": {
  45. "psr-4": {
  46. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Guilherme Blanco",
  56. "email": "guilhermeblanco@gmail.com"
  57. },
  58. {
  59. "name": "Roman Borschel",
  60. "email": "roman@code-factory.org"
  61. },
  62. {
  63. "name": "Benjamin Eberlei",
  64. "email": "kontakt@beberlei.de"
  65. },
  66. {
  67. "name": "Jonathan Wage",
  68. "email": "jonwage@gmail.com"
  69. },
  70. {
  71. "name": "Johannes Schmitt",
  72. "email": "schmittjoh@gmail.com"
  73. }
  74. ],
  75. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  76. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  77. "keywords": [
  78. "abstraction",
  79. "apcu",
  80. "cache",
  81. "caching",
  82. "couchdb",
  83. "memcached",
  84. "php",
  85. "redis",
  86. "xcache"
  87. ],
  88. "support": {
  89. "issues": "https://github.com/doctrine/cache/issues",
  90. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  91. },
  92. "funding": [
  93. {
  94. "url": "https://www.doctrine-project.org/sponsorship.html",
  95. "type": "custom"
  96. },
  97. {
  98. "url": "https://www.patreon.com/phpdoctrine",
  99. "type": "patreon"
  100. },
  101. {
  102. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  103. "type": "tidelift"
  104. }
  105. ],
  106. "time": "2022-05-20T20:06:54+00:00"
  107. },
  108. {
  109. "name": "guzzlehttp/guzzle",
  110. "version": "7.8.0",
  111. "source": {
  112. "type": "git",
  113. "url": "https://github.com/guzzle/guzzle.git",
  114. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
  115. },
  116. "dist": {
  117. "type": "zip",
  118. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  119. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  120. "shasum": ""
  121. },
  122. "require": {
  123. "ext-json": "*",
  124. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  125. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  126. "php": "^7.2.5 || ^8.0",
  127. "psr/http-client": "^1.0",
  128. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  129. },
  130. "provide": {
  131. "psr/http-client-implementation": "1.0"
  132. },
  133. "require-dev": {
  134. "bamarni/composer-bin-plugin": "^1.8.1",
  135. "ext-curl": "*",
  136. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  137. "php-http/message-factory": "^1.1",
  138. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  139. "psr/log": "^1.1 || ^2.0 || ^3.0"
  140. },
  141. "suggest": {
  142. "ext-curl": "Required for CURL handler support",
  143. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  144. "psr/log": "Required for using the Log middleware"
  145. },
  146. "type": "library",
  147. "extra": {
  148. "bamarni-bin": {
  149. "bin-links": true,
  150. "forward-command": false
  151. }
  152. },
  153. "autoload": {
  154. "files": [
  155. "src/functions_include.php"
  156. ],
  157. "psr-4": {
  158. "GuzzleHttp\\": "src/"
  159. }
  160. },
  161. "notification-url": "https://packagist.org/downloads/",
  162. "license": [
  163. "MIT"
  164. ],
  165. "authors": [
  166. {
  167. "name": "Graham Campbell",
  168. "email": "hello@gjcampbell.co.uk",
  169. "homepage": "https://github.com/GrahamCampbell"
  170. },
  171. {
  172. "name": "Michael Dowling",
  173. "email": "mtdowling@gmail.com",
  174. "homepage": "https://github.com/mtdowling"
  175. },
  176. {
  177. "name": "Jeremy Lindblom",
  178. "email": "jeremeamia@gmail.com",
  179. "homepage": "https://github.com/jeremeamia"
  180. },
  181. {
  182. "name": "George Mponos",
  183. "email": "gmponos@gmail.com",
  184. "homepage": "https://github.com/gmponos"
  185. },
  186. {
  187. "name": "Tobias Nyholm",
  188. "email": "tobias.nyholm@gmail.com",
  189. "homepage": "https://github.com/Nyholm"
  190. },
  191. {
  192. "name": "Márk Sági-Kazár",
  193. "email": "mark.sagikazar@gmail.com",
  194. "homepage": "https://github.com/sagikazarmark"
  195. },
  196. {
  197. "name": "Tobias Schultze",
  198. "email": "webmaster@tubo-world.de",
  199. "homepage": "https://github.com/Tobion"
  200. }
  201. ],
  202. "description": "Guzzle is a PHP HTTP client library",
  203. "keywords": [
  204. "client",
  205. "curl",
  206. "framework",
  207. "http",
  208. "http client",
  209. "psr-18",
  210. "psr-7",
  211. "rest",
  212. "web service"
  213. ],
  214. "support": {
  215. "issues": "https://github.com/guzzle/guzzle/issues",
  216. "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
  217. },
  218. "funding": [
  219. {
  220. "url": "https://github.com/GrahamCampbell",
  221. "type": "github"
  222. },
  223. {
  224. "url": "https://github.com/Nyholm",
  225. "type": "github"
  226. },
  227. {
  228. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  229. "type": "tidelift"
  230. }
  231. ],
  232. "time": "2023-08-27T10:20:53+00:00"
  233. },
  234. {
  235. "name": "guzzlehttp/promises",
  236. "version": "2.0.1",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/guzzle/promises.git",
  240. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  245. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "php": "^7.2.5 || ^8.0"
  250. },
  251. "require-dev": {
  252. "bamarni/composer-bin-plugin": "^1.8.1",
  253. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  254. },
  255. "type": "library",
  256. "extra": {
  257. "bamarni-bin": {
  258. "bin-links": true,
  259. "forward-command": false
  260. }
  261. },
  262. "autoload": {
  263. "psr-4": {
  264. "GuzzleHttp\\Promise\\": "src/"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Graham Campbell",
  274. "email": "hello@gjcampbell.co.uk",
  275. "homepage": "https://github.com/GrahamCampbell"
  276. },
  277. {
  278. "name": "Michael Dowling",
  279. "email": "mtdowling@gmail.com",
  280. "homepage": "https://github.com/mtdowling"
  281. },
  282. {
  283. "name": "Tobias Nyholm",
  284. "email": "tobias.nyholm@gmail.com",
  285. "homepage": "https://github.com/Nyholm"
  286. },
  287. {
  288. "name": "Tobias Schultze",
  289. "email": "webmaster@tubo-world.de",
  290. "homepage": "https://github.com/Tobion"
  291. }
  292. ],
  293. "description": "Guzzle promises library",
  294. "keywords": [
  295. "promise"
  296. ],
  297. "support": {
  298. "issues": "https://github.com/guzzle/promises/issues",
  299. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  300. },
  301. "funding": [
  302. {
  303. "url": "https://github.com/GrahamCampbell",
  304. "type": "github"
  305. },
  306. {
  307. "url": "https://github.com/Nyholm",
  308. "type": "github"
  309. },
  310. {
  311. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  312. "type": "tidelift"
  313. }
  314. ],
  315. "time": "2023-08-03T15:11:55+00:00"
  316. },
  317. {
  318. "name": "guzzlehttp/psr7",
  319. "version": "2.6.1",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/guzzle/psr7.git",
  323. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  328. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "php": "^7.2.5 || ^8.0",
  333. "psr/http-factory": "^1.0",
  334. "psr/http-message": "^1.1 || ^2.0",
  335. "ralouphie/getallheaders": "^3.0"
  336. },
  337. "provide": {
  338. "psr/http-factory-implementation": "1.0",
  339. "psr/http-message-implementation": "1.0"
  340. },
  341. "require-dev": {
  342. "bamarni/composer-bin-plugin": "^1.8.1",
  343. "http-interop/http-factory-tests": "^0.9",
  344. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  345. },
  346. "suggest": {
  347. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  348. },
  349. "type": "library",
  350. "extra": {
  351. "bamarni-bin": {
  352. "bin-links": true,
  353. "forward-command": false
  354. }
  355. },
  356. "autoload": {
  357. "psr-4": {
  358. "GuzzleHttp\\Psr7\\": "src/"
  359. }
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "MIT"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Graham Campbell",
  368. "email": "hello@gjcampbell.co.uk",
  369. "homepage": "https://github.com/GrahamCampbell"
  370. },
  371. {
  372. "name": "Michael Dowling",
  373. "email": "mtdowling@gmail.com",
  374. "homepage": "https://github.com/mtdowling"
  375. },
  376. {
  377. "name": "George Mponos",
  378. "email": "gmponos@gmail.com",
  379. "homepage": "https://github.com/gmponos"
  380. },
  381. {
  382. "name": "Tobias Nyholm",
  383. "email": "tobias.nyholm@gmail.com",
  384. "homepage": "https://github.com/Nyholm"
  385. },
  386. {
  387. "name": "Márk Sági-Kazár",
  388. "email": "mark.sagikazar@gmail.com",
  389. "homepage": "https://github.com/sagikazarmark"
  390. },
  391. {
  392. "name": "Tobias Schultze",
  393. "email": "webmaster@tubo-world.de",
  394. "homepage": "https://github.com/Tobion"
  395. },
  396. {
  397. "name": "Márk Sági-Kazár",
  398. "email": "mark.sagikazar@gmail.com",
  399. "homepage": "https://sagikazarmark.hu"
  400. }
  401. ],
  402. "description": "PSR-7 message implementation that also provides common utility methods",
  403. "keywords": [
  404. "http",
  405. "message",
  406. "psr-7",
  407. "request",
  408. "response",
  409. "stream",
  410. "uri",
  411. "url"
  412. ],
  413. "support": {
  414. "issues": "https://github.com/guzzle/psr7/issues",
  415. "source": "https://github.com/guzzle/psr7/tree/2.6.1"
  416. },
  417. "funding": [
  418. {
  419. "url": "https://github.com/GrahamCampbell",
  420. "type": "github"
  421. },
  422. {
  423. "url": "https://github.com/Nyholm",
  424. "type": "github"
  425. },
  426. {
  427. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  428. "type": "tidelift"
  429. }
  430. ],
  431. "time": "2023-08-27T10:13:57+00:00"
  432. },
  433. {
  434. "name": "hanson/foundation-sdk",
  435. "version": "5.0.2",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/Hanson/foundation-sdk.git",
  439. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/Hanson/foundation-sdk/zipball/cffcef228937105b8c87c1376548b56f3e0564a4",
  444. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4",
  445. "shasum": ""
  446. },
  447. "require": {
  448. "doctrine/cache": "^1.6",
  449. "ext-curl": "*",
  450. "guzzlehttp/guzzle": "^6.2|^7.0",
  451. "monolog/monolog": "^1.22|^2.0|^3.0",
  452. "php": "^7.0|^8.0",
  453. "pimple/pimple": "^3.0",
  454. "symfony/http-foundation": "^3.3|^4.0|^5.0|^6.0"
  455. },
  456. "require-dev": {
  457. "phpunit/phpunit": "^9.3"
  458. },
  459. "type": "library",
  460. "autoload": {
  461. "psr-4": {
  462. "Hanson\\Foundation\\": "src/"
  463. }
  464. },
  465. "notification-url": "https://packagist.org/downloads/",
  466. "license": [
  467. "MIT"
  468. ],
  469. "authors": [
  470. {
  471. "name": "HanSon",
  472. "email": "h@hanc.cc"
  473. }
  474. ],
  475. "support": {
  476. "issues": "https://github.com/Hanson/foundation-sdk/issues",
  477. "source": "https://github.com/Hanson/foundation-sdk/tree/5.0.2"
  478. },
  479. "time": "2023-05-31T05:51:32+00:00"
  480. },
  481. {
  482. "name": "monolog/monolog",
  483. "version": "2.9.1",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/Seldaek/monolog.git",
  487. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  492. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "php": ">=7.2",
  497. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  498. },
  499. "provide": {
  500. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  501. },
  502. "require-dev": {
  503. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  504. "doctrine/couchdb": "~1.0@dev",
  505. "elasticsearch/elasticsearch": "^7 || ^8",
  506. "ext-json": "*",
  507. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  508. "guzzlehttp/guzzle": "^7.4",
  509. "guzzlehttp/psr7": "^2.2",
  510. "mongodb/mongodb": "^1.8",
  511. "php-amqplib/php-amqplib": "~2.4 || ^3",
  512. "phpspec/prophecy": "^1.15",
  513. "phpstan/phpstan": "^0.12.91",
  514. "phpunit/phpunit": "^8.5.14",
  515. "predis/predis": "^1.1 || ^2.0",
  516. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  517. "ruflin/elastica": "^7",
  518. "swiftmailer/swiftmailer": "^5.3|^6.0",
  519. "symfony/mailer": "^5.4 || ^6",
  520. "symfony/mime": "^5.4 || ^6"
  521. },
  522. "suggest": {
  523. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  524. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  525. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  526. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  527. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  528. "ext-mbstring": "Allow to work properly with unicode symbols",
  529. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  530. "ext-openssl": "Required to send log messages using SSL",
  531. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  532. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  533. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  534. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  535. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  536. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  537. },
  538. "type": "library",
  539. "extra": {
  540. "branch-alias": {
  541. "dev-main": "2.x-dev"
  542. }
  543. },
  544. "autoload": {
  545. "psr-4": {
  546. "Monolog\\": "src/Monolog"
  547. }
  548. },
  549. "notification-url": "https://packagist.org/downloads/",
  550. "license": [
  551. "MIT"
  552. ],
  553. "authors": [
  554. {
  555. "name": "Jordi Boggiano",
  556. "email": "j.boggiano@seld.be",
  557. "homepage": "https://seld.be"
  558. }
  559. ],
  560. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  561. "homepage": "https://github.com/Seldaek/monolog",
  562. "keywords": [
  563. "log",
  564. "logging",
  565. "psr-3"
  566. ],
  567. "support": {
  568. "issues": "https://github.com/Seldaek/monolog/issues",
  569. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  570. },
  571. "funding": [
  572. {
  573. "url": "https://github.com/Seldaek",
  574. "type": "github"
  575. },
  576. {
  577. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  578. "type": "tidelift"
  579. }
  580. ],
  581. "time": "2023-02-06T13:44:46+00:00"
  582. },
  583. {
  584. "name": "pimple/pimple",
  585. "version": "v3.5.0",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/silexphp/Pimple.git",
  589. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  594. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  595. "shasum": ""
  596. },
  597. "require": {
  598. "php": ">=7.2.5",
  599. "psr/container": "^1.1 || ^2.0"
  600. },
  601. "require-dev": {
  602. "symfony/phpunit-bridge": "^5.4@dev"
  603. },
  604. "type": "library",
  605. "extra": {
  606. "branch-alias": {
  607. "dev-master": "3.4.x-dev"
  608. }
  609. },
  610. "autoload": {
  611. "psr-0": {
  612. "Pimple": "src/"
  613. }
  614. },
  615. "notification-url": "https://packagist.org/downloads/",
  616. "license": [
  617. "MIT"
  618. ],
  619. "authors": [
  620. {
  621. "name": "Fabien Potencier",
  622. "email": "fabien@symfony.com"
  623. }
  624. ],
  625. "description": "Pimple, a simple Dependency Injection Container",
  626. "homepage": "https://pimple.symfony.com",
  627. "keywords": [
  628. "container",
  629. "dependency injection"
  630. ],
  631. "support": {
  632. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  633. },
  634. "time": "2021-10-28T11:13:42+00:00"
  635. },
  636. {
  637. "name": "psr/container",
  638. "version": "2.0.2",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/php-fig/container.git",
  642. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  647. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": ">=7.4.0"
  652. },
  653. "type": "library",
  654. "extra": {
  655. "branch-alias": {
  656. "dev-master": "2.0.x-dev"
  657. }
  658. },
  659. "autoload": {
  660. "psr-4": {
  661. "Psr\\Container\\": "src/"
  662. }
  663. },
  664. "notification-url": "https://packagist.org/downloads/",
  665. "license": [
  666. "MIT"
  667. ],
  668. "authors": [
  669. {
  670. "name": "PHP-FIG",
  671. "homepage": "https://www.php-fig.org/"
  672. }
  673. ],
  674. "description": "Common Container Interface (PHP FIG PSR-11)",
  675. "homepage": "https://github.com/php-fig/container",
  676. "keywords": [
  677. "PSR-11",
  678. "container",
  679. "container-interface",
  680. "container-interop",
  681. "psr"
  682. ],
  683. "support": {
  684. "issues": "https://github.com/php-fig/container/issues",
  685. "source": "https://github.com/php-fig/container/tree/2.0.2"
  686. },
  687. "time": "2021-11-05T16:47:00+00:00"
  688. },
  689. {
  690. "name": "psr/http-client",
  691. "version": "1.0.3",
  692. "source": {
  693. "type": "git",
  694. "url": "https://github.com/php-fig/http-client.git",
  695. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  696. },
  697. "dist": {
  698. "type": "zip",
  699. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  700. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  701. "shasum": ""
  702. },
  703. "require": {
  704. "php": "^7.0 || ^8.0",
  705. "psr/http-message": "^1.0 || ^2.0"
  706. },
  707. "type": "library",
  708. "extra": {
  709. "branch-alias": {
  710. "dev-master": "1.0.x-dev"
  711. }
  712. },
  713. "autoload": {
  714. "psr-4": {
  715. "Psr\\Http\\Client\\": "src/"
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "MIT"
  721. ],
  722. "authors": [
  723. {
  724. "name": "PHP-FIG",
  725. "homepage": "https://www.php-fig.org/"
  726. }
  727. ],
  728. "description": "Common interface for HTTP clients",
  729. "homepage": "https://github.com/php-fig/http-client",
  730. "keywords": [
  731. "http",
  732. "http-client",
  733. "psr",
  734. "psr-18"
  735. ],
  736. "support": {
  737. "source": "https://github.com/php-fig/http-client"
  738. },
  739. "time": "2023-09-23T14:17:50+00:00"
  740. },
  741. {
  742. "name": "psr/http-factory",
  743. "version": "1.0.2",
  744. "source": {
  745. "type": "git",
  746. "url": "https://github.com/php-fig/http-factory.git",
  747. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  752. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "php": ">=7.0.0",
  757. "psr/http-message": "^1.0 || ^2.0"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-master": "1.0.x-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-4": {
  767. "Psr\\Http\\Message\\": "src/"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "PHP-FIG",
  777. "homepage": "https://www.php-fig.org/"
  778. }
  779. ],
  780. "description": "Common interfaces for PSR-7 HTTP message factories",
  781. "keywords": [
  782. "factory",
  783. "http",
  784. "message",
  785. "psr",
  786. "psr-17",
  787. "psr-7",
  788. "request",
  789. "response"
  790. ],
  791. "support": {
  792. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  793. },
  794. "time": "2023-04-10T20:10:41+00:00"
  795. },
  796. {
  797. "name": "psr/http-message",
  798. "version": "2.0",
  799. "source": {
  800. "type": "git",
  801. "url": "https://github.com/php-fig/http-message.git",
  802. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  803. },
  804. "dist": {
  805. "type": "zip",
  806. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  807. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  808. "shasum": ""
  809. },
  810. "require": {
  811. "php": "^7.2 || ^8.0"
  812. },
  813. "type": "library",
  814. "extra": {
  815. "branch-alias": {
  816. "dev-master": "2.0.x-dev"
  817. }
  818. },
  819. "autoload": {
  820. "psr-4": {
  821. "Psr\\Http\\Message\\": "src/"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "PHP-FIG",
  831. "homepage": "https://www.php-fig.org/"
  832. }
  833. ],
  834. "description": "Common interface for HTTP messages",
  835. "homepage": "https://github.com/php-fig/http-message",
  836. "keywords": [
  837. "http",
  838. "http-message",
  839. "psr",
  840. "psr-7",
  841. "request",
  842. "response"
  843. ],
  844. "support": {
  845. "source": "https://github.com/php-fig/http-message/tree/2.0"
  846. },
  847. "time": "2023-04-04T09:54:51+00:00"
  848. },
  849. {
  850. "name": "psr/log",
  851. "version": "1.1.4",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/php-fig/log.git",
  855. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  860. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  861. "shasum": ""
  862. },
  863. "require": {
  864. "php": ">=5.3.0"
  865. },
  866. "type": "library",
  867. "extra": {
  868. "branch-alias": {
  869. "dev-master": "1.1.x-dev"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Psr\\Log\\": "Psr/Log/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "authors": [
  882. {
  883. "name": "PHP-FIG",
  884. "homepage": "https://www.php-fig.org/"
  885. }
  886. ],
  887. "description": "Common interface for logging libraries",
  888. "homepage": "https://github.com/php-fig/log",
  889. "keywords": [
  890. "log",
  891. "psr",
  892. "psr-3"
  893. ],
  894. "support": {
  895. "source": "https://github.com/php-fig/log/tree/1.1.4"
  896. },
  897. "time": "2021-05-03T11:20:27+00:00"
  898. },
  899. {
  900. "name": "ralouphie/getallheaders",
  901. "version": "3.0.3",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/ralouphie/getallheaders.git",
  905. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  910. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "php": ">=5.6"
  915. },
  916. "require-dev": {
  917. "php-coveralls/php-coveralls": "^2.1",
  918. "phpunit/phpunit": "^5 || ^6.5"
  919. },
  920. "type": "library",
  921. "autoload": {
  922. "files": [
  923. "src/getallheaders.php"
  924. ]
  925. },
  926. "notification-url": "https://packagist.org/downloads/",
  927. "license": [
  928. "MIT"
  929. ],
  930. "authors": [
  931. {
  932. "name": "Ralph Khattar",
  933. "email": "ralph.khattar@gmail.com"
  934. }
  935. ],
  936. "description": "A polyfill for getallheaders.",
  937. "support": {
  938. "issues": "https://github.com/ralouphie/getallheaders/issues",
  939. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  940. },
  941. "time": "2019-03-08T08:55:37+00:00"
  942. },
  943. {
  944. "name": "symfony/deprecation-contracts",
  945. "version": "v2.5.2",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/symfony/deprecation-contracts.git",
  949. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  954. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  955. "shasum": ""
  956. },
  957. "require": {
  958. "php": ">=7.1"
  959. },
  960. "type": "library",
  961. "extra": {
  962. "branch-alias": {
  963. "dev-main": "2.5-dev"
  964. },
  965. "thanks": {
  966. "name": "symfony/contracts",
  967. "url": "https://github.com/symfony/contracts"
  968. }
  969. },
  970. "autoload": {
  971. "files": [
  972. "function.php"
  973. ]
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Nicolas Grekas",
  982. "email": "p@tchwork.com"
  983. },
  984. {
  985. "name": "Symfony Community",
  986. "homepage": "https://symfony.com/contributors"
  987. }
  988. ],
  989. "description": "A generic function and convention to trigger deprecation notices",
  990. "homepage": "https://symfony.com",
  991. "support": {
  992. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  993. },
  994. "funding": [
  995. {
  996. "url": "https://symfony.com/sponsor",
  997. "type": "custom"
  998. },
  999. {
  1000. "url": "https://github.com/fabpot",
  1001. "type": "github"
  1002. },
  1003. {
  1004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1005. "type": "tidelift"
  1006. }
  1007. ],
  1008. "time": "2022-01-02T09:53:40+00:00"
  1009. },
  1010. {
  1011. "name": "symfony/http-foundation",
  1012. "version": "v5.4.28",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/symfony/http-foundation.git",
  1016. "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/365992c83a836dfe635f1e903ccca43ee03d3dd2",
  1021. "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": ">=7.2.5",
  1026. "symfony/deprecation-contracts": "^2.1|^3",
  1027. "symfony/polyfill-mbstring": "~1.1",
  1028. "symfony/polyfill-php80": "^1.16"
  1029. },
  1030. "require-dev": {
  1031. "predis/predis": "~1.0",
  1032. "symfony/cache": "^4.4|^5.0|^6.0",
  1033. "symfony/dependency-injection": "^5.4|^6.0",
  1034. "symfony/expression-language": "^4.4|^5.0|^6.0",
  1035. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  1036. "symfony/mime": "^4.4|^5.0|^6.0",
  1037. "symfony/rate-limiter": "^5.2|^6.0"
  1038. },
  1039. "suggest": {
  1040. "symfony/mime": "To use the file extension guesser"
  1041. },
  1042. "type": "library",
  1043. "autoload": {
  1044. "psr-4": {
  1045. "Symfony\\Component\\HttpFoundation\\": ""
  1046. },
  1047. "exclude-from-classmap": [
  1048. "/Tests/"
  1049. ]
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Fabien Potencier",
  1058. "email": "fabien@symfony.com"
  1059. },
  1060. {
  1061. "name": "Symfony Community",
  1062. "homepage": "https://symfony.com/contributors"
  1063. }
  1064. ],
  1065. "description": "Defines an object-oriented layer for the HTTP specification",
  1066. "homepage": "https://symfony.com",
  1067. "support": {
  1068. "source": "https://github.com/symfony/http-foundation/tree/v5.4.28"
  1069. },
  1070. "funding": [
  1071. {
  1072. "url": "https://symfony.com/sponsor",
  1073. "type": "custom"
  1074. },
  1075. {
  1076. "url": "https://github.com/fabpot",
  1077. "type": "github"
  1078. },
  1079. {
  1080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1081. "type": "tidelift"
  1082. }
  1083. ],
  1084. "time": "2023-08-21T07:23:18+00:00"
  1085. },
  1086. {
  1087. "name": "symfony/polyfill-mbstring",
  1088. "version": "v1.28.0",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1092. "reference": "42292d99c55abe617799667f454222c54c60e229"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  1097. "reference": "42292d99c55abe617799667f454222c54c60e229",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "php": ">=7.1"
  1102. },
  1103. "provide": {
  1104. "ext-mbstring": "*"
  1105. },
  1106. "suggest": {
  1107. "ext-mbstring": "For best performance"
  1108. },
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-main": "1.28-dev"
  1113. },
  1114. "thanks": {
  1115. "name": "symfony/polyfill",
  1116. "url": "https://github.com/symfony/polyfill"
  1117. }
  1118. },
  1119. "autoload": {
  1120. "files": [
  1121. "bootstrap.php"
  1122. ],
  1123. "psr-4": {
  1124. "Symfony\\Polyfill\\Mbstring\\": ""
  1125. }
  1126. },
  1127. "notification-url": "https://packagist.org/downloads/",
  1128. "license": [
  1129. "MIT"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "Nicolas Grekas",
  1134. "email": "p@tchwork.com"
  1135. },
  1136. {
  1137. "name": "Symfony Community",
  1138. "homepage": "https://symfony.com/contributors"
  1139. }
  1140. ],
  1141. "description": "Symfony polyfill for the Mbstring extension",
  1142. "homepage": "https://symfony.com",
  1143. "keywords": [
  1144. "compatibility",
  1145. "mbstring",
  1146. "polyfill",
  1147. "portable",
  1148. "shim"
  1149. ],
  1150. "support": {
  1151. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  1152. },
  1153. "funding": [
  1154. {
  1155. "url": "https://symfony.com/sponsor",
  1156. "type": "custom"
  1157. },
  1158. {
  1159. "url": "https://github.com/fabpot",
  1160. "type": "github"
  1161. },
  1162. {
  1163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1164. "type": "tidelift"
  1165. }
  1166. ],
  1167. "time": "2023-07-28T09:04:16+00:00"
  1168. },
  1169. {
  1170. "name": "symfony/polyfill-php80",
  1171. "version": "v1.28.0",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/symfony/polyfill-php80.git",
  1175. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  1180. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "php": ">=7.1"
  1185. },
  1186. "type": "library",
  1187. "extra": {
  1188. "branch-alias": {
  1189. "dev-main": "1.28-dev"
  1190. },
  1191. "thanks": {
  1192. "name": "symfony/polyfill",
  1193. "url": "https://github.com/symfony/polyfill"
  1194. }
  1195. },
  1196. "autoload": {
  1197. "files": [
  1198. "bootstrap.php"
  1199. ],
  1200. "psr-4": {
  1201. "Symfony\\Polyfill\\Php80\\": ""
  1202. },
  1203. "classmap": [
  1204. "Resources/stubs"
  1205. ]
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "MIT"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Ion Bazan",
  1214. "email": "ion.bazan@gmail.com"
  1215. },
  1216. {
  1217. "name": "Nicolas Grekas",
  1218. "email": "p@tchwork.com"
  1219. },
  1220. {
  1221. "name": "Symfony Community",
  1222. "homepage": "https://symfony.com/contributors"
  1223. }
  1224. ],
  1225. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1226. "homepage": "https://symfony.com",
  1227. "keywords": [
  1228. "compatibility",
  1229. "polyfill",
  1230. "portable",
  1231. "shim"
  1232. ],
  1233. "support": {
  1234. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  1235. },
  1236. "funding": [
  1237. {
  1238. "url": "https://symfony.com/sponsor",
  1239. "type": "custom"
  1240. },
  1241. {
  1242. "url": "https://github.com/fabpot",
  1243. "type": "github"
  1244. },
  1245. {
  1246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1247. "type": "tidelift"
  1248. }
  1249. ],
  1250. "time": "2023-01-26T09:26:14+00:00"
  1251. }
  1252. ],
  1253. "packages-dev": [
  1254. {
  1255. "name": "doctrine/instantiator",
  1256. "version": "1.5.0",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/doctrine/instantiator.git",
  1260. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  1265. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  1266. "shasum": ""
  1267. },
  1268. "require": {
  1269. "php": "^7.1 || ^8.0"
  1270. },
  1271. "require-dev": {
  1272. "doctrine/coding-standard": "^9 || ^11",
  1273. "ext-pdo": "*",
  1274. "ext-phar": "*",
  1275. "phpbench/phpbench": "^0.16 || ^1",
  1276. "phpstan/phpstan": "^1.4",
  1277. "phpstan/phpstan-phpunit": "^1",
  1278. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1279. "vimeo/psalm": "^4.30 || ^5.4"
  1280. },
  1281. "type": "library",
  1282. "autoload": {
  1283. "psr-4": {
  1284. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1285. }
  1286. },
  1287. "notification-url": "https://packagist.org/downloads/",
  1288. "license": [
  1289. "MIT"
  1290. ],
  1291. "authors": [
  1292. {
  1293. "name": "Marco Pivetta",
  1294. "email": "ocramius@gmail.com",
  1295. "homepage": "https://ocramius.github.io/"
  1296. }
  1297. ],
  1298. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1299. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1300. "keywords": [
  1301. "constructor",
  1302. "instantiate"
  1303. ],
  1304. "support": {
  1305. "issues": "https://github.com/doctrine/instantiator/issues",
  1306. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  1307. },
  1308. "funding": [
  1309. {
  1310. "url": "https://www.doctrine-project.org/sponsorship.html",
  1311. "type": "custom"
  1312. },
  1313. {
  1314. "url": "https://www.patreon.com/phpdoctrine",
  1315. "type": "patreon"
  1316. },
  1317. {
  1318. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1319. "type": "tidelift"
  1320. }
  1321. ],
  1322. "time": "2022-12-30T00:15:36+00:00"
  1323. },
  1324. {
  1325. "name": "myclabs/deep-copy",
  1326. "version": "1.11.1",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/myclabs/DeepCopy.git",
  1330. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  1335. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  1336. "shasum": ""
  1337. },
  1338. "require": {
  1339. "php": "^7.1 || ^8.0"
  1340. },
  1341. "conflict": {
  1342. "doctrine/collections": "<1.6.8",
  1343. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  1344. },
  1345. "require-dev": {
  1346. "doctrine/collections": "^1.6.8",
  1347. "doctrine/common": "^2.13.3 || ^3.2.2",
  1348. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  1349. },
  1350. "type": "library",
  1351. "autoload": {
  1352. "files": [
  1353. "src/DeepCopy/deep_copy.php"
  1354. ],
  1355. "psr-4": {
  1356. "DeepCopy\\": "src/DeepCopy/"
  1357. }
  1358. },
  1359. "notification-url": "https://packagist.org/downloads/",
  1360. "license": [
  1361. "MIT"
  1362. ],
  1363. "description": "Create deep copies (clones) of your objects",
  1364. "keywords": [
  1365. "clone",
  1366. "copy",
  1367. "duplicate",
  1368. "object",
  1369. "object graph"
  1370. ],
  1371. "support": {
  1372. "issues": "https://github.com/myclabs/DeepCopy/issues",
  1373. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  1374. },
  1375. "funding": [
  1376. {
  1377. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  1378. "type": "tidelift"
  1379. }
  1380. ],
  1381. "time": "2023-03-08T13:26:56+00:00"
  1382. },
  1383. {
  1384. "name": "nikic/php-parser",
  1385. "version": "v4.15.1",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/nikic/PHP-Parser.git",
  1389. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  1394. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "ext-tokenizer": "*",
  1399. "php": ">=7.0"
  1400. },
  1401. "require-dev": {
  1402. "ircmaxell/php-yacc": "^0.0.7",
  1403. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1404. },
  1405. "bin": [
  1406. "bin/php-parse"
  1407. ],
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "4.9-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "PhpParser\\": "lib/PhpParser"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "BSD-3-Clause"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Nikita Popov"
  1426. }
  1427. ],
  1428. "description": "A PHP parser written in PHP",
  1429. "keywords": [
  1430. "parser",
  1431. "php"
  1432. ],
  1433. "support": {
  1434. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1435. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  1436. },
  1437. "time": "2022-09-04T07:30:47+00:00"
  1438. },
  1439. {
  1440. "name": "phar-io/manifest",
  1441. "version": "2.0.3",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/phar-io/manifest.git",
  1445. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  1450. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  1451. "shasum": ""
  1452. },
  1453. "require": {
  1454. "ext-dom": "*",
  1455. "ext-phar": "*",
  1456. "ext-xmlwriter": "*",
  1457. "phar-io/version": "^3.0.1",
  1458. "php": "^7.2 || ^8.0"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "2.0.x-dev"
  1464. }
  1465. },
  1466. "autoload": {
  1467. "classmap": [
  1468. "src/"
  1469. ]
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "BSD-3-Clause"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Arne Blankerts",
  1478. "email": "arne@blankerts.de",
  1479. "role": "Developer"
  1480. },
  1481. {
  1482. "name": "Sebastian Heuer",
  1483. "email": "sebastian@phpeople.de",
  1484. "role": "Developer"
  1485. },
  1486. {
  1487. "name": "Sebastian Bergmann",
  1488. "email": "sebastian@phpunit.de",
  1489. "role": "Developer"
  1490. }
  1491. ],
  1492. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1493. "support": {
  1494. "issues": "https://github.com/phar-io/manifest/issues",
  1495. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  1496. },
  1497. "time": "2021-07-20T11:28:43+00:00"
  1498. },
  1499. {
  1500. "name": "phar-io/version",
  1501. "version": "3.2.1",
  1502. "source": {
  1503. "type": "git",
  1504. "url": "https://github.com/phar-io/version.git",
  1505. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  1506. },
  1507. "dist": {
  1508. "type": "zip",
  1509. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1510. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1511. "shasum": ""
  1512. },
  1513. "require": {
  1514. "php": "^7.2 || ^8.0"
  1515. },
  1516. "type": "library",
  1517. "autoload": {
  1518. "classmap": [
  1519. "src/"
  1520. ]
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "BSD-3-Clause"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Arne Blankerts",
  1529. "email": "arne@blankerts.de",
  1530. "role": "Developer"
  1531. },
  1532. {
  1533. "name": "Sebastian Heuer",
  1534. "email": "sebastian@phpeople.de",
  1535. "role": "Developer"
  1536. },
  1537. {
  1538. "name": "Sebastian Bergmann",
  1539. "email": "sebastian@phpunit.de",
  1540. "role": "Developer"
  1541. }
  1542. ],
  1543. "description": "Library for handling version information and constraints",
  1544. "support": {
  1545. "issues": "https://github.com/phar-io/version/issues",
  1546. "source": "https://github.com/phar-io/version/tree/3.2.1"
  1547. },
  1548. "time": "2022-02-21T01:04:05+00:00"
  1549. },
  1550. {
  1551. "name": "phpunit/php-code-coverage",
  1552. "version": "9.2.29",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1556. "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76",
  1561. "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "ext-dom": "*",
  1566. "ext-libxml": "*",
  1567. "ext-xmlwriter": "*",
  1568. "nikic/php-parser": "^4.15",
  1569. "php": ">=7.3",
  1570. "phpunit/php-file-iterator": "^3.0.3",
  1571. "phpunit/php-text-template": "^2.0.2",
  1572. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  1573. "sebastian/complexity": "^2.0",
  1574. "sebastian/environment": "^5.1.2",
  1575. "sebastian/lines-of-code": "^1.0.3",
  1576. "sebastian/version": "^3.0.1",
  1577. "theseer/tokenizer": "^1.2.0"
  1578. },
  1579. "require-dev": {
  1580. "phpunit/phpunit": "^9.3"
  1581. },
  1582. "suggest": {
  1583. "ext-pcov": "PHP extension that provides line coverage",
  1584. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "9.2-dev"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "classmap": [
  1594. "src/"
  1595. ]
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "BSD-3-Clause"
  1600. ],
  1601. "authors": [
  1602. {
  1603. "name": "Sebastian Bergmann",
  1604. "email": "sebastian@phpunit.de",
  1605. "role": "lead"
  1606. }
  1607. ],
  1608. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1609. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1610. "keywords": [
  1611. "coverage",
  1612. "testing",
  1613. "xunit"
  1614. ],
  1615. "support": {
  1616. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1617. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  1618. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29"
  1619. },
  1620. "funding": [
  1621. {
  1622. "url": "https://github.com/sebastianbergmann",
  1623. "type": "github"
  1624. }
  1625. ],
  1626. "time": "2023-09-19T04:57:46+00:00"
  1627. },
  1628. {
  1629. "name": "phpunit/php-file-iterator",
  1630. "version": "3.0.6",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1634. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1639. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=7.3"
  1644. },
  1645. "require-dev": {
  1646. "phpunit/phpunit": "^9.3"
  1647. },
  1648. "type": "library",
  1649. "extra": {
  1650. "branch-alias": {
  1651. "dev-master": "3.0-dev"
  1652. }
  1653. },
  1654. "autoload": {
  1655. "classmap": [
  1656. "src/"
  1657. ]
  1658. },
  1659. "notification-url": "https://packagist.org/downloads/",
  1660. "license": [
  1661. "BSD-3-Clause"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "Sebastian Bergmann",
  1666. "email": "sebastian@phpunit.de",
  1667. "role": "lead"
  1668. }
  1669. ],
  1670. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1671. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1672. "keywords": [
  1673. "filesystem",
  1674. "iterator"
  1675. ],
  1676. "support": {
  1677. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1678. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  1679. },
  1680. "funding": [
  1681. {
  1682. "url": "https://github.com/sebastianbergmann",
  1683. "type": "github"
  1684. }
  1685. ],
  1686. "time": "2021-12-02T12:48:52+00:00"
  1687. },
  1688. {
  1689. "name": "phpunit/php-invoker",
  1690. "version": "3.1.1",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1694. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1699. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "php": ">=7.3"
  1704. },
  1705. "require-dev": {
  1706. "ext-pcntl": "*",
  1707. "phpunit/phpunit": "^9.3"
  1708. },
  1709. "suggest": {
  1710. "ext-pcntl": "*"
  1711. },
  1712. "type": "library",
  1713. "extra": {
  1714. "branch-alias": {
  1715. "dev-master": "3.1-dev"
  1716. }
  1717. },
  1718. "autoload": {
  1719. "classmap": [
  1720. "src/"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "BSD-3-Clause"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Sebastian Bergmann",
  1730. "email": "sebastian@phpunit.de",
  1731. "role": "lead"
  1732. }
  1733. ],
  1734. "description": "Invoke callables with a timeout",
  1735. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1736. "keywords": [
  1737. "process"
  1738. ],
  1739. "support": {
  1740. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  1741. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  1742. },
  1743. "funding": [
  1744. {
  1745. "url": "https://github.com/sebastianbergmann",
  1746. "type": "github"
  1747. }
  1748. ],
  1749. "time": "2020-09-28T05:58:55+00:00"
  1750. },
  1751. {
  1752. "name": "phpunit/php-text-template",
  1753. "version": "2.0.4",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1757. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1762. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": ">=7.3"
  1767. },
  1768. "require-dev": {
  1769. "phpunit/phpunit": "^9.3"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-master": "2.0-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "classmap": [
  1779. "src/"
  1780. ]
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "BSD-3-Clause"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Sebastian Bergmann",
  1789. "email": "sebastian@phpunit.de",
  1790. "role": "lead"
  1791. }
  1792. ],
  1793. "description": "Simple template engine.",
  1794. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1795. "keywords": [
  1796. "template"
  1797. ],
  1798. "support": {
  1799. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1800. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  1801. },
  1802. "funding": [
  1803. {
  1804. "url": "https://github.com/sebastianbergmann",
  1805. "type": "github"
  1806. }
  1807. ],
  1808. "time": "2020-10-26T05:33:50+00:00"
  1809. },
  1810. {
  1811. "name": "phpunit/php-timer",
  1812. "version": "5.0.3",
  1813. "source": {
  1814. "type": "git",
  1815. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1816. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  1817. },
  1818. "dist": {
  1819. "type": "zip",
  1820. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1821. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1822. "shasum": ""
  1823. },
  1824. "require": {
  1825. "php": ">=7.3"
  1826. },
  1827. "require-dev": {
  1828. "phpunit/phpunit": "^9.3"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "5.0-dev"
  1834. }
  1835. },
  1836. "autoload": {
  1837. "classmap": [
  1838. "src/"
  1839. ]
  1840. },
  1841. "notification-url": "https://packagist.org/downloads/",
  1842. "license": [
  1843. "BSD-3-Clause"
  1844. ],
  1845. "authors": [
  1846. {
  1847. "name": "Sebastian Bergmann",
  1848. "email": "sebastian@phpunit.de",
  1849. "role": "lead"
  1850. }
  1851. ],
  1852. "description": "Utility class for timing",
  1853. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1854. "keywords": [
  1855. "timer"
  1856. ],
  1857. "support": {
  1858. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1859. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  1860. },
  1861. "funding": [
  1862. {
  1863. "url": "https://github.com/sebastianbergmann",
  1864. "type": "github"
  1865. }
  1866. ],
  1867. "time": "2020-10-26T13:16:10+00:00"
  1868. },
  1869. {
  1870. "name": "phpunit/phpunit",
  1871. "version": "9.6.13",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1875. "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be",
  1880. "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "doctrine/instantiator": "^1.3.1 || ^2",
  1885. "ext-dom": "*",
  1886. "ext-json": "*",
  1887. "ext-libxml": "*",
  1888. "ext-mbstring": "*",
  1889. "ext-xml": "*",
  1890. "ext-xmlwriter": "*",
  1891. "myclabs/deep-copy": "^1.10.1",
  1892. "phar-io/manifest": "^2.0.3",
  1893. "phar-io/version": "^3.0.2",
  1894. "php": ">=7.3",
  1895. "phpunit/php-code-coverage": "^9.2.28",
  1896. "phpunit/php-file-iterator": "^3.0.5",
  1897. "phpunit/php-invoker": "^3.1.1",
  1898. "phpunit/php-text-template": "^2.0.3",
  1899. "phpunit/php-timer": "^5.0.2",
  1900. "sebastian/cli-parser": "^1.0.1",
  1901. "sebastian/code-unit": "^1.0.6",
  1902. "sebastian/comparator": "^4.0.8",
  1903. "sebastian/diff": "^4.0.3",
  1904. "sebastian/environment": "^5.1.3",
  1905. "sebastian/exporter": "^4.0.5",
  1906. "sebastian/global-state": "^5.0.1",
  1907. "sebastian/object-enumerator": "^4.0.3",
  1908. "sebastian/resource-operations": "^3.0.3",
  1909. "sebastian/type": "^3.2",
  1910. "sebastian/version": "^3.0.2"
  1911. },
  1912. "suggest": {
  1913. "ext-soap": "To be able to generate mocks based on WSDL files",
  1914. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  1915. },
  1916. "bin": [
  1917. "phpunit"
  1918. ],
  1919. "type": "library",
  1920. "extra": {
  1921. "branch-alias": {
  1922. "dev-master": "9.6-dev"
  1923. }
  1924. },
  1925. "autoload": {
  1926. "files": [
  1927. "src/Framework/Assert/Functions.php"
  1928. ],
  1929. "classmap": [
  1930. "src/"
  1931. ]
  1932. },
  1933. "notification-url": "https://packagist.org/downloads/",
  1934. "license": [
  1935. "BSD-3-Clause"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Sebastian Bergmann",
  1940. "email": "sebastian@phpunit.de",
  1941. "role": "lead"
  1942. }
  1943. ],
  1944. "description": "The PHP Unit Testing framework.",
  1945. "homepage": "https://phpunit.de/",
  1946. "keywords": [
  1947. "phpunit",
  1948. "testing",
  1949. "xunit"
  1950. ],
  1951. "support": {
  1952. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1953. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  1954. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13"
  1955. },
  1956. "funding": [
  1957. {
  1958. "url": "https://phpunit.de/sponsors.html",
  1959. "type": "custom"
  1960. },
  1961. {
  1962. "url": "https://github.com/sebastianbergmann",
  1963. "type": "github"
  1964. },
  1965. {
  1966. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  1967. "type": "tidelift"
  1968. }
  1969. ],
  1970. "time": "2023-09-19T05:39:22+00:00"
  1971. },
  1972. {
  1973. "name": "sebastian/cli-parser",
  1974. "version": "1.0.1",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  1978. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1983. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "php": ">=7.3"
  1988. },
  1989. "require-dev": {
  1990. "phpunit/phpunit": "^9.3"
  1991. },
  1992. "type": "library",
  1993. "extra": {
  1994. "branch-alias": {
  1995. "dev-master": "1.0-dev"
  1996. }
  1997. },
  1998. "autoload": {
  1999. "classmap": [
  2000. "src/"
  2001. ]
  2002. },
  2003. "notification-url": "https://packagist.org/downloads/",
  2004. "license": [
  2005. "BSD-3-Clause"
  2006. ],
  2007. "authors": [
  2008. {
  2009. "name": "Sebastian Bergmann",
  2010. "email": "sebastian@phpunit.de",
  2011. "role": "lead"
  2012. }
  2013. ],
  2014. "description": "Library for parsing CLI options",
  2015. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  2016. "support": {
  2017. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  2018. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  2019. },
  2020. "funding": [
  2021. {
  2022. "url": "https://github.com/sebastianbergmann",
  2023. "type": "github"
  2024. }
  2025. ],
  2026. "time": "2020-09-28T06:08:49+00:00"
  2027. },
  2028. {
  2029. "name": "sebastian/code-unit",
  2030. "version": "1.0.8",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/sebastianbergmann/code-unit.git",
  2034. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2039. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2040. "shasum": ""
  2041. },
  2042. "require": {
  2043. "php": ">=7.3"
  2044. },
  2045. "require-dev": {
  2046. "phpunit/phpunit": "^9.3"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "1.0-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "classmap": [
  2056. "src/"
  2057. ]
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "BSD-3-Clause"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Sebastian Bergmann",
  2066. "email": "sebastian@phpunit.de",
  2067. "role": "lead"
  2068. }
  2069. ],
  2070. "description": "Collection of value objects that represent the PHP code units",
  2071. "homepage": "https://github.com/sebastianbergmann/code-unit",
  2072. "support": {
  2073. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  2074. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  2075. },
  2076. "funding": [
  2077. {
  2078. "url": "https://github.com/sebastianbergmann",
  2079. "type": "github"
  2080. }
  2081. ],
  2082. "time": "2020-10-26T13:08:54+00:00"
  2083. },
  2084. {
  2085. "name": "sebastian/code-unit-reverse-lookup",
  2086. "version": "2.0.3",
  2087. "source": {
  2088. "type": "git",
  2089. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2090. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  2091. },
  2092. "dist": {
  2093. "type": "zip",
  2094. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2095. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2096. "shasum": ""
  2097. },
  2098. "require": {
  2099. "php": ">=7.3"
  2100. },
  2101. "require-dev": {
  2102. "phpunit/phpunit": "^9.3"
  2103. },
  2104. "type": "library",
  2105. "extra": {
  2106. "branch-alias": {
  2107. "dev-master": "2.0-dev"
  2108. }
  2109. },
  2110. "autoload": {
  2111. "classmap": [
  2112. "src/"
  2113. ]
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "BSD-3-Clause"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Sebastian Bergmann",
  2122. "email": "sebastian@phpunit.de"
  2123. }
  2124. ],
  2125. "description": "Looks up which function or method a line of code belongs to",
  2126. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2127. "support": {
  2128. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  2129. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  2130. },
  2131. "funding": [
  2132. {
  2133. "url": "https://github.com/sebastianbergmann",
  2134. "type": "github"
  2135. }
  2136. ],
  2137. "time": "2020-09-28T05:30:19+00:00"
  2138. },
  2139. {
  2140. "name": "sebastian/comparator",
  2141. "version": "4.0.8",
  2142. "source": {
  2143. "type": "git",
  2144. "url": "https://github.com/sebastianbergmann/comparator.git",
  2145. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  2146. },
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  2150. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  2151. "shasum": ""
  2152. },
  2153. "require": {
  2154. "php": ">=7.3",
  2155. "sebastian/diff": "^4.0",
  2156. "sebastian/exporter": "^4.0"
  2157. },
  2158. "require-dev": {
  2159. "phpunit/phpunit": "^9.3"
  2160. },
  2161. "type": "library",
  2162. "extra": {
  2163. "branch-alias": {
  2164. "dev-master": "4.0-dev"
  2165. }
  2166. },
  2167. "autoload": {
  2168. "classmap": [
  2169. "src/"
  2170. ]
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "BSD-3-Clause"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Sebastian Bergmann",
  2179. "email": "sebastian@phpunit.de"
  2180. },
  2181. {
  2182. "name": "Jeff Welch",
  2183. "email": "whatthejeff@gmail.com"
  2184. },
  2185. {
  2186. "name": "Volker Dusch",
  2187. "email": "github@wallbash.com"
  2188. },
  2189. {
  2190. "name": "Bernhard Schussek",
  2191. "email": "bschussek@2bepublished.at"
  2192. }
  2193. ],
  2194. "description": "Provides the functionality to compare PHP values for equality",
  2195. "homepage": "https://github.com/sebastianbergmann/comparator",
  2196. "keywords": [
  2197. "comparator",
  2198. "compare",
  2199. "equality"
  2200. ],
  2201. "support": {
  2202. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2203. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  2204. },
  2205. "funding": [
  2206. {
  2207. "url": "https://github.com/sebastianbergmann",
  2208. "type": "github"
  2209. }
  2210. ],
  2211. "time": "2022-09-14T12:41:17+00:00"
  2212. },
  2213. {
  2214. "name": "sebastian/complexity",
  2215. "version": "2.0.2",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://github.com/sebastianbergmann/complexity.git",
  2219. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  2224. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  2225. "shasum": ""
  2226. },
  2227. "require": {
  2228. "nikic/php-parser": "^4.7",
  2229. "php": ">=7.3"
  2230. },
  2231. "require-dev": {
  2232. "phpunit/phpunit": "^9.3"
  2233. },
  2234. "type": "library",
  2235. "extra": {
  2236. "branch-alias": {
  2237. "dev-master": "2.0-dev"
  2238. }
  2239. },
  2240. "autoload": {
  2241. "classmap": [
  2242. "src/"
  2243. ]
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "BSD-3-Clause"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "Sebastian Bergmann",
  2252. "email": "sebastian@phpunit.de",
  2253. "role": "lead"
  2254. }
  2255. ],
  2256. "description": "Library for calculating the complexity of PHP code units",
  2257. "homepage": "https://github.com/sebastianbergmann/complexity",
  2258. "support": {
  2259. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  2260. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  2261. },
  2262. "funding": [
  2263. {
  2264. "url": "https://github.com/sebastianbergmann",
  2265. "type": "github"
  2266. }
  2267. ],
  2268. "time": "2020-10-26T15:52:27+00:00"
  2269. },
  2270. {
  2271. "name": "sebastian/diff",
  2272. "version": "4.0.5",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://github.com/sebastianbergmann/diff.git",
  2276. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  2281. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  2282. "shasum": ""
  2283. },
  2284. "require": {
  2285. "php": ">=7.3"
  2286. },
  2287. "require-dev": {
  2288. "phpunit/phpunit": "^9.3",
  2289. "symfony/process": "^4.2 || ^5"
  2290. },
  2291. "type": "library",
  2292. "extra": {
  2293. "branch-alias": {
  2294. "dev-master": "4.0-dev"
  2295. }
  2296. },
  2297. "autoload": {
  2298. "classmap": [
  2299. "src/"
  2300. ]
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "BSD-3-Clause"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "Sebastian Bergmann",
  2309. "email": "sebastian@phpunit.de"
  2310. },
  2311. {
  2312. "name": "Kore Nordmann",
  2313. "email": "mail@kore-nordmann.de"
  2314. }
  2315. ],
  2316. "description": "Diff implementation",
  2317. "homepage": "https://github.com/sebastianbergmann/diff",
  2318. "keywords": [
  2319. "diff",
  2320. "udiff",
  2321. "unidiff",
  2322. "unified diff"
  2323. ],
  2324. "support": {
  2325. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2326. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  2327. },
  2328. "funding": [
  2329. {
  2330. "url": "https://github.com/sebastianbergmann",
  2331. "type": "github"
  2332. }
  2333. ],
  2334. "time": "2023-05-07T05:35:17+00:00"
  2335. },
  2336. {
  2337. "name": "sebastian/environment",
  2338. "version": "5.1.5",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/sebastianbergmann/environment.git",
  2342. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  2347. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  2348. "shasum": ""
  2349. },
  2350. "require": {
  2351. "php": ">=7.3"
  2352. },
  2353. "require-dev": {
  2354. "phpunit/phpunit": "^9.3"
  2355. },
  2356. "suggest": {
  2357. "ext-posix": "*"
  2358. },
  2359. "type": "library",
  2360. "extra": {
  2361. "branch-alias": {
  2362. "dev-master": "5.1-dev"
  2363. }
  2364. },
  2365. "autoload": {
  2366. "classmap": [
  2367. "src/"
  2368. ]
  2369. },
  2370. "notification-url": "https://packagist.org/downloads/",
  2371. "license": [
  2372. "BSD-3-Clause"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "Sebastian Bergmann",
  2377. "email": "sebastian@phpunit.de"
  2378. }
  2379. ],
  2380. "description": "Provides functionality to handle HHVM/PHP environments",
  2381. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2382. "keywords": [
  2383. "Xdebug",
  2384. "environment",
  2385. "hhvm"
  2386. ],
  2387. "support": {
  2388. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2389. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  2390. },
  2391. "funding": [
  2392. {
  2393. "url": "https://github.com/sebastianbergmann",
  2394. "type": "github"
  2395. }
  2396. ],
  2397. "time": "2023-02-03T06:03:51+00:00"
  2398. },
  2399. {
  2400. "name": "sebastian/exporter",
  2401. "version": "4.0.5",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/sebastianbergmann/exporter.git",
  2405. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  2410. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": ">=7.3",
  2415. "sebastian/recursion-context": "^4.0"
  2416. },
  2417. "require-dev": {
  2418. "ext-mbstring": "*",
  2419. "phpunit/phpunit": "^9.3"
  2420. },
  2421. "type": "library",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "4.0-dev"
  2425. }
  2426. },
  2427. "autoload": {
  2428. "classmap": [
  2429. "src/"
  2430. ]
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "BSD-3-Clause"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Sebastian Bergmann",
  2439. "email": "sebastian@phpunit.de"
  2440. },
  2441. {
  2442. "name": "Jeff Welch",
  2443. "email": "whatthejeff@gmail.com"
  2444. },
  2445. {
  2446. "name": "Volker Dusch",
  2447. "email": "github@wallbash.com"
  2448. },
  2449. {
  2450. "name": "Adam Harvey",
  2451. "email": "aharvey@php.net"
  2452. },
  2453. {
  2454. "name": "Bernhard Schussek",
  2455. "email": "bschussek@gmail.com"
  2456. }
  2457. ],
  2458. "description": "Provides the functionality to export PHP variables for visualization",
  2459. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  2460. "keywords": [
  2461. "export",
  2462. "exporter"
  2463. ],
  2464. "support": {
  2465. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  2466. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  2467. },
  2468. "funding": [
  2469. {
  2470. "url": "https://github.com/sebastianbergmann",
  2471. "type": "github"
  2472. }
  2473. ],
  2474. "time": "2022-09-14T06:03:37+00:00"
  2475. },
  2476. {
  2477. "name": "sebastian/global-state",
  2478. "version": "5.0.6",
  2479. "source": {
  2480. "type": "git",
  2481. "url": "https://github.com/sebastianbergmann/global-state.git",
  2482. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  2483. },
  2484. "dist": {
  2485. "type": "zip",
  2486. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  2487. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  2488. "shasum": ""
  2489. },
  2490. "require": {
  2491. "php": ">=7.3",
  2492. "sebastian/object-reflector": "^2.0",
  2493. "sebastian/recursion-context": "^4.0"
  2494. },
  2495. "require-dev": {
  2496. "ext-dom": "*",
  2497. "phpunit/phpunit": "^9.3"
  2498. },
  2499. "suggest": {
  2500. "ext-uopz": "*"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "5.0-dev"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "classmap": [
  2510. "src/"
  2511. ]
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "BSD-3-Clause"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Sebastian Bergmann",
  2520. "email": "sebastian@phpunit.de"
  2521. }
  2522. ],
  2523. "description": "Snapshotting of global state",
  2524. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2525. "keywords": [
  2526. "global state"
  2527. ],
  2528. "support": {
  2529. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2530. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  2531. },
  2532. "funding": [
  2533. {
  2534. "url": "https://github.com/sebastianbergmann",
  2535. "type": "github"
  2536. }
  2537. ],
  2538. "time": "2023-08-02T09:26:13+00:00"
  2539. },
  2540. {
  2541. "name": "sebastian/lines-of-code",
  2542. "version": "1.0.3",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2546. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2551. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "nikic/php-parser": "^4.6",
  2556. "php": ">=7.3"
  2557. },
  2558. "require-dev": {
  2559. "phpunit/phpunit": "^9.3"
  2560. },
  2561. "type": "library",
  2562. "extra": {
  2563. "branch-alias": {
  2564. "dev-master": "1.0-dev"
  2565. }
  2566. },
  2567. "autoload": {
  2568. "classmap": [
  2569. "src/"
  2570. ]
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "BSD-3-Clause"
  2575. ],
  2576. "authors": [
  2577. {
  2578. "name": "Sebastian Bergmann",
  2579. "email": "sebastian@phpunit.de",
  2580. "role": "lead"
  2581. }
  2582. ],
  2583. "description": "Library for counting the lines of code in PHP source code",
  2584. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2585. "support": {
  2586. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  2587. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  2588. },
  2589. "funding": [
  2590. {
  2591. "url": "https://github.com/sebastianbergmann",
  2592. "type": "github"
  2593. }
  2594. ],
  2595. "time": "2020-11-28T06:42:11+00:00"
  2596. },
  2597. {
  2598. "name": "sebastian/object-enumerator",
  2599. "version": "4.0.4",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2603. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  2608. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  2609. "shasum": ""
  2610. },
  2611. "require": {
  2612. "php": ">=7.3",
  2613. "sebastian/object-reflector": "^2.0",
  2614. "sebastian/recursion-context": "^4.0"
  2615. },
  2616. "require-dev": {
  2617. "phpunit/phpunit": "^9.3"
  2618. },
  2619. "type": "library",
  2620. "extra": {
  2621. "branch-alias": {
  2622. "dev-master": "4.0-dev"
  2623. }
  2624. },
  2625. "autoload": {
  2626. "classmap": [
  2627. "src/"
  2628. ]
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "BSD-3-Clause"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "Sebastian Bergmann",
  2637. "email": "sebastian@phpunit.de"
  2638. }
  2639. ],
  2640. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2641. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2642. "support": {
  2643. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  2644. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  2645. },
  2646. "funding": [
  2647. {
  2648. "url": "https://github.com/sebastianbergmann",
  2649. "type": "github"
  2650. }
  2651. ],
  2652. "time": "2020-10-26T13:12:34+00:00"
  2653. },
  2654. {
  2655. "name": "sebastian/object-reflector",
  2656. "version": "2.0.4",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2660. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2665. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "php": ">=7.3"
  2670. },
  2671. "require-dev": {
  2672. "phpunit/phpunit": "^9.3"
  2673. },
  2674. "type": "library",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-master": "2.0-dev"
  2678. }
  2679. },
  2680. "autoload": {
  2681. "classmap": [
  2682. "src/"
  2683. ]
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "BSD-3-Clause"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "Sebastian Bergmann",
  2692. "email": "sebastian@phpunit.de"
  2693. }
  2694. ],
  2695. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2696. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2697. "support": {
  2698. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  2699. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  2700. },
  2701. "funding": [
  2702. {
  2703. "url": "https://github.com/sebastianbergmann",
  2704. "type": "github"
  2705. }
  2706. ],
  2707. "time": "2020-10-26T13:14:26+00:00"
  2708. },
  2709. {
  2710. "name": "sebastian/recursion-context",
  2711. "version": "4.0.5",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2715. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  2720. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  2721. "shasum": ""
  2722. },
  2723. "require": {
  2724. "php": ">=7.3"
  2725. },
  2726. "require-dev": {
  2727. "phpunit/phpunit": "^9.3"
  2728. },
  2729. "type": "library",
  2730. "extra": {
  2731. "branch-alias": {
  2732. "dev-master": "4.0-dev"
  2733. }
  2734. },
  2735. "autoload": {
  2736. "classmap": [
  2737. "src/"
  2738. ]
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "BSD-3-Clause"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Sebastian Bergmann",
  2747. "email": "sebastian@phpunit.de"
  2748. },
  2749. {
  2750. "name": "Jeff Welch",
  2751. "email": "whatthejeff@gmail.com"
  2752. },
  2753. {
  2754. "name": "Adam Harvey",
  2755. "email": "aharvey@php.net"
  2756. }
  2757. ],
  2758. "description": "Provides functionality to recursively process PHP variables",
  2759. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  2760. "support": {
  2761. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2762. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  2763. },
  2764. "funding": [
  2765. {
  2766. "url": "https://github.com/sebastianbergmann",
  2767. "type": "github"
  2768. }
  2769. ],
  2770. "time": "2023-02-03T06:07:39+00:00"
  2771. },
  2772. {
  2773. "name": "sebastian/resource-operations",
  2774. "version": "3.0.3",
  2775. "source": {
  2776. "type": "git",
  2777. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2778. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  2779. },
  2780. "dist": {
  2781. "type": "zip",
  2782. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2783. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2784. "shasum": ""
  2785. },
  2786. "require": {
  2787. "php": ">=7.3"
  2788. },
  2789. "require-dev": {
  2790. "phpunit/phpunit": "^9.0"
  2791. },
  2792. "type": "library",
  2793. "extra": {
  2794. "branch-alias": {
  2795. "dev-master": "3.0-dev"
  2796. }
  2797. },
  2798. "autoload": {
  2799. "classmap": [
  2800. "src/"
  2801. ]
  2802. },
  2803. "notification-url": "https://packagist.org/downloads/",
  2804. "license": [
  2805. "BSD-3-Clause"
  2806. ],
  2807. "authors": [
  2808. {
  2809. "name": "Sebastian Bergmann",
  2810. "email": "sebastian@phpunit.de"
  2811. }
  2812. ],
  2813. "description": "Provides a list of PHP built-in functions that operate on resources",
  2814. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2815. "support": {
  2816. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  2817. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  2818. },
  2819. "funding": [
  2820. {
  2821. "url": "https://github.com/sebastianbergmann",
  2822. "type": "github"
  2823. }
  2824. ],
  2825. "time": "2020-09-28T06:45:17+00:00"
  2826. },
  2827. {
  2828. "name": "sebastian/type",
  2829. "version": "3.2.1",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://github.com/sebastianbergmann/type.git",
  2833. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  2834. },
  2835. "dist": {
  2836. "type": "zip",
  2837. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  2838. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  2839. "shasum": ""
  2840. },
  2841. "require": {
  2842. "php": ">=7.3"
  2843. },
  2844. "require-dev": {
  2845. "phpunit/phpunit": "^9.5"
  2846. },
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "3.2-dev"
  2851. }
  2852. },
  2853. "autoload": {
  2854. "classmap": [
  2855. "src/"
  2856. ]
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "BSD-3-Clause"
  2861. ],
  2862. "authors": [
  2863. {
  2864. "name": "Sebastian Bergmann",
  2865. "email": "sebastian@phpunit.de",
  2866. "role": "lead"
  2867. }
  2868. ],
  2869. "description": "Collection of value objects that represent the types of the PHP type system",
  2870. "homepage": "https://github.com/sebastianbergmann/type",
  2871. "support": {
  2872. "issues": "https://github.com/sebastianbergmann/type/issues",
  2873. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://github.com/sebastianbergmann",
  2878. "type": "github"
  2879. }
  2880. ],
  2881. "time": "2023-02-03T06:13:03+00:00"
  2882. },
  2883. {
  2884. "name": "sebastian/version",
  2885. "version": "3.0.2",
  2886. "source": {
  2887. "type": "git",
  2888. "url": "https://github.com/sebastianbergmann/version.git",
  2889. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  2890. },
  2891. "dist": {
  2892. "type": "zip",
  2893. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  2894. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  2895. "shasum": ""
  2896. },
  2897. "require": {
  2898. "php": ">=7.3"
  2899. },
  2900. "type": "library",
  2901. "extra": {
  2902. "branch-alias": {
  2903. "dev-master": "3.0-dev"
  2904. }
  2905. },
  2906. "autoload": {
  2907. "classmap": [
  2908. "src/"
  2909. ]
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "BSD-3-Clause"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Sebastian Bergmann",
  2918. "email": "sebastian@phpunit.de",
  2919. "role": "lead"
  2920. }
  2921. ],
  2922. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2923. "homepage": "https://github.com/sebastianbergmann/version",
  2924. "support": {
  2925. "issues": "https://github.com/sebastianbergmann/version/issues",
  2926. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  2927. },
  2928. "funding": [
  2929. {
  2930. "url": "https://github.com/sebastianbergmann",
  2931. "type": "github"
  2932. }
  2933. ],
  2934. "time": "2020-09-28T06:39:44+00:00"
  2935. },
  2936. {
  2937. "name": "theseer/tokenizer",
  2938. "version": "1.2.1",
  2939. "source": {
  2940. "type": "git",
  2941. "url": "https://github.com/theseer/tokenizer.git",
  2942. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  2943. },
  2944. "dist": {
  2945. "type": "zip",
  2946. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  2947. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  2948. "shasum": ""
  2949. },
  2950. "require": {
  2951. "ext-dom": "*",
  2952. "ext-tokenizer": "*",
  2953. "ext-xmlwriter": "*",
  2954. "php": "^7.2 || ^8.0"
  2955. },
  2956. "type": "library",
  2957. "autoload": {
  2958. "classmap": [
  2959. "src/"
  2960. ]
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "BSD-3-Clause"
  2965. ],
  2966. "authors": [
  2967. {
  2968. "name": "Arne Blankerts",
  2969. "email": "arne@blankerts.de",
  2970. "role": "Developer"
  2971. }
  2972. ],
  2973. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2974. "support": {
  2975. "issues": "https://github.com/theseer/tokenizer/issues",
  2976. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  2977. },
  2978. "funding": [
  2979. {
  2980. "url": "https://github.com/theseer",
  2981. "type": "github"
  2982. }
  2983. ],
  2984. "time": "2021-07-28T10:34:58+00:00"
  2985. }
  2986. ],
  2987. "aliases": [],
  2988. "minimum-stability": "stable",
  2989. "stability-flags": [],
  2990. "prefer-stable": false,
  2991. "prefer-lowest": false,
  2992. "platform": {
  2993. "php": ">=7.0"
  2994. },
  2995. "platform-dev": [],
  2996. "plugin-api-version": "2.3.0"
  2997. }