composer.lock 76 KB

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