installed.json 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565
  1. {
  2. "packages": [
  3. {
  4. "name": "doctrine/inflector",
  5. "version": "2.0.4",
  6. "version_normalized": "2.0.4.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/doctrine/inflector.git",
  10. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  15. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "^7.2 || ^8.0"
  20. },
  21. "require-dev": {
  22. "doctrine/coding-standard": "^8.2",
  23. "phpstan/phpstan": "^0.12",
  24. "phpstan/phpstan-phpunit": "^0.12",
  25. "phpstan/phpstan-strict-rules": "^0.12",
  26. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  27. "vimeo/psalm": "^4.10"
  28. },
  29. "time": "2021-10-22T20:16:43+00:00",
  30. "type": "library",
  31. "installation-source": "dist",
  32. "autoload": {
  33. "psr-4": {
  34. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Guilherme Blanco",
  44. "email": "guilhermeblanco@gmail.com"
  45. },
  46. {
  47. "name": "Roman Borschel",
  48. "email": "roman@code-factory.org"
  49. },
  50. {
  51. "name": "Benjamin Eberlei",
  52. "email": "kontakt@beberlei.de"
  53. },
  54. {
  55. "name": "Jonathan Wage",
  56. "email": "jonwage@gmail.com"
  57. },
  58. {
  59. "name": "Johannes Schmitt",
  60. "email": "schmittjoh@gmail.com"
  61. }
  62. ],
  63. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  64. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  65. "keywords": [
  66. "inflection",
  67. "inflector",
  68. "lowercase",
  69. "manipulation",
  70. "php",
  71. "plural",
  72. "singular",
  73. "strings",
  74. "uppercase",
  75. "words"
  76. ],
  77. "support": {
  78. "issues": "https://github.com/doctrine/inflector/issues",
  79. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  80. },
  81. "funding": [
  82. {
  83. "url": "https://www.doctrine-project.org/sponsorship.html",
  84. "type": "custom"
  85. },
  86. {
  87. "url": "https://www.patreon.com/phpdoctrine",
  88. "type": "patreon"
  89. },
  90. {
  91. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  92. "type": "tidelift"
  93. }
  94. ],
  95. "install-path": "../doctrine/inflector"
  96. },
  97. {
  98. "name": "doctrine/instantiator",
  99. "version": "1.4.1",
  100. "version_normalized": "1.4.1.0",
  101. "source": {
  102. "type": "git",
  103. "url": "https://github.com/doctrine/instantiator.git",
  104. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  105. },
  106. "dist": {
  107. "type": "zip",
  108. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  109. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  110. "shasum": ""
  111. },
  112. "require": {
  113. "php": "^7.1 || ^8.0"
  114. },
  115. "require-dev": {
  116. "doctrine/coding-standard": "^9",
  117. "ext-pdo": "*",
  118. "ext-phar": "*",
  119. "phpbench/phpbench": "^0.16 || ^1",
  120. "phpstan/phpstan": "^1.4",
  121. "phpstan/phpstan-phpunit": "^1",
  122. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  123. "vimeo/psalm": "^4.22"
  124. },
  125. "time": "2022-03-03T08:28:38+00:00",
  126. "type": "library",
  127. "installation-source": "dist",
  128. "autoload": {
  129. "psr-4": {
  130. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  131. }
  132. },
  133. "notification-url": "https://packagist.org/downloads/",
  134. "license": [
  135. "MIT"
  136. ],
  137. "authors": [
  138. {
  139. "name": "Marco Pivetta",
  140. "email": "ocramius@gmail.com",
  141. "homepage": "https://ocramius.github.io/"
  142. }
  143. ],
  144. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  145. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  146. "keywords": [
  147. "constructor",
  148. "instantiate"
  149. ],
  150. "support": {
  151. "issues": "https://github.com/doctrine/instantiator/issues",
  152. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  153. },
  154. "funding": [
  155. {
  156. "url": "https://www.doctrine-project.org/sponsorship.html",
  157. "type": "custom"
  158. },
  159. {
  160. "url": "https://www.patreon.com/phpdoctrine",
  161. "type": "patreon"
  162. },
  163. {
  164. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  165. "type": "tidelift"
  166. }
  167. ],
  168. "install-path": "../doctrine/instantiator"
  169. },
  170. {
  171. "name": "illuminate/collections",
  172. "version": "v8.83.23",
  173. "version_normalized": "8.83.23.0",
  174. "source": {
  175. "type": "git",
  176. "url": "https://github.com/illuminate/collections.git",
  177. "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4"
  178. },
  179. "dist": {
  180. "type": "zip",
  181. "url": "https://api.github.com/repos/illuminate/collections/zipball/705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
  182. "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
  183. "shasum": ""
  184. },
  185. "require": {
  186. "illuminate/contracts": "^8.0",
  187. "illuminate/macroable": "^8.0",
  188. "php": "^7.3|^8.0"
  189. },
  190. "suggest": {
  191. "symfony/var-dumper": "Required to use the dump method (^5.4)."
  192. },
  193. "time": "2022-06-23T15:29:49+00:00",
  194. "type": "library",
  195. "extra": {
  196. "branch-alias": {
  197. "dev-master": "8.x-dev"
  198. }
  199. },
  200. "installation-source": "dist",
  201. "autoload": {
  202. "files": [
  203. "helpers.php"
  204. ],
  205. "psr-4": {
  206. "Illuminate\\Support\\": ""
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "MIT"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Taylor Otwell",
  216. "email": "taylor@laravel.com"
  217. }
  218. ],
  219. "description": "The Illuminate Collections package.",
  220. "homepage": "https://laravel.com",
  221. "support": {
  222. "issues": "https://github.com/laravel/framework/issues",
  223. "source": "https://github.com/laravel/framework"
  224. },
  225. "install-path": "../illuminate/collections"
  226. },
  227. {
  228. "name": "illuminate/contracts",
  229. "version": "v8.83.23",
  230. "version_normalized": "8.83.23.0",
  231. "source": {
  232. "type": "git",
  233. "url": "https://github.com/illuminate/contracts.git",
  234. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d"
  235. },
  236. "dist": {
  237. "type": "zip",
  238. "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  239. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  240. "shasum": ""
  241. },
  242. "require": {
  243. "php": "^7.3|^8.0",
  244. "psr/container": "^1.0",
  245. "psr/simple-cache": "^1.0"
  246. },
  247. "time": "2022-01-13T14:47:47+00:00",
  248. "type": "library",
  249. "extra": {
  250. "branch-alias": {
  251. "dev-master": "8.x-dev"
  252. }
  253. },
  254. "installation-source": "dist",
  255. "autoload": {
  256. "psr-4": {
  257. "Illuminate\\Contracts\\": ""
  258. }
  259. },
  260. "notification-url": "https://packagist.org/downloads/",
  261. "license": [
  262. "MIT"
  263. ],
  264. "authors": [
  265. {
  266. "name": "Taylor Otwell",
  267. "email": "taylor@laravel.com"
  268. }
  269. ],
  270. "description": "The Illuminate Contracts package.",
  271. "homepage": "https://laravel.com",
  272. "support": {
  273. "issues": "https://github.com/laravel/framework/issues",
  274. "source": "https://github.com/laravel/framework"
  275. },
  276. "install-path": "../illuminate/contracts"
  277. },
  278. {
  279. "name": "illuminate/macroable",
  280. "version": "v8.83.23",
  281. "version_normalized": "8.83.23.0",
  282. "source": {
  283. "type": "git",
  284. "url": "https://github.com/illuminate/macroable.git",
  285. "reference": "aed81891a6e046fdee72edd497f822190f61c162"
  286. },
  287. "dist": {
  288. "type": "zip",
  289. "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
  290. "reference": "aed81891a6e046fdee72edd497f822190f61c162",
  291. "shasum": ""
  292. },
  293. "require": {
  294. "php": "^7.3|^8.0"
  295. },
  296. "time": "2021-11-16T13:57:03+00:00",
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-master": "8.x-dev"
  301. }
  302. },
  303. "installation-source": "dist",
  304. "autoload": {
  305. "psr-4": {
  306. "Illuminate\\Support\\": ""
  307. }
  308. },
  309. "notification-url": "https://packagist.org/downloads/",
  310. "license": [
  311. "MIT"
  312. ],
  313. "authors": [
  314. {
  315. "name": "Taylor Otwell",
  316. "email": "taylor@laravel.com"
  317. }
  318. ],
  319. "description": "The Illuminate Macroable package.",
  320. "homepage": "https://laravel.com",
  321. "support": {
  322. "issues": "https://github.com/laravel/framework/issues",
  323. "source": "https://github.com/laravel/framework"
  324. },
  325. "install-path": "../illuminate/macroable"
  326. },
  327. {
  328. "name": "illuminate/pagination",
  329. "version": "v8.83.23",
  330. "version_normalized": "8.83.23.0",
  331. "source": {
  332. "type": "git",
  333. "url": "https://github.com/illuminate/pagination.git",
  334. "reference": "16fe8dc35f9d18c58a3471469af656a02e9ab692"
  335. },
  336. "dist": {
  337. "type": "zip",
  338. "url": "https://api.github.com/repos/illuminate/pagination/zipball/16fe8dc35f9d18c58a3471469af656a02e9ab692",
  339. "reference": "16fe8dc35f9d18c58a3471469af656a02e9ab692",
  340. "shasum": ""
  341. },
  342. "require": {
  343. "ext-json": "*",
  344. "illuminate/collections": "^8.0",
  345. "illuminate/contracts": "^8.0",
  346. "illuminate/support": "^8.0",
  347. "php": "^7.3|^8.0"
  348. },
  349. "time": "2022-06-27T13:26:06+00:00",
  350. "type": "library",
  351. "extra": {
  352. "branch-alias": {
  353. "dev-master": "8.x-dev"
  354. }
  355. },
  356. "installation-source": "dist",
  357. "autoload": {
  358. "psr-4": {
  359. "Illuminate\\Pagination\\": ""
  360. }
  361. },
  362. "notification-url": "https://packagist.org/downloads/",
  363. "license": [
  364. "MIT"
  365. ],
  366. "authors": [
  367. {
  368. "name": "Taylor Otwell",
  369. "email": "taylor@laravel.com"
  370. }
  371. ],
  372. "description": "The Illuminate Pagination package.",
  373. "homepage": "https://laravel.com",
  374. "support": {
  375. "issues": "https://github.com/laravel/framework/issues",
  376. "source": "https://github.com/laravel/framework"
  377. },
  378. "install-path": "../illuminate/pagination"
  379. },
  380. {
  381. "name": "illuminate/support",
  382. "version": "v8.83.23",
  383. "version_normalized": "8.83.23.0",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/illuminate/support.git",
  387. "reference": "c3d643e77082786ae8a51502c757e9b1a3ee254e"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/illuminate/support/zipball/c3d643e77082786ae8a51502c757e9b1a3ee254e",
  392. "reference": "c3d643e77082786ae8a51502c757e9b1a3ee254e",
  393. "shasum": ""
  394. },
  395. "require": {
  396. "doctrine/inflector": "^1.4|^2.0",
  397. "ext-json": "*",
  398. "ext-mbstring": "*",
  399. "illuminate/collections": "^8.0",
  400. "illuminate/contracts": "^8.0",
  401. "illuminate/macroable": "^8.0",
  402. "nesbot/carbon": "^2.53.1",
  403. "php": "^7.3|^8.0",
  404. "voku/portable-ascii": "^1.6.1"
  405. },
  406. "conflict": {
  407. "tightenco/collect": "<5.5.33"
  408. },
  409. "suggest": {
  410. "illuminate/filesystem": "Required to use the composer class (^8.0).",
  411. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^1.3|^2.0.2).",
  412. "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
  413. "symfony/process": "Required to use the composer class (^5.4).",
  414. "symfony/var-dumper": "Required to use the dd function (^5.4).",
  415. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  416. },
  417. "time": "2022-06-27T13:26:30+00:00",
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-master": "8.x-dev"
  422. }
  423. },
  424. "installation-source": "dist",
  425. "autoload": {
  426. "files": [
  427. "helpers.php"
  428. ],
  429. "psr-4": {
  430. "Illuminate\\Support\\": ""
  431. }
  432. },
  433. "notification-url": "https://packagist.org/downloads/",
  434. "license": [
  435. "MIT"
  436. ],
  437. "authors": [
  438. {
  439. "name": "Taylor Otwell",
  440. "email": "taylor@laravel.com"
  441. }
  442. ],
  443. "description": "The Illuminate Support package.",
  444. "homepage": "https://laravel.com",
  445. "support": {
  446. "issues": "https://github.com/laravel/framework/issues",
  447. "source": "https://github.com/laravel/framework"
  448. },
  449. "install-path": "../illuminate/support"
  450. },
  451. {
  452. "name": "nesbot/carbon",
  453. "version": "2.61.0",
  454. "version_normalized": "2.61.0.0",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/briannesbitt/Carbon.git",
  458. "reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
  463. "reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "ext-json": "*",
  468. "php": "^7.1.8 || ^8.0",
  469. "symfony/polyfill-mbstring": "^1.0",
  470. "symfony/polyfill-php80": "^1.16",
  471. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  472. },
  473. "require-dev": {
  474. "doctrine/dbal": "^2.0 || ^3.0",
  475. "doctrine/orm": "^2.7",
  476. "friendsofphp/php-cs-fixer": "^3.0",
  477. "kylekatarnls/multi-tester": "^2.0",
  478. "ondrejmirtes/better-reflection": "*",
  479. "phpmd/phpmd": "^2.9",
  480. "phpstan/extension-installer": "^1.0",
  481. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  482. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  483. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  484. "squizlabs/php_codesniffer": "^3.4"
  485. },
  486. "time": "2022-08-06T12:41:24+00:00",
  487. "bin": [
  488. "bin/carbon"
  489. ],
  490. "type": "library",
  491. "extra": {
  492. "branch-alias": {
  493. "dev-3.x": "3.x-dev",
  494. "dev-master": "2.x-dev"
  495. },
  496. "laravel": {
  497. "providers": [
  498. "Carbon\\Laravel\\ServiceProvider"
  499. ]
  500. },
  501. "phpstan": {
  502. "includes": [
  503. "extension.neon"
  504. ]
  505. }
  506. },
  507. "installation-source": "dist",
  508. "autoload": {
  509. "psr-4": {
  510. "Carbon\\": "src/Carbon/"
  511. }
  512. },
  513. "notification-url": "https://packagist.org/downloads/",
  514. "license": [
  515. "MIT"
  516. ],
  517. "authors": [
  518. {
  519. "name": "Brian Nesbitt",
  520. "email": "brian@nesbot.com",
  521. "homepage": "https://markido.com"
  522. },
  523. {
  524. "name": "kylekatarnls",
  525. "homepage": "https://github.com/kylekatarnls"
  526. }
  527. ],
  528. "description": "An API extension for DateTime that supports 281 different languages.",
  529. "homepage": "https://carbon.nesbot.com",
  530. "keywords": [
  531. "date",
  532. "datetime",
  533. "time"
  534. ],
  535. "support": {
  536. "docs": "https://carbon.nesbot.com/docs",
  537. "issues": "https://github.com/briannesbitt/Carbon/issues",
  538. "source": "https://github.com/briannesbitt/Carbon"
  539. },
  540. "funding": [
  541. {
  542. "url": "https://github.com/sponsors/kylekatarnls",
  543. "type": "github"
  544. },
  545. {
  546. "url": "https://opencollective.com/Carbon#sponsor",
  547. "type": "opencollective"
  548. },
  549. {
  550. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  551. "type": "tidelift"
  552. }
  553. ],
  554. "install-path": "../nesbot/carbon"
  555. },
  556. {
  557. "name": "phpdocumentor/reflection-common",
  558. "version": "2.2.0",
  559. "version_normalized": "2.2.0.0",
  560. "source": {
  561. "type": "git",
  562. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  563. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  564. },
  565. "dist": {
  566. "type": "zip",
  567. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  568. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  569. "shasum": ""
  570. },
  571. "require": {
  572. "php": "^7.2 || ^8.0"
  573. },
  574. "time": "2020-06-27T09:03:43+00:00",
  575. "type": "library",
  576. "extra": {
  577. "branch-alias": {
  578. "dev-2.x": "2.x-dev"
  579. }
  580. },
  581. "installation-source": "dist",
  582. "autoload": {
  583. "psr-4": {
  584. "phpDocumentor\\Reflection\\": "src/"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Jaap van Otterdijk",
  594. "email": "opensource@ijaap.nl"
  595. }
  596. ],
  597. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  598. "homepage": "http://www.phpdoc.org",
  599. "keywords": [
  600. "FQSEN",
  601. "phpDocumentor",
  602. "phpdoc",
  603. "reflection",
  604. "static analysis"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  608. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  609. },
  610. "install-path": "../phpdocumentor/reflection-common"
  611. },
  612. {
  613. "name": "phpdocumentor/reflection-docblock",
  614. "version": "5.3.0",
  615. "version_normalized": "5.3.0.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  619. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  624. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "ext-filter": "*",
  629. "php": "^7.2 || ^8.0",
  630. "phpdocumentor/reflection-common": "^2.2",
  631. "phpdocumentor/type-resolver": "^1.3",
  632. "webmozart/assert": "^1.9.1"
  633. },
  634. "require-dev": {
  635. "mockery/mockery": "~1.3.2",
  636. "psalm/phar": "^4.8"
  637. },
  638. "time": "2021-10-19T17:43:47+00:00",
  639. "type": "library",
  640. "extra": {
  641. "branch-alias": {
  642. "dev-master": "5.x-dev"
  643. }
  644. },
  645. "installation-source": "dist",
  646. "autoload": {
  647. "psr-4": {
  648. "phpDocumentor\\Reflection\\": "src"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "authors": [
  656. {
  657. "name": "Mike van Riel",
  658. "email": "me@mikevanriel.com"
  659. },
  660. {
  661. "name": "Jaap van Otterdijk",
  662. "email": "account@ijaap.nl"
  663. }
  664. ],
  665. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  666. "support": {
  667. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  668. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  669. },
  670. "install-path": "../phpdocumentor/reflection-docblock"
  671. },
  672. {
  673. "name": "phpdocumentor/type-resolver",
  674. "version": "1.6.1",
  675. "version_normalized": "1.6.1.0",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  679. "reference": "77a32518733312af16a44300404e945338981de3"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  684. "reference": "77a32518733312af16a44300404e945338981de3",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "php": "^7.2 || ^8.0",
  689. "phpdocumentor/reflection-common": "^2.0"
  690. },
  691. "require-dev": {
  692. "ext-tokenizer": "*",
  693. "psalm/phar": "^4.8"
  694. },
  695. "time": "2022-03-15T21:29:03+00:00",
  696. "type": "library",
  697. "extra": {
  698. "branch-alias": {
  699. "dev-1.x": "1.x-dev"
  700. }
  701. },
  702. "installation-source": "dist",
  703. "autoload": {
  704. "psr-4": {
  705. "phpDocumentor\\Reflection\\": "src"
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "MIT"
  711. ],
  712. "authors": [
  713. {
  714. "name": "Mike van Riel",
  715. "email": "me@mikevanriel.com"
  716. }
  717. ],
  718. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  719. "support": {
  720. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  721. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  722. },
  723. "install-path": "../phpdocumentor/type-resolver"
  724. },
  725. {
  726. "name": "phpspec/prophecy",
  727. "version": "v1.10.3",
  728. "version_normalized": "1.10.3.0",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/phpspec/prophecy.git",
  732. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  737. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  738. "shasum": ""
  739. },
  740. "require": {
  741. "doctrine/instantiator": "^1.0.2",
  742. "php": "^5.3|^7.0",
  743. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  744. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  745. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  746. },
  747. "require-dev": {
  748. "phpspec/phpspec": "^2.5 || ^3.2",
  749. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  750. },
  751. "time": "2020-03-05T15:02:03+00:00",
  752. "type": "library",
  753. "extra": {
  754. "branch-alias": {
  755. "dev-master": "1.10.x-dev"
  756. }
  757. },
  758. "installation-source": "dist",
  759. "autoload": {
  760. "psr-4": {
  761. "Prophecy\\": "src/Prophecy"
  762. }
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "authors": [
  769. {
  770. "name": "Konstantin Kudryashov",
  771. "email": "ever.zet@gmail.com",
  772. "homepage": "http://everzet.com"
  773. },
  774. {
  775. "name": "Marcello Duarte",
  776. "email": "marcello.duarte@gmail.com"
  777. }
  778. ],
  779. "description": "Highly opinionated mocking framework for PHP 5.3+",
  780. "homepage": "https://github.com/phpspec/prophecy",
  781. "keywords": [
  782. "Double",
  783. "Dummy",
  784. "fake",
  785. "mock",
  786. "spy",
  787. "stub"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/phpspec/prophecy/issues",
  791. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  792. },
  793. "install-path": "../phpspec/prophecy"
  794. },
  795. {
  796. "name": "phpunit/php-code-coverage",
  797. "version": "2.2.4",
  798. "version_normalized": "2.2.4.0",
  799. "source": {
  800. "type": "git",
  801. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  802. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  803. },
  804. "dist": {
  805. "type": "zip",
  806. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  807. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  808. "shasum": ""
  809. },
  810. "require": {
  811. "php": ">=5.3.3",
  812. "phpunit/php-file-iterator": "~1.3",
  813. "phpunit/php-text-template": "~1.2",
  814. "phpunit/php-token-stream": "~1.3",
  815. "sebastian/environment": "^1.3.2",
  816. "sebastian/version": "~1.0"
  817. },
  818. "require-dev": {
  819. "ext-xdebug": ">=2.1.4",
  820. "phpunit/phpunit": "~4"
  821. },
  822. "suggest": {
  823. "ext-dom": "*",
  824. "ext-xdebug": ">=2.2.1",
  825. "ext-xmlwriter": "*"
  826. },
  827. "time": "2015-10-06T15:47:00+00:00",
  828. "type": "library",
  829. "extra": {
  830. "branch-alias": {
  831. "dev-master": "2.2.x-dev"
  832. }
  833. },
  834. "installation-source": "dist",
  835. "autoload": {
  836. "classmap": [
  837. "src/"
  838. ]
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "BSD-3-Clause"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Sebastian Bergmann",
  847. "email": "sb@sebastian-bergmann.de",
  848. "role": "lead"
  849. }
  850. ],
  851. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  852. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  853. "keywords": [
  854. "coverage",
  855. "testing",
  856. "xunit"
  857. ],
  858. "support": {
  859. "irc": "irc://irc.freenode.net/phpunit",
  860. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  861. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/2.2"
  862. },
  863. "install-path": "../phpunit/php-code-coverage"
  864. },
  865. {
  866. "name": "phpunit/php-file-iterator",
  867. "version": "1.4.5",
  868. "version_normalized": "1.4.5.0",
  869. "source": {
  870. "type": "git",
  871. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  872. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  873. },
  874. "dist": {
  875. "type": "zip",
  876. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  877. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  878. "shasum": ""
  879. },
  880. "require": {
  881. "php": ">=5.3.3"
  882. },
  883. "time": "2017-11-27T13:52:08+00:00",
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.4.x-dev"
  888. }
  889. },
  890. "installation-source": "dist",
  891. "autoload": {
  892. "classmap": [
  893. "src/"
  894. ]
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "BSD-3-Clause"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Sebastian Bergmann",
  903. "email": "sb@sebastian-bergmann.de",
  904. "role": "lead"
  905. }
  906. ],
  907. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  908. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  909. "keywords": [
  910. "filesystem",
  911. "iterator"
  912. ],
  913. "support": {
  914. "irc": "irc://irc.freenode.net/phpunit",
  915. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  916. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
  917. },
  918. "install-path": "../phpunit/php-file-iterator"
  919. },
  920. {
  921. "name": "phpunit/php-text-template",
  922. "version": "1.2.1",
  923. "version_normalized": "1.2.1.0",
  924. "source": {
  925. "type": "git",
  926. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  927. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  928. },
  929. "dist": {
  930. "type": "zip",
  931. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  932. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  933. "shasum": ""
  934. },
  935. "require": {
  936. "php": ">=5.3.3"
  937. },
  938. "time": "2015-06-21T13:50:34+00:00",
  939. "type": "library",
  940. "installation-source": "dist",
  941. "autoload": {
  942. "classmap": [
  943. "src/"
  944. ]
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "BSD-3-Clause"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Sebastian Bergmann",
  953. "email": "sebastian@phpunit.de",
  954. "role": "lead"
  955. }
  956. ],
  957. "description": "Simple template engine.",
  958. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  959. "keywords": [
  960. "template"
  961. ],
  962. "support": {
  963. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  964. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  965. },
  966. "install-path": "../phpunit/php-text-template"
  967. },
  968. {
  969. "name": "phpunit/php-timer",
  970. "version": "1.0.9",
  971. "version_normalized": "1.0.9.0",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/sebastianbergmann/php-timer.git",
  975. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  980. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "php": "^5.3.3 || ^7.0"
  985. },
  986. "require-dev": {
  987. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  988. },
  989. "time": "2017-02-26T11:10:40+00:00",
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-master": "1.0-dev"
  994. }
  995. },
  996. "installation-source": "dist",
  997. "autoload": {
  998. "classmap": [
  999. "src/"
  1000. ]
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "BSD-3-Clause"
  1005. ],
  1006. "authors": [
  1007. {
  1008. "name": "Sebastian Bergmann",
  1009. "email": "sb@sebastian-bergmann.de",
  1010. "role": "lead"
  1011. }
  1012. ],
  1013. "description": "Utility class for timing",
  1014. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1015. "keywords": [
  1016. "timer"
  1017. ],
  1018. "support": {
  1019. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1020. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  1021. },
  1022. "install-path": "../phpunit/php-timer"
  1023. },
  1024. {
  1025. "name": "phpunit/php-token-stream",
  1026. "version": "1.4.12",
  1027. "version_normalized": "1.4.12.0",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1031. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1036. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1037. "shasum": ""
  1038. },
  1039. "require": {
  1040. "ext-tokenizer": "*",
  1041. "php": ">=5.3.3"
  1042. },
  1043. "require-dev": {
  1044. "phpunit/phpunit": "~4.2"
  1045. },
  1046. "time": "2017-12-04T08:55:13+00:00",
  1047. "type": "library",
  1048. "extra": {
  1049. "branch-alias": {
  1050. "dev-master": "1.4-dev"
  1051. }
  1052. },
  1053. "installation-source": "dist",
  1054. "autoload": {
  1055. "classmap": [
  1056. "src/"
  1057. ]
  1058. },
  1059. "notification-url": "https://packagist.org/downloads/",
  1060. "license": [
  1061. "BSD-3-Clause"
  1062. ],
  1063. "authors": [
  1064. {
  1065. "name": "Sebastian Bergmann",
  1066. "email": "sebastian@phpunit.de"
  1067. }
  1068. ],
  1069. "description": "Wrapper around PHP's tokenizer extension.",
  1070. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1071. "keywords": [
  1072. "tokenizer"
  1073. ],
  1074. "support": {
  1075. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  1076. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/1.4"
  1077. },
  1078. "abandoned": true,
  1079. "install-path": "../phpunit/php-token-stream"
  1080. },
  1081. {
  1082. "name": "phpunit/phpunit",
  1083. "version": "4.8.36",
  1084. "version_normalized": "4.8.36.0",
  1085. "source": {
  1086. "type": "git",
  1087. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1088. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  1089. },
  1090. "dist": {
  1091. "type": "zip",
  1092. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  1093. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  1094. "shasum": ""
  1095. },
  1096. "require": {
  1097. "ext-dom": "*",
  1098. "ext-json": "*",
  1099. "ext-pcre": "*",
  1100. "ext-reflection": "*",
  1101. "ext-spl": "*",
  1102. "php": ">=5.3.3",
  1103. "phpspec/prophecy": "^1.3.1",
  1104. "phpunit/php-code-coverage": "~2.1",
  1105. "phpunit/php-file-iterator": "~1.4",
  1106. "phpunit/php-text-template": "~1.2",
  1107. "phpunit/php-timer": "^1.0.6",
  1108. "phpunit/phpunit-mock-objects": "~2.3",
  1109. "sebastian/comparator": "~1.2.2",
  1110. "sebastian/diff": "~1.2",
  1111. "sebastian/environment": "~1.3",
  1112. "sebastian/exporter": "~1.2",
  1113. "sebastian/global-state": "~1.0",
  1114. "sebastian/version": "~1.0",
  1115. "symfony/yaml": "~2.1|~3.0"
  1116. },
  1117. "suggest": {
  1118. "phpunit/php-invoker": "~1.1"
  1119. },
  1120. "time": "2017-06-21T08:07:12+00:00",
  1121. "bin": [
  1122. "phpunit"
  1123. ],
  1124. "type": "library",
  1125. "extra": {
  1126. "branch-alias": {
  1127. "dev-master": "4.8.x-dev"
  1128. }
  1129. },
  1130. "installation-source": "dist",
  1131. "autoload": {
  1132. "classmap": [
  1133. "src/"
  1134. ]
  1135. },
  1136. "notification-url": "https://packagist.org/downloads/",
  1137. "license": [
  1138. "BSD-3-Clause"
  1139. ],
  1140. "authors": [
  1141. {
  1142. "name": "Sebastian Bergmann",
  1143. "email": "sebastian@phpunit.de",
  1144. "role": "lead"
  1145. }
  1146. ],
  1147. "description": "The PHP Unit Testing framework.",
  1148. "homepage": "https://phpunit.de/",
  1149. "keywords": [
  1150. "phpunit",
  1151. "testing",
  1152. "xunit"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1156. "source": "https://github.com/sebastianbergmann/phpunit/tree/4.8.36"
  1157. },
  1158. "install-path": "../phpunit/phpunit"
  1159. },
  1160. {
  1161. "name": "phpunit/phpunit-mock-objects",
  1162. "version": "2.3.8",
  1163. "version_normalized": "2.3.8.0",
  1164. "source": {
  1165. "type": "git",
  1166. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1167. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1168. },
  1169. "dist": {
  1170. "type": "zip",
  1171. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1172. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1173. "shasum": ""
  1174. },
  1175. "require": {
  1176. "doctrine/instantiator": "^1.0.2",
  1177. "php": ">=5.3.3",
  1178. "phpunit/php-text-template": "~1.2",
  1179. "sebastian/exporter": "~1.2"
  1180. },
  1181. "require-dev": {
  1182. "phpunit/phpunit": "~4.4"
  1183. },
  1184. "suggest": {
  1185. "ext-soap": "*"
  1186. },
  1187. "time": "2015-10-02T06:51:40+00:00",
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "2.3.x-dev"
  1192. }
  1193. },
  1194. "installation-source": "dist",
  1195. "autoload": {
  1196. "classmap": [
  1197. "src/"
  1198. ]
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "BSD-3-Clause"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Sebastian Bergmann",
  1207. "email": "sb@sebastian-bergmann.de",
  1208. "role": "lead"
  1209. }
  1210. ],
  1211. "description": "Mock Object library for PHPUnit",
  1212. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1213. "keywords": [
  1214. "mock",
  1215. "xunit"
  1216. ],
  1217. "support": {
  1218. "irc": "irc://irc.freenode.net/phpunit",
  1219. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  1220. "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/2.3"
  1221. },
  1222. "abandoned": true,
  1223. "install-path": "../phpunit/phpunit-mock-objects"
  1224. },
  1225. {
  1226. "name": "psr/container",
  1227. "version": "1.1.2",
  1228. "version_normalized": "1.1.2.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/php-fig/container.git",
  1232. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1237. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": ">=7.4.0"
  1242. },
  1243. "time": "2021-11-05T16:50:12+00:00",
  1244. "type": "library",
  1245. "installation-source": "dist",
  1246. "autoload": {
  1247. "psr-4": {
  1248. "Psr\\Container\\": "src/"
  1249. }
  1250. },
  1251. "notification-url": "https://packagist.org/downloads/",
  1252. "license": [
  1253. "MIT"
  1254. ],
  1255. "authors": [
  1256. {
  1257. "name": "PHP-FIG",
  1258. "homepage": "https://www.php-fig.org/"
  1259. }
  1260. ],
  1261. "description": "Common Container Interface (PHP FIG PSR-11)",
  1262. "homepage": "https://github.com/php-fig/container",
  1263. "keywords": [
  1264. "PSR-11",
  1265. "container",
  1266. "container-interface",
  1267. "container-interop",
  1268. "psr"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/php-fig/container/issues",
  1272. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1273. },
  1274. "install-path": "../psr/container"
  1275. },
  1276. {
  1277. "name": "psr/simple-cache",
  1278. "version": "1.0.1",
  1279. "version_normalized": "1.0.1.0",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/php-fig/simple-cache.git",
  1283. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1288. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "php": ">=5.3.0"
  1293. },
  1294. "time": "2017-10-23T01:57:42+00:00",
  1295. "type": "library",
  1296. "extra": {
  1297. "branch-alias": {
  1298. "dev-master": "1.0.x-dev"
  1299. }
  1300. },
  1301. "installation-source": "dist",
  1302. "autoload": {
  1303. "psr-4": {
  1304. "Psr\\SimpleCache\\": "src/"
  1305. }
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "PHP-FIG",
  1314. "homepage": "http://www.php-fig.org/"
  1315. }
  1316. ],
  1317. "description": "Common interfaces for simple caching",
  1318. "keywords": [
  1319. "cache",
  1320. "caching",
  1321. "psr",
  1322. "psr-16",
  1323. "simple-cache"
  1324. ],
  1325. "support": {
  1326. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1327. },
  1328. "install-path": "../psr/simple-cache"
  1329. },
  1330. {
  1331. "name": "sebastian/comparator",
  1332. "version": "1.2.4",
  1333. "version_normalized": "1.2.4.0",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/sebastianbergmann/comparator.git",
  1337. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1342. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1343. "shasum": ""
  1344. },
  1345. "require": {
  1346. "php": ">=5.3.3",
  1347. "sebastian/diff": "~1.2",
  1348. "sebastian/exporter": "~1.2 || ~2.0"
  1349. },
  1350. "require-dev": {
  1351. "phpunit/phpunit": "~4.4"
  1352. },
  1353. "time": "2017-01-29T09:50:25+00:00",
  1354. "type": "library",
  1355. "extra": {
  1356. "branch-alias": {
  1357. "dev-master": "1.2.x-dev"
  1358. }
  1359. },
  1360. "installation-source": "dist",
  1361. "autoload": {
  1362. "classmap": [
  1363. "src/"
  1364. ]
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "BSD-3-Clause"
  1369. ],
  1370. "authors": [
  1371. {
  1372. "name": "Jeff Welch",
  1373. "email": "whatthejeff@gmail.com"
  1374. },
  1375. {
  1376. "name": "Volker Dusch",
  1377. "email": "github@wallbash.com"
  1378. },
  1379. {
  1380. "name": "Bernhard Schussek",
  1381. "email": "bschussek@2bepublished.at"
  1382. },
  1383. {
  1384. "name": "Sebastian Bergmann",
  1385. "email": "sebastian@phpunit.de"
  1386. }
  1387. ],
  1388. "description": "Provides the functionality to compare PHP values for equality",
  1389. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1390. "keywords": [
  1391. "comparator",
  1392. "compare",
  1393. "equality"
  1394. ],
  1395. "support": {
  1396. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1397. "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
  1398. },
  1399. "install-path": "../sebastian/comparator"
  1400. },
  1401. {
  1402. "name": "sebastian/diff",
  1403. "version": "1.4.3",
  1404. "version_normalized": "1.4.3.0",
  1405. "source": {
  1406. "type": "git",
  1407. "url": "https://github.com/sebastianbergmann/diff.git",
  1408. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1409. },
  1410. "dist": {
  1411. "type": "zip",
  1412. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1413. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1414. "shasum": ""
  1415. },
  1416. "require": {
  1417. "php": "^5.3.3 || ^7.0"
  1418. },
  1419. "require-dev": {
  1420. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1421. },
  1422. "time": "2017-05-22T07:24:03+00:00",
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "1.4-dev"
  1427. }
  1428. },
  1429. "installation-source": "dist",
  1430. "autoload": {
  1431. "classmap": [
  1432. "src/"
  1433. ]
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "BSD-3-Clause"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Kore Nordmann",
  1442. "email": "mail@kore-nordmann.de"
  1443. },
  1444. {
  1445. "name": "Sebastian Bergmann",
  1446. "email": "sebastian@phpunit.de"
  1447. }
  1448. ],
  1449. "description": "Diff implementation",
  1450. "homepage": "https://github.com/sebastianbergmann/diff",
  1451. "keywords": [
  1452. "diff"
  1453. ],
  1454. "support": {
  1455. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1456. "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
  1457. },
  1458. "install-path": "../sebastian/diff"
  1459. },
  1460. {
  1461. "name": "sebastian/environment",
  1462. "version": "1.3.8",
  1463. "version_normalized": "1.3.8.0",
  1464. "source": {
  1465. "type": "git",
  1466. "url": "https://github.com/sebastianbergmann/environment.git",
  1467. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1468. },
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1472. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": "^5.3.3 || ^7.0"
  1477. },
  1478. "require-dev": {
  1479. "phpunit/phpunit": "^4.8 || ^5.0"
  1480. },
  1481. "time": "2016-08-18T05:49:44+00:00",
  1482. "type": "library",
  1483. "extra": {
  1484. "branch-alias": {
  1485. "dev-master": "1.3.x-dev"
  1486. }
  1487. },
  1488. "installation-source": "dist",
  1489. "autoload": {
  1490. "classmap": [
  1491. "src/"
  1492. ]
  1493. },
  1494. "notification-url": "https://packagist.org/downloads/",
  1495. "license": [
  1496. "BSD-3-Clause"
  1497. ],
  1498. "authors": [
  1499. {
  1500. "name": "Sebastian Bergmann",
  1501. "email": "sebastian@phpunit.de"
  1502. }
  1503. ],
  1504. "description": "Provides functionality to handle HHVM/PHP environments",
  1505. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1506. "keywords": [
  1507. "Xdebug",
  1508. "environment",
  1509. "hhvm"
  1510. ],
  1511. "support": {
  1512. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1513. "source": "https://github.com/sebastianbergmann/environment/tree/1.3"
  1514. },
  1515. "install-path": "../sebastian/environment"
  1516. },
  1517. {
  1518. "name": "sebastian/exporter",
  1519. "version": "1.2.2",
  1520. "version_normalized": "1.2.2.0",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://github.com/sebastianbergmann/exporter.git",
  1524. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1529. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1530. "shasum": ""
  1531. },
  1532. "require": {
  1533. "php": ">=5.3.3",
  1534. "sebastian/recursion-context": "~1.0"
  1535. },
  1536. "require-dev": {
  1537. "ext-mbstring": "*",
  1538. "phpunit/phpunit": "~4.4"
  1539. },
  1540. "time": "2016-06-17T09:04:28+00:00",
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "1.3.x-dev"
  1545. }
  1546. },
  1547. "installation-source": "dist",
  1548. "autoload": {
  1549. "classmap": [
  1550. "src/"
  1551. ]
  1552. },
  1553. "notification-url": "https://packagist.org/downloads/",
  1554. "license": [
  1555. "BSD-3-Clause"
  1556. ],
  1557. "authors": [
  1558. {
  1559. "name": "Jeff Welch",
  1560. "email": "whatthejeff@gmail.com"
  1561. },
  1562. {
  1563. "name": "Volker Dusch",
  1564. "email": "github@wallbash.com"
  1565. },
  1566. {
  1567. "name": "Bernhard Schussek",
  1568. "email": "bschussek@2bepublished.at"
  1569. },
  1570. {
  1571. "name": "Sebastian Bergmann",
  1572. "email": "sebastian@phpunit.de"
  1573. },
  1574. {
  1575. "name": "Adam Harvey",
  1576. "email": "aharvey@php.net"
  1577. }
  1578. ],
  1579. "description": "Provides the functionality to export PHP variables for visualization",
  1580. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1581. "keywords": [
  1582. "export",
  1583. "exporter"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1587. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  1588. },
  1589. "install-path": "../sebastian/exporter"
  1590. },
  1591. {
  1592. "name": "sebastian/global-state",
  1593. "version": "1.1.1",
  1594. "version_normalized": "1.1.1.0",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/sebastianbergmann/global-state.git",
  1598. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1603. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "php": ">=5.3.3"
  1608. },
  1609. "require-dev": {
  1610. "phpunit/phpunit": "~4.2"
  1611. },
  1612. "suggest": {
  1613. "ext-uopz": "*"
  1614. },
  1615. "time": "2015-10-12T03:26:01+00:00",
  1616. "type": "library",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-master": "1.0-dev"
  1620. }
  1621. },
  1622. "installation-source": "dist",
  1623. "autoload": {
  1624. "classmap": [
  1625. "src/"
  1626. ]
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "BSD-3-Clause"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Sebastian Bergmann",
  1635. "email": "sebastian@phpunit.de"
  1636. }
  1637. ],
  1638. "description": "Snapshotting of global state",
  1639. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1640. "keywords": [
  1641. "global state"
  1642. ],
  1643. "support": {
  1644. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1645. "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
  1646. },
  1647. "install-path": "../sebastian/global-state"
  1648. },
  1649. {
  1650. "name": "sebastian/recursion-context",
  1651. "version": "1.0.5",
  1652. "version_normalized": "1.0.5.0",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1656. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1661. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1662. "shasum": ""
  1663. },
  1664. "require": {
  1665. "php": ">=5.3.3"
  1666. },
  1667. "require-dev": {
  1668. "phpunit/phpunit": "~4.4"
  1669. },
  1670. "time": "2016-10-03T07:41:43+00:00",
  1671. "type": "library",
  1672. "extra": {
  1673. "branch-alias": {
  1674. "dev-master": "1.0.x-dev"
  1675. }
  1676. },
  1677. "installation-source": "dist",
  1678. "autoload": {
  1679. "classmap": [
  1680. "src/"
  1681. ]
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "BSD-3-Clause"
  1686. ],
  1687. "authors": [
  1688. {
  1689. "name": "Jeff Welch",
  1690. "email": "whatthejeff@gmail.com"
  1691. },
  1692. {
  1693. "name": "Sebastian Bergmann",
  1694. "email": "sebastian@phpunit.de"
  1695. },
  1696. {
  1697. "name": "Adam Harvey",
  1698. "email": "aharvey@php.net"
  1699. }
  1700. ],
  1701. "description": "Provides functionality to recursively process PHP variables",
  1702. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1703. "support": {
  1704. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  1705. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  1706. },
  1707. "install-path": "../sebastian/recursion-context"
  1708. },
  1709. {
  1710. "name": "sebastian/version",
  1711. "version": "1.0.6",
  1712. "version_normalized": "1.0.6.0",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/sebastianbergmann/version.git",
  1716. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1721. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1722. "shasum": ""
  1723. },
  1724. "time": "2015-06-21T13:59:46+00:00",
  1725. "type": "library",
  1726. "installation-source": "dist",
  1727. "autoload": {
  1728. "classmap": [
  1729. "src/"
  1730. ]
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "BSD-3-Clause"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Sebastian Bergmann",
  1739. "email": "sebastian@phpunit.de",
  1740. "role": "lead"
  1741. }
  1742. ],
  1743. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1744. "homepage": "https://github.com/sebastianbergmann/version",
  1745. "support": {
  1746. "issues": "https://github.com/sebastianbergmann/version/issues",
  1747. "source": "https://github.com/sebastianbergmann/version/tree/1.0.6"
  1748. },
  1749. "install-path": "../sebastian/version"
  1750. },
  1751. {
  1752. "name": "symfony/deprecation-contracts",
  1753. "version": "v2.5.2",
  1754. "version_normalized": "2.5.2.0",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/symfony/deprecation-contracts.git",
  1758. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1763. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "php": ">=7.1"
  1768. },
  1769. "time": "2022-01-02T09:53:40+00:00",
  1770. "type": "library",
  1771. "extra": {
  1772. "branch-alias": {
  1773. "dev-main": "2.5-dev"
  1774. },
  1775. "thanks": {
  1776. "name": "symfony/contracts",
  1777. "url": "https://github.com/symfony/contracts"
  1778. }
  1779. },
  1780. "installation-source": "dist",
  1781. "autoload": {
  1782. "files": [
  1783. "function.php"
  1784. ]
  1785. },
  1786. "notification-url": "https://packagist.org/downloads/",
  1787. "license": [
  1788. "MIT"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Nicolas Grekas",
  1793. "email": "p@tchwork.com"
  1794. },
  1795. {
  1796. "name": "Symfony Community",
  1797. "homepage": "https://symfony.com/contributors"
  1798. }
  1799. ],
  1800. "description": "A generic function and convention to trigger deprecation notices",
  1801. "homepage": "https://symfony.com",
  1802. "support": {
  1803. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1804. },
  1805. "funding": [
  1806. {
  1807. "url": "https://symfony.com/sponsor",
  1808. "type": "custom"
  1809. },
  1810. {
  1811. "url": "https://github.com/fabpot",
  1812. "type": "github"
  1813. },
  1814. {
  1815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1816. "type": "tidelift"
  1817. }
  1818. ],
  1819. "install-path": "../symfony/deprecation-contracts"
  1820. },
  1821. {
  1822. "name": "symfony/http-foundation",
  1823. "version": "v5.4.11",
  1824. "version_normalized": "5.4.11.0",
  1825. "source": {
  1826. "type": "git",
  1827. "url": "https://github.com/symfony/http-foundation.git",
  1828. "reference": "0a5868e0999e9d47859ba3d918548ff6943e6389"
  1829. },
  1830. "dist": {
  1831. "type": "zip",
  1832. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0a5868e0999e9d47859ba3d918548ff6943e6389",
  1833. "reference": "0a5868e0999e9d47859ba3d918548ff6943e6389",
  1834. "shasum": ""
  1835. },
  1836. "require": {
  1837. "php": ">=7.2.5",
  1838. "symfony/deprecation-contracts": "^2.1|^3",
  1839. "symfony/polyfill-mbstring": "~1.1",
  1840. "symfony/polyfill-php80": "^1.16"
  1841. },
  1842. "require-dev": {
  1843. "predis/predis": "~1.0",
  1844. "symfony/cache": "^4.4|^5.0|^6.0",
  1845. "symfony/expression-language": "^4.4|^5.0|^6.0",
  1846. "symfony/mime": "^4.4|^5.0|^6.0"
  1847. },
  1848. "suggest": {
  1849. "symfony/mime": "To use the file extension guesser"
  1850. },
  1851. "time": "2022-07-20T13:00:38+00:00",
  1852. "type": "library",
  1853. "installation-source": "dist",
  1854. "autoload": {
  1855. "psr-4": {
  1856. "Symfony\\Component\\HttpFoundation\\": ""
  1857. },
  1858. "exclude-from-classmap": [
  1859. "/Tests/"
  1860. ]
  1861. },
  1862. "notification-url": "https://packagist.org/downloads/",
  1863. "license": [
  1864. "MIT"
  1865. ],
  1866. "authors": [
  1867. {
  1868. "name": "Fabien Potencier",
  1869. "email": "fabien@symfony.com"
  1870. },
  1871. {
  1872. "name": "Symfony Community",
  1873. "homepage": "https://symfony.com/contributors"
  1874. }
  1875. ],
  1876. "description": "Defines an object-oriented layer for the HTTP specification",
  1877. "homepage": "https://symfony.com",
  1878. "support": {
  1879. "source": "https://github.com/symfony/http-foundation/tree/v5.4.11"
  1880. },
  1881. "funding": [
  1882. {
  1883. "url": "https://symfony.com/sponsor",
  1884. "type": "custom"
  1885. },
  1886. {
  1887. "url": "https://github.com/fabpot",
  1888. "type": "github"
  1889. },
  1890. {
  1891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1892. "type": "tidelift"
  1893. }
  1894. ],
  1895. "install-path": "../symfony/http-foundation"
  1896. },
  1897. {
  1898. "name": "symfony/polyfill-ctype",
  1899. "version": "v1.26.0",
  1900. "version_normalized": "1.26.0.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/symfony/polyfill-ctype.git",
  1904. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  1909. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "php": ">=7.1"
  1914. },
  1915. "provide": {
  1916. "ext-ctype": "*"
  1917. },
  1918. "suggest": {
  1919. "ext-ctype": "For best performance"
  1920. },
  1921. "time": "2022-05-24T11:49:31+00:00",
  1922. "type": "library",
  1923. "extra": {
  1924. "branch-alias": {
  1925. "dev-main": "1.26-dev"
  1926. },
  1927. "thanks": {
  1928. "name": "symfony/polyfill",
  1929. "url": "https://github.com/symfony/polyfill"
  1930. }
  1931. },
  1932. "installation-source": "dist",
  1933. "autoload": {
  1934. "files": [
  1935. "bootstrap.php"
  1936. ],
  1937. "psr-4": {
  1938. "Symfony\\Polyfill\\Ctype\\": ""
  1939. }
  1940. },
  1941. "notification-url": "https://packagist.org/downloads/",
  1942. "license": [
  1943. "MIT"
  1944. ],
  1945. "authors": [
  1946. {
  1947. "name": "Gert de Pagter",
  1948. "email": "BackEndTea@gmail.com"
  1949. },
  1950. {
  1951. "name": "Symfony Community",
  1952. "homepage": "https://symfony.com/contributors"
  1953. }
  1954. ],
  1955. "description": "Symfony polyfill for ctype functions",
  1956. "homepage": "https://symfony.com",
  1957. "keywords": [
  1958. "compatibility",
  1959. "ctype",
  1960. "polyfill",
  1961. "portable"
  1962. ],
  1963. "support": {
  1964. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  1965. },
  1966. "funding": [
  1967. {
  1968. "url": "https://symfony.com/sponsor",
  1969. "type": "custom"
  1970. },
  1971. {
  1972. "url": "https://github.com/fabpot",
  1973. "type": "github"
  1974. },
  1975. {
  1976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1977. "type": "tidelift"
  1978. }
  1979. ],
  1980. "install-path": "../symfony/polyfill-ctype"
  1981. },
  1982. {
  1983. "name": "symfony/polyfill-mbstring",
  1984. "version": "v1.26.0",
  1985. "version_normalized": "1.26.0.0",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1989. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  1994. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=7.1"
  1999. },
  2000. "provide": {
  2001. "ext-mbstring": "*"
  2002. },
  2003. "suggest": {
  2004. "ext-mbstring": "For best performance"
  2005. },
  2006. "time": "2022-05-24T11:49:31+00:00",
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-main": "1.26-dev"
  2011. },
  2012. "thanks": {
  2013. "name": "symfony/polyfill",
  2014. "url": "https://github.com/symfony/polyfill"
  2015. }
  2016. },
  2017. "installation-source": "dist",
  2018. "autoload": {
  2019. "files": [
  2020. "bootstrap.php"
  2021. ],
  2022. "psr-4": {
  2023. "Symfony\\Polyfill\\Mbstring\\": ""
  2024. }
  2025. },
  2026. "notification-url": "https://packagist.org/downloads/",
  2027. "license": [
  2028. "MIT"
  2029. ],
  2030. "authors": [
  2031. {
  2032. "name": "Nicolas Grekas",
  2033. "email": "p@tchwork.com"
  2034. },
  2035. {
  2036. "name": "Symfony Community",
  2037. "homepage": "https://symfony.com/contributors"
  2038. }
  2039. ],
  2040. "description": "Symfony polyfill for the Mbstring extension",
  2041. "homepage": "https://symfony.com",
  2042. "keywords": [
  2043. "compatibility",
  2044. "mbstring",
  2045. "polyfill",
  2046. "portable",
  2047. "shim"
  2048. ],
  2049. "support": {
  2050. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  2051. },
  2052. "funding": [
  2053. {
  2054. "url": "https://symfony.com/sponsor",
  2055. "type": "custom"
  2056. },
  2057. {
  2058. "url": "https://github.com/fabpot",
  2059. "type": "github"
  2060. },
  2061. {
  2062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2063. "type": "tidelift"
  2064. }
  2065. ],
  2066. "install-path": "../symfony/polyfill-mbstring"
  2067. },
  2068. {
  2069. "name": "symfony/polyfill-php80",
  2070. "version": "v1.26.0",
  2071. "version_normalized": "1.26.0.0",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/symfony/polyfill-php80.git",
  2075. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  2080. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  2081. "shasum": ""
  2082. },
  2083. "require": {
  2084. "php": ">=7.1"
  2085. },
  2086. "time": "2022-05-10T07:21:04+00:00",
  2087. "type": "library",
  2088. "extra": {
  2089. "branch-alias": {
  2090. "dev-main": "1.26-dev"
  2091. },
  2092. "thanks": {
  2093. "name": "symfony/polyfill",
  2094. "url": "https://github.com/symfony/polyfill"
  2095. }
  2096. },
  2097. "installation-source": "dist",
  2098. "autoload": {
  2099. "files": [
  2100. "bootstrap.php"
  2101. ],
  2102. "psr-4": {
  2103. "Symfony\\Polyfill\\Php80\\": ""
  2104. },
  2105. "classmap": [
  2106. "Resources/stubs"
  2107. ]
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Ion Bazan",
  2116. "email": "ion.bazan@gmail.com"
  2117. },
  2118. {
  2119. "name": "Nicolas Grekas",
  2120. "email": "p@tchwork.com"
  2121. },
  2122. {
  2123. "name": "Symfony Community",
  2124. "homepage": "https://symfony.com/contributors"
  2125. }
  2126. ],
  2127. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2128. "homepage": "https://symfony.com",
  2129. "keywords": [
  2130. "compatibility",
  2131. "polyfill",
  2132. "portable",
  2133. "shim"
  2134. ],
  2135. "support": {
  2136. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  2137. },
  2138. "funding": [
  2139. {
  2140. "url": "https://symfony.com/sponsor",
  2141. "type": "custom"
  2142. },
  2143. {
  2144. "url": "https://github.com/fabpot",
  2145. "type": "github"
  2146. },
  2147. {
  2148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2149. "type": "tidelift"
  2150. }
  2151. ],
  2152. "install-path": "../symfony/polyfill-php80"
  2153. },
  2154. {
  2155. "name": "symfony/translation",
  2156. "version": "v4.4.44",
  2157. "version_normalized": "4.4.44.0",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/symfony/translation.git",
  2161. "reference": "af947fefc306cec6ea5a1f6160c7e305a71f2493"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/symfony/translation/zipball/af947fefc306cec6ea5a1f6160c7e305a71f2493",
  2166. "reference": "af947fefc306cec6ea5a1f6160c7e305a71f2493",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "php": ">=7.1.3",
  2171. "symfony/polyfill-mbstring": "~1.0",
  2172. "symfony/polyfill-php80": "^1.16",
  2173. "symfony/translation-contracts": "^1.1.6|^2"
  2174. },
  2175. "conflict": {
  2176. "symfony/config": "<3.4",
  2177. "symfony/dependency-injection": "<3.4",
  2178. "symfony/http-kernel": "<4.4",
  2179. "symfony/yaml": "<3.4"
  2180. },
  2181. "provide": {
  2182. "symfony/translation-implementation": "1.0|2.0"
  2183. },
  2184. "require-dev": {
  2185. "psr/log": "^1|^2|^3",
  2186. "symfony/config": "^3.4|^4.0|^5.0",
  2187. "symfony/console": "^3.4|^4.0|^5.0",
  2188. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2189. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  2190. "symfony/http-kernel": "^4.4",
  2191. "symfony/intl": "^3.4|^4.0|^5.0",
  2192. "symfony/service-contracts": "^1.1.2|^2",
  2193. "symfony/yaml": "^3.4|^4.0|^5.0"
  2194. },
  2195. "suggest": {
  2196. "psr/log-implementation": "To use logging capability in translator",
  2197. "symfony/config": "",
  2198. "symfony/yaml": ""
  2199. },
  2200. "time": "2022-07-20T09:59:04+00:00",
  2201. "type": "library",
  2202. "installation-source": "dist",
  2203. "autoload": {
  2204. "psr-4": {
  2205. "Symfony\\Component\\Translation\\": ""
  2206. },
  2207. "exclude-from-classmap": [
  2208. "/Tests/"
  2209. ]
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Fabien Potencier",
  2218. "email": "fabien@symfony.com"
  2219. },
  2220. {
  2221. "name": "Symfony Community",
  2222. "homepage": "https://symfony.com/contributors"
  2223. }
  2224. ],
  2225. "description": "Provides tools to internationalize your application",
  2226. "homepage": "https://symfony.com",
  2227. "support": {
  2228. "source": "https://github.com/symfony/translation/tree/v4.4.44"
  2229. },
  2230. "funding": [
  2231. {
  2232. "url": "https://symfony.com/sponsor",
  2233. "type": "custom"
  2234. },
  2235. {
  2236. "url": "https://github.com/fabpot",
  2237. "type": "github"
  2238. },
  2239. {
  2240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2241. "type": "tidelift"
  2242. }
  2243. ],
  2244. "install-path": "../symfony/translation"
  2245. },
  2246. {
  2247. "name": "symfony/translation-contracts",
  2248. "version": "v2.5.2",
  2249. "version_normalized": "2.5.2.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/symfony/translation-contracts.git",
  2253. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2258. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": ">=7.2.5"
  2263. },
  2264. "suggest": {
  2265. "symfony/translation-implementation": ""
  2266. },
  2267. "time": "2022-06-27T16:58:25+00:00",
  2268. "type": "library",
  2269. "extra": {
  2270. "branch-alias": {
  2271. "dev-main": "2.5-dev"
  2272. },
  2273. "thanks": {
  2274. "name": "symfony/contracts",
  2275. "url": "https://github.com/symfony/contracts"
  2276. }
  2277. },
  2278. "installation-source": "dist",
  2279. "autoload": {
  2280. "psr-4": {
  2281. "Symfony\\Contracts\\Translation\\": ""
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Nicolas Grekas",
  2291. "email": "p@tchwork.com"
  2292. },
  2293. {
  2294. "name": "Symfony Community",
  2295. "homepage": "https://symfony.com/contributors"
  2296. }
  2297. ],
  2298. "description": "Generic abstractions related to translation",
  2299. "homepage": "https://symfony.com",
  2300. "keywords": [
  2301. "abstractions",
  2302. "contracts",
  2303. "decoupling",
  2304. "interfaces",
  2305. "interoperability",
  2306. "standards"
  2307. ],
  2308. "support": {
  2309. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  2310. },
  2311. "funding": [
  2312. {
  2313. "url": "https://symfony.com/sponsor",
  2314. "type": "custom"
  2315. },
  2316. {
  2317. "url": "https://github.com/fabpot",
  2318. "type": "github"
  2319. },
  2320. {
  2321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2322. "type": "tidelift"
  2323. }
  2324. ],
  2325. "install-path": "../symfony/translation-contracts"
  2326. },
  2327. {
  2328. "name": "symfony/yaml",
  2329. "version": "v3.4.47",
  2330. "version_normalized": "3.4.47.0",
  2331. "source": {
  2332. "type": "git",
  2333. "url": "https://github.com/symfony/yaml.git",
  2334. "reference": "88289caa3c166321883f67fe5130188ebbb47094"
  2335. },
  2336. "dist": {
  2337. "type": "zip",
  2338. "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094",
  2339. "reference": "88289caa3c166321883f67fe5130188ebbb47094",
  2340. "shasum": ""
  2341. },
  2342. "require": {
  2343. "php": "^5.5.9|>=7.0.8",
  2344. "symfony/polyfill-ctype": "~1.8"
  2345. },
  2346. "conflict": {
  2347. "symfony/console": "<3.4"
  2348. },
  2349. "require-dev": {
  2350. "symfony/console": "~3.4|~4.0"
  2351. },
  2352. "suggest": {
  2353. "symfony/console": "For validating YAML files using the lint command"
  2354. },
  2355. "time": "2020-10-24T10:57:07+00:00",
  2356. "type": "library",
  2357. "installation-source": "dist",
  2358. "autoload": {
  2359. "psr-4": {
  2360. "Symfony\\Component\\Yaml\\": ""
  2361. },
  2362. "exclude-from-classmap": [
  2363. "/Tests/"
  2364. ]
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Fabien Potencier",
  2373. "email": "fabien@symfony.com"
  2374. },
  2375. {
  2376. "name": "Symfony Community",
  2377. "homepage": "https://symfony.com/contributors"
  2378. }
  2379. ],
  2380. "description": "Symfony Yaml Component",
  2381. "homepage": "https://symfony.com",
  2382. "support": {
  2383. "source": "https://github.com/symfony/yaml/tree/v3.4.47"
  2384. },
  2385. "funding": [
  2386. {
  2387. "url": "https://symfony.com/sponsor",
  2388. "type": "custom"
  2389. },
  2390. {
  2391. "url": "https://github.com/fabpot",
  2392. "type": "github"
  2393. },
  2394. {
  2395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2396. "type": "tidelift"
  2397. }
  2398. ],
  2399. "install-path": "../symfony/yaml"
  2400. },
  2401. {
  2402. "name": "voku/portable-ascii",
  2403. "version": "1.6.1",
  2404. "version_normalized": "1.6.1.0",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/voku/portable-ascii.git",
  2408. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  2413. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "php": ">=7.0.0"
  2418. },
  2419. "require-dev": {
  2420. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  2421. },
  2422. "suggest": {
  2423. "ext-intl": "Use Intl for transliterator_transliterate() support"
  2424. },
  2425. "time": "2022-01-24T18:55:24+00:00",
  2426. "type": "library",
  2427. "installation-source": "dist",
  2428. "autoload": {
  2429. "psr-4": {
  2430. "voku\\": "src/voku/"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "authors": [
  2438. {
  2439. "name": "Lars Moelleken",
  2440. "homepage": "http://www.moelleken.org/"
  2441. }
  2442. ],
  2443. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  2444. "homepage": "https://github.com/voku/portable-ascii",
  2445. "keywords": [
  2446. "ascii",
  2447. "clean",
  2448. "php"
  2449. ],
  2450. "support": {
  2451. "issues": "https://github.com/voku/portable-ascii/issues",
  2452. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://www.paypal.me/moelleken",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://github.com/voku",
  2461. "type": "github"
  2462. },
  2463. {
  2464. "url": "https://opencollective.com/portable-ascii",
  2465. "type": "open_collective"
  2466. },
  2467. {
  2468. "url": "https://www.patreon.com/voku",
  2469. "type": "patreon"
  2470. },
  2471. {
  2472. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  2473. "type": "tidelift"
  2474. }
  2475. ],
  2476. "install-path": "../voku/portable-ascii"
  2477. },
  2478. {
  2479. "name": "webmozart/assert",
  2480. "version": "1.11.0",
  2481. "version_normalized": "1.11.0.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/webmozarts/assert.git",
  2485. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2490. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "ext-ctype": "*",
  2495. "php": "^7.2 || ^8.0"
  2496. },
  2497. "conflict": {
  2498. "phpstan/phpstan": "<0.12.20",
  2499. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2500. },
  2501. "require-dev": {
  2502. "phpunit/phpunit": "^8.5.13"
  2503. },
  2504. "time": "2022-06-03T18:03:27+00:00",
  2505. "type": "library",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-master": "1.10-dev"
  2509. }
  2510. },
  2511. "installation-source": "dist",
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Webmozart\\Assert\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "Bernhard Schussek",
  2524. "email": "bschussek@gmail.com"
  2525. }
  2526. ],
  2527. "description": "Assertions to validate method input/output with nice error messages.",
  2528. "keywords": [
  2529. "assert",
  2530. "check",
  2531. "validate"
  2532. ],
  2533. "support": {
  2534. "issues": "https://github.com/webmozarts/assert/issues",
  2535. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  2536. },
  2537. "install-path": "../webmozart/assert"
  2538. }
  2539. ],
  2540. "dev": true,
  2541. "dev-package-names": [
  2542. "doctrine/instantiator",
  2543. "phpdocumentor/reflection-common",
  2544. "phpdocumentor/reflection-docblock",
  2545. "phpdocumentor/type-resolver",
  2546. "phpspec/prophecy",
  2547. "phpunit/php-code-coverage",
  2548. "phpunit/php-file-iterator",
  2549. "phpunit/php-text-template",
  2550. "phpunit/php-timer",
  2551. "phpunit/php-token-stream",
  2552. "phpunit/phpunit",
  2553. "phpunit/phpunit-mock-objects",
  2554. "sebastian/comparator",
  2555. "sebastian/diff",
  2556. "sebastian/environment",
  2557. "sebastian/exporter",
  2558. "sebastian/global-state",
  2559. "sebastian/recursion-context",
  2560. "sebastian/version",
  2561. "symfony/polyfill-ctype",
  2562. "symfony/yaml",
  2563. "webmozart/assert"
  2564. ]
  2565. }