composer.lock 79 KB

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