installed.json 89KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  1. {
  2. "packages": [
  3. {
  4. "name": "doctrine/instantiator",
  5. "version": "1.4.0",
  6. "version_normalized": "1.4.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/doctrine/instantiator.git",
  10. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  15. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "^7.1 || ^8.0"
  20. },
  21. "require-dev": {
  22. "doctrine/coding-standard": "^8.0",
  23. "ext-pdo": "*",
  24. "ext-phar": "*",
  25. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  26. "phpstan/phpstan": "^0.12",
  27. "phpstan/phpstan-phpunit": "^0.12",
  28. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  29. },
  30. "time": "2020-11-10T18:47:58+00:00",
  31. "type": "library",
  32. "installation-source": "source",
  33. "autoload": {
  34. "psr-4": {
  35. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Marco Pivetta",
  45. "email": "ocramius@gmail.com",
  46. "homepage": "https://ocramius.github.io/"
  47. }
  48. ],
  49. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  50. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  51. "keywords": [
  52. "constructor",
  53. "instantiate"
  54. ],
  55. "support": {
  56. "issues": "https://github.com/doctrine/instantiator/issues",
  57. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  58. },
  59. "funding": [
  60. {
  61. "url": "https://www.doctrine-project.org/sponsorship.html",
  62. "type": "custom"
  63. },
  64. {
  65. "url": "https://www.patreon.com/phpdoctrine",
  66. "type": "patreon"
  67. },
  68. {
  69. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  70. "type": "tidelift"
  71. }
  72. ],
  73. "install-path": "../doctrine/instantiator"
  74. },
  75. {
  76. "name": "ezyang/htmlpurifier",
  77. "version": "v4.14.0",
  78. "version_normalized": "4.14.0.0",
  79. "source": {
  80. "type": "git",
  81. "url": "https://github.com/ezyang/htmlpurifier.git",
  82. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  83. },
  84. "dist": {
  85. "type": "zip",
  86. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  87. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  88. "shasum": ""
  89. },
  90. "require": {
  91. "php": ">=5.2"
  92. },
  93. "time": "2021-12-25T01:21:49+00:00",
  94. "type": "library",
  95. "installation-source": "source",
  96. "autoload": {
  97. "psr-0": {
  98. "HTMLPurifier": "library/"
  99. },
  100. "files": [
  101. "library/HTMLPurifier.composer.php"
  102. ],
  103. "exclude-from-classmap": [
  104. "/library/HTMLPurifier/Language/"
  105. ]
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "LGPL-2.1-or-later"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Edward Z. Yang",
  114. "email": "admin@htmlpurifier.org",
  115. "homepage": "http://ezyang.com"
  116. }
  117. ],
  118. "description": "Standards compliant HTML filter written in PHP",
  119. "homepage": "http://htmlpurifier.org/",
  120. "keywords": [
  121. "html"
  122. ],
  123. "support": {
  124. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  125. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  126. },
  127. "install-path": "../ezyang/htmlpurifier"
  128. },
  129. {
  130. "name": "halaxa/json-machine",
  131. "version": "1.1.0",
  132. "version_normalized": "1.1.0.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/halaxa/json-machine.git",
  136. "reference": "c7edb2317c783f931c7f7cc4ab989d29a2151aef"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/halaxa/json-machine/zipball/c7edb2317c783f931c7f7cc4ab989d29a2151aef",
  141. "reference": "c7edb2317c783f931c7f7cc4ab989d29a2151aef",
  142. "shasum": ""
  143. },
  144. "require": {
  145. "php": ">=7.0"
  146. },
  147. "require-dev": {
  148. "ext-json": "*",
  149. "friendsofphp/php-cs-fixer": "^3.0",
  150. "phpunit/phpunit": "^8.0"
  151. },
  152. "suggest": {
  153. "ext-json": "To run JSON Machine out of the box without custom decoders.",
  154. "guzzlehttp/guzzle": "To run example with GuzzleHttp"
  155. },
  156. "time": "2022-02-19T21:00:16+00:00",
  157. "type": "library",
  158. "installation-source": "source",
  159. "autoload": {
  160. "psr-4": {
  161. "JsonMachine\\": "src/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "Apache-2.0"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Filip Halaxa",
  171. "email": "filip@halaxa.cz"
  172. }
  173. ],
  174. "description": "Efficient, easy-to-use and fast JSON pull parser",
  175. "support": {
  176. "issues": "https://github.com/halaxa/json-machine/issues",
  177. "source": "https://github.com/halaxa/json-machine/tree/1.1.0"
  178. },
  179. "funding": [
  180. {
  181. "url": "https://ko-fi.com/G2G57KTE4",
  182. "type": "other"
  183. }
  184. ],
  185. "install-path": "../halaxa/json-machine"
  186. },
  187. {
  188. "name": "maennchen/zipstream-php",
  189. "version": "2.1.0",
  190. "version_normalized": "2.1.0.0",
  191. "source": {
  192. "type": "git",
  193. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  194. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  195. },
  196. "dist": {
  197. "type": "zip",
  198. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  199. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  200. "shasum": ""
  201. },
  202. "require": {
  203. "myclabs/php-enum": "^1.5",
  204. "php": ">= 7.1",
  205. "psr/http-message": "^1.0",
  206. "symfony/polyfill-mbstring": "^1.0"
  207. },
  208. "require-dev": {
  209. "ext-zip": "*",
  210. "guzzlehttp/guzzle": ">= 6.3",
  211. "mikey179/vfsstream": "^1.6",
  212. "phpunit/phpunit": ">= 7.5"
  213. },
  214. "time": "2020-05-30T13:11:16+00:00",
  215. "type": "library",
  216. "installation-source": "source",
  217. "autoload": {
  218. "psr-4": {
  219. "ZipStream\\": "src/"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "authors": [
  227. {
  228. "name": "Paul Duncan",
  229. "email": "pabs@pablotron.org"
  230. },
  231. {
  232. "name": "Jonatan Männchen",
  233. "email": "jonatan@maennchen.ch"
  234. },
  235. {
  236. "name": "Jesse Donat",
  237. "email": "donatj@gmail.com"
  238. },
  239. {
  240. "name": "András Kolesár",
  241. "email": "kolesar@kolesar.hu"
  242. }
  243. ],
  244. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  245. "keywords": [
  246. "stream",
  247. "zip"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  251. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  252. },
  253. "funding": [
  254. {
  255. "url": "https://opencollective.com/zipstream",
  256. "type": "open_collective"
  257. }
  258. ],
  259. "install-path": "../maennchen/zipstream-php"
  260. },
  261. {
  262. "name": "markbaker/complex",
  263. "version": "3.0.1",
  264. "version_normalized": "3.0.1.0",
  265. "source": {
  266. "type": "git",
  267. "url": "https://github.com/MarkBaker/PHPComplex.git",
  268. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  269. },
  270. "dist": {
  271. "type": "zip",
  272. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  273. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  274. "shasum": ""
  275. },
  276. "require": {
  277. "php": "^7.2 || ^8.0"
  278. },
  279. "require-dev": {
  280. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  281. "phpcompatibility/php-compatibility": "^9.0",
  282. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  283. "squizlabs/php_codesniffer": "^3.4"
  284. },
  285. "time": "2021-06-29T15:32:53+00:00",
  286. "type": "library",
  287. "installation-source": "source",
  288. "autoload": {
  289. "psr-4": {
  290. "Complex\\": "classes/src/"
  291. }
  292. },
  293. "notification-url": "https://packagist.org/downloads/",
  294. "license": [
  295. "MIT"
  296. ],
  297. "authors": [
  298. {
  299. "name": "Mark Baker",
  300. "email": "mark@lange.demon.co.uk"
  301. }
  302. ],
  303. "description": "PHP Class for working with complex numbers",
  304. "homepage": "https://github.com/MarkBaker/PHPComplex",
  305. "keywords": [
  306. "complex",
  307. "mathematics"
  308. ],
  309. "support": {
  310. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  311. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  312. },
  313. "install-path": "../markbaker/complex"
  314. },
  315. {
  316. "name": "markbaker/matrix",
  317. "version": "3.0.0",
  318. "version_normalized": "3.0.0.0",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  322. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  327. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  328. "shasum": ""
  329. },
  330. "require": {
  331. "php": "^7.1 || ^8.0"
  332. },
  333. "require-dev": {
  334. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  335. "phpcompatibility/php-compatibility": "^9.0",
  336. "phpdocumentor/phpdocumentor": "2.*",
  337. "phploc/phploc": "^4.0",
  338. "phpmd/phpmd": "2.*",
  339. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  340. "sebastian/phpcpd": "^4.0",
  341. "squizlabs/php_codesniffer": "^3.4"
  342. },
  343. "time": "2021-07-01T19:01:15+00:00",
  344. "type": "library",
  345. "installation-source": "source",
  346. "autoload": {
  347. "psr-4": {
  348. "Matrix\\": "classes/src/"
  349. }
  350. },
  351. "notification-url": "https://packagist.org/downloads/",
  352. "license": [
  353. "MIT"
  354. ],
  355. "authors": [
  356. {
  357. "name": "Mark Baker",
  358. "email": "mark@demon-angel.eu"
  359. }
  360. ],
  361. "description": "PHP Class for working with matrices",
  362. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  363. "keywords": [
  364. "mathematics",
  365. "matrix",
  366. "vector"
  367. ],
  368. "support": {
  369. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  370. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  371. },
  372. "install-path": "../markbaker/matrix"
  373. },
  374. {
  375. "name": "mikey179/vfsstream",
  376. "version": "v1.1.0",
  377. "version_normalized": "1.1.0.0",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/bovigo/vfsStream.git",
  381. "reference": "fc0fe8f4d0b527254a2dc45f0c265567c881d07e"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/fc0fe8f4d0b527254a2dc45f0c265567c881d07e",
  386. "reference": "fc0fe8f4d0b527254a2dc45f0c265567c881d07e",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "php": ">=5.3.0"
  391. },
  392. "time": "2012-08-25T12:49:29+00:00",
  393. "type": "library",
  394. "installation-source": "source",
  395. "autoload": {
  396. "psr-0": {
  397. "org\\bovigo\\vfs": "src/main/php"
  398. }
  399. },
  400. "notification-url": "https://packagist.org/downloads/",
  401. "license": [
  402. "BSD"
  403. ],
  404. "homepage": "http://vfs.bovigo.org/",
  405. "support": {
  406. "issues": "https://github.com/bovigo/vfsStream/issues",
  407. "source": "https://github.com/bovigo/vfsStream/tree/v1.1.0"
  408. },
  409. "install-path": "../mikey179/vfsstream"
  410. },
  411. {
  412. "name": "myclabs/deep-copy",
  413. "version": "1.10.2",
  414. "version_normalized": "1.10.2.0",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/myclabs/DeepCopy.git",
  418. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  423. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "php": "^7.1 || ^8.0"
  428. },
  429. "require-dev": {
  430. "doctrine/collections": "^1.0",
  431. "doctrine/common": "^2.6",
  432. "phpunit/phpunit": "^7.1"
  433. },
  434. "time": "2020-11-13T09:40:50+00:00",
  435. "type": "library",
  436. "installation-source": "source",
  437. "autoload": {
  438. "files": [
  439. "src/DeepCopy/deep_copy.php"
  440. ],
  441. "psr-4": {
  442. "DeepCopy\\": "src/DeepCopy/"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "description": "Create deep copies (clones) of your objects",
  450. "keywords": [
  451. "clone",
  452. "copy",
  453. "duplicate",
  454. "object",
  455. "object graph"
  456. ],
  457. "support": {
  458. "issues": "https://github.com/myclabs/DeepCopy/issues",
  459. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  460. },
  461. "funding": [
  462. {
  463. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  464. "type": "tidelift"
  465. }
  466. ],
  467. "install-path": "../myclabs/deep-copy"
  468. },
  469. {
  470. "name": "myclabs/php-enum",
  471. "version": "1.8.3",
  472. "version_normalized": "1.8.3.0",
  473. "source": {
  474. "type": "git",
  475. "url": "https://github.com/myclabs/php-enum.git",
  476. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  477. },
  478. "dist": {
  479. "type": "zip",
  480. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  481. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  482. "shasum": ""
  483. },
  484. "require": {
  485. "ext-json": "*",
  486. "php": "^7.3 || ^8.0"
  487. },
  488. "require-dev": {
  489. "phpunit/phpunit": "^9.5",
  490. "squizlabs/php_codesniffer": "1.*",
  491. "vimeo/psalm": "^4.6.2"
  492. },
  493. "time": "2021-07-05T08:18:36+00:00",
  494. "type": "library",
  495. "installation-source": "source",
  496. "autoload": {
  497. "psr-4": {
  498. "MyCLabs\\Enum\\": "src/"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "PHP Enum contributors",
  508. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  509. }
  510. ],
  511. "description": "PHP Enum implementation",
  512. "homepage": "http://github.com/myclabs/php-enum",
  513. "keywords": [
  514. "enum"
  515. ],
  516. "support": {
  517. "issues": "https://github.com/myclabs/php-enum/issues",
  518. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  519. },
  520. "funding": [
  521. {
  522. "url": "https://github.com/mnapoli",
  523. "type": "github"
  524. },
  525. {
  526. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  527. "type": "tidelift"
  528. }
  529. ],
  530. "install-path": "../myclabs/php-enum"
  531. },
  532. {
  533. "name": "phpdocumentor/reflection-common",
  534. "version": "2.2.0",
  535. "version_normalized": "2.2.0.0",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  539. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  544. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "php": "^7.2 || ^8.0"
  549. },
  550. "time": "2020-06-27T09:03:43+00:00",
  551. "type": "library",
  552. "extra": {
  553. "branch-alias": {
  554. "dev-2.x": "2.x-dev"
  555. }
  556. },
  557. "installation-source": "source",
  558. "autoload": {
  559. "psr-4": {
  560. "phpDocumentor\\Reflection\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Jaap van Otterdijk",
  570. "email": "opensource@ijaap.nl"
  571. }
  572. ],
  573. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  574. "homepage": "http://www.phpdoc.org",
  575. "keywords": [
  576. "FQSEN",
  577. "phpDocumentor",
  578. "phpdoc",
  579. "reflection",
  580. "static analysis"
  581. ],
  582. "support": {
  583. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  584. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  585. },
  586. "install-path": "../phpdocumentor/reflection-common"
  587. },
  588. {
  589. "name": "phpdocumentor/reflection-docblock",
  590. "version": "5.3.0",
  591. "version_normalized": "5.3.0.0",
  592. "source": {
  593. "type": "git",
  594. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  595. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  596. },
  597. "dist": {
  598. "type": "zip",
  599. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  600. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  601. "shasum": ""
  602. },
  603. "require": {
  604. "ext-filter": "*",
  605. "php": "^7.2 || ^8.0",
  606. "phpdocumentor/reflection-common": "^2.2",
  607. "phpdocumentor/type-resolver": "^1.3",
  608. "webmozart/assert": "^1.9.1"
  609. },
  610. "require-dev": {
  611. "mockery/mockery": "~1.3.2",
  612. "psalm/phar": "^4.8"
  613. },
  614. "time": "2021-10-19T17:43:47+00:00",
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-master": "5.x-dev"
  619. }
  620. },
  621. "installation-source": "source",
  622. "autoload": {
  623. "psr-4": {
  624. "phpDocumentor\\Reflection\\": "src"
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Mike van Riel",
  634. "email": "me@mikevanriel.com"
  635. },
  636. {
  637. "name": "Jaap van Otterdijk",
  638. "email": "account@ijaap.nl"
  639. }
  640. ],
  641. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  642. "support": {
  643. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  644. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  645. },
  646. "install-path": "../phpdocumentor/reflection-docblock"
  647. },
  648. {
  649. "name": "phpdocumentor/type-resolver",
  650. "version": "1.6.0",
  651. "version_normalized": "1.6.0.0",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  655. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  660. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "php": "^7.2 || ^8.0",
  665. "phpdocumentor/reflection-common": "^2.0"
  666. },
  667. "require-dev": {
  668. "ext-tokenizer": "*",
  669. "psalm/phar": "^4.8"
  670. },
  671. "time": "2022-01-04T19:58:01+00:00",
  672. "type": "library",
  673. "extra": {
  674. "branch-alias": {
  675. "dev-1.x": "1.x-dev"
  676. }
  677. },
  678. "installation-source": "source",
  679. "autoload": {
  680. "psr-4": {
  681. "phpDocumentor\\Reflection\\": "src"
  682. }
  683. },
  684. "notification-url": "https://packagist.org/downloads/",
  685. "license": [
  686. "MIT"
  687. ],
  688. "authors": [
  689. {
  690. "name": "Mike van Riel",
  691. "email": "me@mikevanriel.com"
  692. }
  693. ],
  694. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  695. "support": {
  696. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  697. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  698. },
  699. "install-path": "../phpdocumentor/type-resolver"
  700. },
  701. {
  702. "name": "phpoffice/phpspreadsheet",
  703. "version": "1.22.0",
  704. "version_normalized": "1.22.0.0",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  708. "reference": "3a9e29b4f386a08a151a33578e80ef1747037a48"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/3a9e29b4f386a08a151a33578e80ef1747037a48",
  713. "reference": "3a9e29b4f386a08a151a33578e80ef1747037a48",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "ext-ctype": "*",
  718. "ext-dom": "*",
  719. "ext-fileinfo": "*",
  720. "ext-gd": "*",
  721. "ext-iconv": "*",
  722. "ext-libxml": "*",
  723. "ext-mbstring": "*",
  724. "ext-simplexml": "*",
  725. "ext-xml": "*",
  726. "ext-xmlreader": "*",
  727. "ext-xmlwriter": "*",
  728. "ext-zip": "*",
  729. "ext-zlib": "*",
  730. "ezyang/htmlpurifier": "^4.13",
  731. "maennchen/zipstream-php": "^2.1",
  732. "markbaker/complex": "^3.0",
  733. "markbaker/matrix": "^3.0",
  734. "php": "^7.3 || ^8.0",
  735. "psr/http-client": "^1.0",
  736. "psr/http-factory": "^1.0",
  737. "psr/simple-cache": "^1.0"
  738. },
  739. "require-dev": {
  740. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  741. "dompdf/dompdf": "^1.0",
  742. "friendsofphp/php-cs-fixer": "^3.2",
  743. "jpgraph/jpgraph": "^4.0",
  744. "mpdf/mpdf": "8.0.17",
  745. "phpcompatibility/php-compatibility": "^9.3",
  746. "phpstan/phpstan": "^1.1",
  747. "phpstan/phpstan-phpunit": "^1.0",
  748. "phpunit/phpunit": "^8.5 || ^9.0",
  749. "squizlabs/php_codesniffer": "^3.6",
  750. "tecnickcom/tcpdf": "^6.4"
  751. },
  752. "suggest": {
  753. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  754. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  755. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  756. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  757. },
  758. "time": "2022-02-18T12:57:07+00:00",
  759. "type": "library",
  760. "installation-source": "source",
  761. "autoload": {
  762. "psr-4": {
  763. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  764. }
  765. },
  766. "notification-url": "https://packagist.org/downloads/",
  767. "license": [
  768. "MIT"
  769. ],
  770. "authors": [
  771. {
  772. "name": "Maarten Balliauw",
  773. "homepage": "https://blog.maartenballiauw.be"
  774. },
  775. {
  776. "name": "Mark Baker",
  777. "homepage": "https://markbakeruk.net"
  778. },
  779. {
  780. "name": "Franck Lefevre",
  781. "homepage": "https://rootslabs.net"
  782. },
  783. {
  784. "name": "Erik Tilt"
  785. },
  786. {
  787. "name": "Adrien Crivelli"
  788. }
  789. ],
  790. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  791. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  792. "keywords": [
  793. "OpenXML",
  794. "excel",
  795. "gnumeric",
  796. "ods",
  797. "php",
  798. "spreadsheet",
  799. "xls",
  800. "xlsx"
  801. ],
  802. "support": {
  803. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  804. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.22.0"
  805. },
  806. "install-path": "../phpoffice/phpspreadsheet"
  807. },
  808. {
  809. "name": "phpspec/prophecy",
  810. "version": "v1.10.3",
  811. "version_normalized": "1.10.3.0",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/phpspec/prophecy.git",
  815. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  820. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  821. "shasum": ""
  822. },
  823. "require": {
  824. "doctrine/instantiator": "^1.0.2",
  825. "php": "^5.3|^7.0",
  826. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  827. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  828. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  829. },
  830. "require-dev": {
  831. "phpspec/phpspec": "^2.5 || ^3.2",
  832. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  833. },
  834. "time": "2020-03-05T15:02:03+00:00",
  835. "type": "library",
  836. "extra": {
  837. "branch-alias": {
  838. "dev-master": "1.10.x-dev"
  839. }
  840. },
  841. "installation-source": "source",
  842. "autoload": {
  843. "psr-4": {
  844. "Prophecy\\": "src/Prophecy"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "Konstantin Kudryashov",
  854. "email": "ever.zet@gmail.com",
  855. "homepage": "http://everzet.com"
  856. },
  857. {
  858. "name": "Marcello Duarte",
  859. "email": "marcello.duarte@gmail.com"
  860. }
  861. ],
  862. "description": "Highly opinionated mocking framework for PHP 5.3+",
  863. "homepage": "https://github.com/phpspec/prophecy",
  864. "keywords": [
  865. "Double",
  866. "Dummy",
  867. "fake",
  868. "mock",
  869. "spy",
  870. "stub"
  871. ],
  872. "support": {
  873. "issues": "https://github.com/phpspec/prophecy/issues",
  874. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  875. },
  876. "install-path": "../phpspec/prophecy"
  877. },
  878. {
  879. "name": "phpunit/php-code-coverage",
  880. "version": "4.0.8",
  881. "version_normalized": "4.0.8.0",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  885. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  890. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "ext-dom": "*",
  895. "ext-xmlwriter": "*",
  896. "php": "^5.6 || ^7.0",
  897. "phpunit/php-file-iterator": "^1.3",
  898. "phpunit/php-text-template": "^1.2",
  899. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  900. "sebastian/code-unit-reverse-lookup": "^1.0",
  901. "sebastian/environment": "^1.3.2 || ^2.0",
  902. "sebastian/version": "^1.0 || ^2.0"
  903. },
  904. "require-dev": {
  905. "ext-xdebug": "^2.1.4",
  906. "phpunit/phpunit": "^5.7"
  907. },
  908. "suggest": {
  909. "ext-xdebug": "^2.5.1"
  910. },
  911. "time": "2017-04-02T07:44:40+00:00",
  912. "type": "library",
  913. "extra": {
  914. "branch-alias": {
  915. "dev-master": "4.0.x-dev"
  916. }
  917. },
  918. "installation-source": "source",
  919. "autoload": {
  920. "classmap": [
  921. "src/"
  922. ]
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "BSD-3-Clause"
  927. ],
  928. "authors": [
  929. {
  930. "name": "Sebastian Bergmann",
  931. "email": "sb@sebastian-bergmann.de",
  932. "role": "lead"
  933. }
  934. ],
  935. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  936. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  937. "keywords": [
  938. "coverage",
  939. "testing",
  940. "xunit"
  941. ],
  942. "support": {
  943. "irc": "irc://irc.freenode.net/phpunit",
  944. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  945. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/4.0"
  946. },
  947. "install-path": "../phpunit/php-code-coverage"
  948. },
  949. {
  950. "name": "phpunit/php-file-iterator",
  951. "version": "1.4.5",
  952. "version_normalized": "1.4.5.0",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  956. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  961. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  962. "shasum": ""
  963. },
  964. "require": {
  965. "php": ">=5.3.3"
  966. },
  967. "time": "2017-11-27T13:52:08+00:00",
  968. "type": "library",
  969. "extra": {
  970. "branch-alias": {
  971. "dev-master": "1.4.x-dev"
  972. }
  973. },
  974. "installation-source": "source",
  975. "autoload": {
  976. "classmap": [
  977. "src/"
  978. ]
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "BSD-3-Clause"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Sebastian Bergmann",
  987. "email": "sb@sebastian-bergmann.de",
  988. "role": "lead"
  989. }
  990. ],
  991. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  992. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  993. "keywords": [
  994. "filesystem",
  995. "iterator"
  996. ],
  997. "support": {
  998. "irc": "irc://irc.freenode.net/phpunit",
  999. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1000. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
  1001. },
  1002. "install-path": "../phpunit/php-file-iterator"
  1003. },
  1004. {
  1005. "name": "phpunit/php-text-template",
  1006. "version": "1.2.1",
  1007. "version_normalized": "1.2.1.0",
  1008. "source": {
  1009. "type": "git",
  1010. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1011. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1012. },
  1013. "dist": {
  1014. "type": "zip",
  1015. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1016. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1017. "shasum": ""
  1018. },
  1019. "require": {
  1020. "php": ">=5.3.3"
  1021. },
  1022. "time": "2015-06-21T13:50:34+00:00",
  1023. "type": "library",
  1024. "installation-source": "source",
  1025. "autoload": {
  1026. "classmap": [
  1027. "src/"
  1028. ]
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "BSD-3-Clause"
  1033. ],
  1034. "authors": [
  1035. {
  1036. "name": "Sebastian Bergmann",
  1037. "email": "sebastian@phpunit.de",
  1038. "role": "lead"
  1039. }
  1040. ],
  1041. "description": "Simple template engine.",
  1042. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1043. "keywords": [
  1044. "template"
  1045. ],
  1046. "support": {
  1047. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1048. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  1049. },
  1050. "install-path": "../phpunit/php-text-template"
  1051. },
  1052. {
  1053. "name": "phpunit/php-timer",
  1054. "version": "1.0.9",
  1055. "version_normalized": "1.0.9.0",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1059. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1064. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "php": "^5.3.3 || ^7.0"
  1069. },
  1070. "require-dev": {
  1071. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1072. },
  1073. "time": "2017-02-26T11:10:40+00:00",
  1074. "type": "library",
  1075. "extra": {
  1076. "branch-alias": {
  1077. "dev-master": "1.0-dev"
  1078. }
  1079. },
  1080. "installation-source": "source",
  1081. "autoload": {
  1082. "classmap": [
  1083. "src/"
  1084. ]
  1085. },
  1086. "notification-url": "https://packagist.org/downloads/",
  1087. "license": [
  1088. "BSD-3-Clause"
  1089. ],
  1090. "authors": [
  1091. {
  1092. "name": "Sebastian Bergmann",
  1093. "email": "sb@sebastian-bergmann.de",
  1094. "role": "lead"
  1095. }
  1096. ],
  1097. "description": "Utility class for timing",
  1098. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1099. "keywords": [
  1100. "timer"
  1101. ],
  1102. "support": {
  1103. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1104. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  1105. },
  1106. "install-path": "../phpunit/php-timer"
  1107. },
  1108. {
  1109. "name": "phpunit/php-token-stream",
  1110. "version": "2.0.2",
  1111. "version_normalized": "2.0.2.0",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1115. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  1120. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "ext-tokenizer": "*",
  1125. "php": "^7.0"
  1126. },
  1127. "require-dev": {
  1128. "phpunit/phpunit": "^6.2.4"
  1129. },
  1130. "time": "2017-11-27T05:48:46+00:00",
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "2.0-dev"
  1135. }
  1136. },
  1137. "installation-source": "source",
  1138. "autoload": {
  1139. "classmap": [
  1140. "src/"
  1141. ]
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "BSD-3-Clause"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Sebastian Bergmann",
  1150. "email": "sebastian@phpunit.de"
  1151. }
  1152. ],
  1153. "description": "Wrapper around PHP's tokenizer extension.",
  1154. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1155. "keywords": [
  1156. "tokenizer"
  1157. ],
  1158. "support": {
  1159. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  1160. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  1161. },
  1162. "abandoned": true,
  1163. "install-path": "../phpunit/php-token-stream"
  1164. },
  1165. {
  1166. "name": "phpunit/phpunit",
  1167. "version": "5.7.27",
  1168. "version_normalized": "5.7.27.0",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1172. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  1177. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  1178. "shasum": ""
  1179. },
  1180. "require": {
  1181. "ext-dom": "*",
  1182. "ext-json": "*",
  1183. "ext-libxml": "*",
  1184. "ext-mbstring": "*",
  1185. "ext-xml": "*",
  1186. "myclabs/deep-copy": "~1.3",
  1187. "php": "^5.6 || ^7.0",
  1188. "phpspec/prophecy": "^1.6.2",
  1189. "phpunit/php-code-coverage": "^4.0.4",
  1190. "phpunit/php-file-iterator": "~1.4",
  1191. "phpunit/php-text-template": "~1.2",
  1192. "phpunit/php-timer": "^1.0.6",
  1193. "phpunit/phpunit-mock-objects": "^3.2",
  1194. "sebastian/comparator": "^1.2.4",
  1195. "sebastian/diff": "^1.4.3",
  1196. "sebastian/environment": "^1.3.4 || ^2.0",
  1197. "sebastian/exporter": "~2.0",
  1198. "sebastian/global-state": "^1.1",
  1199. "sebastian/object-enumerator": "~2.0",
  1200. "sebastian/resource-operations": "~1.0",
  1201. "sebastian/version": "^1.0.6|^2.0.1",
  1202. "symfony/yaml": "~2.1|~3.0|~4.0"
  1203. },
  1204. "conflict": {
  1205. "phpdocumentor/reflection-docblock": "3.0.2"
  1206. },
  1207. "require-dev": {
  1208. "ext-pdo": "*"
  1209. },
  1210. "suggest": {
  1211. "ext-xdebug": "*",
  1212. "phpunit/php-invoker": "~1.1"
  1213. },
  1214. "time": "2018-02-01T05:50:59+00:00",
  1215. "bin": [
  1216. "phpunit"
  1217. ],
  1218. "type": "library",
  1219. "extra": {
  1220. "branch-alias": {
  1221. "dev-master": "5.7.x-dev"
  1222. }
  1223. },
  1224. "installation-source": "source",
  1225. "autoload": {
  1226. "classmap": [
  1227. "src/"
  1228. ]
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "BSD-3-Clause"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Sebastian Bergmann",
  1237. "email": "sebastian@phpunit.de",
  1238. "role": "lead"
  1239. }
  1240. ],
  1241. "description": "The PHP Unit Testing framework.",
  1242. "homepage": "https://phpunit.de/",
  1243. "keywords": [
  1244. "phpunit",
  1245. "testing",
  1246. "xunit"
  1247. ],
  1248. "support": {
  1249. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1250. "source": "https://github.com/sebastianbergmann/phpunit/tree/5.7.27"
  1251. },
  1252. "install-path": "../phpunit/phpunit"
  1253. },
  1254. {
  1255. "name": "phpunit/phpunit-mock-objects",
  1256. "version": "3.4.4",
  1257. "version_normalized": "3.4.4.0",
  1258. "source": {
  1259. "type": "git",
  1260. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1261. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
  1262. },
  1263. "dist": {
  1264. "type": "zip",
  1265. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
  1266. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
  1267. "shasum": ""
  1268. },
  1269. "require": {
  1270. "doctrine/instantiator": "^1.0.2",
  1271. "php": "^5.6 || ^7.0",
  1272. "phpunit/php-text-template": "^1.2",
  1273. "sebastian/exporter": "^1.2 || ^2.0"
  1274. },
  1275. "conflict": {
  1276. "phpunit/phpunit": "<5.4.0"
  1277. },
  1278. "require-dev": {
  1279. "phpunit/phpunit": "^5.4"
  1280. },
  1281. "suggest": {
  1282. "ext-soap": "*"
  1283. },
  1284. "time": "2017-06-30T09:13:00+00:00",
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-master": "3.2.x-dev"
  1289. }
  1290. },
  1291. "installation-source": "source",
  1292. "autoload": {
  1293. "classmap": [
  1294. "src/"
  1295. ]
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "BSD-3-Clause"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Sebastian Bergmann",
  1304. "email": "sb@sebastian-bergmann.de",
  1305. "role": "lead"
  1306. }
  1307. ],
  1308. "description": "Mock Object library for PHPUnit",
  1309. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1310. "keywords": [
  1311. "mock",
  1312. "xunit"
  1313. ],
  1314. "support": {
  1315. "irc": "irc://irc.freenode.net/phpunit",
  1316. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  1317. "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/3.4"
  1318. },
  1319. "abandoned": true,
  1320. "install-path": "../phpunit/phpunit-mock-objects"
  1321. },
  1322. {
  1323. "name": "psr/http-client",
  1324. "version": "1.0.1",
  1325. "version_normalized": "1.0.1.0",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/php-fig/http-client.git",
  1329. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1334. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1335. "shasum": ""
  1336. },
  1337. "require": {
  1338. "php": "^7.0 || ^8.0",
  1339. "psr/http-message": "^1.0"
  1340. },
  1341. "time": "2020-06-29T06:28:15+00:00",
  1342. "type": "library",
  1343. "extra": {
  1344. "branch-alias": {
  1345. "dev-master": "1.0.x-dev"
  1346. }
  1347. },
  1348. "installation-source": "source",
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Psr\\Http\\Client\\": "src/"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "PHP-FIG",
  1361. "homepage": "http://www.php-fig.org/"
  1362. }
  1363. ],
  1364. "description": "Common interface for HTTP clients",
  1365. "homepage": "https://github.com/php-fig/http-client",
  1366. "keywords": [
  1367. "http",
  1368. "http-client",
  1369. "psr",
  1370. "psr-18"
  1371. ],
  1372. "support": {
  1373. "source": "https://github.com/php-fig/http-client/tree/master"
  1374. },
  1375. "install-path": "../psr/http-client"
  1376. },
  1377. {
  1378. "name": "psr/http-factory",
  1379. "version": "1.0.1",
  1380. "version_normalized": "1.0.1.0",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/php-fig/http-factory.git",
  1384. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1389. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1390. "shasum": ""
  1391. },
  1392. "require": {
  1393. "php": ">=7.0.0",
  1394. "psr/http-message": "^1.0"
  1395. },
  1396. "time": "2019-04-30T12:38:16+00:00",
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-master": "1.0.x-dev"
  1401. }
  1402. },
  1403. "installation-source": "source",
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Psr\\Http\\Message\\": "src/"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "PHP-FIG",
  1416. "homepage": "http://www.php-fig.org/"
  1417. }
  1418. ],
  1419. "description": "Common interfaces for PSR-7 HTTP message factories",
  1420. "keywords": [
  1421. "factory",
  1422. "http",
  1423. "message",
  1424. "psr",
  1425. "psr-17",
  1426. "psr-7",
  1427. "request",
  1428. "response"
  1429. ],
  1430. "support": {
  1431. "source": "https://github.com/php-fig/http-factory/tree/master"
  1432. },
  1433. "install-path": "../psr/http-factory"
  1434. },
  1435. {
  1436. "name": "psr/http-message",
  1437. "version": "1.0.1",
  1438. "version_normalized": "1.0.1.0",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/php-fig/http-message.git",
  1442. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1447. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": ">=5.3.0"
  1452. },
  1453. "time": "2016-08-06T14:39:51+00:00",
  1454. "type": "library",
  1455. "extra": {
  1456. "branch-alias": {
  1457. "dev-master": "1.0.x-dev"
  1458. }
  1459. },
  1460. "installation-source": "source",
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Psr\\Http\\Message\\": "src/"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "PHP-FIG",
  1473. "homepage": "http://www.php-fig.org/"
  1474. }
  1475. ],
  1476. "description": "Common interface for HTTP messages",
  1477. "homepage": "https://github.com/php-fig/http-message",
  1478. "keywords": [
  1479. "http",
  1480. "http-message",
  1481. "psr",
  1482. "psr-7",
  1483. "request",
  1484. "response"
  1485. ],
  1486. "support": {
  1487. "source": "https://github.com/php-fig/http-message/tree/master"
  1488. },
  1489. "install-path": "../psr/http-message"
  1490. },
  1491. {
  1492. "name": "psr/simple-cache",
  1493. "version": "1.0.1",
  1494. "version_normalized": "1.0.1.0",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/php-fig/simple-cache.git",
  1498. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1503. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1504. "shasum": ""
  1505. },
  1506. "require": {
  1507. "php": ">=5.3.0"
  1508. },
  1509. "time": "2017-10-23T01:57:42+00:00",
  1510. "type": "library",
  1511. "extra": {
  1512. "branch-alias": {
  1513. "dev-master": "1.0.x-dev"
  1514. }
  1515. },
  1516. "installation-source": "source",
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Psr\\SimpleCache\\": "src/"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "PHP-FIG",
  1529. "homepage": "http://www.php-fig.org/"
  1530. }
  1531. ],
  1532. "description": "Common interfaces for simple caching",
  1533. "keywords": [
  1534. "cache",
  1535. "caching",
  1536. "psr",
  1537. "psr-16",
  1538. "simple-cache"
  1539. ],
  1540. "support": {
  1541. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1542. },
  1543. "install-path": "../psr/simple-cache"
  1544. },
  1545. {
  1546. "name": "sebastian/code-unit-reverse-lookup",
  1547. "version": "1.0.2",
  1548. "version_normalized": "1.0.2.0",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1552. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  1557. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "php": ">=5.6"
  1562. },
  1563. "require-dev": {
  1564. "phpunit/phpunit": "^8.5"
  1565. },
  1566. "time": "2020-11-30T08:15:22+00:00",
  1567. "type": "library",
  1568. "extra": {
  1569. "branch-alias": {
  1570. "dev-master": "1.0.x-dev"
  1571. }
  1572. },
  1573. "installation-source": "source",
  1574. "autoload": {
  1575. "classmap": [
  1576. "src/"
  1577. ]
  1578. },
  1579. "notification-url": "https://packagist.org/downloads/",
  1580. "license": [
  1581. "BSD-3-Clause"
  1582. ],
  1583. "authors": [
  1584. {
  1585. "name": "Sebastian Bergmann",
  1586. "email": "sebastian@phpunit.de"
  1587. }
  1588. ],
  1589. "description": "Looks up which function or method a line of code belongs to",
  1590. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1591. "support": {
  1592. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  1593. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  1594. },
  1595. "funding": [
  1596. {
  1597. "url": "https://github.com/sebastianbergmann",
  1598. "type": "github"
  1599. }
  1600. ],
  1601. "install-path": "../sebastian/code-unit-reverse-lookup"
  1602. },
  1603. {
  1604. "name": "sebastian/comparator",
  1605. "version": "1.2.4",
  1606. "version_normalized": "1.2.4.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/sebastianbergmann/comparator.git",
  1610. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1615. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "php": ">=5.3.3",
  1620. "sebastian/diff": "~1.2",
  1621. "sebastian/exporter": "~1.2 || ~2.0"
  1622. },
  1623. "require-dev": {
  1624. "phpunit/phpunit": "~4.4"
  1625. },
  1626. "time": "2017-01-29T09:50:25+00:00",
  1627. "type": "library",
  1628. "extra": {
  1629. "branch-alias": {
  1630. "dev-master": "1.2.x-dev"
  1631. }
  1632. },
  1633. "installation-source": "source",
  1634. "autoload": {
  1635. "classmap": [
  1636. "src/"
  1637. ]
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "BSD-3-Clause"
  1642. ],
  1643. "authors": [
  1644. {
  1645. "name": "Jeff Welch",
  1646. "email": "whatthejeff@gmail.com"
  1647. },
  1648. {
  1649. "name": "Volker Dusch",
  1650. "email": "github@wallbash.com"
  1651. },
  1652. {
  1653. "name": "Bernhard Schussek",
  1654. "email": "bschussek@2bepublished.at"
  1655. },
  1656. {
  1657. "name": "Sebastian Bergmann",
  1658. "email": "sebastian@phpunit.de"
  1659. }
  1660. ],
  1661. "description": "Provides the functionality to compare PHP values for equality",
  1662. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1663. "keywords": [
  1664. "comparator",
  1665. "compare",
  1666. "equality"
  1667. ],
  1668. "support": {
  1669. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1670. "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
  1671. },
  1672. "install-path": "../sebastian/comparator"
  1673. },
  1674. {
  1675. "name": "sebastian/diff",
  1676. "version": "1.4.3",
  1677. "version_normalized": "1.4.3.0",
  1678. "source": {
  1679. "type": "git",
  1680. "url": "https://github.com/sebastianbergmann/diff.git",
  1681. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1682. },
  1683. "dist": {
  1684. "type": "zip",
  1685. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1686. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1687. "shasum": ""
  1688. },
  1689. "require": {
  1690. "php": "^5.3.3 || ^7.0"
  1691. },
  1692. "require-dev": {
  1693. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1694. },
  1695. "time": "2017-05-22T07:24:03+00:00",
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-master": "1.4-dev"
  1700. }
  1701. },
  1702. "installation-source": "source",
  1703. "autoload": {
  1704. "classmap": [
  1705. "src/"
  1706. ]
  1707. },
  1708. "notification-url": "https://packagist.org/downloads/",
  1709. "license": [
  1710. "BSD-3-Clause"
  1711. ],
  1712. "authors": [
  1713. {
  1714. "name": "Kore Nordmann",
  1715. "email": "mail@kore-nordmann.de"
  1716. },
  1717. {
  1718. "name": "Sebastian Bergmann",
  1719. "email": "sebastian@phpunit.de"
  1720. }
  1721. ],
  1722. "description": "Diff implementation",
  1723. "homepage": "https://github.com/sebastianbergmann/diff",
  1724. "keywords": [
  1725. "diff"
  1726. ],
  1727. "support": {
  1728. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1729. "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
  1730. },
  1731. "install-path": "../sebastian/diff"
  1732. },
  1733. {
  1734. "name": "sebastian/environment",
  1735. "version": "2.0.0",
  1736. "version_normalized": "2.0.0.0",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/sebastianbergmann/environment.git",
  1740. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1745. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1746. "shasum": ""
  1747. },
  1748. "require": {
  1749. "php": "^5.6 || ^7.0"
  1750. },
  1751. "require-dev": {
  1752. "phpunit/phpunit": "^5.0"
  1753. },
  1754. "time": "2016-11-26T07:53:53+00:00",
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "2.0.x-dev"
  1759. }
  1760. },
  1761. "installation-source": "source",
  1762. "autoload": {
  1763. "classmap": [
  1764. "src/"
  1765. ]
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "BSD-3-Clause"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Sebastian Bergmann",
  1774. "email": "sebastian@phpunit.de"
  1775. }
  1776. ],
  1777. "description": "Provides functionality to handle HHVM/PHP environments",
  1778. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1779. "keywords": [
  1780. "Xdebug",
  1781. "environment",
  1782. "hhvm"
  1783. ],
  1784. "support": {
  1785. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1786. "source": "https://github.com/sebastianbergmann/environment/tree/master"
  1787. },
  1788. "install-path": "../sebastian/environment"
  1789. },
  1790. {
  1791. "name": "sebastian/exporter",
  1792. "version": "2.0.0",
  1793. "version_normalized": "2.0.0.0",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/sebastianbergmann/exporter.git",
  1797. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1802. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "php": ">=5.3.3",
  1807. "sebastian/recursion-context": "~2.0"
  1808. },
  1809. "require-dev": {
  1810. "ext-mbstring": "*",
  1811. "phpunit/phpunit": "~4.4"
  1812. },
  1813. "time": "2016-11-19T08:54:04+00:00",
  1814. "type": "library",
  1815. "extra": {
  1816. "branch-alias": {
  1817. "dev-master": "2.0.x-dev"
  1818. }
  1819. },
  1820. "installation-source": "source",
  1821. "autoload": {
  1822. "classmap": [
  1823. "src/"
  1824. ]
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "BSD-3-Clause"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Jeff Welch",
  1833. "email": "whatthejeff@gmail.com"
  1834. },
  1835. {
  1836. "name": "Volker Dusch",
  1837. "email": "github@wallbash.com"
  1838. },
  1839. {
  1840. "name": "Bernhard Schussek",
  1841. "email": "bschussek@2bepublished.at"
  1842. },
  1843. {
  1844. "name": "Sebastian Bergmann",
  1845. "email": "sebastian@phpunit.de"
  1846. },
  1847. {
  1848. "name": "Adam Harvey",
  1849. "email": "aharvey@php.net"
  1850. }
  1851. ],
  1852. "description": "Provides the functionality to export PHP variables for visualization",
  1853. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1854. "keywords": [
  1855. "export",
  1856. "exporter"
  1857. ],
  1858. "support": {
  1859. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1860. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  1861. },
  1862. "install-path": "../sebastian/exporter"
  1863. },
  1864. {
  1865. "name": "sebastian/global-state",
  1866. "version": "1.1.1",
  1867. "version_normalized": "1.1.1.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/sebastianbergmann/global-state.git",
  1871. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1876. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "php": ">=5.3.3"
  1881. },
  1882. "require-dev": {
  1883. "phpunit/phpunit": "~4.2"
  1884. },
  1885. "suggest": {
  1886. "ext-uopz": "*"
  1887. },
  1888. "time": "2015-10-12T03:26:01+00:00",
  1889. "type": "library",
  1890. "extra": {
  1891. "branch-alias": {
  1892. "dev-master": "1.0-dev"
  1893. }
  1894. },
  1895. "installation-source": "source",
  1896. "autoload": {
  1897. "classmap": [
  1898. "src/"
  1899. ]
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "BSD-3-Clause"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "Sebastian Bergmann",
  1908. "email": "sebastian@phpunit.de"
  1909. }
  1910. ],
  1911. "description": "Snapshotting of global state",
  1912. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1913. "keywords": [
  1914. "global state"
  1915. ],
  1916. "support": {
  1917. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1918. "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
  1919. },
  1920. "install-path": "../sebastian/global-state"
  1921. },
  1922. {
  1923. "name": "sebastian/object-enumerator",
  1924. "version": "2.0.1",
  1925. "version_normalized": "2.0.1.0",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1929. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1934. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1935. "shasum": ""
  1936. },
  1937. "require": {
  1938. "php": ">=5.6",
  1939. "sebastian/recursion-context": "~2.0"
  1940. },
  1941. "require-dev": {
  1942. "phpunit/phpunit": "~5"
  1943. },
  1944. "time": "2017-02-18T15:18:39+00:00",
  1945. "type": "library",
  1946. "extra": {
  1947. "branch-alias": {
  1948. "dev-master": "2.0.x-dev"
  1949. }
  1950. },
  1951. "installation-source": "source",
  1952. "autoload": {
  1953. "classmap": [
  1954. "src/"
  1955. ]
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "BSD-3-Clause"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Sebastian Bergmann",
  1964. "email": "sebastian@phpunit.de"
  1965. }
  1966. ],
  1967. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1968. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1969. "support": {
  1970. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  1971. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
  1972. },
  1973. "install-path": "../sebastian/object-enumerator"
  1974. },
  1975. {
  1976. "name": "sebastian/recursion-context",
  1977. "version": "2.0.0",
  1978. "version_normalized": "2.0.0.0",
  1979. "source": {
  1980. "type": "git",
  1981. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1982. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  1983. },
  1984. "dist": {
  1985. "type": "zip",
  1986. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  1987. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  1988. "shasum": ""
  1989. },
  1990. "require": {
  1991. "php": ">=5.3.3"
  1992. },
  1993. "require-dev": {
  1994. "phpunit/phpunit": "~4.4"
  1995. },
  1996. "time": "2016-11-19T07:33:16+00:00",
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "2.0.x-dev"
  2001. }
  2002. },
  2003. "installation-source": "source",
  2004. "autoload": {
  2005. "classmap": [
  2006. "src/"
  2007. ]
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "BSD-3-Clause"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Jeff Welch",
  2016. "email": "whatthejeff@gmail.com"
  2017. },
  2018. {
  2019. "name": "Sebastian Bergmann",
  2020. "email": "sebastian@phpunit.de"
  2021. },
  2022. {
  2023. "name": "Adam Harvey",
  2024. "email": "aharvey@php.net"
  2025. }
  2026. ],
  2027. "description": "Provides functionality to recursively process PHP variables",
  2028. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2029. "support": {
  2030. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2031. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  2032. },
  2033. "install-path": "../sebastian/recursion-context"
  2034. },
  2035. {
  2036. "name": "sebastian/resource-operations",
  2037. "version": "1.0.0",
  2038. "version_normalized": "1.0.0.0",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2042. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2047. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "php": ">=5.6.0"
  2052. },
  2053. "time": "2015-07-28T20:34:47+00:00",
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-master": "1.0.x-dev"
  2058. }
  2059. },
  2060. "installation-source": "source",
  2061. "autoload": {
  2062. "classmap": [
  2063. "src/"
  2064. ]
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "BSD-3-Clause"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Sebastian Bergmann",
  2073. "email": "sebastian@phpunit.de"
  2074. }
  2075. ],
  2076. "description": "Provides a list of PHP built-in functions that operate on resources",
  2077. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2078. "support": {
  2079. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  2080. "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
  2081. },
  2082. "install-path": "../sebastian/resource-operations"
  2083. },
  2084. {
  2085. "name": "sebastian/version",
  2086. "version": "2.0.1",
  2087. "version_normalized": "2.0.1.0",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/sebastianbergmann/version.git",
  2091. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2096. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "php": ">=5.6"
  2101. },
  2102. "time": "2016-10-03T07:35:21+00:00",
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "2.0.x-dev"
  2107. }
  2108. },
  2109. "installation-source": "source",
  2110. "autoload": {
  2111. "classmap": [
  2112. "src/"
  2113. ]
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "BSD-3-Clause"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Sebastian Bergmann",
  2122. "email": "sebastian@phpunit.de",
  2123. "role": "lead"
  2124. }
  2125. ],
  2126. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2127. "homepage": "https://github.com/sebastianbergmann/version",
  2128. "support": {
  2129. "issues": "https://github.com/sebastianbergmann/version/issues",
  2130. "source": "https://github.com/sebastianbergmann/version/tree/master"
  2131. },
  2132. "install-path": "../sebastian/version"
  2133. },
  2134. {
  2135. "name": "symfony/polyfill-ctype",
  2136. "version": "v1.24.0",
  2137. "version_normalized": "1.24.0.0",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/symfony/polyfill-ctype.git",
  2141. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  2146. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  2147. "shasum": ""
  2148. },
  2149. "require": {
  2150. "php": ">=7.1"
  2151. },
  2152. "provide": {
  2153. "ext-ctype": "*"
  2154. },
  2155. "suggest": {
  2156. "ext-ctype": "For best performance"
  2157. },
  2158. "time": "2021-10-20T20:35:02+00:00",
  2159. "type": "library",
  2160. "extra": {
  2161. "branch-alias": {
  2162. "dev-main": "1.23-dev"
  2163. },
  2164. "thanks": {
  2165. "name": "symfony/polyfill",
  2166. "url": "https://github.com/symfony/polyfill"
  2167. }
  2168. },
  2169. "installation-source": "source",
  2170. "autoload": {
  2171. "psr-4": {
  2172. "Symfony\\Polyfill\\Ctype\\": ""
  2173. },
  2174. "files": [
  2175. "bootstrap.php"
  2176. ]
  2177. },
  2178. "notification-url": "https://packagist.org/downloads/",
  2179. "license": [
  2180. "MIT"
  2181. ],
  2182. "authors": [
  2183. {
  2184. "name": "Gert de Pagter",
  2185. "email": "BackEndTea@gmail.com"
  2186. },
  2187. {
  2188. "name": "Symfony Community",
  2189. "homepage": "https://symfony.com/contributors"
  2190. }
  2191. ],
  2192. "description": "Symfony polyfill for ctype functions",
  2193. "homepage": "https://symfony.com",
  2194. "keywords": [
  2195. "compatibility",
  2196. "ctype",
  2197. "polyfill",
  2198. "portable"
  2199. ],
  2200. "support": {
  2201. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  2202. },
  2203. "funding": [
  2204. {
  2205. "url": "https://symfony.com/sponsor",
  2206. "type": "custom"
  2207. },
  2208. {
  2209. "url": "https://github.com/fabpot",
  2210. "type": "github"
  2211. },
  2212. {
  2213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2214. "type": "tidelift"
  2215. }
  2216. ],
  2217. "install-path": "../symfony/polyfill-ctype"
  2218. },
  2219. {
  2220. "name": "symfony/polyfill-mbstring",
  2221. "version": "v1.24.0",
  2222. "version_normalized": "1.24.0.0",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2226. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  2231. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  2232. "shasum": ""
  2233. },
  2234. "require": {
  2235. "php": ">=7.1"
  2236. },
  2237. "provide": {
  2238. "ext-mbstring": "*"
  2239. },
  2240. "suggest": {
  2241. "ext-mbstring": "For best performance"
  2242. },
  2243. "time": "2021-11-30T18:21:41+00:00",
  2244. "type": "library",
  2245. "extra": {
  2246. "branch-alias": {
  2247. "dev-main": "1.23-dev"
  2248. },
  2249. "thanks": {
  2250. "name": "symfony/polyfill",
  2251. "url": "https://github.com/symfony/polyfill"
  2252. }
  2253. },
  2254. "installation-source": "source",
  2255. "autoload": {
  2256. "files": [
  2257. "bootstrap.php"
  2258. ],
  2259. "psr-4": {
  2260. "Symfony\\Polyfill\\Mbstring\\": ""
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "Nicolas Grekas",
  2270. "email": "p@tchwork.com"
  2271. },
  2272. {
  2273. "name": "Symfony Community",
  2274. "homepage": "https://symfony.com/contributors"
  2275. }
  2276. ],
  2277. "description": "Symfony polyfill for the Mbstring extension",
  2278. "homepage": "https://symfony.com",
  2279. "keywords": [
  2280. "compatibility",
  2281. "mbstring",
  2282. "polyfill",
  2283. "portable",
  2284. "shim"
  2285. ],
  2286. "support": {
  2287. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
  2288. },
  2289. "funding": [
  2290. {
  2291. "url": "https://symfony.com/sponsor",
  2292. "type": "custom"
  2293. },
  2294. {
  2295. "url": "https://github.com/fabpot",
  2296. "type": "github"
  2297. },
  2298. {
  2299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2300. "type": "tidelift"
  2301. }
  2302. ],
  2303. "install-path": "../symfony/polyfill-mbstring"
  2304. },
  2305. {
  2306. "name": "symfony/yaml",
  2307. "version": "v4.4.37",
  2308. "version_normalized": "4.4.37.0",
  2309. "source": {
  2310. "type": "git",
  2311. "url": "https://github.com/symfony/yaml.git",
  2312. "reference": "d7f637cc0f0cc14beb0984f2bb50da560b271311"
  2313. },
  2314. "dist": {
  2315. "type": "zip",
  2316. "url": "https://api.github.com/repos/symfony/yaml/zipball/d7f637cc0f0cc14beb0984f2bb50da560b271311",
  2317. "reference": "d7f637cc0f0cc14beb0984f2bb50da560b271311",
  2318. "shasum": ""
  2319. },
  2320. "require": {
  2321. "php": ">=7.1.3",
  2322. "symfony/polyfill-ctype": "~1.8"
  2323. },
  2324. "conflict": {
  2325. "symfony/console": "<3.4"
  2326. },
  2327. "require-dev": {
  2328. "symfony/console": "^3.4|^4.0|^5.0"
  2329. },
  2330. "suggest": {
  2331. "symfony/console": "For validating YAML files using the lint command"
  2332. },
  2333. "time": "2022-01-24T20:11:01+00:00",
  2334. "type": "library",
  2335. "installation-source": "source",
  2336. "autoload": {
  2337. "psr-4": {
  2338. "Symfony\\Component\\Yaml\\": ""
  2339. },
  2340. "exclude-from-classmap": [
  2341. "/Tests/"
  2342. ]
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Fabien Potencier",
  2351. "email": "fabien@symfony.com"
  2352. },
  2353. {
  2354. "name": "Symfony Community",
  2355. "homepage": "https://symfony.com/contributors"
  2356. }
  2357. ],
  2358. "description": "Loads and dumps YAML files",
  2359. "homepage": "https://symfony.com",
  2360. "support": {
  2361. "source": "https://github.com/symfony/yaml/tree/v4.4.37"
  2362. },
  2363. "funding": [
  2364. {
  2365. "url": "https://symfony.com/sponsor",
  2366. "type": "custom"
  2367. },
  2368. {
  2369. "url": "https://github.com/fabpot",
  2370. "type": "github"
  2371. },
  2372. {
  2373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2374. "type": "tidelift"
  2375. }
  2376. ],
  2377. "install-path": "../symfony/yaml"
  2378. },
  2379. {
  2380. "name": "webmozart/assert",
  2381. "version": "1.10.0",
  2382. "version_normalized": "1.10.0.0",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://github.com/webmozarts/assert.git",
  2386. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  2391. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  2392. "shasum": ""
  2393. },
  2394. "require": {
  2395. "php": "^7.2 || ^8.0",
  2396. "symfony/polyfill-ctype": "^1.8"
  2397. },
  2398. "conflict": {
  2399. "phpstan/phpstan": "<0.12.20",
  2400. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2401. },
  2402. "require-dev": {
  2403. "phpunit/phpunit": "^8.5.13"
  2404. },
  2405. "time": "2021-03-09T10:59:23+00:00",
  2406. "type": "library",
  2407. "extra": {
  2408. "branch-alias": {
  2409. "dev-master": "1.10-dev"
  2410. }
  2411. },
  2412. "installation-source": "source",
  2413. "autoload": {
  2414. "psr-4": {
  2415. "Webmozart\\Assert\\": "src/"
  2416. }
  2417. },
  2418. "notification-url": "https://packagist.org/downloads/",
  2419. "license": [
  2420. "MIT"
  2421. ],
  2422. "authors": [
  2423. {
  2424. "name": "Bernhard Schussek",
  2425. "email": "bschussek@gmail.com"
  2426. }
  2427. ],
  2428. "description": "Assertions to validate method input/output with nice error messages.",
  2429. "keywords": [
  2430. "assert",
  2431. "check",
  2432. "validate"
  2433. ],
  2434. "support": {
  2435. "issues": "https://github.com/webmozarts/assert/issues",
  2436. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  2437. },
  2438. "install-path": "../webmozart/assert"
  2439. }
  2440. ],
  2441. "dev": true,
  2442. "dev-package-names": [
  2443. "doctrine/instantiator",
  2444. "mikey179/vfsstream",
  2445. "myclabs/deep-copy",
  2446. "phpdocumentor/reflection-common",
  2447. "phpdocumentor/reflection-docblock",
  2448. "phpdocumentor/type-resolver",
  2449. "phpspec/prophecy",
  2450. "phpunit/php-code-coverage",
  2451. "phpunit/php-file-iterator",
  2452. "phpunit/php-text-template",
  2453. "phpunit/php-timer",
  2454. "phpunit/php-token-stream",
  2455. "phpunit/phpunit",
  2456. "phpunit/phpunit-mock-objects",
  2457. "sebastian/code-unit-reverse-lookup",
  2458. "sebastian/comparator",
  2459. "sebastian/diff",
  2460. "sebastian/environment",
  2461. "sebastian/exporter",
  2462. "sebastian/global-state",
  2463. "sebastian/object-enumerator",
  2464. "sebastian/recursion-context",
  2465. "sebastian/resource-operations",
  2466. "sebastian/version",
  2467. "symfony/polyfill-ctype",
  2468. "symfony/yaml",
  2469. "webmozart/assert"
  2470. ]
  2471. }