composer.lock 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "e6ebd96819b95bb9556c1d5676de347d",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "doctrine/instantiator",
  12. "version": "1.4.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/doctrine/instantiator.git",
  16. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  21. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  22. "shasum": "",
  23. "mirrors": [
  24. {
  25. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  26. "preferred": true
  27. }
  28. ]
  29. },
  30. "require": {
  31. "php": "^7.1 || ^8.0"
  32. },
  33. "require-dev": {
  34. "doctrine/coding-standard": "^8.0",
  35. "ext-pdo": "*",
  36. "ext-phar": "*",
  37. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  38. "phpstan/phpstan": "^0.12",
  39. "phpstan/phpstan-phpunit": "^0.12",
  40. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "MIT"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Marco Pivetta",
  55. "email": "ocramius@gmail.com",
  56. "homepage": "https://ocramius.github.io/"
  57. }
  58. ],
  59. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  60. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  61. "keywords": [
  62. "constructor",
  63. "instantiate"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/doctrine/instantiator/issues",
  67. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://www.doctrine-project.org/sponsorship.html",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://www.patreon.com/phpdoctrine",
  76. "type": "patreon"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2020-11-10T18:47:58+00:00"
  84. },
  85. {
  86. "name": "myclabs/deep-copy",
  87. "version": "1.10.2",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/myclabs/DeepCopy.git",
  91. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  96. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  97. "shasum": "",
  98. "mirrors": [
  99. {
  100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  101. "preferred": true
  102. }
  103. ]
  104. },
  105. "require": {
  106. "php": "^7.1 || ^8.0"
  107. },
  108. "replace": {
  109. "myclabs/deep-copy": "self.version"
  110. },
  111. "require-dev": {
  112. "doctrine/collections": "^1.0",
  113. "doctrine/common": "^2.6",
  114. "phpunit/phpunit": "^7.1"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "files": [
  119. "src/DeepCopy/deep_copy.php"
  120. ],
  121. "psr-4": {
  122. "DeepCopy\\": "src/DeepCopy/"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "description": "Create deep copies (clones) of your objects",
  130. "keywords": [
  131. "clone",
  132. "copy",
  133. "duplicate",
  134. "object",
  135. "object graph"
  136. ],
  137. "support": {
  138. "issues": "https://github.com/myclabs/DeepCopy/issues",
  139. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  140. },
  141. "funding": [
  142. {
  143. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  144. "type": "tidelift"
  145. }
  146. ],
  147. "time": "2020-11-13T09:40:50+00:00"
  148. },
  149. {
  150. "name": "nikic/php-parser",
  151. "version": "v4.13.2",
  152. "source": {
  153. "type": "git",
  154. "url": "https://github.com/nikic/PHP-Parser.git",
  155. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  156. },
  157. "dist": {
  158. "type": "zip",
  159. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  160. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  161. "shasum": "",
  162. "mirrors": [
  163. {
  164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  165. "preferred": true
  166. }
  167. ]
  168. },
  169. "require": {
  170. "ext-tokenizer": "*",
  171. "php": ">=7.0"
  172. },
  173. "require-dev": {
  174. "ircmaxell/php-yacc": "^0.0.7",
  175. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  176. },
  177. "bin": [
  178. "bin/php-parse"
  179. ],
  180. "type": "library",
  181. "extra": {
  182. "branch-alias": {
  183. "dev-master": "4.9-dev"
  184. }
  185. },
  186. "autoload": {
  187. "psr-4": {
  188. "PhpParser\\": "lib/PhpParser"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "BSD-3-Clause"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Nikita Popov"
  198. }
  199. ],
  200. "description": "A PHP parser written in PHP",
  201. "keywords": [
  202. "parser",
  203. "php"
  204. ],
  205. "support": {
  206. "issues": "https://github.com/nikic/PHP-Parser/issues",
  207. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  208. },
  209. "time": "2021-11-30T19:35:32+00:00"
  210. },
  211. {
  212. "name": "phar-io/manifest",
  213. "version": "2.0.3",
  214. "source": {
  215. "type": "git",
  216. "url": "https://github.com/phar-io/manifest.git",
  217. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  218. },
  219. "dist": {
  220. "type": "zip",
  221. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  222. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  223. "shasum": "",
  224. "mirrors": [
  225. {
  226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  227. "preferred": true
  228. }
  229. ]
  230. },
  231. "require": {
  232. "ext-dom": "*",
  233. "ext-phar": "*",
  234. "ext-xmlwriter": "*",
  235. "phar-io/version": "^3.0.1",
  236. "php": "^7.2 || ^8.0"
  237. },
  238. "type": "library",
  239. "extra": {
  240. "branch-alias": {
  241. "dev-master": "2.0.x-dev"
  242. }
  243. },
  244. "autoload": {
  245. "classmap": [
  246. "src/"
  247. ]
  248. },
  249. "notification-url": "https://packagist.org/downloads/",
  250. "license": [
  251. "BSD-3-Clause"
  252. ],
  253. "authors": [
  254. {
  255. "name": "Arne Blankerts",
  256. "email": "arne@blankerts.de",
  257. "role": "Developer"
  258. },
  259. {
  260. "name": "Sebastian Heuer",
  261. "email": "sebastian@phpeople.de",
  262. "role": "Developer"
  263. },
  264. {
  265. "name": "Sebastian Bergmann",
  266. "email": "sebastian@phpunit.de",
  267. "role": "Developer"
  268. }
  269. ],
  270. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  271. "support": {
  272. "issues": "https://github.com/phar-io/manifest/issues",
  273. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  274. },
  275. "time": "2021-07-20T11:28:43+00:00"
  276. },
  277. {
  278. "name": "phar-io/version",
  279. "version": "3.2.1",
  280. "source": {
  281. "type": "git",
  282. "url": "https://github.com/phar-io/version.git",
  283. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  284. },
  285. "dist": {
  286. "type": "zip",
  287. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  288. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  289. "shasum": "",
  290. "mirrors": [
  291. {
  292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  293. "preferred": true
  294. }
  295. ]
  296. },
  297. "require": {
  298. "php": "^7.2 || ^8.0"
  299. },
  300. "type": "library",
  301. "autoload": {
  302. "classmap": [
  303. "src/"
  304. ]
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "BSD-3-Clause"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Arne Blankerts",
  313. "email": "arne@blankerts.de",
  314. "role": "Developer"
  315. },
  316. {
  317. "name": "Sebastian Heuer",
  318. "email": "sebastian@phpeople.de",
  319. "role": "Developer"
  320. },
  321. {
  322. "name": "Sebastian Bergmann",
  323. "email": "sebastian@phpunit.de",
  324. "role": "Developer"
  325. }
  326. ],
  327. "description": "Library for handling version information and constraints",
  328. "support": {
  329. "issues": "https://github.com/phar-io/version/issues",
  330. "source": "https://github.com/phar-io/version/tree/3.2.1"
  331. },
  332. "time": "2022-02-21T01:04:05+00:00"
  333. },
  334. {
  335. "name": "phpdocumentor/reflection-common",
  336. "version": "2.2.0",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  340. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  345. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  346. "shasum": "",
  347. "mirrors": [
  348. {
  349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  350. "preferred": true
  351. }
  352. ]
  353. },
  354. "require": {
  355. "php": "^7.2 || ^8.0"
  356. },
  357. "type": "library",
  358. "extra": {
  359. "branch-alias": {
  360. "dev-2.x": "2.x-dev"
  361. }
  362. },
  363. "autoload": {
  364. "psr-4": {
  365. "phpDocumentor\\Reflection\\": "src/"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "authors": [
  373. {
  374. "name": "Jaap van Otterdijk",
  375. "email": "opensource@ijaap.nl"
  376. }
  377. ],
  378. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  379. "homepage": "http://www.phpdoc.org",
  380. "keywords": [
  381. "FQSEN",
  382. "phpDocumentor",
  383. "phpdoc",
  384. "reflection",
  385. "static analysis"
  386. ],
  387. "support": {
  388. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  389. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  390. },
  391. "time": "2020-06-27T09:03:43+00:00"
  392. },
  393. {
  394. "name": "phpdocumentor/reflection-docblock",
  395. "version": "5.3.0",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  399. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  404. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  405. "shasum": "",
  406. "mirrors": [
  407. {
  408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  409. "preferred": true
  410. }
  411. ]
  412. },
  413. "require": {
  414. "ext-filter": "*",
  415. "php": "^7.2 || ^8.0",
  416. "phpdocumentor/reflection-common": "^2.2",
  417. "phpdocumentor/type-resolver": "^1.3",
  418. "webmozart/assert": "^1.9.1"
  419. },
  420. "require-dev": {
  421. "mockery/mockery": "~1.3.2",
  422. "psalm/phar": "^4.8"
  423. },
  424. "type": "library",
  425. "extra": {
  426. "branch-alias": {
  427. "dev-master": "5.x-dev"
  428. }
  429. },
  430. "autoload": {
  431. "psr-4": {
  432. "phpDocumentor\\Reflection\\": "src"
  433. }
  434. },
  435. "notification-url": "https://packagist.org/downloads/",
  436. "license": [
  437. "MIT"
  438. ],
  439. "authors": [
  440. {
  441. "name": "Mike van Riel",
  442. "email": "me@mikevanriel.com"
  443. },
  444. {
  445. "name": "Jaap van Otterdijk",
  446. "email": "account@ijaap.nl"
  447. }
  448. ],
  449. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  450. "support": {
  451. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  452. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  453. },
  454. "time": "2021-10-19T17:43:47+00:00"
  455. },
  456. {
  457. "name": "phpdocumentor/type-resolver",
  458. "version": "1.6.0",
  459. "source": {
  460. "type": "git",
  461. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  462. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  463. },
  464. "dist": {
  465. "type": "zip",
  466. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  467. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  468. "shasum": "",
  469. "mirrors": [
  470. {
  471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  472. "preferred": true
  473. }
  474. ]
  475. },
  476. "require": {
  477. "php": "^7.2 || ^8.0",
  478. "phpdocumentor/reflection-common": "^2.0"
  479. },
  480. "require-dev": {
  481. "ext-tokenizer": "*",
  482. "psalm/phar": "^4.8"
  483. },
  484. "type": "library",
  485. "extra": {
  486. "branch-alias": {
  487. "dev-1.x": "1.x-dev"
  488. }
  489. },
  490. "autoload": {
  491. "psr-4": {
  492. "phpDocumentor\\Reflection\\": "src"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "MIT"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Mike van Riel",
  502. "email": "me@mikevanriel.com"
  503. }
  504. ],
  505. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  506. "support": {
  507. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  508. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  509. },
  510. "time": "2022-01-04T19:58:01+00:00"
  511. },
  512. {
  513. "name": "phpspec/prophecy",
  514. "version": "v1.15.0",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/phpspec/prophecy.git",
  518. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  523. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  524. "shasum": "",
  525. "mirrors": [
  526. {
  527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  528. "preferred": true
  529. }
  530. ]
  531. },
  532. "require": {
  533. "doctrine/instantiator": "^1.2",
  534. "php": "^7.2 || ~8.0, <8.2",
  535. "phpdocumentor/reflection-docblock": "^5.2",
  536. "sebastian/comparator": "^3.0 || ^4.0",
  537. "sebastian/recursion-context": "^3.0 || ^4.0"
  538. },
  539. "require-dev": {
  540. "phpspec/phpspec": "^6.0 || ^7.0",
  541. "phpunit/phpunit": "^8.0 || ^9.0"
  542. },
  543. "type": "library",
  544. "extra": {
  545. "branch-alias": {
  546. "dev-master": "1.x-dev"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "Prophecy\\": "src/Prophecy"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Konstantin Kudryashov",
  561. "email": "ever.zet@gmail.com",
  562. "homepage": "http://everzet.com"
  563. },
  564. {
  565. "name": "Marcello Duarte",
  566. "email": "marcello.duarte@gmail.com"
  567. }
  568. ],
  569. "description": "Highly opinionated mocking framework for PHP 5.3+",
  570. "homepage": "https://github.com/phpspec/prophecy",
  571. "keywords": [
  572. "Double",
  573. "Dummy",
  574. "fake",
  575. "mock",
  576. "spy",
  577. "stub"
  578. ],
  579. "support": {
  580. "issues": "https://github.com/phpspec/prophecy/issues",
  581. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  582. },
  583. "time": "2021-12-08T12:19:24+00:00"
  584. },
  585. {
  586. "name": "phpunit/php-code-coverage",
  587. "version": "9.2.14",
  588. "source": {
  589. "type": "git",
  590. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  591. "reference": "9f4d60b6afe5546421462b76cd4e633ebc364ab4"
  592. },
  593. "dist": {
  594. "type": "zip",
  595. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f4d60b6afe5546421462b76cd4e633ebc364ab4",
  596. "reference": "9f4d60b6afe5546421462b76cd4e633ebc364ab4",
  597. "shasum": "",
  598. "mirrors": [
  599. {
  600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  601. "preferred": true
  602. }
  603. ]
  604. },
  605. "require": {
  606. "ext-dom": "*",
  607. "ext-libxml": "*",
  608. "ext-xmlwriter": "*",
  609. "nikic/php-parser": "^4.13.0",
  610. "php": ">=7.3",
  611. "phpunit/php-file-iterator": "^3.0.3",
  612. "phpunit/php-text-template": "^2.0.2",
  613. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  614. "sebastian/complexity": "^2.0",
  615. "sebastian/environment": "^5.1.2",
  616. "sebastian/lines-of-code": "^1.0.3",
  617. "sebastian/version": "^3.0.1",
  618. "theseer/tokenizer": "^1.2.0"
  619. },
  620. "require-dev": {
  621. "phpunit/phpunit": "^9.3"
  622. },
  623. "suggest": {
  624. "ext-pcov": "*",
  625. "ext-xdebug": "*"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "9.2-dev"
  631. }
  632. },
  633. "autoload": {
  634. "classmap": [
  635. "src/"
  636. ]
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "BSD-3-Clause"
  641. ],
  642. "authors": [
  643. {
  644. "name": "Sebastian Bergmann",
  645. "email": "sebastian@phpunit.de",
  646. "role": "lead"
  647. }
  648. ],
  649. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  650. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  651. "keywords": [
  652. "coverage",
  653. "testing",
  654. "xunit"
  655. ],
  656. "support": {
  657. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  658. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.14"
  659. },
  660. "funding": [
  661. {
  662. "url": "https://github.com/sebastianbergmann",
  663. "type": "github"
  664. }
  665. ],
  666. "time": "2022-02-28T12:38:02+00:00"
  667. },
  668. {
  669. "name": "phpunit/php-file-iterator",
  670. "version": "3.0.6",
  671. "source": {
  672. "type": "git",
  673. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  674. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  675. },
  676. "dist": {
  677. "type": "zip",
  678. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  679. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  680. "shasum": "",
  681. "mirrors": [
  682. {
  683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  684. "preferred": true
  685. }
  686. ]
  687. },
  688. "require": {
  689. "php": ">=7.3"
  690. },
  691. "require-dev": {
  692. "phpunit/phpunit": "^9.3"
  693. },
  694. "type": "library",
  695. "extra": {
  696. "branch-alias": {
  697. "dev-master": "3.0-dev"
  698. }
  699. },
  700. "autoload": {
  701. "classmap": [
  702. "src/"
  703. ]
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "BSD-3-Clause"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Sebastian Bergmann",
  712. "email": "sebastian@phpunit.de",
  713. "role": "lead"
  714. }
  715. ],
  716. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  717. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  718. "keywords": [
  719. "filesystem",
  720. "iterator"
  721. ],
  722. "support": {
  723. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  724. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  725. },
  726. "funding": [
  727. {
  728. "url": "https://github.com/sebastianbergmann",
  729. "type": "github"
  730. }
  731. ],
  732. "time": "2021-12-02T12:48:52+00:00"
  733. },
  734. {
  735. "name": "phpunit/php-invoker",
  736. "version": "3.1.1",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  740. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  745. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  746. "shasum": "",
  747. "mirrors": [
  748. {
  749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  750. "preferred": true
  751. }
  752. ]
  753. },
  754. "require": {
  755. "php": ">=7.3"
  756. },
  757. "require-dev": {
  758. "ext-pcntl": "*",
  759. "phpunit/phpunit": "^9.3"
  760. },
  761. "suggest": {
  762. "ext-pcntl": "*"
  763. },
  764. "type": "library",
  765. "extra": {
  766. "branch-alias": {
  767. "dev-master": "3.1-dev"
  768. }
  769. },
  770. "autoload": {
  771. "classmap": [
  772. "src/"
  773. ]
  774. },
  775. "notification-url": "https://packagist.org/downloads/",
  776. "license": [
  777. "BSD-3-Clause"
  778. ],
  779. "authors": [
  780. {
  781. "name": "Sebastian Bergmann",
  782. "email": "sebastian@phpunit.de",
  783. "role": "lead"
  784. }
  785. ],
  786. "description": "Invoke callables with a timeout",
  787. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  788. "keywords": [
  789. "process"
  790. ],
  791. "support": {
  792. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  793. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  794. },
  795. "funding": [
  796. {
  797. "url": "https://github.com/sebastianbergmann",
  798. "type": "github"
  799. }
  800. ],
  801. "time": "2020-09-28T05:58:55+00:00"
  802. },
  803. {
  804. "name": "phpunit/php-text-template",
  805. "version": "2.0.4",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  809. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  814. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "php": ">=7.3"
  825. },
  826. "require-dev": {
  827. "phpunit/phpunit": "^9.3"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "branch-alias": {
  832. "dev-master": "2.0-dev"
  833. }
  834. },
  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": "sebastian@phpunit.de",
  848. "role": "lead"
  849. }
  850. ],
  851. "description": "Simple template engine.",
  852. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  853. "keywords": [
  854. "template"
  855. ],
  856. "support": {
  857. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  858. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  859. },
  860. "funding": [
  861. {
  862. "url": "https://github.com/sebastianbergmann",
  863. "type": "github"
  864. }
  865. ],
  866. "time": "2020-10-26T05:33:50+00:00"
  867. },
  868. {
  869. "name": "phpunit/php-timer",
  870. "version": "5.0.3",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/sebastianbergmann/php-timer.git",
  874. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  879. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  880. "shasum": "",
  881. "mirrors": [
  882. {
  883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  884. "preferred": true
  885. }
  886. ]
  887. },
  888. "require": {
  889. "php": ">=7.3"
  890. },
  891. "require-dev": {
  892. "phpunit/phpunit": "^9.3"
  893. },
  894. "type": "library",
  895. "extra": {
  896. "branch-alias": {
  897. "dev-master": "5.0-dev"
  898. }
  899. },
  900. "autoload": {
  901. "classmap": [
  902. "src/"
  903. ]
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "BSD-3-Clause"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Sebastian Bergmann",
  912. "email": "sebastian@phpunit.de",
  913. "role": "lead"
  914. }
  915. ],
  916. "description": "Utility class for timing",
  917. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  918. "keywords": [
  919. "timer"
  920. ],
  921. "support": {
  922. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  923. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  924. },
  925. "funding": [
  926. {
  927. "url": "https://github.com/sebastianbergmann",
  928. "type": "github"
  929. }
  930. ],
  931. "time": "2020-10-26T13:16:10+00:00"
  932. },
  933. {
  934. "name": "phpunit/phpunit",
  935. "version": "9.5.16",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/sebastianbergmann/phpunit.git",
  939. "reference": "5ff8c545a50226c569310a35f4fa89d79f1ddfdc"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5ff8c545a50226c569310a35f4fa89d79f1ddfdc",
  944. "reference": "5ff8c545a50226c569310a35f4fa89d79f1ddfdc",
  945. "shasum": "",
  946. "mirrors": [
  947. {
  948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  949. "preferred": true
  950. }
  951. ]
  952. },
  953. "require": {
  954. "doctrine/instantiator": "^1.3.1",
  955. "ext-dom": "*",
  956. "ext-json": "*",
  957. "ext-libxml": "*",
  958. "ext-mbstring": "*",
  959. "ext-xml": "*",
  960. "ext-xmlwriter": "*",
  961. "myclabs/deep-copy": "^1.10.1",
  962. "phar-io/manifest": "^2.0.3",
  963. "phar-io/version": "^3.0.2",
  964. "php": ">=7.3",
  965. "phpspec/prophecy": "^1.12.1",
  966. "phpunit/php-code-coverage": "^9.2.13",
  967. "phpunit/php-file-iterator": "^3.0.5",
  968. "phpunit/php-invoker": "^3.1.1",
  969. "phpunit/php-text-template": "^2.0.3",
  970. "phpunit/php-timer": "^5.0.2",
  971. "sebastian/cli-parser": "^1.0.1",
  972. "sebastian/code-unit": "^1.0.6",
  973. "sebastian/comparator": "^4.0.5",
  974. "sebastian/diff": "^4.0.3",
  975. "sebastian/environment": "^5.1.3",
  976. "sebastian/exporter": "^4.0.3",
  977. "sebastian/global-state": "^5.0.1",
  978. "sebastian/object-enumerator": "^4.0.3",
  979. "sebastian/resource-operations": "^3.0.3",
  980. "sebastian/type": "^2.3.4",
  981. "sebastian/version": "^3.0.2"
  982. },
  983. "require-dev": {
  984. "ext-pdo": "*",
  985. "phpspec/prophecy-phpunit": "^2.0.1"
  986. },
  987. "suggest": {
  988. "ext-soap": "*",
  989. "ext-xdebug": "*"
  990. },
  991. "bin": [
  992. "phpunit"
  993. ],
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "9.5-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "files": [
  1002. "src/Framework/Assert/Functions.php"
  1003. ],
  1004. "classmap": [
  1005. "src/"
  1006. ]
  1007. },
  1008. "notification-url": "https://packagist.org/downloads/",
  1009. "license": [
  1010. "BSD-3-Clause"
  1011. ],
  1012. "authors": [
  1013. {
  1014. "name": "Sebastian Bergmann",
  1015. "email": "sebastian@phpunit.de",
  1016. "role": "lead"
  1017. }
  1018. ],
  1019. "description": "The PHP Unit Testing framework.",
  1020. "homepage": "https://phpunit.de/",
  1021. "keywords": [
  1022. "phpunit",
  1023. "testing",
  1024. "xunit"
  1025. ],
  1026. "support": {
  1027. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1028. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.16"
  1029. },
  1030. "funding": [
  1031. {
  1032. "url": "https://phpunit.de/sponsors.html",
  1033. "type": "custom"
  1034. },
  1035. {
  1036. "url": "https://github.com/sebastianbergmann",
  1037. "type": "github"
  1038. }
  1039. ],
  1040. "time": "2022-02-23T17:10:58+00:00"
  1041. },
  1042. {
  1043. "name": "sebastian/cli-parser",
  1044. "version": "1.0.1",
  1045. "source": {
  1046. "type": "git",
  1047. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  1048. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  1049. },
  1050. "dist": {
  1051. "type": "zip",
  1052. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1053. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1054. "shasum": "",
  1055. "mirrors": [
  1056. {
  1057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1058. "preferred": true
  1059. }
  1060. ]
  1061. },
  1062. "require": {
  1063. "php": ">=7.3"
  1064. },
  1065. "require-dev": {
  1066. "phpunit/phpunit": "^9.3"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "branch-alias": {
  1071. "dev-master": "1.0-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "classmap": [
  1076. "src/"
  1077. ]
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "BSD-3-Clause"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Sebastian Bergmann",
  1086. "email": "sebastian@phpunit.de",
  1087. "role": "lead"
  1088. }
  1089. ],
  1090. "description": "Library for parsing CLI options",
  1091. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  1092. "support": {
  1093. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  1094. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  1095. },
  1096. "funding": [
  1097. {
  1098. "url": "https://github.com/sebastianbergmann",
  1099. "type": "github"
  1100. }
  1101. ],
  1102. "time": "2020-09-28T06:08:49+00:00"
  1103. },
  1104. {
  1105. "name": "sebastian/code-unit",
  1106. "version": "1.0.8",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/sebastianbergmann/code-unit.git",
  1110. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  1115. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  1116. "shasum": "",
  1117. "mirrors": [
  1118. {
  1119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1120. "preferred": true
  1121. }
  1122. ]
  1123. },
  1124. "require": {
  1125. "php": ">=7.3"
  1126. },
  1127. "require-dev": {
  1128. "phpunit/phpunit": "^9.3"
  1129. },
  1130. "type": "library",
  1131. "extra": {
  1132. "branch-alias": {
  1133. "dev-master": "1.0-dev"
  1134. }
  1135. },
  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. "role": "lead"
  1150. }
  1151. ],
  1152. "description": "Collection of value objects that represent the PHP code units",
  1153. "homepage": "https://github.com/sebastianbergmann/code-unit",
  1154. "support": {
  1155. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  1156. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://github.com/sebastianbergmann",
  1161. "type": "github"
  1162. }
  1163. ],
  1164. "time": "2020-10-26T13:08:54+00:00"
  1165. },
  1166. {
  1167. "name": "sebastian/code-unit-reverse-lookup",
  1168. "version": "2.0.3",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1172. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1177. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1178. "shasum": "",
  1179. "mirrors": [
  1180. {
  1181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1182. "preferred": true
  1183. }
  1184. ]
  1185. },
  1186. "require": {
  1187. "php": ">=7.3"
  1188. },
  1189. "require-dev": {
  1190. "phpunit/phpunit": "^9.3"
  1191. },
  1192. "type": "library",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "2.0-dev"
  1196. }
  1197. },
  1198. "autoload": {
  1199. "classmap": [
  1200. "src/"
  1201. ]
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "BSD-3-Clause"
  1206. ],
  1207. "authors": [
  1208. {
  1209. "name": "Sebastian Bergmann",
  1210. "email": "sebastian@phpunit.de"
  1211. }
  1212. ],
  1213. "description": "Looks up which function or method a line of code belongs to",
  1214. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1215. "support": {
  1216. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  1217. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://github.com/sebastianbergmann",
  1222. "type": "github"
  1223. }
  1224. ],
  1225. "time": "2020-09-28T05:30:19+00:00"
  1226. },
  1227. {
  1228. "name": "sebastian/comparator",
  1229. "version": "4.0.6",
  1230. "source": {
  1231. "type": "git",
  1232. "url": "https://github.com/sebastianbergmann/comparator.git",
  1233. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  1234. },
  1235. "dist": {
  1236. "type": "zip",
  1237. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  1238. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  1239. "shasum": "",
  1240. "mirrors": [
  1241. {
  1242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1243. "preferred": true
  1244. }
  1245. ]
  1246. },
  1247. "require": {
  1248. "php": ">=7.3",
  1249. "sebastian/diff": "^4.0",
  1250. "sebastian/exporter": "^4.0"
  1251. },
  1252. "require-dev": {
  1253. "phpunit/phpunit": "^9.3"
  1254. },
  1255. "type": "library",
  1256. "extra": {
  1257. "branch-alias": {
  1258. "dev-master": "4.0-dev"
  1259. }
  1260. },
  1261. "autoload": {
  1262. "classmap": [
  1263. "src/"
  1264. ]
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "BSD-3-Clause"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Sebastian Bergmann",
  1273. "email": "sebastian@phpunit.de"
  1274. },
  1275. {
  1276. "name": "Jeff Welch",
  1277. "email": "whatthejeff@gmail.com"
  1278. },
  1279. {
  1280. "name": "Volker Dusch",
  1281. "email": "github@wallbash.com"
  1282. },
  1283. {
  1284. "name": "Bernhard Schussek",
  1285. "email": "bschussek@2bepublished.at"
  1286. }
  1287. ],
  1288. "description": "Provides the functionality to compare PHP values for equality",
  1289. "homepage": "https://github.com/sebastianbergmann/comparator",
  1290. "keywords": [
  1291. "comparator",
  1292. "compare",
  1293. "equality"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1297. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  1298. },
  1299. "funding": [
  1300. {
  1301. "url": "https://github.com/sebastianbergmann",
  1302. "type": "github"
  1303. }
  1304. ],
  1305. "time": "2020-10-26T15:49:45+00:00"
  1306. },
  1307. {
  1308. "name": "sebastian/complexity",
  1309. "version": "2.0.2",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/sebastianbergmann/complexity.git",
  1313. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  1318. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  1319. "shasum": "",
  1320. "mirrors": [
  1321. {
  1322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1323. "preferred": true
  1324. }
  1325. ]
  1326. },
  1327. "require": {
  1328. "nikic/php-parser": "^4.7",
  1329. "php": ">=7.3"
  1330. },
  1331. "require-dev": {
  1332. "phpunit/phpunit": "^9.3"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "branch-alias": {
  1337. "dev-master": "2.0-dev"
  1338. }
  1339. },
  1340. "autoload": {
  1341. "classmap": [
  1342. "src/"
  1343. ]
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "BSD-3-Clause"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Sebastian Bergmann",
  1352. "email": "sebastian@phpunit.de",
  1353. "role": "lead"
  1354. }
  1355. ],
  1356. "description": "Library for calculating the complexity of PHP code units",
  1357. "homepage": "https://github.com/sebastianbergmann/complexity",
  1358. "support": {
  1359. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  1360. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  1361. },
  1362. "funding": [
  1363. {
  1364. "url": "https://github.com/sebastianbergmann",
  1365. "type": "github"
  1366. }
  1367. ],
  1368. "time": "2020-10-26T15:52:27+00:00"
  1369. },
  1370. {
  1371. "name": "sebastian/diff",
  1372. "version": "4.0.4",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/sebastianbergmann/diff.git",
  1376. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1381. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1382. "shasum": "",
  1383. "mirrors": [
  1384. {
  1385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1386. "preferred": true
  1387. }
  1388. ]
  1389. },
  1390. "require": {
  1391. "php": ">=7.3"
  1392. },
  1393. "require-dev": {
  1394. "phpunit/phpunit": "^9.3",
  1395. "symfony/process": "^4.2 || ^5"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-master": "4.0-dev"
  1401. }
  1402. },
  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. "name": "Kore Nordmann",
  1419. "email": "mail@kore-nordmann.de"
  1420. }
  1421. ],
  1422. "description": "Diff implementation",
  1423. "homepage": "https://github.com/sebastianbergmann/diff",
  1424. "keywords": [
  1425. "diff",
  1426. "udiff",
  1427. "unidiff",
  1428. "unified diff"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1432. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/sebastianbergmann",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "time": "2020-10-26T13:10:38+00:00"
  1441. },
  1442. {
  1443. "name": "sebastian/environment",
  1444. "version": "5.1.3",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/sebastianbergmann/environment.git",
  1448. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  1453. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": ">=7.3"
  1464. },
  1465. "require-dev": {
  1466. "phpunit/phpunit": "^9.3"
  1467. },
  1468. "suggest": {
  1469. "ext-posix": "*"
  1470. },
  1471. "type": "library",
  1472. "extra": {
  1473. "branch-alias": {
  1474. "dev-master": "5.1-dev"
  1475. }
  1476. },
  1477. "autoload": {
  1478. "classmap": [
  1479. "src/"
  1480. ]
  1481. },
  1482. "notification-url": "https://packagist.org/downloads/",
  1483. "license": [
  1484. "BSD-3-Clause"
  1485. ],
  1486. "authors": [
  1487. {
  1488. "name": "Sebastian Bergmann",
  1489. "email": "sebastian@phpunit.de"
  1490. }
  1491. ],
  1492. "description": "Provides functionality to handle HHVM/PHP environments",
  1493. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1494. "keywords": [
  1495. "Xdebug",
  1496. "environment",
  1497. "hhvm"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1501. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  1502. },
  1503. "funding": [
  1504. {
  1505. "url": "https://github.com/sebastianbergmann",
  1506. "type": "github"
  1507. }
  1508. ],
  1509. "time": "2020-09-28T05:52:38+00:00"
  1510. },
  1511. {
  1512. "name": "sebastian/exporter",
  1513. "version": "4.0.4",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/sebastianbergmann/exporter.git",
  1517. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  1522. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  1523. "shasum": "",
  1524. "mirrors": [
  1525. {
  1526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1527. "preferred": true
  1528. }
  1529. ]
  1530. },
  1531. "require": {
  1532. "php": ">=7.3",
  1533. "sebastian/recursion-context": "^4.0"
  1534. },
  1535. "require-dev": {
  1536. "ext-mbstring": "*",
  1537. "phpunit/phpunit": "^9.3"
  1538. },
  1539. "type": "library",
  1540. "extra": {
  1541. "branch-alias": {
  1542. "dev-master": "4.0-dev"
  1543. }
  1544. },
  1545. "autoload": {
  1546. "classmap": [
  1547. "src/"
  1548. ]
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "BSD-3-Clause"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Sebastian Bergmann",
  1557. "email": "sebastian@phpunit.de"
  1558. },
  1559. {
  1560. "name": "Jeff Welch",
  1561. "email": "whatthejeff@gmail.com"
  1562. },
  1563. {
  1564. "name": "Volker Dusch",
  1565. "email": "github@wallbash.com"
  1566. },
  1567. {
  1568. "name": "Adam Harvey",
  1569. "email": "aharvey@php.net"
  1570. },
  1571. {
  1572. "name": "Bernhard Schussek",
  1573. "email": "bschussek@gmail.com"
  1574. }
  1575. ],
  1576. "description": "Provides the functionality to export PHP variables for visualization",
  1577. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  1578. "keywords": [
  1579. "export",
  1580. "exporter"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1584. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://github.com/sebastianbergmann",
  1589. "type": "github"
  1590. }
  1591. ],
  1592. "time": "2021-11-11T14:18:36+00:00"
  1593. },
  1594. {
  1595. "name": "sebastian/global-state",
  1596. "version": "5.0.5",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/sebastianbergmann/global-state.git",
  1600. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  1605. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  1606. "shasum": "",
  1607. "mirrors": [
  1608. {
  1609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1610. "preferred": true
  1611. }
  1612. ]
  1613. },
  1614. "require": {
  1615. "php": ">=7.3",
  1616. "sebastian/object-reflector": "^2.0",
  1617. "sebastian/recursion-context": "^4.0"
  1618. },
  1619. "require-dev": {
  1620. "ext-dom": "*",
  1621. "phpunit/phpunit": "^9.3"
  1622. },
  1623. "suggest": {
  1624. "ext-uopz": "*"
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "5.0-dev"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "classmap": [
  1634. "src/"
  1635. ]
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "BSD-3-Clause"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "Sebastian Bergmann",
  1644. "email": "sebastian@phpunit.de"
  1645. }
  1646. ],
  1647. "description": "Snapshotting of global state",
  1648. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1649. "keywords": [
  1650. "global state"
  1651. ],
  1652. "support": {
  1653. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1654. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  1655. },
  1656. "funding": [
  1657. {
  1658. "url": "https://github.com/sebastianbergmann",
  1659. "type": "github"
  1660. }
  1661. ],
  1662. "time": "2022-02-14T08:28:10+00:00"
  1663. },
  1664. {
  1665. "name": "sebastian/lines-of-code",
  1666. "version": "1.0.3",
  1667. "source": {
  1668. "type": "git",
  1669. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  1670. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  1671. },
  1672. "dist": {
  1673. "type": "zip",
  1674. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  1675. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  1676. "shasum": "",
  1677. "mirrors": [
  1678. {
  1679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1680. "preferred": true
  1681. }
  1682. ]
  1683. },
  1684. "require": {
  1685. "nikic/php-parser": "^4.6",
  1686. "php": ">=7.3"
  1687. },
  1688. "require-dev": {
  1689. "phpunit/phpunit": "^9.3"
  1690. },
  1691. "type": "library",
  1692. "extra": {
  1693. "branch-alias": {
  1694. "dev-master": "1.0-dev"
  1695. }
  1696. },
  1697. "autoload": {
  1698. "classmap": [
  1699. "src/"
  1700. ]
  1701. },
  1702. "notification-url": "https://packagist.org/downloads/",
  1703. "license": [
  1704. "BSD-3-Clause"
  1705. ],
  1706. "authors": [
  1707. {
  1708. "name": "Sebastian Bergmann",
  1709. "email": "sebastian@phpunit.de",
  1710. "role": "lead"
  1711. }
  1712. ],
  1713. "description": "Library for counting the lines of code in PHP source code",
  1714. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  1715. "support": {
  1716. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  1717. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  1718. },
  1719. "funding": [
  1720. {
  1721. "url": "https://github.com/sebastianbergmann",
  1722. "type": "github"
  1723. }
  1724. ],
  1725. "time": "2020-11-28T06:42:11+00:00"
  1726. },
  1727. {
  1728. "name": "sebastian/object-enumerator",
  1729. "version": "4.0.4",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1733. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  1738. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  1739. "shasum": "",
  1740. "mirrors": [
  1741. {
  1742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1743. "preferred": true
  1744. }
  1745. ]
  1746. },
  1747. "require": {
  1748. "php": ">=7.3",
  1749. "sebastian/object-reflector": "^2.0",
  1750. "sebastian/recursion-context": "^4.0"
  1751. },
  1752. "require-dev": {
  1753. "phpunit/phpunit": "^9.3"
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "4.0-dev"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "classmap": [
  1763. "src/"
  1764. ]
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "BSD-3-Clause"
  1769. ],
  1770. "authors": [
  1771. {
  1772. "name": "Sebastian Bergmann",
  1773. "email": "sebastian@phpunit.de"
  1774. }
  1775. ],
  1776. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1777. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1778. "support": {
  1779. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  1780. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  1781. },
  1782. "funding": [
  1783. {
  1784. "url": "https://github.com/sebastianbergmann",
  1785. "type": "github"
  1786. }
  1787. ],
  1788. "time": "2020-10-26T13:12:34+00:00"
  1789. },
  1790. {
  1791. "name": "sebastian/object-reflector",
  1792. "version": "2.0.4",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1796. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  1801. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  1802. "shasum": "",
  1803. "mirrors": [
  1804. {
  1805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1806. "preferred": true
  1807. }
  1808. ]
  1809. },
  1810. "require": {
  1811. "php": ">=7.3"
  1812. },
  1813. "require-dev": {
  1814. "phpunit/phpunit": "^9.3"
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "branch-alias": {
  1819. "dev-master": "2.0-dev"
  1820. }
  1821. },
  1822. "autoload": {
  1823. "classmap": [
  1824. "src/"
  1825. ]
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "BSD-3-Clause"
  1830. ],
  1831. "authors": [
  1832. {
  1833. "name": "Sebastian Bergmann",
  1834. "email": "sebastian@phpunit.de"
  1835. }
  1836. ],
  1837. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1838. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1839. "support": {
  1840. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  1841. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  1842. },
  1843. "funding": [
  1844. {
  1845. "url": "https://github.com/sebastianbergmann",
  1846. "type": "github"
  1847. }
  1848. ],
  1849. "time": "2020-10-26T13:14:26+00:00"
  1850. },
  1851. {
  1852. "name": "sebastian/recursion-context",
  1853. "version": "4.0.4",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1857. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  1862. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  1863. "shasum": "",
  1864. "mirrors": [
  1865. {
  1866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1867. "preferred": true
  1868. }
  1869. ]
  1870. },
  1871. "require": {
  1872. "php": ">=7.3"
  1873. },
  1874. "require-dev": {
  1875. "phpunit/phpunit": "^9.3"
  1876. },
  1877. "type": "library",
  1878. "extra": {
  1879. "branch-alias": {
  1880. "dev-master": "4.0-dev"
  1881. }
  1882. },
  1883. "autoload": {
  1884. "classmap": [
  1885. "src/"
  1886. ]
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "BSD-3-Clause"
  1891. ],
  1892. "authors": [
  1893. {
  1894. "name": "Sebastian Bergmann",
  1895. "email": "sebastian@phpunit.de"
  1896. },
  1897. {
  1898. "name": "Jeff Welch",
  1899. "email": "whatthejeff@gmail.com"
  1900. },
  1901. {
  1902. "name": "Adam Harvey",
  1903. "email": "aharvey@php.net"
  1904. }
  1905. ],
  1906. "description": "Provides functionality to recursively process PHP variables",
  1907. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1908. "support": {
  1909. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  1910. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  1911. },
  1912. "funding": [
  1913. {
  1914. "url": "https://github.com/sebastianbergmann",
  1915. "type": "github"
  1916. }
  1917. ],
  1918. "time": "2020-10-26T13:17:30+00:00"
  1919. },
  1920. {
  1921. "name": "sebastian/resource-operations",
  1922. "version": "3.0.3",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1926. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  1931. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  1932. "shasum": "",
  1933. "mirrors": [
  1934. {
  1935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1936. "preferred": true
  1937. }
  1938. ]
  1939. },
  1940. "require": {
  1941. "php": ">=7.3"
  1942. },
  1943. "require-dev": {
  1944. "phpunit/phpunit": "^9.0"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "3.0-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "classmap": [
  1954. "src/"
  1955. ]
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "BSD-3-Clause"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Sebastian Bergmann",
  1964. "email": "sebastian@phpunit.de"
  1965. }
  1966. ],
  1967. "description": "Provides a list of PHP built-in functions that operate on resources",
  1968. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1969. "support": {
  1970. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  1971. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  1972. },
  1973. "funding": [
  1974. {
  1975. "url": "https://github.com/sebastianbergmann",
  1976. "type": "github"
  1977. }
  1978. ],
  1979. "time": "2020-09-28T06:45:17+00:00"
  1980. },
  1981. {
  1982. "name": "sebastian/type",
  1983. "version": "2.3.4",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/sebastianbergmann/type.git",
  1987. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  1992. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  1993. "shasum": "",
  1994. "mirrors": [
  1995. {
  1996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1997. "preferred": true
  1998. }
  1999. ]
  2000. },
  2001. "require": {
  2002. "php": ">=7.3"
  2003. },
  2004. "require-dev": {
  2005. "phpunit/phpunit": "^9.3"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "2.3-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "classmap": [
  2015. "src/"
  2016. ]
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "BSD-3-Clause"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Sebastian Bergmann",
  2025. "email": "sebastian@phpunit.de",
  2026. "role": "lead"
  2027. }
  2028. ],
  2029. "description": "Collection of value objects that represent the types of the PHP type system",
  2030. "homepage": "https://github.com/sebastianbergmann/type",
  2031. "support": {
  2032. "issues": "https://github.com/sebastianbergmann/type/issues",
  2033. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  2034. },
  2035. "funding": [
  2036. {
  2037. "url": "https://github.com/sebastianbergmann",
  2038. "type": "github"
  2039. }
  2040. ],
  2041. "time": "2021-06-15T12:49:02+00:00"
  2042. },
  2043. {
  2044. "name": "sebastian/version",
  2045. "version": "3.0.2",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/sebastianbergmann/version.git",
  2049. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  2054. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  2055. "shasum": "",
  2056. "mirrors": [
  2057. {
  2058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2059. "preferred": true
  2060. }
  2061. ]
  2062. },
  2063. "require": {
  2064. "php": ">=7.3"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "3.0-dev"
  2070. }
  2071. },
  2072. "autoload": {
  2073. "classmap": [
  2074. "src/"
  2075. ]
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "BSD-3-Clause"
  2080. ],
  2081. "authors": [
  2082. {
  2083. "name": "Sebastian Bergmann",
  2084. "email": "sebastian@phpunit.de",
  2085. "role": "lead"
  2086. }
  2087. ],
  2088. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2089. "homepage": "https://github.com/sebastianbergmann/version",
  2090. "support": {
  2091. "issues": "https://github.com/sebastianbergmann/version/issues",
  2092. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  2093. },
  2094. "funding": [
  2095. {
  2096. "url": "https://github.com/sebastianbergmann",
  2097. "type": "github"
  2098. }
  2099. ],
  2100. "time": "2020-09-28T06:39:44+00:00"
  2101. },
  2102. {
  2103. "name": "symfony/polyfill-ctype",
  2104. "version": "v1.24.0",
  2105. "source": {
  2106. "type": "git",
  2107. "url": "https://github.com/symfony/polyfill-ctype.git",
  2108. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  2109. },
  2110. "dist": {
  2111. "type": "zip",
  2112. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  2113. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  2114. "shasum": "",
  2115. "mirrors": [
  2116. {
  2117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2118. "preferred": true
  2119. }
  2120. ]
  2121. },
  2122. "require": {
  2123. "php": ">=7.1"
  2124. },
  2125. "provide": {
  2126. "ext-ctype": "*"
  2127. },
  2128. "suggest": {
  2129. "ext-ctype": "For best performance"
  2130. },
  2131. "type": "library",
  2132. "extra": {
  2133. "branch-alias": {
  2134. "dev-main": "1.23-dev"
  2135. },
  2136. "thanks": {
  2137. "name": "symfony/polyfill",
  2138. "url": "https://github.com/symfony/polyfill"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "files": [
  2143. "bootstrap.php"
  2144. ],
  2145. "psr-4": {
  2146. "Symfony\\Polyfill\\Ctype\\": ""
  2147. }
  2148. },
  2149. "notification-url": "https://packagist.org/downloads/",
  2150. "license": [
  2151. "MIT"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Gert de Pagter",
  2156. "email": "BackEndTea@gmail.com"
  2157. },
  2158. {
  2159. "name": "Symfony Community",
  2160. "homepage": "https://symfony.com/contributors"
  2161. }
  2162. ],
  2163. "description": "Symfony polyfill for ctype functions",
  2164. "homepage": "https://symfony.com",
  2165. "keywords": [
  2166. "compatibility",
  2167. "ctype",
  2168. "polyfill",
  2169. "portable"
  2170. ],
  2171. "support": {
  2172. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  2173. },
  2174. "funding": [
  2175. {
  2176. "url": "https://symfony.com/sponsor",
  2177. "type": "custom"
  2178. },
  2179. {
  2180. "url": "https://github.com/fabpot",
  2181. "type": "github"
  2182. },
  2183. {
  2184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2185. "type": "tidelift"
  2186. }
  2187. ],
  2188. "time": "2021-10-20T20:35:02+00:00"
  2189. },
  2190. {
  2191. "name": "theseer/tokenizer",
  2192. "version": "1.2.1",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/theseer/tokenizer.git",
  2196. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  2201. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  2202. "shasum": "",
  2203. "mirrors": [
  2204. {
  2205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2206. "preferred": true
  2207. }
  2208. ]
  2209. },
  2210. "require": {
  2211. "ext-dom": "*",
  2212. "ext-tokenizer": "*",
  2213. "ext-xmlwriter": "*",
  2214. "php": "^7.2 || ^8.0"
  2215. },
  2216. "type": "library",
  2217. "autoload": {
  2218. "classmap": [
  2219. "src/"
  2220. ]
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "BSD-3-Clause"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Arne Blankerts",
  2229. "email": "arne@blankerts.de",
  2230. "role": "Developer"
  2231. }
  2232. ],
  2233. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2234. "support": {
  2235. "issues": "https://github.com/theseer/tokenizer/issues",
  2236. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  2237. },
  2238. "funding": [
  2239. {
  2240. "url": "https://github.com/theseer",
  2241. "type": "github"
  2242. }
  2243. ],
  2244. "time": "2021-07-28T10:34:58+00:00"
  2245. },
  2246. {
  2247. "name": "webmozart/assert",
  2248. "version": "1.10.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/webmozarts/assert.git",
  2252. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  2257. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "php": "^7.2 || ^8.0",
  2268. "symfony/polyfill-ctype": "^1.8"
  2269. },
  2270. "conflict": {
  2271. "phpstan/phpstan": "<0.12.20",
  2272. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2273. },
  2274. "require-dev": {
  2275. "phpunit/phpunit": "^8.5.13"
  2276. },
  2277. "type": "library",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-master": "1.10-dev"
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-4": {
  2285. "Webmozart\\Assert\\": "src/"
  2286. }
  2287. },
  2288. "notification-url": "https://packagist.org/downloads/",
  2289. "license": [
  2290. "MIT"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Bernhard Schussek",
  2295. "email": "bschussek@gmail.com"
  2296. }
  2297. ],
  2298. "description": "Assertions to validate method input/output with nice error messages.",
  2299. "keywords": [
  2300. "assert",
  2301. "check",
  2302. "validate"
  2303. ],
  2304. "support": {
  2305. "issues": "https://github.com/webmozarts/assert/issues",
  2306. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  2307. },
  2308. "time": "2021-03-09T10:59:23+00:00"
  2309. }
  2310. ],
  2311. "aliases": [],
  2312. "minimum-stability": "stable",
  2313. "stability-flags": [],
  2314. "prefer-stable": false,
  2315. "prefer-lowest": false,
  2316. "platform": [],
  2317. "platform-dev": [],
  2318. "plugin-api-version": "2.1.0"
  2319. }