composer.lock 81 KB

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