composer.lock 71 KB

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