installed.json 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372
  1. {
  2. "packages": [
  3. {
  4. "name": "bramus/ansi-php",
  5. "version": "3.1",
  6. "version_normalized": "3.1.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/bramus/ansi-php.git",
  10. "reference": "f581b2fd322177e5fabd67af240811838c1c8fbc"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/bramus/ansi-php/zipball/f581b2fd322177e5fabd67af240811838c1c8fbc",
  15. "reference": "f581b2fd322177e5fabd67af240811838c1c8fbc",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "php": ">=5.4.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "~4.0"
  29. },
  30. "time": "2021-10-28T10:45:05+00:00",
  31. "type": "library",
  32. "installation-source": "dist",
  33. "autoload": {
  34. "psr-4": {
  35. "Bramus\\Ansi\\": "src/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Bramus Van Damme",
  45. "email": "[email protected]",
  46. "homepage": "https://www.bram.us/"
  47. }
  48. ],
  49. "description": "ANSI Control Functions and ANSI Control Sequences (Colors, Erasing, etc.) for PHP CLI Apps",
  50. "support": {
  51. "issues": "https://github.com/bramus/ansi-php/issues",
  52. "source": "https://github.com/bramus/ansi-php/tree/3.1"
  53. },
  54. "install-path": "../bramus/ansi-php"
  55. },
  56. {
  57. "name": "bramus/monolog-colored-line-formatter",
  58. "version": "3.1.2",
  59. "version_normalized": "3.1.2.0",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/bramus/monolog-colored-line-formatter.git",
  63. "reference": "1ce52a13d5accdc425fb912f9b96c84f6be2ea72"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/bramus/monolog-colored-line-formatter/zipball/1ce52a13d5accdc425fb912f9b96c84f6be2ea72",
  68. "reference": "1ce52a13d5accdc425fb912f9b96c84f6be2ea72",
  69. "shasum": ""
  70. },
  71. "require": {
  72. "bramus/ansi-php": "^3.0.3",
  73. "monolog/monolog": "~3.0",
  74. "php": "^8.1"
  75. },
  76. "require-dev": {
  77. "phpunit/phpunit": "~9.6"
  78. },
  79. "time": "2023-08-18T13:44:29+00:00",
  80. "type": "library",
  81. "installation-source": "dist",
  82. "autoload": {
  83. "psr-4": {
  84. "Bramus\\Monolog\\": "src/"
  85. }
  86. },
  87. "notification-url": "https://packagist.org/downloads/",
  88. "license": [
  89. "MIT"
  90. ],
  91. "authors": [
  92. {
  93. "name": "Bramus Van Damme",
  94. "email": "[email protected]",
  95. "homepage": "https://www.bram.us/"
  96. }
  97. ],
  98. "description": "Colored Line Formatter for Monolog",
  99. "support": {
  100. "issues": "https://github.com/bramus/monolog-colored-line-formatter/issues",
  101. "source": "https://github.com/bramus/monolog-colored-line-formatter/tree/3.1.2"
  102. },
  103. "funding": [
  104. {
  105. "url": "https://github.com/bramus",
  106. "type": "github"
  107. }
  108. ],
  109. "install-path": "../bramus/monolog-colored-line-formatter"
  110. },
  111. {
  112. "name": "graham-campbell/result-type",
  113. "version": "v1.1.4",
  114. "version_normalized": "1.1.4.0",
  115. "source": {
  116. "type": "git",
  117. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  118. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  119. },
  120. "dist": {
  121. "type": "zip",
  122. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  123. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  124. "shasum": ""
  125. },
  126. "require": {
  127. "php": "^7.2.5 || ^8.0",
  128. "phpoption/phpoption": "^1.9.5"
  129. },
  130. "require-dev": {
  131. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  132. },
  133. "time": "2025-12-27T19:43:20+00:00",
  134. "type": "library",
  135. "installation-source": "dist",
  136. "autoload": {
  137. "psr-4": {
  138. "GrahamCampbell\\ResultType\\": "src/"
  139. }
  140. },
  141. "notification-url": "https://packagist.org/downloads/",
  142. "license": [
  143. "MIT"
  144. ],
  145. "authors": [
  146. {
  147. "name": "Graham Campbell",
  148. "email": "[email protected]",
  149. "homepage": "https://github.com/GrahamCampbell"
  150. }
  151. ],
  152. "description": "An Implementation Of The Result Type",
  153. "keywords": [
  154. "Graham Campbell",
  155. "GrahamCampbell",
  156. "Result Type",
  157. "Result-Type",
  158. "result"
  159. ],
  160. "support": {
  161. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  162. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  163. },
  164. "funding": [
  165. {
  166. "url": "https://github.com/GrahamCampbell",
  167. "type": "github"
  168. },
  169. {
  170. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  171. "type": "tidelift"
  172. }
  173. ],
  174. "install-path": "../graham-campbell/result-type"
  175. },
  176. {
  177. "name": "guzzlehttp/guzzle",
  178. "version": "7.10.0",
  179. "version_normalized": "7.10.0.0",
  180. "source": {
  181. "type": "git",
  182. "url": "https://github.com/guzzle/guzzle.git",
  183. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  184. },
  185. "dist": {
  186. "type": "zip",
  187. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  188. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  189. "shasum": ""
  190. },
  191. "require": {
  192. "ext-json": "*",
  193. "guzzlehttp/promises": "^2.3",
  194. "guzzlehttp/psr7": "^2.8",
  195. "php": "^7.2.5 || ^8.0",
  196. "psr/http-client": "^1.0",
  197. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  198. },
  199. "provide": {
  200. "psr/http-client-implementation": "1.0"
  201. },
  202. "require-dev": {
  203. "bamarni/composer-bin-plugin": "^1.8.2",
  204. "ext-curl": "*",
  205. "guzzle/client-integration-tests": "3.0.2",
  206. "php-http/message-factory": "^1.1",
  207. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  208. "psr/log": "^1.1 || ^2.0 || ^3.0"
  209. },
  210. "suggest": {
  211. "ext-curl": "Required for CURL handler support",
  212. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  213. "psr/log": "Required for using the Log middleware"
  214. },
  215. "time": "2025-08-23T22:36:01+00:00",
  216. "type": "library",
  217. "extra": {
  218. "bamarni-bin": {
  219. "bin-links": true,
  220. "forward-command": false
  221. }
  222. },
  223. "installation-source": "dist",
  224. "autoload": {
  225. "files": [
  226. "src/functions_include.php"
  227. ],
  228. "psr-4": {
  229. "GuzzleHttp\\": "src/"
  230. }
  231. },
  232. "notification-url": "https://packagist.org/downloads/",
  233. "license": [
  234. "MIT"
  235. ],
  236. "authors": [
  237. {
  238. "name": "Graham Campbell",
  239. "email": "[email protected]",
  240. "homepage": "https://github.com/GrahamCampbell"
  241. },
  242. {
  243. "name": "Michael Dowling",
  244. "email": "[email protected]",
  245. "homepage": "https://github.com/mtdowling"
  246. },
  247. {
  248. "name": "Jeremy Lindblom",
  249. "email": "[email protected]",
  250. "homepage": "https://github.com/jeremeamia"
  251. },
  252. {
  253. "name": "George Mponos",
  254. "email": "[email protected]",
  255. "homepage": "https://github.com/gmponos"
  256. },
  257. {
  258. "name": "Tobias Nyholm",
  259. "email": "[email protected]",
  260. "homepage": "https://github.com/Nyholm"
  261. },
  262. {
  263. "name": "Márk Sági-Kazár",
  264. "email": "[email protected]",
  265. "homepage": "https://github.com/sagikazarmark"
  266. },
  267. {
  268. "name": "Tobias Schultze",
  269. "email": "[email protected]",
  270. "homepage": "https://github.com/Tobion"
  271. }
  272. ],
  273. "description": "Guzzle is a PHP HTTP client library",
  274. "keywords": [
  275. "client",
  276. "curl",
  277. "framework",
  278. "http",
  279. "http client",
  280. "psr-18",
  281. "psr-7",
  282. "rest",
  283. "web service"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/guzzle/guzzle/issues",
  287. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://github.com/GrahamCampbell",
  292. "type": "github"
  293. },
  294. {
  295. "url": "https://github.com/Nyholm",
  296. "type": "github"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "install-path": "../guzzlehttp/guzzle"
  304. },
  305. {
  306. "name": "guzzlehttp/promises",
  307. "version": "2.3.0",
  308. "version_normalized": "2.3.0.0",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/guzzle/promises.git",
  312. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  317. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": "^7.2.5 || ^8.0"
  322. },
  323. "require-dev": {
  324. "bamarni/composer-bin-plugin": "^1.8.2",
  325. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  326. },
  327. "time": "2025-08-22T14:34:08+00:00",
  328. "type": "library",
  329. "extra": {
  330. "bamarni-bin": {
  331. "bin-links": true,
  332. "forward-command": false
  333. }
  334. },
  335. "installation-source": "dist",
  336. "autoload": {
  337. "psr-4": {
  338. "GuzzleHttp\\Promise\\": "src/"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "MIT"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Graham Campbell",
  348. "email": "[email protected]",
  349. "homepage": "https://github.com/GrahamCampbell"
  350. },
  351. {
  352. "name": "Michael Dowling",
  353. "email": "[email protected]",
  354. "homepage": "https://github.com/mtdowling"
  355. },
  356. {
  357. "name": "Tobias Nyholm",
  358. "email": "[email protected]",
  359. "homepage": "https://github.com/Nyholm"
  360. },
  361. {
  362. "name": "Tobias Schultze",
  363. "email": "[email protected]",
  364. "homepage": "https://github.com/Tobion"
  365. }
  366. ],
  367. "description": "Guzzle promises library",
  368. "keywords": [
  369. "promise"
  370. ],
  371. "support": {
  372. "issues": "https://github.com/guzzle/promises/issues",
  373. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  374. },
  375. "funding": [
  376. {
  377. "url": "https://github.com/GrahamCampbell",
  378. "type": "github"
  379. },
  380. {
  381. "url": "https://github.com/Nyholm",
  382. "type": "github"
  383. },
  384. {
  385. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  386. "type": "tidelift"
  387. }
  388. ],
  389. "install-path": "../guzzlehttp/promises"
  390. },
  391. {
  392. "name": "guzzlehttp/psr7",
  393. "version": "2.9.0",
  394. "version_normalized": "2.9.0.0",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/guzzle/psr7.git",
  398. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884",
  403. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^7.2.5 || ^8.0",
  408. "psr/http-factory": "^1.0",
  409. "psr/http-message": "^1.1 || ^2.0",
  410. "ralouphie/getallheaders": "^3.0"
  411. },
  412. "provide": {
  413. "psr/http-factory-implementation": "1.0",
  414. "psr/http-message-implementation": "1.0"
  415. },
  416. "require-dev": {
  417. "bamarni/composer-bin-plugin": "^1.8.2",
  418. "http-interop/http-factory-tests": "0.9.0",
  419. "jshttp/mime-db": "1.54.0.1",
  420. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  421. },
  422. "suggest": {
  423. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  424. },
  425. "time": "2026-03-10T16:41:02+00:00",
  426. "type": "library",
  427. "extra": {
  428. "bamarni-bin": {
  429. "bin-links": true,
  430. "forward-command": false
  431. }
  432. },
  433. "installation-source": "dist",
  434. "autoload": {
  435. "psr-4": {
  436. "GuzzleHttp\\Psr7\\": "src/"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "MIT"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Graham Campbell",
  446. "email": "[email protected]",
  447. "homepage": "https://github.com/GrahamCampbell"
  448. },
  449. {
  450. "name": "Michael Dowling",
  451. "email": "[email protected]",
  452. "homepage": "https://github.com/mtdowling"
  453. },
  454. {
  455. "name": "George Mponos",
  456. "email": "[email protected]",
  457. "homepage": "https://github.com/gmponos"
  458. },
  459. {
  460. "name": "Tobias Nyholm",
  461. "email": "[email protected]",
  462. "homepage": "https://github.com/Nyholm"
  463. },
  464. {
  465. "name": "Márk Sági-Kazár",
  466. "email": "[email protected]",
  467. "homepage": "https://github.com/sagikazarmark"
  468. },
  469. {
  470. "name": "Tobias Schultze",
  471. "email": "[email protected]",
  472. "homepage": "https://github.com/Tobion"
  473. },
  474. {
  475. "name": "Márk Sági-Kazár",
  476. "email": "[email protected]",
  477. "homepage": "https://sagikazarmark.hu"
  478. }
  479. ],
  480. "description": "PSR-7 message implementation that also provides common utility methods",
  481. "keywords": [
  482. "http",
  483. "message",
  484. "psr-7",
  485. "request",
  486. "response",
  487. "stream",
  488. "uri",
  489. "url"
  490. ],
  491. "support": {
  492. "issues": "https://github.com/guzzle/psr7/issues",
  493. "source": "https://github.com/guzzle/psr7/tree/2.9.0"
  494. },
  495. "funding": [
  496. {
  497. "url": "https://github.com/GrahamCampbell",
  498. "type": "github"
  499. },
  500. {
  501. "url": "https://github.com/Nyholm",
  502. "type": "github"
  503. },
  504. {
  505. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  506. "type": "tidelift"
  507. }
  508. ],
  509. "install-path": "../guzzlehttp/psr7"
  510. },
  511. {
  512. "name": "kevinlebrun/colors.php",
  513. "version": "1.0.3",
  514. "version_normalized": "1.0.3.0",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/kevinlebrun/colors.php.git",
  518. "reference": "cdda5eee41314b87cd5a8bb91b1ffc7c0210e673"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/kevinlebrun/colors.php/zipball/cdda5eee41314b87cd5a8bb91b1ffc7c0210e673",
  523. "reference": "cdda5eee41314b87cd5a8bb91b1ffc7c0210e673",
  524. "shasum": "",
  525. "mirrors": [
  526. {
  527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  528. "preferred": true
  529. }
  530. ]
  531. },
  532. "require": {
  533. "php": ">=5.3.0"
  534. },
  535. "require-dev": {
  536. "phpunit/phpunit": "3.7.*",
  537. "satooshi/php-coveralls": "1.0.*",
  538. "squizlabs/php_codesniffer": "1.*"
  539. },
  540. "time": "2018-05-30T08:34:23+00:00",
  541. "type": "library",
  542. "installation-source": "dist",
  543. "autoload": {
  544. "psr-0": {
  545. "Colors": "src/"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Kevin Le Brun",
  555. "email": "[email protected]",
  556. "homepage": "http://kevinlebrun.fr",
  557. "role": "developer"
  558. }
  559. ],
  560. "description": "Colors for PHP CLI scripts",
  561. "homepage": "https://github.com/kevinlebrun/colors.php",
  562. "keywords": [
  563. "cli",
  564. "color",
  565. "colors",
  566. "console",
  567. "shell"
  568. ],
  569. "install-path": "../kevinlebrun/colors.php"
  570. },
  571. {
  572. "name": "monolog/monolog",
  573. "version": "3.10.0",
  574. "version_normalized": "3.10.0.0",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/Seldaek/monolog.git",
  578. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  583. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "php": ">=8.1",
  588. "psr/log": "^2.0 || ^3.0"
  589. },
  590. "provide": {
  591. "psr/log-implementation": "3.0.0"
  592. },
  593. "require-dev": {
  594. "aws/aws-sdk-php": "^3.0",
  595. "doctrine/couchdb": "~1.0@dev",
  596. "elasticsearch/elasticsearch": "^7 || ^8",
  597. "ext-json": "*",
  598. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  599. "guzzlehttp/guzzle": "^7.4.5",
  600. "guzzlehttp/psr7": "^2.2",
  601. "mongodb/mongodb": "^1.8 || ^2.0",
  602. "php-amqplib/php-amqplib": "~2.4 || ^3",
  603. "php-console/php-console": "^3.1.8",
  604. "phpstan/phpstan": "^2",
  605. "phpstan/phpstan-deprecation-rules": "^2",
  606. "phpstan/phpstan-strict-rules": "^2",
  607. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  608. "predis/predis": "^1.1 || ^2",
  609. "rollbar/rollbar": "^4.0",
  610. "ruflin/elastica": "^7 || ^8",
  611. "symfony/mailer": "^5.4 || ^6",
  612. "symfony/mime": "^5.4 || ^6"
  613. },
  614. "suggest": {
  615. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  616. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  617. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  618. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  619. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  620. "ext-mbstring": "Allow to work properly with unicode symbols",
  621. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  622. "ext-openssl": "Required to send log messages using SSL",
  623. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  624. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  625. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  626. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  627. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  628. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  629. },
  630. "time": "2026-01-02T08:56:05+00:00",
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-main": "3.x-dev"
  635. }
  636. },
  637. "installation-source": "dist",
  638. "autoload": {
  639. "psr-4": {
  640. "Monolog\\": "src/Monolog"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Jordi Boggiano",
  650. "email": "[email protected]",
  651. "homepage": "https://seld.be"
  652. }
  653. ],
  654. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  655. "homepage": "https://github.com/Seldaek/monolog",
  656. "keywords": [
  657. "log",
  658. "logging",
  659. "psr-3"
  660. ],
  661. "support": {
  662. "issues": "https://github.com/Seldaek/monolog/issues",
  663. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  664. },
  665. "funding": [
  666. {
  667. "url": "https://github.com/Seldaek",
  668. "type": "github"
  669. },
  670. {
  671. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  672. "type": "tidelift"
  673. }
  674. ],
  675. "install-path": "../monolog/monolog"
  676. },
  677. {
  678. "name": "myclabs/deep-copy",
  679. "version": "1.13.4",
  680. "version_normalized": "1.13.4.0",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/myclabs/DeepCopy.git",
  684. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  689. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  690. "shasum": ""
  691. },
  692. "require": {
  693. "php": "^7.1 || ^8.0"
  694. },
  695. "conflict": {
  696. "doctrine/collections": "<1.6.8",
  697. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  698. },
  699. "require-dev": {
  700. "doctrine/collections": "^1.6.8",
  701. "doctrine/common": "^2.13.3 || ^3.2.2",
  702. "phpspec/prophecy": "^1.10",
  703. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  704. },
  705. "time": "2025-08-01T08:46:24+00:00",
  706. "type": "library",
  707. "installation-source": "dist",
  708. "autoload": {
  709. "files": [
  710. "src/DeepCopy/deep_copy.php"
  711. ],
  712. "psr-4": {
  713. "DeepCopy\\": "src/DeepCopy/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "description": "Create deep copies (clones) of your objects",
  721. "keywords": [
  722. "clone",
  723. "copy",
  724. "duplicate",
  725. "object",
  726. "object graph"
  727. ],
  728. "support": {
  729. "issues": "https://github.com/myclabs/DeepCopy/issues",
  730. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  731. },
  732. "funding": [
  733. {
  734. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "install-path": "../myclabs/deep-copy"
  739. },
  740. {
  741. "name": "nikic/php-parser",
  742. "version": "v5.7.0",
  743. "version_normalized": "5.7.0.0",
  744. "source": {
  745. "type": "git",
  746. "url": "https://github.com/nikic/PHP-Parser.git",
  747. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  752. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "ext-ctype": "*",
  757. "ext-json": "*",
  758. "ext-tokenizer": "*",
  759. "php": ">=7.4"
  760. },
  761. "require-dev": {
  762. "ircmaxell/php-yacc": "^0.0.7",
  763. "phpunit/phpunit": "^9.0"
  764. },
  765. "time": "2025-12-06T11:56:16+00:00",
  766. "bin": [
  767. "bin/php-parse"
  768. ],
  769. "type": "library",
  770. "extra": {
  771. "branch-alias": {
  772. "dev-master": "5.x-dev"
  773. }
  774. },
  775. "installation-source": "dist",
  776. "autoload": {
  777. "psr-4": {
  778. "PhpParser\\": "lib/PhpParser"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "BSD-3-Clause"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Nikita Popov"
  788. }
  789. ],
  790. "description": "A PHP parser written in PHP",
  791. "keywords": [
  792. "parser",
  793. "php"
  794. ],
  795. "support": {
  796. "issues": "https://github.com/nikic/PHP-Parser/issues",
  797. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  798. },
  799. "install-path": "../nikic/php-parser"
  800. },
  801. {
  802. "name": "phar-io/manifest",
  803. "version": "2.0.4",
  804. "version_normalized": "2.0.4.0",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/phar-io/manifest.git",
  808. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  813. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  814. "shasum": ""
  815. },
  816. "require": {
  817. "ext-dom": "*",
  818. "ext-libxml": "*",
  819. "ext-phar": "*",
  820. "ext-xmlwriter": "*",
  821. "phar-io/version": "^3.0.1",
  822. "php": "^7.2 || ^8.0"
  823. },
  824. "time": "2024-03-03T12:33:53+00:00",
  825. "type": "library",
  826. "extra": {
  827. "branch-alias": {
  828. "dev-master": "2.0.x-dev"
  829. }
  830. },
  831. "installation-source": "dist",
  832. "autoload": {
  833. "classmap": [
  834. "src/"
  835. ]
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "BSD-3-Clause"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Arne Blankerts",
  844. "email": "[email protected]",
  845. "role": "Developer"
  846. },
  847. {
  848. "name": "Sebastian Heuer",
  849. "email": "[email protected]",
  850. "role": "Developer"
  851. },
  852. {
  853. "name": "Sebastian Bergmann",
  854. "email": "[email protected]",
  855. "role": "Developer"
  856. }
  857. ],
  858. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  859. "support": {
  860. "issues": "https://github.com/phar-io/manifest/issues",
  861. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  862. },
  863. "funding": [
  864. {
  865. "url": "https://github.com/theseer",
  866. "type": "github"
  867. }
  868. ],
  869. "install-path": "../phar-io/manifest"
  870. },
  871. {
  872. "name": "phar-io/version",
  873. "version": "3.2.1",
  874. "version_normalized": "3.2.1.0",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/phar-io/version.git",
  878. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  883. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": "^7.2 || ^8.0"
  888. },
  889. "time": "2022-02-21T01:04:05+00:00",
  890. "type": "library",
  891. "installation-source": "dist",
  892. "autoload": {
  893. "classmap": [
  894. "src/"
  895. ]
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "BSD-3-Clause"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Arne Blankerts",
  904. "email": "[email protected]",
  905. "role": "Developer"
  906. },
  907. {
  908. "name": "Sebastian Heuer",
  909. "email": "[email protected]",
  910. "role": "Developer"
  911. },
  912. {
  913. "name": "Sebastian Bergmann",
  914. "email": "[email protected]",
  915. "role": "Developer"
  916. }
  917. ],
  918. "description": "Library for handling version information and constraints",
  919. "support": {
  920. "issues": "https://github.com/phar-io/version/issues",
  921. "source": "https://github.com/phar-io/version/tree/3.2.1"
  922. },
  923. "install-path": "../phar-io/version"
  924. },
  925. {
  926. "name": "phpmailer/phpmailer",
  927. "version": "v7.0.2",
  928. "version_normalized": "7.0.2.0",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/PHPMailer/PHPMailer.git",
  932. "reference": "ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088",
  937. "reference": "ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088",
  938. "shasum": ""
  939. },
  940. "require": {
  941. "ext-ctype": "*",
  942. "ext-filter": "*",
  943. "ext-hash": "*",
  944. "php": ">=5.5.0"
  945. },
  946. "require-dev": {
  947. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  948. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  949. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  950. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  951. "phpcompatibility/php-compatibility": "^10.0.0@dev",
  952. "squizlabs/php_codesniffer": "^3.13.5",
  953. "yoast/phpunit-polyfills": "^1.0.4"
  954. },
  955. "suggest": {
  956. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  957. "directorytree/imapengine": "For uploading sent messages via IMAP, see gmail example",
  958. "ext-imap": "Needed to support advanced email address parsing according to RFC822",
  959. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  960. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  961. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  962. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  963. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  964. "psr/log": "For optional PSR-3 debug logging",
  965. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  966. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  967. },
  968. "time": "2026-01-09T18:02:33+00:00",
  969. "type": "library",
  970. "installation-source": "dist",
  971. "autoload": {
  972. "psr-4": {
  973. "PHPMailer\\PHPMailer\\": "src/"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "LGPL-2.1-only"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Marcus Bointon",
  983. "email": "[email protected]"
  984. },
  985. {
  986. "name": "Jim Jagielski",
  987. "email": "[email protected]"
  988. },
  989. {
  990. "name": "Andy Prevost",
  991. "email": "[email protected]"
  992. },
  993. {
  994. "name": "Brent R. Matzelle"
  995. }
  996. ],
  997. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  998. "support": {
  999. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1000. "source": "https://github.com/PHPMailer/PHPMailer/tree/v7.0.2"
  1001. },
  1002. "funding": [
  1003. {
  1004. "url": "https://github.com/Synchro",
  1005. "type": "github"
  1006. }
  1007. ],
  1008. "install-path": "../phpmailer/phpmailer"
  1009. },
  1010. {
  1011. "name": "phpoption/phpoption",
  1012. "version": "1.9.5",
  1013. "version_normalized": "1.9.5.0",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/schmittjoh/php-option.git",
  1017. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
  1022. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  1023. "shasum": ""
  1024. },
  1025. "require": {
  1026. "php": "^7.2.5 || ^8.0"
  1027. },
  1028. "require-dev": {
  1029. "bamarni/composer-bin-plugin": "^1.8.2",
  1030. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  1031. },
  1032. "time": "2025-12-27T19:41:33+00:00",
  1033. "type": "library",
  1034. "extra": {
  1035. "bamarni-bin": {
  1036. "bin-links": true,
  1037. "forward-command": false
  1038. },
  1039. "branch-alias": {
  1040. "dev-master": "1.9-dev"
  1041. }
  1042. },
  1043. "installation-source": "dist",
  1044. "autoload": {
  1045. "psr-4": {
  1046. "PhpOption\\": "src/PhpOption/"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "Apache-2.0"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Johannes M. Schmitt",
  1056. "email": "[email protected]",
  1057. "homepage": "https://github.com/schmittjoh"
  1058. },
  1059. {
  1060. "name": "Graham Campbell",
  1061. "email": "[email protected]",
  1062. "homepage": "https://github.com/GrahamCampbell"
  1063. }
  1064. ],
  1065. "description": "Option Type for PHP",
  1066. "keywords": [
  1067. "language",
  1068. "option",
  1069. "php",
  1070. "type"
  1071. ],
  1072. "support": {
  1073. "issues": "https://github.com/schmittjoh/php-option/issues",
  1074. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  1075. },
  1076. "funding": [
  1077. {
  1078. "url": "https://github.com/GrahamCampbell",
  1079. "type": "github"
  1080. },
  1081. {
  1082. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1083. "type": "tidelift"
  1084. }
  1085. ],
  1086. "install-path": "../phpoption/phpoption"
  1087. },
  1088. {
  1089. "name": "phpunit/php-code-coverage",
  1090. "version": "10.1.16",
  1091. "version_normalized": "10.1.16.0",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1095. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  1100. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "ext-dom": "*",
  1105. "ext-libxml": "*",
  1106. "ext-xmlwriter": "*",
  1107. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  1108. "php": ">=8.1",
  1109. "phpunit/php-file-iterator": "^4.1.0",
  1110. "phpunit/php-text-template": "^3.0.1",
  1111. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  1112. "sebastian/complexity": "^3.2.0",
  1113. "sebastian/environment": "^6.1.0",
  1114. "sebastian/lines-of-code": "^2.0.2",
  1115. "sebastian/version": "^4.0.1",
  1116. "theseer/tokenizer": "^1.2.3"
  1117. },
  1118. "require-dev": {
  1119. "phpunit/phpunit": "^10.1"
  1120. },
  1121. "suggest": {
  1122. "ext-pcov": "PHP extension that provides line coverage",
  1123. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  1124. },
  1125. "time": "2024-08-22T04:31:57+00:00",
  1126. "type": "library",
  1127. "extra": {
  1128. "branch-alias": {
  1129. "dev-main": "10.1.x-dev"
  1130. }
  1131. },
  1132. "installation-source": "dist",
  1133. "autoload": {
  1134. "classmap": [
  1135. "src/"
  1136. ]
  1137. },
  1138. "notification-url": "https://packagist.org/downloads/",
  1139. "license": [
  1140. "BSD-3-Clause"
  1141. ],
  1142. "authors": [
  1143. {
  1144. "name": "Sebastian Bergmann",
  1145. "email": "[email protected]",
  1146. "role": "lead"
  1147. }
  1148. ],
  1149. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1150. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1151. "keywords": [
  1152. "coverage",
  1153. "testing",
  1154. "xunit"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1158. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  1159. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  1160. },
  1161. "funding": [
  1162. {
  1163. "url": "https://github.com/sebastianbergmann",
  1164. "type": "github"
  1165. }
  1166. ],
  1167. "install-path": "../phpunit/php-code-coverage"
  1168. },
  1169. {
  1170. "name": "phpunit/php-file-iterator",
  1171. "version": "4.1.0",
  1172. "version_normalized": "4.1.0.0",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1176. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  1181. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "php": ">=8.1"
  1186. },
  1187. "require-dev": {
  1188. "phpunit/phpunit": "^10.0"
  1189. },
  1190. "time": "2023-08-31T06:24:48+00:00",
  1191. "type": "library",
  1192. "extra": {
  1193. "branch-alias": {
  1194. "dev-main": "4.0-dev"
  1195. }
  1196. },
  1197. "installation-source": "dist",
  1198. "autoload": {
  1199. "classmap": [
  1200. "src/"
  1201. ]
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "BSD-3-Clause"
  1206. ],
  1207. "authors": [
  1208. {
  1209. "name": "Sebastian Bergmann",
  1210. "email": "[email protected]",
  1211. "role": "lead"
  1212. }
  1213. ],
  1214. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1215. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1216. "keywords": [
  1217. "filesystem",
  1218. "iterator"
  1219. ],
  1220. "support": {
  1221. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1222. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  1223. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  1224. },
  1225. "funding": [
  1226. {
  1227. "url": "https://github.com/sebastianbergmann",
  1228. "type": "github"
  1229. }
  1230. ],
  1231. "install-path": "../phpunit/php-file-iterator"
  1232. },
  1233. {
  1234. "name": "phpunit/php-invoker",
  1235. "version": "4.0.0",
  1236. "version_normalized": "4.0.0.0",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1240. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  1245. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "php": ">=8.1"
  1250. },
  1251. "require-dev": {
  1252. "ext-pcntl": "*",
  1253. "phpunit/phpunit": "^10.0"
  1254. },
  1255. "suggest": {
  1256. "ext-pcntl": "*"
  1257. },
  1258. "time": "2023-02-03T06:56:09+00:00",
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-main": "4.0-dev"
  1263. }
  1264. },
  1265. "installation-source": "dist",
  1266. "autoload": {
  1267. "classmap": [
  1268. "src/"
  1269. ]
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "BSD-3-Clause"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Sebastian Bergmann",
  1278. "email": "[email protected]",
  1279. "role": "lead"
  1280. }
  1281. ],
  1282. "description": "Invoke callables with a timeout",
  1283. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1284. "keywords": [
  1285. "process"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  1289. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  1290. },
  1291. "funding": [
  1292. {
  1293. "url": "https://github.com/sebastianbergmann",
  1294. "type": "github"
  1295. }
  1296. ],
  1297. "install-path": "../phpunit/php-invoker"
  1298. },
  1299. {
  1300. "name": "phpunit/php-text-template",
  1301. "version": "3.0.1",
  1302. "version_normalized": "3.0.1.0",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1306. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  1311. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "php": ">=8.1"
  1316. },
  1317. "require-dev": {
  1318. "phpunit/phpunit": "^10.0"
  1319. },
  1320. "time": "2023-08-31T14:07:24+00:00",
  1321. "type": "library",
  1322. "extra": {
  1323. "branch-alias": {
  1324. "dev-main": "3.0-dev"
  1325. }
  1326. },
  1327. "installation-source": "dist",
  1328. "autoload": {
  1329. "classmap": [
  1330. "src/"
  1331. ]
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "BSD-3-Clause"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Sebastian Bergmann",
  1340. "email": "[email protected]",
  1341. "role": "lead"
  1342. }
  1343. ],
  1344. "description": "Simple template engine.",
  1345. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1346. "keywords": [
  1347. "template"
  1348. ],
  1349. "support": {
  1350. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1351. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  1352. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  1353. },
  1354. "funding": [
  1355. {
  1356. "url": "https://github.com/sebastianbergmann",
  1357. "type": "github"
  1358. }
  1359. ],
  1360. "install-path": "../phpunit/php-text-template"
  1361. },
  1362. {
  1363. "name": "phpunit/php-timer",
  1364. "version": "6.0.0",
  1365. "version_normalized": "6.0.0.0",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1369. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  1374. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  1375. "shasum": ""
  1376. },
  1377. "require": {
  1378. "php": ">=8.1"
  1379. },
  1380. "require-dev": {
  1381. "phpunit/phpunit": "^10.0"
  1382. },
  1383. "time": "2023-02-03T06:57:52+00:00",
  1384. "type": "library",
  1385. "extra": {
  1386. "branch-alias": {
  1387. "dev-main": "6.0-dev"
  1388. }
  1389. },
  1390. "installation-source": "dist",
  1391. "autoload": {
  1392. "classmap": [
  1393. "src/"
  1394. ]
  1395. },
  1396. "notification-url": "https://packagist.org/downloads/",
  1397. "license": [
  1398. "BSD-3-Clause"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Sebastian Bergmann",
  1403. "email": "[email protected]",
  1404. "role": "lead"
  1405. }
  1406. ],
  1407. "description": "Utility class for timing",
  1408. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1409. "keywords": [
  1410. "timer"
  1411. ],
  1412. "support": {
  1413. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1414. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  1415. },
  1416. "funding": [
  1417. {
  1418. "url": "https://github.com/sebastianbergmann",
  1419. "type": "github"
  1420. }
  1421. ],
  1422. "install-path": "../phpunit/php-timer"
  1423. },
  1424. {
  1425. "name": "phpunit/phpunit",
  1426. "version": "10.5.63",
  1427. "version_normalized": "10.5.63.0",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1431. "reference": "33198268dad71e926626b618f3ec3966661e4d90"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/33198268dad71e926626b618f3ec3966661e4d90",
  1436. "reference": "33198268dad71e926626b618f3ec3966661e4d90",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "ext-dom": "*",
  1441. "ext-json": "*",
  1442. "ext-libxml": "*",
  1443. "ext-mbstring": "*",
  1444. "ext-xml": "*",
  1445. "ext-xmlwriter": "*",
  1446. "myclabs/deep-copy": "^1.13.4",
  1447. "phar-io/manifest": "^2.0.4",
  1448. "phar-io/version": "^3.2.1",
  1449. "php": ">=8.1",
  1450. "phpunit/php-code-coverage": "^10.1.16",
  1451. "phpunit/php-file-iterator": "^4.1.0",
  1452. "phpunit/php-invoker": "^4.0.0",
  1453. "phpunit/php-text-template": "^3.0.1",
  1454. "phpunit/php-timer": "^6.0.0",
  1455. "sebastian/cli-parser": "^2.0.1",
  1456. "sebastian/code-unit": "^2.0.0",
  1457. "sebastian/comparator": "^5.0.5",
  1458. "sebastian/diff": "^5.1.1",
  1459. "sebastian/environment": "^6.1.0",
  1460. "sebastian/exporter": "^5.1.4",
  1461. "sebastian/global-state": "^6.0.2",
  1462. "sebastian/object-enumerator": "^5.0.0",
  1463. "sebastian/recursion-context": "^5.0.1",
  1464. "sebastian/type": "^4.0.0",
  1465. "sebastian/version": "^4.0.1"
  1466. },
  1467. "suggest": {
  1468. "ext-soap": "To be able to generate mocks based on WSDL files"
  1469. },
  1470. "time": "2026-01-27T05:48:37+00:00",
  1471. "bin": [
  1472. "phpunit"
  1473. ],
  1474. "type": "library",
  1475. "extra": {
  1476. "branch-alias": {
  1477. "dev-main": "10.5-dev"
  1478. }
  1479. },
  1480. "installation-source": "dist",
  1481. "autoload": {
  1482. "files": [
  1483. "src/Framework/Assert/Functions.php"
  1484. ],
  1485. "classmap": [
  1486. "src/"
  1487. ]
  1488. },
  1489. "notification-url": "https://packagist.org/downloads/",
  1490. "license": [
  1491. "BSD-3-Clause"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Sebastian Bergmann",
  1496. "email": "[email protected]",
  1497. "role": "lead"
  1498. }
  1499. ],
  1500. "description": "The PHP Unit Testing framework.",
  1501. "homepage": "https://phpunit.de/",
  1502. "keywords": [
  1503. "phpunit",
  1504. "testing",
  1505. "xunit"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1509. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  1510. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.63"
  1511. },
  1512. "funding": [
  1513. {
  1514. "url": "https://phpunit.de/sponsors.html",
  1515. "type": "custom"
  1516. },
  1517. {
  1518. "url": "https://github.com/sebastianbergmann",
  1519. "type": "github"
  1520. },
  1521. {
  1522. "url": "https://liberapay.com/sebastianbergmann",
  1523. "type": "liberapay"
  1524. },
  1525. {
  1526. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  1527. "type": "thanks_dev"
  1528. },
  1529. {
  1530. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  1531. "type": "tidelift"
  1532. }
  1533. ],
  1534. "install-path": "../phpunit/phpunit"
  1535. },
  1536. {
  1537. "name": "predis/predis",
  1538. "version": "v3.4.2",
  1539. "version_normalized": "3.4.2.0",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/predis/predis.git",
  1543. "reference": "2033429520d8997a7815a2485f56abe6d2d0e075"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/predis/predis/zipball/2033429520d8997a7815a2485f56abe6d2d0e075",
  1548. "reference": "2033429520d8997a7815a2485f56abe6d2d0e075",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "php": "^7.2 || ^8.0",
  1553. "psr/http-message": "^1.0|^2.0"
  1554. },
  1555. "require-dev": {
  1556. "friendsofphp/php-cs-fixer": "^3.3",
  1557. "phpstan/phpstan": "^1.9",
  1558. "phpunit/phpcov": "^6.0 || ^8.0",
  1559. "phpunit/phpunit": "^8.0 || ~9.4.4"
  1560. },
  1561. "suggest": {
  1562. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  1563. },
  1564. "time": "2026-03-09T20:33:04+00:00",
  1565. "type": "library",
  1566. "installation-source": "dist",
  1567. "autoload": {
  1568. "psr-4": {
  1569. "Predis\\": "src/"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Till Krüss",
  1579. "homepage": "https://till.im",
  1580. "role": "Maintainer"
  1581. }
  1582. ],
  1583. "description": "A flexible and feature-complete Redis/Valkey client for PHP.",
  1584. "homepage": "http://github.com/predis/predis",
  1585. "keywords": [
  1586. "nosql",
  1587. "predis",
  1588. "redis"
  1589. ],
  1590. "support": {
  1591. "issues": "https://github.com/predis/predis/issues",
  1592. "source": "https://github.com/predis/predis/tree/v3.4.2"
  1593. },
  1594. "funding": [
  1595. {
  1596. "url": "https://github.com/sponsors/tillkruss",
  1597. "type": "github"
  1598. }
  1599. ],
  1600. "install-path": "../predis/predis"
  1601. },
  1602. {
  1603. "name": "psr/http-client",
  1604. "version": "1.0.3",
  1605. "version_normalized": "1.0.3.0",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/php-fig/http-client.git",
  1609. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1614. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "php": "^7.0 || ^8.0",
  1619. "psr/http-message": "^1.0 || ^2.0"
  1620. },
  1621. "time": "2023-09-23T14:17:50+00:00",
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-master": "1.0.x-dev"
  1626. }
  1627. },
  1628. "installation-source": "dist",
  1629. "autoload": {
  1630. "psr-4": {
  1631. "Psr\\Http\\Client\\": "src/"
  1632. }
  1633. },
  1634. "notification-url": "https://packagist.org/downloads/",
  1635. "license": [
  1636. "MIT"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "PHP-FIG",
  1641. "homepage": "https://www.php-fig.org/"
  1642. }
  1643. ],
  1644. "description": "Common interface for HTTP clients",
  1645. "homepage": "https://github.com/php-fig/http-client",
  1646. "keywords": [
  1647. "http",
  1648. "http-client",
  1649. "psr",
  1650. "psr-18"
  1651. ],
  1652. "support": {
  1653. "source": "https://github.com/php-fig/http-client"
  1654. },
  1655. "install-path": "../psr/http-client"
  1656. },
  1657. {
  1658. "name": "psr/http-factory",
  1659. "version": "1.1.0",
  1660. "version_normalized": "1.1.0.0",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/php-fig/http-factory.git",
  1664. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1669. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "php": ">=7.1",
  1674. "psr/http-message": "^1.0 || ^2.0"
  1675. },
  1676. "time": "2024-04-15T12:06:14+00:00",
  1677. "type": "library",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-master": "1.0.x-dev"
  1681. }
  1682. },
  1683. "installation-source": "dist",
  1684. "autoload": {
  1685. "psr-4": {
  1686. "Psr\\Http\\Message\\": "src/"
  1687. }
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "MIT"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "PHP-FIG",
  1696. "homepage": "https://www.php-fig.org/"
  1697. }
  1698. ],
  1699. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  1700. "keywords": [
  1701. "factory",
  1702. "http",
  1703. "message",
  1704. "psr",
  1705. "psr-17",
  1706. "psr-7",
  1707. "request",
  1708. "response"
  1709. ],
  1710. "support": {
  1711. "source": "https://github.com/php-fig/http-factory"
  1712. },
  1713. "install-path": "../psr/http-factory"
  1714. },
  1715. {
  1716. "name": "psr/http-message",
  1717. "version": "2.0",
  1718. "version_normalized": "2.0.0.0",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/php-fig/http-message.git",
  1722. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1727. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "php": "^7.2 || ^8.0"
  1732. },
  1733. "time": "2023-04-04T09:54:51+00:00",
  1734. "type": "library",
  1735. "extra": {
  1736. "branch-alias": {
  1737. "dev-master": "2.0.x-dev"
  1738. }
  1739. },
  1740. "installation-source": "dist",
  1741. "autoload": {
  1742. "psr-4": {
  1743. "Psr\\Http\\Message\\": "src/"
  1744. }
  1745. },
  1746. "notification-url": "https://packagist.org/downloads/",
  1747. "license": [
  1748. "MIT"
  1749. ],
  1750. "authors": [
  1751. {
  1752. "name": "PHP-FIG",
  1753. "homepage": "https://www.php-fig.org/"
  1754. }
  1755. ],
  1756. "description": "Common interface for HTTP messages",
  1757. "homepage": "https://github.com/php-fig/http-message",
  1758. "keywords": [
  1759. "http",
  1760. "http-message",
  1761. "psr",
  1762. "psr-7",
  1763. "request",
  1764. "response"
  1765. ],
  1766. "support": {
  1767. "source": "https://github.com/php-fig/http-message/tree/2.0"
  1768. },
  1769. "install-path": "../psr/http-message"
  1770. },
  1771. {
  1772. "name": "psr/log",
  1773. "version": "3.0.2",
  1774. "version_normalized": "3.0.2.0",
  1775. "source": {
  1776. "type": "git",
  1777. "url": "https://github.com/php-fig/log.git",
  1778. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1779. },
  1780. "dist": {
  1781. "type": "zip",
  1782. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1783. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1784. "shasum": ""
  1785. },
  1786. "require": {
  1787. "php": ">=8.0.0"
  1788. },
  1789. "time": "2024-09-11T13:17:53+00:00",
  1790. "type": "library",
  1791. "extra": {
  1792. "branch-alias": {
  1793. "dev-master": "3.x-dev"
  1794. }
  1795. },
  1796. "installation-source": "dist",
  1797. "autoload": {
  1798. "psr-4": {
  1799. "Psr\\Log\\": "src"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "PHP-FIG",
  1809. "homepage": "https://www.php-fig.org/"
  1810. }
  1811. ],
  1812. "description": "Common interface for logging libraries",
  1813. "homepage": "https://github.com/php-fig/log",
  1814. "keywords": [
  1815. "log",
  1816. "psr",
  1817. "psr-3"
  1818. ],
  1819. "support": {
  1820. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1821. },
  1822. "install-path": "../psr/log"
  1823. },
  1824. {
  1825. "name": "ralouphie/getallheaders",
  1826. "version": "3.0.3",
  1827. "version_normalized": "3.0.3.0",
  1828. "source": {
  1829. "type": "git",
  1830. "url": "https://github.com/ralouphie/getallheaders.git",
  1831. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1832. },
  1833. "dist": {
  1834. "type": "zip",
  1835. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1836. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1837. "shasum": "",
  1838. "mirrors": [
  1839. {
  1840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1841. "preferred": true
  1842. }
  1843. ]
  1844. },
  1845. "require": {
  1846. "php": ">=5.6"
  1847. },
  1848. "require-dev": {
  1849. "php-coveralls/php-coveralls": "^2.1",
  1850. "phpunit/phpunit": "^5 || ^6.5"
  1851. },
  1852. "time": "2019-03-08T08:55:37+00:00",
  1853. "type": "library",
  1854. "installation-source": "dist",
  1855. "autoload": {
  1856. "files": [
  1857. "src/getallheaders.php"
  1858. ]
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "MIT"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "Ralph Khattar",
  1867. "email": "[email protected]"
  1868. }
  1869. ],
  1870. "description": "A polyfill for getallheaders.",
  1871. "install-path": "../ralouphie/getallheaders"
  1872. },
  1873. {
  1874. "name": "sebastian/cli-parser",
  1875. "version": "2.0.1",
  1876. "version_normalized": "2.0.1.0",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  1880. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  1885. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "php": ">=8.1"
  1890. },
  1891. "require-dev": {
  1892. "phpunit/phpunit": "^10.0"
  1893. },
  1894. "time": "2024-03-02T07:12:49+00:00",
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-main": "2.0-dev"
  1899. }
  1900. },
  1901. "installation-source": "dist",
  1902. "autoload": {
  1903. "classmap": [
  1904. "src/"
  1905. ]
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "BSD-3-Clause"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Sebastian Bergmann",
  1914. "email": "[email protected]",
  1915. "role": "lead"
  1916. }
  1917. ],
  1918. "description": "Library for parsing CLI options",
  1919. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  1920. "support": {
  1921. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  1922. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  1923. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  1924. },
  1925. "funding": [
  1926. {
  1927. "url": "https://github.com/sebastianbergmann",
  1928. "type": "github"
  1929. }
  1930. ],
  1931. "install-path": "../sebastian/cli-parser"
  1932. },
  1933. {
  1934. "name": "sebastian/code-unit",
  1935. "version": "2.0.0",
  1936. "version_normalized": "2.0.0.0",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/sebastianbergmann/code-unit.git",
  1940. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  1945. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "php": ">=8.1"
  1950. },
  1951. "require-dev": {
  1952. "phpunit/phpunit": "^10.0"
  1953. },
  1954. "time": "2023-02-03T06:58:43+00:00",
  1955. "type": "library",
  1956. "extra": {
  1957. "branch-alias": {
  1958. "dev-main": "2.0-dev"
  1959. }
  1960. },
  1961. "installation-source": "dist",
  1962. "autoload": {
  1963. "classmap": [
  1964. "src/"
  1965. ]
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "BSD-3-Clause"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Sebastian Bergmann",
  1974. "email": "[email protected]",
  1975. "role": "lead"
  1976. }
  1977. ],
  1978. "description": "Collection of value objects that represent the PHP code units",
  1979. "homepage": "https://github.com/sebastianbergmann/code-unit",
  1980. "support": {
  1981. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  1982. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  1983. },
  1984. "funding": [
  1985. {
  1986. "url": "https://github.com/sebastianbergmann",
  1987. "type": "github"
  1988. }
  1989. ],
  1990. "install-path": "../sebastian/code-unit"
  1991. },
  1992. {
  1993. "name": "sebastian/code-unit-reverse-lookup",
  1994. "version": "3.0.0",
  1995. "version_normalized": "3.0.0.0",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1999. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  2004. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  2005. "shasum": ""
  2006. },
  2007. "require": {
  2008. "php": ">=8.1"
  2009. },
  2010. "require-dev": {
  2011. "phpunit/phpunit": "^10.0"
  2012. },
  2013. "time": "2023-02-03T06:59:15+00:00",
  2014. "type": "library",
  2015. "extra": {
  2016. "branch-alias": {
  2017. "dev-main": "3.0-dev"
  2018. }
  2019. },
  2020. "installation-source": "dist",
  2021. "autoload": {
  2022. "classmap": [
  2023. "src/"
  2024. ]
  2025. },
  2026. "notification-url": "https://packagist.org/downloads/",
  2027. "license": [
  2028. "BSD-3-Clause"
  2029. ],
  2030. "authors": [
  2031. {
  2032. "name": "Sebastian Bergmann",
  2033. "email": "[email protected]"
  2034. }
  2035. ],
  2036. "description": "Looks up which function or method a line of code belongs to",
  2037. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2038. "support": {
  2039. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  2040. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  2041. },
  2042. "funding": [
  2043. {
  2044. "url": "https://github.com/sebastianbergmann",
  2045. "type": "github"
  2046. }
  2047. ],
  2048. "install-path": "../sebastian/code-unit-reverse-lookup"
  2049. },
  2050. {
  2051. "name": "sebastian/comparator",
  2052. "version": "5.0.5",
  2053. "version_normalized": "5.0.5.0",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/sebastianbergmann/comparator.git",
  2057. "reference": "55dfef806eb7dfeb6e7a6935601fef866f8ca48d"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55dfef806eb7dfeb6e7a6935601fef866f8ca48d",
  2062. "reference": "55dfef806eb7dfeb6e7a6935601fef866f8ca48d",
  2063. "shasum": ""
  2064. },
  2065. "require": {
  2066. "ext-dom": "*",
  2067. "ext-mbstring": "*",
  2068. "php": ">=8.1",
  2069. "sebastian/diff": "^5.0",
  2070. "sebastian/exporter": "^5.0"
  2071. },
  2072. "require-dev": {
  2073. "phpunit/phpunit": "^10.5"
  2074. },
  2075. "time": "2026-01-24T09:25:16+00:00",
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-main": "5.0-dev"
  2080. }
  2081. },
  2082. "installation-source": "dist",
  2083. "autoload": {
  2084. "classmap": [
  2085. "src/"
  2086. ]
  2087. },
  2088. "notification-url": "https://packagist.org/downloads/",
  2089. "license": [
  2090. "BSD-3-Clause"
  2091. ],
  2092. "authors": [
  2093. {
  2094. "name": "Sebastian Bergmann",
  2095. "email": "[email protected]"
  2096. },
  2097. {
  2098. "name": "Jeff Welch",
  2099. "email": "[email protected]"
  2100. },
  2101. {
  2102. "name": "Volker Dusch",
  2103. "email": "[email protected]"
  2104. },
  2105. {
  2106. "name": "Bernhard Schussek",
  2107. "email": "[email protected]"
  2108. }
  2109. ],
  2110. "description": "Provides the functionality to compare PHP values for equality",
  2111. "homepage": "https://github.com/sebastianbergmann/comparator",
  2112. "keywords": [
  2113. "comparator",
  2114. "compare",
  2115. "equality"
  2116. ],
  2117. "support": {
  2118. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2119. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  2120. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.5"
  2121. },
  2122. "funding": [
  2123. {
  2124. "url": "https://github.com/sebastianbergmann",
  2125. "type": "github"
  2126. },
  2127. {
  2128. "url": "https://liberapay.com/sebastianbergmann",
  2129. "type": "liberapay"
  2130. },
  2131. {
  2132. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  2133. "type": "thanks_dev"
  2134. },
  2135. {
  2136. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  2137. "type": "tidelift"
  2138. }
  2139. ],
  2140. "install-path": "../sebastian/comparator"
  2141. },
  2142. {
  2143. "name": "sebastian/complexity",
  2144. "version": "3.2.0",
  2145. "version_normalized": "3.2.0.0",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/sebastianbergmann/complexity.git",
  2149. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  2154. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  2155. "shasum": ""
  2156. },
  2157. "require": {
  2158. "nikic/php-parser": "^4.18 || ^5.0",
  2159. "php": ">=8.1"
  2160. },
  2161. "require-dev": {
  2162. "phpunit/phpunit": "^10.0"
  2163. },
  2164. "time": "2023-12-21T08:37:17+00:00",
  2165. "type": "library",
  2166. "extra": {
  2167. "branch-alias": {
  2168. "dev-main": "3.2-dev"
  2169. }
  2170. },
  2171. "installation-source": "dist",
  2172. "autoload": {
  2173. "classmap": [
  2174. "src/"
  2175. ]
  2176. },
  2177. "notification-url": "https://packagist.org/downloads/",
  2178. "license": [
  2179. "BSD-3-Clause"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "Sebastian Bergmann",
  2184. "email": "[email protected]",
  2185. "role": "lead"
  2186. }
  2187. ],
  2188. "description": "Library for calculating the complexity of PHP code units",
  2189. "homepage": "https://github.com/sebastianbergmann/complexity",
  2190. "support": {
  2191. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  2192. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  2193. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  2194. },
  2195. "funding": [
  2196. {
  2197. "url": "https://github.com/sebastianbergmann",
  2198. "type": "github"
  2199. }
  2200. ],
  2201. "install-path": "../sebastian/complexity"
  2202. },
  2203. {
  2204. "name": "sebastian/diff",
  2205. "version": "5.1.1",
  2206. "version_normalized": "5.1.1.0",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://github.com/sebastianbergmann/diff.git",
  2210. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  2215. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  2216. "shasum": ""
  2217. },
  2218. "require": {
  2219. "php": ">=8.1"
  2220. },
  2221. "require-dev": {
  2222. "phpunit/phpunit": "^10.0",
  2223. "symfony/process": "^6.4"
  2224. },
  2225. "time": "2024-03-02T07:15:17+00:00",
  2226. "type": "library",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-main": "5.1-dev"
  2230. }
  2231. },
  2232. "installation-source": "dist",
  2233. "autoload": {
  2234. "classmap": [
  2235. "src/"
  2236. ]
  2237. },
  2238. "notification-url": "https://packagist.org/downloads/",
  2239. "license": [
  2240. "BSD-3-Clause"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Sebastian Bergmann",
  2245. "email": "[email protected]"
  2246. },
  2247. {
  2248. "name": "Kore Nordmann",
  2249. "email": "[email protected]"
  2250. }
  2251. ],
  2252. "description": "Diff implementation",
  2253. "homepage": "https://github.com/sebastianbergmann/diff",
  2254. "keywords": [
  2255. "diff",
  2256. "udiff",
  2257. "unidiff",
  2258. "unified diff"
  2259. ],
  2260. "support": {
  2261. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2262. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  2263. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  2264. },
  2265. "funding": [
  2266. {
  2267. "url": "https://github.com/sebastianbergmann",
  2268. "type": "github"
  2269. }
  2270. ],
  2271. "install-path": "../sebastian/diff"
  2272. },
  2273. {
  2274. "name": "sebastian/environment",
  2275. "version": "6.1.0",
  2276. "version_normalized": "6.1.0.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://github.com/sebastianbergmann/environment.git",
  2280. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  2285. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  2286. "shasum": ""
  2287. },
  2288. "require": {
  2289. "php": ">=8.1"
  2290. },
  2291. "require-dev": {
  2292. "phpunit/phpunit": "^10.0"
  2293. },
  2294. "suggest": {
  2295. "ext-posix": "*"
  2296. },
  2297. "time": "2024-03-23T08:47:14+00:00",
  2298. "type": "library",
  2299. "extra": {
  2300. "branch-alias": {
  2301. "dev-main": "6.1-dev"
  2302. }
  2303. },
  2304. "installation-source": "dist",
  2305. "autoload": {
  2306. "classmap": [
  2307. "src/"
  2308. ]
  2309. },
  2310. "notification-url": "https://packagist.org/downloads/",
  2311. "license": [
  2312. "BSD-3-Clause"
  2313. ],
  2314. "authors": [
  2315. {
  2316. "name": "Sebastian Bergmann",
  2317. "email": "[email protected]"
  2318. }
  2319. ],
  2320. "description": "Provides functionality to handle HHVM/PHP environments",
  2321. "homepage": "https://github.com/sebastianbergmann/environment",
  2322. "keywords": [
  2323. "Xdebug",
  2324. "environment",
  2325. "hhvm"
  2326. ],
  2327. "support": {
  2328. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2329. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  2330. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  2331. },
  2332. "funding": [
  2333. {
  2334. "url": "https://github.com/sebastianbergmann",
  2335. "type": "github"
  2336. }
  2337. ],
  2338. "install-path": "../sebastian/environment"
  2339. },
  2340. {
  2341. "name": "sebastian/exporter",
  2342. "version": "5.1.4",
  2343. "version_normalized": "5.1.4.0",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/sebastianbergmann/exporter.git",
  2347. "reference": "0735b90f4da94969541dac1da743446e276defa6"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0735b90f4da94969541dac1da743446e276defa6",
  2352. "reference": "0735b90f4da94969541dac1da743446e276defa6",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "ext-mbstring": "*",
  2357. "php": ">=8.1",
  2358. "sebastian/recursion-context": "^5.0"
  2359. },
  2360. "require-dev": {
  2361. "phpunit/phpunit": "^10.5"
  2362. },
  2363. "time": "2025-09-24T06:09:11+00:00",
  2364. "type": "library",
  2365. "extra": {
  2366. "branch-alias": {
  2367. "dev-main": "5.1-dev"
  2368. }
  2369. },
  2370. "installation-source": "dist",
  2371. "autoload": {
  2372. "classmap": [
  2373. "src/"
  2374. ]
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "BSD-3-Clause"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Sebastian Bergmann",
  2383. "email": "[email protected]"
  2384. },
  2385. {
  2386. "name": "Jeff Welch",
  2387. "email": "[email protected]"
  2388. },
  2389. {
  2390. "name": "Volker Dusch",
  2391. "email": "[email protected]"
  2392. },
  2393. {
  2394. "name": "Adam Harvey",
  2395. "email": "[email protected]"
  2396. },
  2397. {
  2398. "name": "Bernhard Schussek",
  2399. "email": "[email protected]"
  2400. }
  2401. ],
  2402. "description": "Provides the functionality to export PHP variables for visualization",
  2403. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  2404. "keywords": [
  2405. "export",
  2406. "exporter"
  2407. ],
  2408. "support": {
  2409. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  2410. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  2411. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.4"
  2412. },
  2413. "funding": [
  2414. {
  2415. "url": "https://github.com/sebastianbergmann",
  2416. "type": "github"
  2417. },
  2418. {
  2419. "url": "https://liberapay.com/sebastianbergmann",
  2420. "type": "liberapay"
  2421. },
  2422. {
  2423. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  2424. "type": "thanks_dev"
  2425. },
  2426. {
  2427. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  2428. "type": "tidelift"
  2429. }
  2430. ],
  2431. "install-path": "../sebastian/exporter"
  2432. },
  2433. {
  2434. "name": "sebastian/global-state",
  2435. "version": "6.0.2",
  2436. "version_normalized": "6.0.2.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/sebastianbergmann/global-state.git",
  2440. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  2445. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "php": ">=8.1",
  2450. "sebastian/object-reflector": "^3.0",
  2451. "sebastian/recursion-context": "^5.0"
  2452. },
  2453. "require-dev": {
  2454. "ext-dom": "*",
  2455. "phpunit/phpunit": "^10.0"
  2456. },
  2457. "time": "2024-03-02T07:19:19+00:00",
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-main": "6.0-dev"
  2462. }
  2463. },
  2464. "installation-source": "dist",
  2465. "autoload": {
  2466. "classmap": [
  2467. "src/"
  2468. ]
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "BSD-3-Clause"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Sebastian Bergmann",
  2477. "email": "[email protected]"
  2478. }
  2479. ],
  2480. "description": "Snapshotting of global state",
  2481. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  2482. "keywords": [
  2483. "global state"
  2484. ],
  2485. "support": {
  2486. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2487. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  2488. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  2489. },
  2490. "funding": [
  2491. {
  2492. "url": "https://github.com/sebastianbergmann",
  2493. "type": "github"
  2494. }
  2495. ],
  2496. "install-path": "../sebastian/global-state"
  2497. },
  2498. {
  2499. "name": "sebastian/lines-of-code",
  2500. "version": "2.0.2",
  2501. "version_normalized": "2.0.2.0",
  2502. "source": {
  2503. "type": "git",
  2504. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2505. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  2506. },
  2507. "dist": {
  2508. "type": "zip",
  2509. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  2510. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  2511. "shasum": ""
  2512. },
  2513. "require": {
  2514. "nikic/php-parser": "^4.18 || ^5.0",
  2515. "php": ">=8.1"
  2516. },
  2517. "require-dev": {
  2518. "phpunit/phpunit": "^10.0"
  2519. },
  2520. "time": "2023-12-21T08:38:20+00:00",
  2521. "type": "library",
  2522. "extra": {
  2523. "branch-alias": {
  2524. "dev-main": "2.0-dev"
  2525. }
  2526. },
  2527. "installation-source": "dist",
  2528. "autoload": {
  2529. "classmap": [
  2530. "src/"
  2531. ]
  2532. },
  2533. "notification-url": "https://packagist.org/downloads/",
  2534. "license": [
  2535. "BSD-3-Clause"
  2536. ],
  2537. "authors": [
  2538. {
  2539. "name": "Sebastian Bergmann",
  2540. "email": "[email protected]",
  2541. "role": "lead"
  2542. }
  2543. ],
  2544. "description": "Library for counting the lines of code in PHP source code",
  2545. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2546. "support": {
  2547. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  2548. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  2549. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  2550. },
  2551. "funding": [
  2552. {
  2553. "url": "https://github.com/sebastianbergmann",
  2554. "type": "github"
  2555. }
  2556. ],
  2557. "install-path": "../sebastian/lines-of-code"
  2558. },
  2559. {
  2560. "name": "sebastian/object-enumerator",
  2561. "version": "5.0.0",
  2562. "version_normalized": "5.0.0.0",
  2563. "source": {
  2564. "type": "git",
  2565. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2566. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  2567. },
  2568. "dist": {
  2569. "type": "zip",
  2570. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  2571. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  2572. "shasum": ""
  2573. },
  2574. "require": {
  2575. "php": ">=8.1",
  2576. "sebastian/object-reflector": "^3.0",
  2577. "sebastian/recursion-context": "^5.0"
  2578. },
  2579. "require-dev": {
  2580. "phpunit/phpunit": "^10.0"
  2581. },
  2582. "time": "2023-02-03T07:08:32+00:00",
  2583. "type": "library",
  2584. "extra": {
  2585. "branch-alias": {
  2586. "dev-main": "5.0-dev"
  2587. }
  2588. },
  2589. "installation-source": "dist",
  2590. "autoload": {
  2591. "classmap": [
  2592. "src/"
  2593. ]
  2594. },
  2595. "notification-url": "https://packagist.org/downloads/",
  2596. "license": [
  2597. "BSD-3-Clause"
  2598. ],
  2599. "authors": [
  2600. {
  2601. "name": "Sebastian Bergmann",
  2602. "email": "[email protected]"
  2603. }
  2604. ],
  2605. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2606. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2607. "support": {
  2608. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  2609. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  2610. },
  2611. "funding": [
  2612. {
  2613. "url": "https://github.com/sebastianbergmann",
  2614. "type": "github"
  2615. }
  2616. ],
  2617. "install-path": "../sebastian/object-enumerator"
  2618. },
  2619. {
  2620. "name": "sebastian/object-reflector",
  2621. "version": "3.0.0",
  2622. "version_normalized": "3.0.0.0",
  2623. "source": {
  2624. "type": "git",
  2625. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2626. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  2627. },
  2628. "dist": {
  2629. "type": "zip",
  2630. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  2631. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  2632. "shasum": ""
  2633. },
  2634. "require": {
  2635. "php": ">=8.1"
  2636. },
  2637. "require-dev": {
  2638. "phpunit/phpunit": "^10.0"
  2639. },
  2640. "time": "2023-02-03T07:06:18+00:00",
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-main": "3.0-dev"
  2645. }
  2646. },
  2647. "installation-source": "dist",
  2648. "autoload": {
  2649. "classmap": [
  2650. "src/"
  2651. ]
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "BSD-3-Clause"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Sebastian Bergmann",
  2660. "email": "[email protected]"
  2661. }
  2662. ],
  2663. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2664. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2665. "support": {
  2666. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  2667. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  2668. },
  2669. "funding": [
  2670. {
  2671. "url": "https://github.com/sebastianbergmann",
  2672. "type": "github"
  2673. }
  2674. ],
  2675. "install-path": "../sebastian/object-reflector"
  2676. },
  2677. {
  2678. "name": "sebastian/recursion-context",
  2679. "version": "5.0.1",
  2680. "version_normalized": "5.0.1.0",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2684. "reference": "47e34210757a2f37a97dcd207d032e1b01e64c7a"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/47e34210757a2f37a97dcd207d032e1b01e64c7a",
  2689. "reference": "47e34210757a2f37a97dcd207d032e1b01e64c7a",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "php": ">=8.1"
  2694. },
  2695. "require-dev": {
  2696. "phpunit/phpunit": "^10.5"
  2697. },
  2698. "time": "2025-08-10T07:50:56+00:00",
  2699. "type": "library",
  2700. "extra": {
  2701. "branch-alias": {
  2702. "dev-main": "5.0-dev"
  2703. }
  2704. },
  2705. "installation-source": "dist",
  2706. "autoload": {
  2707. "classmap": [
  2708. "src/"
  2709. ]
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "BSD-3-Clause"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Sebastian Bergmann",
  2718. "email": "[email protected]"
  2719. },
  2720. {
  2721. "name": "Jeff Welch",
  2722. "email": "[email protected]"
  2723. },
  2724. {
  2725. "name": "Adam Harvey",
  2726. "email": "[email protected]"
  2727. }
  2728. ],
  2729. "description": "Provides functionality to recursively process PHP variables",
  2730. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  2731. "support": {
  2732. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2733. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  2734. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.1"
  2735. },
  2736. "funding": [
  2737. {
  2738. "url": "https://github.com/sebastianbergmann",
  2739. "type": "github"
  2740. },
  2741. {
  2742. "url": "https://liberapay.com/sebastianbergmann",
  2743. "type": "liberapay"
  2744. },
  2745. {
  2746. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  2747. "type": "thanks_dev"
  2748. },
  2749. {
  2750. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  2751. "type": "tidelift"
  2752. }
  2753. ],
  2754. "install-path": "../sebastian/recursion-context"
  2755. },
  2756. {
  2757. "name": "sebastian/type",
  2758. "version": "4.0.0",
  2759. "version_normalized": "4.0.0.0",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/sebastianbergmann/type.git",
  2763. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  2768. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "php": ">=8.1"
  2773. },
  2774. "require-dev": {
  2775. "phpunit/phpunit": "^10.0"
  2776. },
  2777. "time": "2023-02-03T07:10:45+00:00",
  2778. "type": "library",
  2779. "extra": {
  2780. "branch-alias": {
  2781. "dev-main": "4.0-dev"
  2782. }
  2783. },
  2784. "installation-source": "dist",
  2785. "autoload": {
  2786. "classmap": [
  2787. "src/"
  2788. ]
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "BSD-3-Clause"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Sebastian Bergmann",
  2797. "email": "[email protected]",
  2798. "role": "lead"
  2799. }
  2800. ],
  2801. "description": "Collection of value objects that represent the types of the PHP type system",
  2802. "homepage": "https://github.com/sebastianbergmann/type",
  2803. "support": {
  2804. "issues": "https://github.com/sebastianbergmann/type/issues",
  2805. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  2806. },
  2807. "funding": [
  2808. {
  2809. "url": "https://github.com/sebastianbergmann",
  2810. "type": "github"
  2811. }
  2812. ],
  2813. "install-path": "../sebastian/type"
  2814. },
  2815. {
  2816. "name": "sebastian/version",
  2817. "version": "4.0.1",
  2818. "version_normalized": "4.0.1.0",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://github.com/sebastianbergmann/version.git",
  2822. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  2827. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": ">=8.1"
  2832. },
  2833. "time": "2023-02-07T11:34:05+00:00",
  2834. "type": "library",
  2835. "extra": {
  2836. "branch-alias": {
  2837. "dev-main": "4.0-dev"
  2838. }
  2839. },
  2840. "installation-source": "dist",
  2841. "autoload": {
  2842. "classmap": [
  2843. "src/"
  2844. ]
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "BSD-3-Clause"
  2849. ],
  2850. "authors": [
  2851. {
  2852. "name": "Sebastian Bergmann",
  2853. "email": "[email protected]",
  2854. "role": "lead"
  2855. }
  2856. ],
  2857. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2858. "homepage": "https://github.com/sebastianbergmann/version",
  2859. "support": {
  2860. "issues": "https://github.com/sebastianbergmann/version/issues",
  2861. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  2862. },
  2863. "funding": [
  2864. {
  2865. "url": "https://github.com/sebastianbergmann",
  2866. "type": "github"
  2867. }
  2868. ],
  2869. "install-path": "../sebastian/version"
  2870. },
  2871. {
  2872. "name": "symfony/deprecation-contracts",
  2873. "version": "v3.6.0",
  2874. "version_normalized": "3.6.0.0",
  2875. "source": {
  2876. "type": "git",
  2877. "url": "https://github.com/symfony/deprecation-contracts.git",
  2878. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2879. },
  2880. "dist": {
  2881. "type": "zip",
  2882. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2883. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2884. "shasum": ""
  2885. },
  2886. "require": {
  2887. "php": ">=8.1"
  2888. },
  2889. "time": "2024-09-25T14:21:43+00:00",
  2890. "type": "library",
  2891. "extra": {
  2892. "thanks": {
  2893. "url": "https://github.com/symfony/contracts",
  2894. "name": "symfony/contracts"
  2895. },
  2896. "branch-alias": {
  2897. "dev-main": "3.6-dev"
  2898. }
  2899. },
  2900. "installation-source": "dist",
  2901. "autoload": {
  2902. "files": [
  2903. "function.php"
  2904. ]
  2905. },
  2906. "notification-url": "https://packagist.org/downloads/",
  2907. "license": [
  2908. "MIT"
  2909. ],
  2910. "authors": [
  2911. {
  2912. "name": "Nicolas Grekas",
  2913. "email": "[email protected]"
  2914. },
  2915. {
  2916. "name": "Symfony Community",
  2917. "homepage": "https://symfony.com/contributors"
  2918. }
  2919. ],
  2920. "description": "A generic function and convention to trigger deprecation notices",
  2921. "homepage": "https://symfony.com",
  2922. "support": {
  2923. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2924. },
  2925. "funding": [
  2926. {
  2927. "url": "https://symfony.com/sponsor",
  2928. "type": "custom"
  2929. },
  2930. {
  2931. "url": "https://github.com/fabpot",
  2932. "type": "github"
  2933. },
  2934. {
  2935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2936. "type": "tidelift"
  2937. }
  2938. ],
  2939. "install-path": "../symfony/deprecation-contracts"
  2940. },
  2941. {
  2942. "name": "symfony/polyfill-ctype",
  2943. "version": "v1.33.0",
  2944. "version_normalized": "1.33.0.0",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/symfony/polyfill-ctype.git",
  2948. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  2953. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "php": ">=7.2"
  2958. },
  2959. "provide": {
  2960. "ext-ctype": "*"
  2961. },
  2962. "suggest": {
  2963. "ext-ctype": "For best performance"
  2964. },
  2965. "time": "2024-09-09T11:45:10+00:00",
  2966. "type": "library",
  2967. "extra": {
  2968. "thanks": {
  2969. "url": "https://github.com/symfony/polyfill",
  2970. "name": "symfony/polyfill"
  2971. }
  2972. },
  2973. "installation-source": "dist",
  2974. "autoload": {
  2975. "files": [
  2976. "bootstrap.php"
  2977. ],
  2978. "psr-4": {
  2979. "Symfony\\Polyfill\\Ctype\\": ""
  2980. }
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "authors": [
  2987. {
  2988. "name": "Gert de Pagter",
  2989. "email": "[email protected]"
  2990. },
  2991. {
  2992. "name": "Symfony Community",
  2993. "homepage": "https://symfony.com/contributors"
  2994. }
  2995. ],
  2996. "description": "Symfony polyfill for ctype functions",
  2997. "homepage": "https://symfony.com",
  2998. "keywords": [
  2999. "compatibility",
  3000. "ctype",
  3001. "polyfill",
  3002. "portable"
  3003. ],
  3004. "support": {
  3005. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  3006. },
  3007. "funding": [
  3008. {
  3009. "url": "https://symfony.com/sponsor",
  3010. "type": "custom"
  3011. },
  3012. {
  3013. "url": "https://github.com/fabpot",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://github.com/nicolas-grekas",
  3018. "type": "github"
  3019. },
  3020. {
  3021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3022. "type": "tidelift"
  3023. }
  3024. ],
  3025. "install-path": "../symfony/polyfill-ctype"
  3026. },
  3027. {
  3028. "name": "symfony/polyfill-mbstring",
  3029. "version": "v1.33.0",
  3030. "version_normalized": "1.33.0.0",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3034. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3039. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3040. "shasum": ""
  3041. },
  3042. "require": {
  3043. "ext-iconv": "*",
  3044. "php": ">=7.2"
  3045. },
  3046. "provide": {
  3047. "ext-mbstring": "*"
  3048. },
  3049. "suggest": {
  3050. "ext-mbstring": "For best performance"
  3051. },
  3052. "time": "2024-12-23T08:48:59+00:00",
  3053. "type": "library",
  3054. "extra": {
  3055. "thanks": {
  3056. "url": "https://github.com/symfony/polyfill",
  3057. "name": "symfony/polyfill"
  3058. }
  3059. },
  3060. "installation-source": "dist",
  3061. "autoload": {
  3062. "files": [
  3063. "bootstrap.php"
  3064. ],
  3065. "psr-4": {
  3066. "Symfony\\Polyfill\\Mbstring\\": ""
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Nicolas Grekas",
  3076. "email": "[email protected]"
  3077. },
  3078. {
  3079. "name": "Symfony Community",
  3080. "homepage": "https://symfony.com/contributors"
  3081. }
  3082. ],
  3083. "description": "Symfony polyfill for the Mbstring extension",
  3084. "homepage": "https://symfony.com",
  3085. "keywords": [
  3086. "compatibility",
  3087. "mbstring",
  3088. "polyfill",
  3089. "portable",
  3090. "shim"
  3091. ],
  3092. "support": {
  3093. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://symfony.com/sponsor",
  3098. "type": "custom"
  3099. },
  3100. {
  3101. "url": "https://github.com/fabpot",
  3102. "type": "github"
  3103. },
  3104. {
  3105. "url": "https://github.com/nicolas-grekas",
  3106. "type": "github"
  3107. },
  3108. {
  3109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3110. "type": "tidelift"
  3111. }
  3112. ],
  3113. "install-path": "../symfony/polyfill-mbstring"
  3114. },
  3115. {
  3116. "name": "symfony/polyfill-php80",
  3117. "version": "v1.33.0",
  3118. "version_normalized": "1.33.0.0",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/symfony/polyfill-php80.git",
  3122. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3127. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=7.2"
  3132. },
  3133. "time": "2025-01-02T08:10:11+00:00",
  3134. "type": "library",
  3135. "extra": {
  3136. "thanks": {
  3137. "url": "https://github.com/symfony/polyfill",
  3138. "name": "symfony/polyfill"
  3139. }
  3140. },
  3141. "installation-source": "dist",
  3142. "autoload": {
  3143. "files": [
  3144. "bootstrap.php"
  3145. ],
  3146. "psr-4": {
  3147. "Symfony\\Polyfill\\Php80\\": ""
  3148. },
  3149. "classmap": [
  3150. "Resources/stubs"
  3151. ]
  3152. },
  3153. "notification-url": "https://packagist.org/downloads/",
  3154. "license": [
  3155. "MIT"
  3156. ],
  3157. "authors": [
  3158. {
  3159. "name": "Ion Bazan",
  3160. "email": "[email protected]"
  3161. },
  3162. {
  3163. "name": "Nicolas Grekas",
  3164. "email": "[email protected]"
  3165. },
  3166. {
  3167. "name": "Symfony Community",
  3168. "homepage": "https://symfony.com/contributors"
  3169. }
  3170. ],
  3171. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3172. "homepage": "https://symfony.com",
  3173. "keywords": [
  3174. "compatibility",
  3175. "polyfill",
  3176. "portable",
  3177. "shim"
  3178. ],
  3179. "support": {
  3180. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  3181. },
  3182. "funding": [
  3183. {
  3184. "url": "https://symfony.com/sponsor",
  3185. "type": "custom"
  3186. },
  3187. {
  3188. "url": "https://github.com/fabpot",
  3189. "type": "github"
  3190. },
  3191. {
  3192. "url": "https://github.com/nicolas-grekas",
  3193. "type": "github"
  3194. },
  3195. {
  3196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3197. "type": "tidelift"
  3198. }
  3199. ],
  3200. "install-path": "../symfony/polyfill-php80"
  3201. },
  3202. {
  3203. "name": "theseer/tokenizer",
  3204. "version": "1.3.1",
  3205. "version_normalized": "1.3.1.0",
  3206. "source": {
  3207. "type": "git",
  3208. "url": "https://github.com/theseer/tokenizer.git",
  3209. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  3210. },
  3211. "dist": {
  3212. "type": "zip",
  3213. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  3214. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  3215. "shasum": ""
  3216. },
  3217. "require": {
  3218. "ext-dom": "*",
  3219. "ext-tokenizer": "*",
  3220. "ext-xmlwriter": "*",
  3221. "php": "^7.2 || ^8.0"
  3222. },
  3223. "time": "2025-11-17T20:03:58+00:00",
  3224. "type": "library",
  3225. "installation-source": "dist",
  3226. "autoload": {
  3227. "classmap": [
  3228. "src/"
  3229. ]
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "BSD-3-Clause"
  3234. ],
  3235. "authors": [
  3236. {
  3237. "name": "Arne Blankerts",
  3238. "email": "[email protected]",
  3239. "role": "Developer"
  3240. }
  3241. ],
  3242. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3243. "support": {
  3244. "issues": "https://github.com/theseer/tokenizer/issues",
  3245. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  3246. },
  3247. "funding": [
  3248. {
  3249. "url": "https://github.com/theseer",
  3250. "type": "github"
  3251. }
  3252. ],
  3253. "install-path": "../theseer/tokenizer"
  3254. },
  3255. {
  3256. "name": "vlucas/phpdotenv",
  3257. "version": "v5.6.3",
  3258. "version_normalized": "5.6.3.0",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/vlucas/phpdotenv.git",
  3262. "reference": "955e7815d677a3eaa7075231212f2110983adecc"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
  3267. "reference": "955e7815d677a3eaa7075231212f2110983adecc",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "ext-pcre": "*",
  3272. "graham-campbell/result-type": "^1.1.4",
  3273. "php": "^7.2.5 || ^8.0",
  3274. "phpoption/phpoption": "^1.9.5",
  3275. "symfony/polyfill-ctype": "^1.26",
  3276. "symfony/polyfill-mbstring": "^1.26",
  3277. "symfony/polyfill-php80": "^1.26"
  3278. },
  3279. "require-dev": {
  3280. "bamarni/composer-bin-plugin": "^1.8.2",
  3281. "ext-filter": "*",
  3282. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  3283. },
  3284. "suggest": {
  3285. "ext-filter": "Required to use the boolean validator."
  3286. },
  3287. "time": "2025-12-27T19:49:13+00:00",
  3288. "type": "library",
  3289. "extra": {
  3290. "bamarni-bin": {
  3291. "bin-links": true,
  3292. "forward-command": false
  3293. },
  3294. "branch-alias": {
  3295. "dev-master": "5.6-dev"
  3296. }
  3297. },
  3298. "installation-source": "dist",
  3299. "autoload": {
  3300. "psr-4": {
  3301. "Dotenv\\": "src/"
  3302. }
  3303. },
  3304. "notification-url": "https://packagist.org/downloads/",
  3305. "license": [
  3306. "BSD-3-Clause"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Graham Campbell",
  3311. "email": "[email protected]",
  3312. "homepage": "https://github.com/GrahamCampbell"
  3313. },
  3314. {
  3315. "name": "Vance Lucas",
  3316. "email": "[email protected]",
  3317. "homepage": "https://github.com/vlucas"
  3318. }
  3319. ],
  3320. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3321. "keywords": [
  3322. "dotenv",
  3323. "env",
  3324. "environment"
  3325. ],
  3326. "support": {
  3327. "issues": "https://github.com/vlucas/phpdotenv/issues",
  3328. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
  3329. },
  3330. "funding": [
  3331. {
  3332. "url": "https://github.com/GrahamCampbell",
  3333. "type": "github"
  3334. },
  3335. {
  3336. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  3337. "type": "tidelift"
  3338. }
  3339. ],
  3340. "install-path": "../vlucas/phpdotenv"
  3341. }
  3342. ],
  3343. "dev": true,
  3344. "dev-package-names": [
  3345. "myclabs/deep-copy",
  3346. "nikic/php-parser",
  3347. "phar-io/manifest",
  3348. "phar-io/version",
  3349. "phpunit/php-code-coverage",
  3350. "phpunit/php-file-iterator",
  3351. "phpunit/php-invoker",
  3352. "phpunit/php-text-template",
  3353. "phpunit/php-timer",
  3354. "phpunit/phpunit",
  3355. "sebastian/cli-parser",
  3356. "sebastian/code-unit",
  3357. "sebastian/code-unit-reverse-lookup",
  3358. "sebastian/comparator",
  3359. "sebastian/complexity",
  3360. "sebastian/diff",
  3361. "sebastian/environment",
  3362. "sebastian/exporter",
  3363. "sebastian/global-state",
  3364. "sebastian/lines-of-code",
  3365. "sebastian/object-enumerator",
  3366. "sebastian/object-reflector",
  3367. "sebastian/recursion-context",
  3368. "sebastian/type",
  3369. "sebastian/version",
  3370. "theseer/tokenizer"
  3371. ]
  3372. }