installed.json 102 KB

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