composer.lock 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691
  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": "8706a5b57d61a1a945717f283d7d711e",
  8. "packages": [
  9. {
  10. "name": "psr/container",
  11. "version": "1.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/php-fig/container.git",
  15. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  20. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "1.0.x-dev"
  30. }
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Psr\\Container\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "PHP-FIG",
  44. "homepage": "http://www.php-fig.org/"
  45. }
  46. ],
  47. "description": "Common Container Interface (PHP FIG PSR-11)",
  48. "homepage": "https://github.com/php-fig/container",
  49. "keywords": [
  50. "PSR-11",
  51. "container",
  52. "container-interface",
  53. "container-interop",
  54. "psr"
  55. ],
  56. "time": "2017-02-14T16:28:37+00:00"
  57. },
  58. {
  59. "name": "psr/log",
  60. "version": "1.1.3",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/php-fig/log.git",
  64. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  69. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "php": ">=5.3.0"
  74. },
  75. "type": "library",
  76. "extra": {
  77. "branch-alias": {
  78. "dev-master": "1.1.x-dev"
  79. }
  80. },
  81. "autoload": {
  82. "psr-4": {
  83. "Psr\\Log\\": "Psr/Log/"
  84. }
  85. },
  86. "notification-url": "https://packagist.org/downloads/",
  87. "license": [
  88. "MIT"
  89. ],
  90. "authors": [
  91. {
  92. "name": "PHP-FIG",
  93. "homepage": "http://www.php-fig.org/"
  94. }
  95. ],
  96. "description": "Common interface for logging libraries",
  97. "homepage": "https://github.com/php-fig/log",
  98. "keywords": [
  99. "log",
  100. "psr",
  101. "psr-3"
  102. ],
  103. "time": "2020-03-23T09:12:05+00:00"
  104. },
  105. {
  106. "name": "symfony/console",
  107. "version": "v5.0.8",
  108. "source": {
  109. "type": "git",
  110. "url": "https://github.com/symfony/console.git",
  111. "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935"
  112. },
  113. "dist": {
  114. "type": "zip",
  115. "url": "https://api.github.com/repos/symfony/console/zipball/5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
  116. "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
  117. "shasum": ""
  118. },
  119. "require": {
  120. "php": "^7.2.5",
  121. "symfony/polyfill-mbstring": "~1.0",
  122. "symfony/polyfill-php73": "^1.8",
  123. "symfony/service-contracts": "^1.1|^2"
  124. },
  125. "conflict": {
  126. "symfony/dependency-injection": "<4.4",
  127. "symfony/event-dispatcher": "<4.4",
  128. "symfony/lock": "<4.4",
  129. "symfony/process": "<4.4"
  130. },
  131. "provide": {
  132. "psr/log-implementation": "1.0"
  133. },
  134. "require-dev": {
  135. "psr/log": "~1.0",
  136. "symfony/config": "^4.4|^5.0",
  137. "symfony/dependency-injection": "^4.4|^5.0",
  138. "symfony/event-dispatcher": "^4.4|^5.0",
  139. "symfony/lock": "^4.4|^5.0",
  140. "symfony/process": "^4.4|^5.0",
  141. "symfony/var-dumper": "^4.4|^5.0"
  142. },
  143. "suggest": {
  144. "psr/log": "For using the console logger",
  145. "symfony/event-dispatcher": "",
  146. "symfony/lock": "",
  147. "symfony/process": ""
  148. },
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "5.0-dev"
  153. }
  154. },
  155. "autoload": {
  156. "psr-4": {
  157. "Symfony\\Component\\Console\\": ""
  158. },
  159. "exclude-from-classmap": [
  160. "/Tests/"
  161. ]
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "MIT"
  166. ],
  167. "authors": [
  168. {
  169. "name": "Fabien Potencier",
  170. "email": "fabien@symfony.com"
  171. },
  172. {
  173. "name": "Symfony Community",
  174. "homepage": "https://symfony.com/contributors"
  175. }
  176. ],
  177. "description": "Symfony Console Component",
  178. "homepage": "https://symfony.com",
  179. "time": "2020-03-30T11:42:42+00:00"
  180. },
  181. {
  182. "name": "symfony/polyfill-mbstring",
  183. "version": "v1.17.0",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/symfony/polyfill-mbstring.git",
  187. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  192. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "php": ">=5.3.3"
  197. },
  198. "suggest": {
  199. "ext-mbstring": "For best performance"
  200. },
  201. "type": "library",
  202. "extra": {
  203. "branch-alias": {
  204. "dev-master": "1.17-dev"
  205. }
  206. },
  207. "autoload": {
  208. "psr-4": {
  209. "Symfony\\Polyfill\\Mbstring\\": ""
  210. },
  211. "files": [
  212. "bootstrap.php"
  213. ]
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Nicolas Grekas",
  222. "email": "p@tchwork.com"
  223. },
  224. {
  225. "name": "Symfony Community",
  226. "homepage": "https://symfony.com/contributors"
  227. }
  228. ],
  229. "description": "Symfony polyfill for the Mbstring extension",
  230. "homepage": "https://symfony.com",
  231. "keywords": [
  232. "compatibility",
  233. "mbstring",
  234. "polyfill",
  235. "portable",
  236. "shim"
  237. ],
  238. "time": "2020-05-12T16:47:27+00:00"
  239. },
  240. {
  241. "name": "symfony/polyfill-php73",
  242. "version": "v1.17.0",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/symfony/polyfill-php73.git",
  246. "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a760d8964ff79ab9bf057613a5808284ec852ccc",
  251. "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "php": ">=5.3.3"
  256. },
  257. "type": "library",
  258. "extra": {
  259. "branch-alias": {
  260. "dev-master": "1.17-dev"
  261. }
  262. },
  263. "autoload": {
  264. "psr-4": {
  265. "Symfony\\Polyfill\\Php73\\": ""
  266. },
  267. "files": [
  268. "bootstrap.php"
  269. ],
  270. "classmap": [
  271. "Resources/stubs"
  272. ]
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Nicolas Grekas",
  281. "email": "p@tchwork.com"
  282. },
  283. {
  284. "name": "Symfony Community",
  285. "homepage": "https://symfony.com/contributors"
  286. }
  287. ],
  288. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  289. "homepage": "https://symfony.com",
  290. "keywords": [
  291. "compatibility",
  292. "polyfill",
  293. "portable",
  294. "shim"
  295. ],
  296. "time": "2020-05-12T16:47:27+00:00"
  297. },
  298. {
  299. "name": "symfony/service-contracts",
  300. "version": "v2.0.1",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/symfony/service-contracts.git",
  304. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  309. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  310. "shasum": ""
  311. },
  312. "require": {
  313. "php": "^7.2.5",
  314. "psr/container": "^1.0"
  315. },
  316. "suggest": {
  317. "symfony/service-implementation": ""
  318. },
  319. "type": "library",
  320. "extra": {
  321. "branch-alias": {
  322. "dev-master": "2.0-dev"
  323. }
  324. },
  325. "autoload": {
  326. "psr-4": {
  327. "Symfony\\Contracts\\Service\\": ""
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "MIT"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Nicolas Grekas",
  337. "email": "p@tchwork.com"
  338. },
  339. {
  340. "name": "Symfony Community",
  341. "homepage": "https://symfony.com/contributors"
  342. }
  343. ],
  344. "description": "Generic abstractions related to writing services",
  345. "homepage": "https://symfony.com",
  346. "keywords": [
  347. "abstractions",
  348. "contracts",
  349. "decoupling",
  350. "interfaces",
  351. "interoperability",
  352. "standards"
  353. ],
  354. "time": "2019-11-18T17:27:11+00:00"
  355. }
  356. ],
  357. "packages-dev": [
  358. {
  359. "name": "doctrine/instantiator",
  360. "version": "1.3.0",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/doctrine/instantiator.git",
  364. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  369. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "php": "^7.1"
  374. },
  375. "require-dev": {
  376. "doctrine/coding-standard": "^6.0",
  377. "ext-pdo": "*",
  378. "ext-phar": "*",
  379. "phpbench/phpbench": "^0.13",
  380. "phpstan/phpstan-phpunit": "^0.11",
  381. "phpstan/phpstan-shim": "^0.11",
  382. "phpunit/phpunit": "^7.0"
  383. },
  384. "type": "library",
  385. "extra": {
  386. "branch-alias": {
  387. "dev-master": "1.2.x-dev"
  388. }
  389. },
  390. "autoload": {
  391. "psr-4": {
  392. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  393. }
  394. },
  395. "notification-url": "https://packagist.org/downloads/",
  396. "license": [
  397. "MIT"
  398. ],
  399. "authors": [
  400. {
  401. "name": "Marco Pivetta",
  402. "email": "ocramius@gmail.com",
  403. "homepage": "http://ocramius.github.com/"
  404. }
  405. ],
  406. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  407. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  408. "keywords": [
  409. "constructor",
  410. "instantiate"
  411. ],
  412. "time": "2019-10-21T16:45:58+00:00"
  413. },
  414. {
  415. "name": "g1a/composer-test-scenarios",
  416. "version": "3.0.4",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/g1a/composer-test-scenarios.git",
  420. "reference": "78225430d4a5caf8e06b87d04149f8a9ace9368c"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/78225430d4a5caf8e06b87d04149f8a9ace9368c",
  425. "reference": "78225430d4a5caf8e06b87d04149f8a9ace9368c",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "composer-plugin-api": "^1.0.0",
  430. "php": ">=5.4"
  431. },
  432. "require-dev": {
  433. "composer/composer": "^1.7",
  434. "php-coveralls/php-coveralls": "^1.0",
  435. "phpunit/phpunit": "^4.8.36|^6",
  436. "squizlabs/php_codesniffer": "^2.8"
  437. },
  438. "bin": [
  439. "scripts/dependency-licenses"
  440. ],
  441. "type": "composer-plugin",
  442. "extra": {
  443. "class": "ComposerTestScenarios\\Plugin",
  444. "branch-alias": {
  445. "dev-master": "3.x-dev"
  446. }
  447. },
  448. "autoload": {
  449. "psr-4": {
  450. "ComposerTestScenarios\\": "src/"
  451. }
  452. },
  453. "notification-url": "https://packagist.org/downloads/",
  454. "license": [
  455. "MIT"
  456. ],
  457. "authors": [
  458. {
  459. "name": "Greg Anderson",
  460. "email": "greg.1.anderson@greenknowe.org"
  461. }
  462. ],
  463. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  464. "time": "2019-09-13T01:24:52+00:00"
  465. },
  466. {
  467. "name": "guzzlehttp/guzzle",
  468. "version": "6.5.4",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/guzzle/guzzle.git",
  472. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  477. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  478. "shasum": ""
  479. },
  480. "require": {
  481. "ext-json": "*",
  482. "guzzlehttp/promises": "^1.0",
  483. "guzzlehttp/psr7": "^1.6.1",
  484. "php": ">=5.5",
  485. "symfony/polyfill-intl-idn": "1.17.0"
  486. },
  487. "require-dev": {
  488. "ext-curl": "*",
  489. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  490. "psr/log": "^1.1"
  491. },
  492. "suggest": {
  493. "psr/log": "Required for using the Log middleware"
  494. },
  495. "type": "library",
  496. "extra": {
  497. "branch-alias": {
  498. "dev-master": "6.5-dev"
  499. }
  500. },
  501. "autoload": {
  502. "psr-4": {
  503. "GuzzleHttp\\": "src/"
  504. },
  505. "files": [
  506. "src/functions_include.php"
  507. ]
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "authors": [
  514. {
  515. "name": "Michael Dowling",
  516. "email": "mtdowling@gmail.com",
  517. "homepage": "https://github.com/mtdowling"
  518. }
  519. ],
  520. "description": "Guzzle is a PHP HTTP client library",
  521. "homepage": "http://guzzlephp.org/",
  522. "keywords": [
  523. "client",
  524. "curl",
  525. "framework",
  526. "http",
  527. "http client",
  528. "rest",
  529. "web service"
  530. ],
  531. "time": "2020-05-25T19:35:05+00:00"
  532. },
  533. {
  534. "name": "guzzlehttp/promises",
  535. "version": "v1.3.1",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/guzzle/promises.git",
  539. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  544. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "php": ">=5.5.0"
  549. },
  550. "require-dev": {
  551. "phpunit/phpunit": "^4.0"
  552. },
  553. "type": "library",
  554. "extra": {
  555. "branch-alias": {
  556. "dev-master": "1.4-dev"
  557. }
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "GuzzleHttp\\Promise\\": "src/"
  562. },
  563. "files": [
  564. "src/functions_include.php"
  565. ]
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Michael Dowling",
  574. "email": "mtdowling@gmail.com",
  575. "homepage": "https://github.com/mtdowling"
  576. }
  577. ],
  578. "description": "Guzzle promises library",
  579. "keywords": [
  580. "promise"
  581. ],
  582. "time": "2016-12-20T10:07:11+00:00"
  583. },
  584. {
  585. "name": "guzzlehttp/psr7",
  586. "version": "1.6.1",
  587. "source": {
  588. "type": "git",
  589. "url": "https://github.com/guzzle/psr7.git",
  590. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  591. },
  592. "dist": {
  593. "type": "zip",
  594. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  595. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  596. "shasum": ""
  597. },
  598. "require": {
  599. "php": ">=5.4.0",
  600. "psr/http-message": "~1.0",
  601. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  602. },
  603. "provide": {
  604. "psr/http-message-implementation": "1.0"
  605. },
  606. "require-dev": {
  607. "ext-zlib": "*",
  608. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  609. },
  610. "suggest": {
  611. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  612. },
  613. "type": "library",
  614. "extra": {
  615. "branch-alias": {
  616. "dev-master": "1.6-dev"
  617. }
  618. },
  619. "autoload": {
  620. "psr-4": {
  621. "GuzzleHttp\\Psr7\\": "src/"
  622. },
  623. "files": [
  624. "src/functions_include.php"
  625. ]
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Michael Dowling",
  634. "email": "mtdowling@gmail.com",
  635. "homepage": "https://github.com/mtdowling"
  636. },
  637. {
  638. "name": "Tobias Schultze",
  639. "homepage": "https://github.com/Tobion"
  640. }
  641. ],
  642. "description": "PSR-7 message implementation that also provides common utility methods",
  643. "keywords": [
  644. "http",
  645. "message",
  646. "psr-7",
  647. "request",
  648. "response",
  649. "stream",
  650. "uri",
  651. "url"
  652. ],
  653. "time": "2019-07-01T23:21:34+00:00"
  654. },
  655. {
  656. "name": "myclabs/deep-copy",
  657. "version": "1.9.5",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/myclabs/DeepCopy.git",
  661. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  666. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "php": "^7.1"
  671. },
  672. "replace": {
  673. "myclabs/deep-copy": "self.version"
  674. },
  675. "require-dev": {
  676. "doctrine/collections": "^1.0",
  677. "doctrine/common": "^2.6",
  678. "phpunit/phpunit": "^7.1"
  679. },
  680. "type": "library",
  681. "autoload": {
  682. "psr-4": {
  683. "DeepCopy\\": "src/DeepCopy/"
  684. },
  685. "files": [
  686. "src/DeepCopy/deep_copy.php"
  687. ]
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "MIT"
  692. ],
  693. "description": "Create deep copies (clones) of your objects",
  694. "keywords": [
  695. "clone",
  696. "copy",
  697. "duplicate",
  698. "object",
  699. "object graph"
  700. ],
  701. "time": "2020-01-17T21:11:47+00:00"
  702. },
  703. {
  704. "name": "phar-io/manifest",
  705. "version": "1.0.1",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/phar-io/manifest.git",
  709. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  714. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  715. "shasum": ""
  716. },
  717. "require": {
  718. "ext-dom": "*",
  719. "ext-phar": "*",
  720. "phar-io/version": "^1.0.1",
  721. "php": "^5.6 || ^7.0"
  722. },
  723. "type": "library",
  724. "extra": {
  725. "branch-alias": {
  726. "dev-master": "1.0.x-dev"
  727. }
  728. },
  729. "autoload": {
  730. "classmap": [
  731. "src/"
  732. ]
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "BSD-3-Clause"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Arne Blankerts",
  741. "email": "arne@blankerts.de",
  742. "role": "Developer"
  743. },
  744. {
  745. "name": "Sebastian Heuer",
  746. "email": "sebastian@phpeople.de",
  747. "role": "Developer"
  748. },
  749. {
  750. "name": "Sebastian Bergmann",
  751. "email": "sebastian@phpunit.de",
  752. "role": "Developer"
  753. }
  754. ],
  755. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  756. "time": "2017-03-05T18:14:27+00:00"
  757. },
  758. {
  759. "name": "phar-io/version",
  760. "version": "1.0.1",
  761. "source": {
  762. "type": "git",
  763. "url": "https://github.com/phar-io/version.git",
  764. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  765. },
  766. "dist": {
  767. "type": "zip",
  768. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  769. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  770. "shasum": ""
  771. },
  772. "require": {
  773. "php": "^5.6 || ^7.0"
  774. },
  775. "type": "library",
  776. "autoload": {
  777. "classmap": [
  778. "src/"
  779. ]
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "BSD-3-Clause"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Arne Blankerts",
  788. "email": "arne@blankerts.de",
  789. "role": "Developer"
  790. },
  791. {
  792. "name": "Sebastian Heuer",
  793. "email": "sebastian@phpeople.de",
  794. "role": "Developer"
  795. },
  796. {
  797. "name": "Sebastian Bergmann",
  798. "email": "sebastian@phpunit.de",
  799. "role": "Developer"
  800. }
  801. ],
  802. "description": "Library for handling version information and constraints",
  803. "time": "2017-03-05T17:38:23+00:00"
  804. },
  805. {
  806. "name": "php-coveralls/php-coveralls",
  807. "version": "v2.2.0",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/php-coveralls/php-coveralls.git",
  811. "reference": "3e6420fa666ef7bae5e750ddeac903153e193bae"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/3e6420fa666ef7bae5e750ddeac903153e193bae",
  816. "reference": "3e6420fa666ef7bae5e750ddeac903153e193bae",
  817. "shasum": ""
  818. },
  819. "require": {
  820. "ext-json": "*",
  821. "ext-simplexml": "*",
  822. "guzzlehttp/guzzle": "^6.0",
  823. "php": "^5.5 || ^7.0",
  824. "psr/log": "^1.0",
  825. "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0",
  826. "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0",
  827. "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0",
  828. "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0"
  829. },
  830. "require-dev": {
  831. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
  832. },
  833. "suggest": {
  834. "symfony/http-kernel": "Allows Symfony integration"
  835. },
  836. "bin": [
  837. "bin/php-coveralls"
  838. ],
  839. "type": "library",
  840. "extra": {
  841. "branch-alias": {
  842. "dev-master": "2.2-dev"
  843. }
  844. },
  845. "autoload": {
  846. "psr-4": {
  847. "PhpCoveralls\\": "src/"
  848. }
  849. },
  850. "notification-url": "https://packagist.org/downloads/",
  851. "license": [
  852. "MIT"
  853. ],
  854. "authors": [
  855. {
  856. "name": "Kitamura Satoshi",
  857. "email": "with.no.parachute@gmail.com",
  858. "homepage": "https://www.facebook.com/satooshi.jp",
  859. "role": "Original creator"
  860. },
  861. {
  862. "name": "Takashi Matsuo",
  863. "email": "tmatsuo@google.com"
  864. },
  865. {
  866. "name": "Google Inc"
  867. },
  868. {
  869. "name": "Dariusz Ruminski",
  870. "email": "dariusz.ruminski@gmail.com",
  871. "homepage": "https://github.com/keradus"
  872. },
  873. {
  874. "name": "Contributors",
  875. "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
  876. }
  877. ],
  878. "description": "PHP client library for Coveralls API",
  879. "homepage": "https://github.com/php-coveralls/php-coveralls",
  880. "keywords": [
  881. "ci",
  882. "coverage",
  883. "github",
  884. "test"
  885. ],
  886. "time": "2019-11-20T16:29:20+00:00"
  887. },
  888. {
  889. "name": "phpdocumentor/reflection-common",
  890. "version": "2.1.0",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  894. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  899. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": ">=7.1"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "2.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "phpDocumentor\\Reflection\\": "src/"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Jaap van Otterdijk",
  923. "email": "opensource@ijaap.nl"
  924. }
  925. ],
  926. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  927. "homepage": "http://www.phpdoc.org",
  928. "keywords": [
  929. "FQSEN",
  930. "phpDocumentor",
  931. "phpdoc",
  932. "reflection",
  933. "static analysis"
  934. ],
  935. "time": "2020-04-27T09:25:28+00:00"
  936. },
  937. {
  938. "name": "phpdocumentor/reflection-docblock",
  939. "version": "5.1.0",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  943. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  948. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "ext-filter": "^7.1",
  953. "php": "^7.2",
  954. "phpdocumentor/reflection-common": "^2.0",
  955. "phpdocumentor/type-resolver": "^1.0",
  956. "webmozart/assert": "^1"
  957. },
  958. "require-dev": {
  959. "doctrine/instantiator": "^1",
  960. "mockery/mockery": "^1"
  961. },
  962. "type": "library",
  963. "extra": {
  964. "branch-alias": {
  965. "dev-master": "5.x-dev"
  966. }
  967. },
  968. "autoload": {
  969. "psr-4": {
  970. "phpDocumentor\\Reflection\\": "src"
  971. }
  972. },
  973. "notification-url": "https://packagist.org/downloads/",
  974. "license": [
  975. "MIT"
  976. ],
  977. "authors": [
  978. {
  979. "name": "Mike van Riel",
  980. "email": "me@mikevanriel.com"
  981. },
  982. {
  983. "name": "Jaap van Otterdijk",
  984. "email": "account@ijaap.nl"
  985. }
  986. ],
  987. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  988. "time": "2020-02-22T12:28:44+00:00"
  989. },
  990. {
  991. "name": "phpdocumentor/type-resolver",
  992. "version": "1.1.0",
  993. "source": {
  994. "type": "git",
  995. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  996. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
  1001. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
  1002. "shasum": ""
  1003. },
  1004. "require": {
  1005. "php": "^7.2",
  1006. "phpdocumentor/reflection-common": "^2.0"
  1007. },
  1008. "require-dev": {
  1009. "ext-tokenizer": "^7.2",
  1010. "mockery/mockery": "~1"
  1011. },
  1012. "type": "library",
  1013. "extra": {
  1014. "branch-alias": {
  1015. "dev-master": "1.x-dev"
  1016. }
  1017. },
  1018. "autoload": {
  1019. "psr-4": {
  1020. "phpDocumentor\\Reflection\\": "src"
  1021. }
  1022. },
  1023. "notification-url": "https://packagist.org/downloads/",
  1024. "license": [
  1025. "MIT"
  1026. ],
  1027. "authors": [
  1028. {
  1029. "name": "Mike van Riel",
  1030. "email": "me@mikevanriel.com"
  1031. }
  1032. ],
  1033. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1034. "time": "2020-02-18T18:59:58+00:00"
  1035. },
  1036. {
  1037. "name": "phpspec/prophecy",
  1038. "version": "v1.10.3",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/phpspec/prophecy.git",
  1042. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  1047. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  1048. "shasum": ""
  1049. },
  1050. "require": {
  1051. "doctrine/instantiator": "^1.0.2",
  1052. "php": "^5.3|^7.0",
  1053. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  1054. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  1055. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  1056. },
  1057. "require-dev": {
  1058. "phpspec/phpspec": "^2.5 || ^3.2",
  1059. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1060. },
  1061. "type": "library",
  1062. "extra": {
  1063. "branch-alias": {
  1064. "dev-master": "1.10.x-dev"
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Prophecy\\": "src/Prophecy"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Konstantin Kudryashov",
  1079. "email": "ever.zet@gmail.com",
  1080. "homepage": "http://everzet.com"
  1081. },
  1082. {
  1083. "name": "Marcello Duarte",
  1084. "email": "marcello.duarte@gmail.com"
  1085. }
  1086. ],
  1087. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1088. "homepage": "https://github.com/phpspec/prophecy",
  1089. "keywords": [
  1090. "Double",
  1091. "Dummy",
  1092. "fake",
  1093. "mock",
  1094. "spy",
  1095. "stub"
  1096. ],
  1097. "time": "2020-03-05T15:02:03+00:00"
  1098. },
  1099. {
  1100. "name": "phpunit/php-code-coverage",
  1101. "version": "5.3.2",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1105. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  1110. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  1111. "shasum": ""
  1112. },
  1113. "require": {
  1114. "ext-dom": "*",
  1115. "ext-xmlwriter": "*",
  1116. "php": "^7.0",
  1117. "phpunit/php-file-iterator": "^1.4.2",
  1118. "phpunit/php-text-template": "^1.2.1",
  1119. "phpunit/php-token-stream": "^2.0.1",
  1120. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1121. "sebastian/environment": "^3.0",
  1122. "sebastian/version": "^2.0.1",
  1123. "theseer/tokenizer": "^1.1"
  1124. },
  1125. "require-dev": {
  1126. "phpunit/phpunit": "^6.0"
  1127. },
  1128. "suggest": {
  1129. "ext-xdebug": "^2.5.5"
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "5.3.x-dev"
  1135. }
  1136. },
  1137. "autoload": {
  1138. "classmap": [
  1139. "src/"
  1140. ]
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "BSD-3-Clause"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Sebastian Bergmann",
  1149. "email": "sebastian@phpunit.de",
  1150. "role": "lead"
  1151. }
  1152. ],
  1153. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1154. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1155. "keywords": [
  1156. "coverage",
  1157. "testing",
  1158. "xunit"
  1159. ],
  1160. "time": "2018-04-06T15:36:58+00:00"
  1161. },
  1162. {
  1163. "name": "phpunit/php-file-iterator",
  1164. "version": "1.4.5",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1168. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1173. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.3"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.4.x-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "classmap": [
  1187. "src/"
  1188. ]
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "BSD-3-Clause"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Sebastian Bergmann",
  1197. "email": "sb@sebastian-bergmann.de",
  1198. "role": "lead"
  1199. }
  1200. ],
  1201. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1202. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1203. "keywords": [
  1204. "filesystem",
  1205. "iterator"
  1206. ],
  1207. "time": "2017-11-27T13:52:08+00:00"
  1208. },
  1209. {
  1210. "name": "phpunit/php-text-template",
  1211. "version": "1.2.1",
  1212. "source": {
  1213. "type": "git",
  1214. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1215. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1216. },
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1220. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1221. "shasum": ""
  1222. },
  1223. "require": {
  1224. "php": ">=5.3.3"
  1225. },
  1226. "type": "library",
  1227. "autoload": {
  1228. "classmap": [
  1229. "src/"
  1230. ]
  1231. },
  1232. "notification-url": "https://packagist.org/downloads/",
  1233. "license": [
  1234. "BSD-3-Clause"
  1235. ],
  1236. "authors": [
  1237. {
  1238. "name": "Sebastian Bergmann",
  1239. "email": "sebastian@phpunit.de",
  1240. "role": "lead"
  1241. }
  1242. ],
  1243. "description": "Simple template engine.",
  1244. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1245. "keywords": [
  1246. "template"
  1247. ],
  1248. "time": "2015-06-21T13:50:34+00:00"
  1249. },
  1250. {
  1251. "name": "phpunit/php-timer",
  1252. "version": "1.0.9",
  1253. "source": {
  1254. "type": "git",
  1255. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1256. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1257. },
  1258. "dist": {
  1259. "type": "zip",
  1260. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1261. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1262. "shasum": ""
  1263. },
  1264. "require": {
  1265. "php": "^5.3.3 || ^7.0"
  1266. },
  1267. "require-dev": {
  1268. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1269. },
  1270. "type": "library",
  1271. "extra": {
  1272. "branch-alias": {
  1273. "dev-master": "1.0-dev"
  1274. }
  1275. },
  1276. "autoload": {
  1277. "classmap": [
  1278. "src/"
  1279. ]
  1280. },
  1281. "notification-url": "https://packagist.org/downloads/",
  1282. "license": [
  1283. "BSD-3-Clause"
  1284. ],
  1285. "authors": [
  1286. {
  1287. "name": "Sebastian Bergmann",
  1288. "email": "sb@sebastian-bergmann.de",
  1289. "role": "lead"
  1290. }
  1291. ],
  1292. "description": "Utility class for timing",
  1293. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1294. "keywords": [
  1295. "timer"
  1296. ],
  1297. "time": "2017-02-26T11:10:40+00:00"
  1298. },
  1299. {
  1300. "name": "phpunit/php-token-stream",
  1301. "version": "2.0.2",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1305. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  1310. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "ext-tokenizer": "*",
  1315. "php": "^7.0"
  1316. },
  1317. "require-dev": {
  1318. "phpunit/phpunit": "^6.2.4"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "2.0-dev"
  1324. }
  1325. },
  1326. "autoload": {
  1327. "classmap": [
  1328. "src/"
  1329. ]
  1330. },
  1331. "notification-url": "https://packagist.org/downloads/",
  1332. "license": [
  1333. "BSD-3-Clause"
  1334. ],
  1335. "authors": [
  1336. {
  1337. "name": "Sebastian Bergmann",
  1338. "email": "sebastian@phpunit.de"
  1339. }
  1340. ],
  1341. "description": "Wrapper around PHP's tokenizer extension.",
  1342. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1343. "keywords": [
  1344. "tokenizer"
  1345. ],
  1346. "time": "2017-11-27T05:48:46+00:00"
  1347. },
  1348. {
  1349. "name": "phpunit/phpunit",
  1350. "version": "6.5.14",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1354. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  1359. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "ext-dom": "*",
  1364. "ext-json": "*",
  1365. "ext-libxml": "*",
  1366. "ext-mbstring": "*",
  1367. "ext-xml": "*",
  1368. "myclabs/deep-copy": "^1.6.1",
  1369. "phar-io/manifest": "^1.0.1",
  1370. "phar-io/version": "^1.0",
  1371. "php": "^7.0",
  1372. "phpspec/prophecy": "^1.7",
  1373. "phpunit/php-code-coverage": "^5.3",
  1374. "phpunit/php-file-iterator": "^1.4.3",
  1375. "phpunit/php-text-template": "^1.2.1",
  1376. "phpunit/php-timer": "^1.0.9",
  1377. "phpunit/phpunit-mock-objects": "^5.0.9",
  1378. "sebastian/comparator": "^2.1",
  1379. "sebastian/diff": "^2.0",
  1380. "sebastian/environment": "^3.1",
  1381. "sebastian/exporter": "^3.1",
  1382. "sebastian/global-state": "^2.0",
  1383. "sebastian/object-enumerator": "^3.0.3",
  1384. "sebastian/resource-operations": "^1.0",
  1385. "sebastian/version": "^2.0.1"
  1386. },
  1387. "conflict": {
  1388. "phpdocumentor/reflection-docblock": "3.0.2",
  1389. "phpunit/dbunit": "<3.0"
  1390. },
  1391. "require-dev": {
  1392. "ext-pdo": "*"
  1393. },
  1394. "suggest": {
  1395. "ext-xdebug": "*",
  1396. "phpunit/php-invoker": "^1.1"
  1397. },
  1398. "bin": [
  1399. "phpunit"
  1400. ],
  1401. "type": "library",
  1402. "extra": {
  1403. "branch-alias": {
  1404. "dev-master": "6.5.x-dev"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "classmap": [
  1409. "src/"
  1410. ]
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "BSD-3-Clause"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Sebastian Bergmann",
  1419. "email": "sebastian@phpunit.de",
  1420. "role": "lead"
  1421. }
  1422. ],
  1423. "description": "The PHP Unit Testing framework.",
  1424. "homepage": "https://phpunit.de/",
  1425. "keywords": [
  1426. "phpunit",
  1427. "testing",
  1428. "xunit"
  1429. ],
  1430. "time": "2019-02-01T05:22:47+00:00"
  1431. },
  1432. {
  1433. "name": "phpunit/phpunit-mock-objects",
  1434. "version": "5.0.10",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1438. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  1443. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  1444. "shasum": ""
  1445. },
  1446. "require": {
  1447. "doctrine/instantiator": "^1.0.5",
  1448. "php": "^7.0",
  1449. "phpunit/php-text-template": "^1.2.1",
  1450. "sebastian/exporter": "^3.1"
  1451. },
  1452. "conflict": {
  1453. "phpunit/phpunit": "<6.0"
  1454. },
  1455. "require-dev": {
  1456. "phpunit/phpunit": "^6.5.11"
  1457. },
  1458. "suggest": {
  1459. "ext-soap": "*"
  1460. },
  1461. "type": "library",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "5.0.x-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "classmap": [
  1469. "src/"
  1470. ]
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "BSD-3-Clause"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Sebastian Bergmann",
  1479. "email": "sebastian@phpunit.de",
  1480. "role": "lead"
  1481. }
  1482. ],
  1483. "description": "Mock Object library for PHPUnit",
  1484. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1485. "keywords": [
  1486. "mock",
  1487. "xunit"
  1488. ],
  1489. "abandoned": true,
  1490. "time": "2018-08-09T05:50:03+00:00"
  1491. },
  1492. {
  1493. "name": "psr/http-message",
  1494. "version": "1.0.1",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/php-fig/http-message.git",
  1498. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1503. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1504. "shasum": ""
  1505. },
  1506. "require": {
  1507. "php": ">=5.3.0"
  1508. },
  1509. "type": "library",
  1510. "extra": {
  1511. "branch-alias": {
  1512. "dev-master": "1.0.x-dev"
  1513. }
  1514. },
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Psr\\Http\\Message\\": "src/"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "authors": [
  1525. {
  1526. "name": "PHP-FIG",
  1527. "homepage": "http://www.php-fig.org/"
  1528. }
  1529. ],
  1530. "description": "Common interface for HTTP messages",
  1531. "homepage": "https://github.com/php-fig/http-message",
  1532. "keywords": [
  1533. "http",
  1534. "http-message",
  1535. "psr",
  1536. "psr-7",
  1537. "request",
  1538. "response"
  1539. ],
  1540. "time": "2016-08-06T14:39:51+00:00"
  1541. },
  1542. {
  1543. "name": "ralouphie/getallheaders",
  1544. "version": "3.0.3",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/ralouphie/getallheaders.git",
  1548. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1553. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": ">=5.6"
  1558. },
  1559. "require-dev": {
  1560. "php-coveralls/php-coveralls": "^2.1",
  1561. "phpunit/phpunit": "^5 || ^6.5"
  1562. },
  1563. "type": "library",
  1564. "autoload": {
  1565. "files": [
  1566. "src/getallheaders.php"
  1567. ]
  1568. },
  1569. "notification-url": "https://packagist.org/downloads/",
  1570. "license": [
  1571. "MIT"
  1572. ],
  1573. "authors": [
  1574. {
  1575. "name": "Ralph Khattar",
  1576. "email": "ralph.khattar@gmail.com"
  1577. }
  1578. ],
  1579. "description": "A polyfill for getallheaders.",
  1580. "time": "2019-03-08T08:55:37+00:00"
  1581. },
  1582. {
  1583. "name": "sebastian/code-unit-reverse-lookup",
  1584. "version": "1.0.1",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1588. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1593. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1594. "shasum": ""
  1595. },
  1596. "require": {
  1597. "php": "^5.6 || ^7.0"
  1598. },
  1599. "require-dev": {
  1600. "phpunit/phpunit": "^5.7 || ^6.0"
  1601. },
  1602. "type": "library",
  1603. "extra": {
  1604. "branch-alias": {
  1605. "dev-master": "1.0.x-dev"
  1606. }
  1607. },
  1608. "autoload": {
  1609. "classmap": [
  1610. "src/"
  1611. ]
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "BSD-3-Clause"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Sebastian Bergmann",
  1620. "email": "sebastian@phpunit.de"
  1621. }
  1622. ],
  1623. "description": "Looks up which function or method a line of code belongs to",
  1624. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1625. "time": "2017-03-04T06:30:41+00:00"
  1626. },
  1627. {
  1628. "name": "sebastian/comparator",
  1629. "version": "2.1.3",
  1630. "source": {
  1631. "type": "git",
  1632. "url": "https://github.com/sebastianbergmann/comparator.git",
  1633. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  1634. },
  1635. "dist": {
  1636. "type": "zip",
  1637. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  1638. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  1639. "shasum": ""
  1640. },
  1641. "require": {
  1642. "php": "^7.0",
  1643. "sebastian/diff": "^2.0 || ^3.0",
  1644. "sebastian/exporter": "^3.1"
  1645. },
  1646. "require-dev": {
  1647. "phpunit/phpunit": "^6.4"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "2.1.x-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "classmap": [
  1657. "src/"
  1658. ]
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "BSD-3-Clause"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Jeff Welch",
  1667. "email": "whatthejeff@gmail.com"
  1668. },
  1669. {
  1670. "name": "Volker Dusch",
  1671. "email": "github@wallbash.com"
  1672. },
  1673. {
  1674. "name": "Bernhard Schussek",
  1675. "email": "bschussek@2bepublished.at"
  1676. },
  1677. {
  1678. "name": "Sebastian Bergmann",
  1679. "email": "sebastian@phpunit.de"
  1680. }
  1681. ],
  1682. "description": "Provides the functionality to compare PHP values for equality",
  1683. "homepage": "https://github.com/sebastianbergmann/comparator",
  1684. "keywords": [
  1685. "comparator",
  1686. "compare",
  1687. "equality"
  1688. ],
  1689. "time": "2018-02-01T13:46:46+00:00"
  1690. },
  1691. {
  1692. "name": "sebastian/diff",
  1693. "version": "2.0.1",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/sebastianbergmann/diff.git",
  1697. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1702. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "php": "^7.0"
  1707. },
  1708. "require-dev": {
  1709. "phpunit/phpunit": "^6.2"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "2.0-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "classmap": [
  1719. "src/"
  1720. ]
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "BSD-3-Clause"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Kore Nordmann",
  1729. "email": "mail@kore-nordmann.de"
  1730. },
  1731. {
  1732. "name": "Sebastian Bergmann",
  1733. "email": "sebastian@phpunit.de"
  1734. }
  1735. ],
  1736. "description": "Diff implementation",
  1737. "homepage": "https://github.com/sebastianbergmann/diff",
  1738. "keywords": [
  1739. "diff"
  1740. ],
  1741. "time": "2017-08-03T08:09:46+00:00"
  1742. },
  1743. {
  1744. "name": "sebastian/environment",
  1745. "version": "3.1.0",
  1746. "source": {
  1747. "type": "git",
  1748. "url": "https://github.com/sebastianbergmann/environment.git",
  1749. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1750. },
  1751. "dist": {
  1752. "type": "zip",
  1753. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1754. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1755. "shasum": ""
  1756. },
  1757. "require": {
  1758. "php": "^7.0"
  1759. },
  1760. "require-dev": {
  1761. "phpunit/phpunit": "^6.1"
  1762. },
  1763. "type": "library",
  1764. "extra": {
  1765. "branch-alias": {
  1766. "dev-master": "3.1.x-dev"
  1767. }
  1768. },
  1769. "autoload": {
  1770. "classmap": [
  1771. "src/"
  1772. ]
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "BSD-3-Clause"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Sebastian Bergmann",
  1781. "email": "sebastian@phpunit.de"
  1782. }
  1783. ],
  1784. "description": "Provides functionality to handle HHVM/PHP environments",
  1785. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1786. "keywords": [
  1787. "Xdebug",
  1788. "environment",
  1789. "hhvm"
  1790. ],
  1791. "time": "2017-07-01T08:51:00+00:00"
  1792. },
  1793. {
  1794. "name": "sebastian/exporter",
  1795. "version": "3.1.2",
  1796. "source": {
  1797. "type": "git",
  1798. "url": "https://github.com/sebastianbergmann/exporter.git",
  1799. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  1800. },
  1801. "dist": {
  1802. "type": "zip",
  1803. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  1804. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  1805. "shasum": ""
  1806. },
  1807. "require": {
  1808. "php": "^7.0",
  1809. "sebastian/recursion-context": "^3.0"
  1810. },
  1811. "require-dev": {
  1812. "ext-mbstring": "*",
  1813. "phpunit/phpunit": "^6.0"
  1814. },
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "3.1.x-dev"
  1819. }
  1820. },
  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": "Sebastian Bergmann",
  1833. "email": "sebastian@phpunit.de"
  1834. },
  1835. {
  1836. "name": "Jeff Welch",
  1837. "email": "whatthejeff@gmail.com"
  1838. },
  1839. {
  1840. "name": "Volker Dusch",
  1841. "email": "github@wallbash.com"
  1842. },
  1843. {
  1844. "name": "Adam Harvey",
  1845. "email": "aharvey@php.net"
  1846. },
  1847. {
  1848. "name": "Bernhard Schussek",
  1849. "email": "bschussek@gmail.com"
  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. "time": "2019-09-14T09:02:43+00:00"
  1859. },
  1860. {
  1861. "name": "sebastian/global-state",
  1862. "version": "2.0.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/sebastianbergmann/global-state.git",
  1866. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1871. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "php": "^7.0"
  1876. },
  1877. "require-dev": {
  1878. "phpunit/phpunit": "^6.0"
  1879. },
  1880. "suggest": {
  1881. "ext-uopz": "*"
  1882. },
  1883. "type": "library",
  1884. "extra": {
  1885. "branch-alias": {
  1886. "dev-master": "2.0-dev"
  1887. }
  1888. },
  1889. "autoload": {
  1890. "classmap": [
  1891. "src/"
  1892. ]
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "BSD-3-Clause"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "Sebastian Bergmann",
  1901. "email": "sebastian@phpunit.de"
  1902. }
  1903. ],
  1904. "description": "Snapshotting of global state",
  1905. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1906. "keywords": [
  1907. "global state"
  1908. ],
  1909. "time": "2017-04-27T15:39:26+00:00"
  1910. },
  1911. {
  1912. "name": "sebastian/object-enumerator",
  1913. "version": "3.0.3",
  1914. "source": {
  1915. "type": "git",
  1916. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1917. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1918. },
  1919. "dist": {
  1920. "type": "zip",
  1921. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1922. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1923. "shasum": ""
  1924. },
  1925. "require": {
  1926. "php": "^7.0",
  1927. "sebastian/object-reflector": "^1.1.1",
  1928. "sebastian/recursion-context": "^3.0"
  1929. },
  1930. "require-dev": {
  1931. "phpunit/phpunit": "^6.0"
  1932. },
  1933. "type": "library",
  1934. "extra": {
  1935. "branch-alias": {
  1936. "dev-master": "3.0.x-dev"
  1937. }
  1938. },
  1939. "autoload": {
  1940. "classmap": [
  1941. "src/"
  1942. ]
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "BSD-3-Clause"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Sebastian Bergmann",
  1951. "email": "sebastian@phpunit.de"
  1952. }
  1953. ],
  1954. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1955. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1956. "time": "2017-08-03T12:35:26+00:00"
  1957. },
  1958. {
  1959. "name": "sebastian/object-reflector",
  1960. "version": "1.1.1",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1964. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  1969. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  1970. "shasum": ""
  1971. },
  1972. "require": {
  1973. "php": "^7.0"
  1974. },
  1975. "require-dev": {
  1976. "phpunit/phpunit": "^6.0"
  1977. },
  1978. "type": "library",
  1979. "extra": {
  1980. "branch-alias": {
  1981. "dev-master": "1.1-dev"
  1982. }
  1983. },
  1984. "autoload": {
  1985. "classmap": [
  1986. "src/"
  1987. ]
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "BSD-3-Clause"
  1992. ],
  1993. "authors": [
  1994. {
  1995. "name": "Sebastian Bergmann",
  1996. "email": "sebastian@phpunit.de"
  1997. }
  1998. ],
  1999. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2000. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2001. "time": "2017-03-29T09:07:27+00:00"
  2002. },
  2003. {
  2004. "name": "sebastian/recursion-context",
  2005. "version": "3.0.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2009. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2014. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "php": "^7.0"
  2019. },
  2020. "require-dev": {
  2021. "phpunit/phpunit": "^6.0"
  2022. },
  2023. "type": "library",
  2024. "extra": {
  2025. "branch-alias": {
  2026. "dev-master": "3.0.x-dev"
  2027. }
  2028. },
  2029. "autoload": {
  2030. "classmap": [
  2031. "src/"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "BSD-3-Clause"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Jeff Welch",
  2041. "email": "whatthejeff@gmail.com"
  2042. },
  2043. {
  2044. "name": "Sebastian Bergmann",
  2045. "email": "sebastian@phpunit.de"
  2046. },
  2047. {
  2048. "name": "Adam Harvey",
  2049. "email": "aharvey@php.net"
  2050. }
  2051. ],
  2052. "description": "Provides functionality to recursively process PHP variables",
  2053. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2054. "time": "2017-03-03T06:23:57+00:00"
  2055. },
  2056. {
  2057. "name": "sebastian/resource-operations",
  2058. "version": "1.0.0",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2062. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2067. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2068. "shasum": ""
  2069. },
  2070. "require": {
  2071. "php": ">=5.6.0"
  2072. },
  2073. "type": "library",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-master": "1.0.x-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "classmap": [
  2081. "src/"
  2082. ]
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "BSD-3-Clause"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Sebastian Bergmann",
  2091. "email": "sebastian@phpunit.de"
  2092. }
  2093. ],
  2094. "description": "Provides a list of PHP built-in functions that operate on resources",
  2095. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2096. "time": "2015-07-28T20:34:47+00:00"
  2097. },
  2098. {
  2099. "name": "sebastian/version",
  2100. "version": "2.0.1",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/sebastianbergmann/version.git",
  2104. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2109. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "php": ">=5.6"
  2114. },
  2115. "type": "library",
  2116. "extra": {
  2117. "branch-alias": {
  2118. "dev-master": "2.0.x-dev"
  2119. }
  2120. },
  2121. "autoload": {
  2122. "classmap": [
  2123. "src/"
  2124. ]
  2125. },
  2126. "notification-url": "https://packagist.org/downloads/",
  2127. "license": [
  2128. "BSD-3-Clause"
  2129. ],
  2130. "authors": [
  2131. {
  2132. "name": "Sebastian Bergmann",
  2133. "email": "sebastian@phpunit.de",
  2134. "role": "lead"
  2135. }
  2136. ],
  2137. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2138. "homepage": "https://github.com/sebastianbergmann/version",
  2139. "time": "2016-10-03T07:35:21+00:00"
  2140. },
  2141. {
  2142. "name": "squizlabs/php_codesniffer",
  2143. "version": "3.5.5",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2147. "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
  2152. "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
  2153. "shasum": ""
  2154. },
  2155. "require": {
  2156. "ext-simplexml": "*",
  2157. "ext-tokenizer": "*",
  2158. "ext-xmlwriter": "*",
  2159. "php": ">=5.4.0"
  2160. },
  2161. "require-dev": {
  2162. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2163. },
  2164. "bin": [
  2165. "bin/phpcs",
  2166. "bin/phpcbf"
  2167. ],
  2168. "type": "library",
  2169. "extra": {
  2170. "branch-alias": {
  2171. "dev-master": "3.x-dev"
  2172. }
  2173. },
  2174. "notification-url": "https://packagist.org/downloads/",
  2175. "license": [
  2176. "BSD-3-Clause"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "Greg Sherwood",
  2181. "role": "lead"
  2182. }
  2183. ],
  2184. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2185. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  2186. "keywords": [
  2187. "phpcs",
  2188. "standards"
  2189. ],
  2190. "time": "2020-04-17T01:09:41+00:00"
  2191. },
  2192. {
  2193. "name": "symfony/config",
  2194. "version": "v5.0.8",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/symfony/config.git",
  2198. "reference": "db1674e1a261148429f123871f30d211992294e7"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/symfony/config/zipball/db1674e1a261148429f123871f30d211992294e7",
  2203. "reference": "db1674e1a261148429f123871f30d211992294e7",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "php": "^7.2.5",
  2208. "symfony/filesystem": "^4.4|^5.0",
  2209. "symfony/polyfill-ctype": "~1.8"
  2210. },
  2211. "conflict": {
  2212. "symfony/finder": "<4.4"
  2213. },
  2214. "require-dev": {
  2215. "symfony/event-dispatcher": "^4.4|^5.0",
  2216. "symfony/finder": "^4.4|^5.0",
  2217. "symfony/messenger": "^4.4|^5.0",
  2218. "symfony/service-contracts": "^1.1|^2",
  2219. "symfony/yaml": "^4.4|^5.0"
  2220. },
  2221. "suggest": {
  2222. "symfony/yaml": "To use the yaml reference dumper"
  2223. },
  2224. "type": "library",
  2225. "extra": {
  2226. "branch-alias": {
  2227. "dev-master": "5.0-dev"
  2228. }
  2229. },
  2230. "autoload": {
  2231. "psr-4": {
  2232. "Symfony\\Component\\Config\\": ""
  2233. },
  2234. "exclude-from-classmap": [
  2235. "/Tests/"
  2236. ]
  2237. },
  2238. "notification-url": "https://packagist.org/downloads/",
  2239. "license": [
  2240. "MIT"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Fabien Potencier",
  2245. "email": "fabien@symfony.com"
  2246. },
  2247. {
  2248. "name": "Symfony Community",
  2249. "homepage": "https://symfony.com/contributors"
  2250. }
  2251. ],
  2252. "description": "Symfony Config Component",
  2253. "homepage": "https://symfony.com",
  2254. "time": "2020-04-15T15:59:10+00:00"
  2255. },
  2256. {
  2257. "name": "symfony/filesystem",
  2258. "version": "v5.0.8",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/symfony/filesystem.git",
  2262. "reference": "7cd0dafc4353a0f62e307df90b48466379c8cc91"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7cd0dafc4353a0f62e307df90b48466379c8cc91",
  2267. "reference": "7cd0dafc4353a0f62e307df90b48466379c8cc91",
  2268. "shasum": ""
  2269. },
  2270. "require": {
  2271. "php": "^7.2.5",
  2272. "symfony/polyfill-ctype": "~1.8"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-master": "5.0-dev"
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-4": {
  2282. "Symfony\\Component\\Filesystem\\": ""
  2283. },
  2284. "exclude-from-classmap": [
  2285. "/Tests/"
  2286. ]
  2287. },
  2288. "notification-url": "https://packagist.org/downloads/",
  2289. "license": [
  2290. "MIT"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Fabien Potencier",
  2295. "email": "fabien@symfony.com"
  2296. },
  2297. {
  2298. "name": "Symfony Community",
  2299. "homepage": "https://symfony.com/contributors"
  2300. }
  2301. ],
  2302. "description": "Symfony Filesystem Component",
  2303. "homepage": "https://symfony.com",
  2304. "time": "2020-04-12T14:40:17+00:00"
  2305. },
  2306. {
  2307. "name": "symfony/polyfill-ctype",
  2308. "version": "v1.17.0",
  2309. "source": {
  2310. "type": "git",
  2311. "url": "https://github.com/symfony/polyfill-ctype.git",
  2312. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  2313. },
  2314. "dist": {
  2315. "type": "zip",
  2316. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  2317. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  2318. "shasum": ""
  2319. },
  2320. "require": {
  2321. "php": ">=5.3.3"
  2322. },
  2323. "suggest": {
  2324. "ext-ctype": "For best performance"
  2325. },
  2326. "type": "library",
  2327. "extra": {
  2328. "branch-alias": {
  2329. "dev-master": "1.17-dev"
  2330. }
  2331. },
  2332. "autoload": {
  2333. "psr-4": {
  2334. "Symfony\\Polyfill\\Ctype\\": ""
  2335. },
  2336. "files": [
  2337. "bootstrap.php"
  2338. ]
  2339. },
  2340. "notification-url": "https://packagist.org/downloads/",
  2341. "license": [
  2342. "MIT"
  2343. ],
  2344. "authors": [
  2345. {
  2346. "name": "Gert de Pagter",
  2347. "email": "BackEndTea@gmail.com"
  2348. },
  2349. {
  2350. "name": "Symfony Community",
  2351. "homepage": "https://symfony.com/contributors"
  2352. }
  2353. ],
  2354. "description": "Symfony polyfill for ctype functions",
  2355. "homepage": "https://symfony.com",
  2356. "keywords": [
  2357. "compatibility",
  2358. "ctype",
  2359. "polyfill",
  2360. "portable"
  2361. ],
  2362. "time": "2020-05-12T16:14:59+00:00"
  2363. },
  2364. {
  2365. "name": "symfony/polyfill-intl-idn",
  2366. "version": "v1.17.0",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2370. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  2375. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  2376. "shasum": ""
  2377. },
  2378. "require": {
  2379. "php": ">=5.3.3",
  2380. "symfony/polyfill-mbstring": "^1.3",
  2381. "symfony/polyfill-php72": "^1.10"
  2382. },
  2383. "suggest": {
  2384. "ext-intl": "For best performance"
  2385. },
  2386. "type": "library",
  2387. "extra": {
  2388. "branch-alias": {
  2389. "dev-master": "1.17-dev"
  2390. }
  2391. },
  2392. "autoload": {
  2393. "psr-4": {
  2394. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2395. },
  2396. "files": [
  2397. "bootstrap.php"
  2398. ]
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "Laurent Bassin",
  2407. "email": "laurent@bassin.info"
  2408. },
  2409. {
  2410. "name": "Symfony Community",
  2411. "homepage": "https://symfony.com/contributors"
  2412. }
  2413. ],
  2414. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2415. "homepage": "https://symfony.com",
  2416. "keywords": [
  2417. "compatibility",
  2418. "idn",
  2419. "intl",
  2420. "polyfill",
  2421. "portable",
  2422. "shim"
  2423. ],
  2424. "time": "2020-05-12T16:47:27+00:00"
  2425. },
  2426. {
  2427. "name": "symfony/polyfill-php72",
  2428. "version": "v1.17.0",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://github.com/symfony/polyfill-php72.git",
  2432. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  2437. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  2438. "shasum": ""
  2439. },
  2440. "require": {
  2441. "php": ">=5.3.3"
  2442. },
  2443. "type": "library",
  2444. "extra": {
  2445. "branch-alias": {
  2446. "dev-master": "1.17-dev"
  2447. }
  2448. },
  2449. "autoload": {
  2450. "psr-4": {
  2451. "Symfony\\Polyfill\\Php72\\": ""
  2452. },
  2453. "files": [
  2454. "bootstrap.php"
  2455. ]
  2456. },
  2457. "notification-url": "https://packagist.org/downloads/",
  2458. "license": [
  2459. "MIT"
  2460. ],
  2461. "authors": [
  2462. {
  2463. "name": "Nicolas Grekas",
  2464. "email": "p@tchwork.com"
  2465. },
  2466. {
  2467. "name": "Symfony Community",
  2468. "homepage": "https://symfony.com/contributors"
  2469. }
  2470. ],
  2471. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2472. "homepage": "https://symfony.com",
  2473. "keywords": [
  2474. "compatibility",
  2475. "polyfill",
  2476. "portable",
  2477. "shim"
  2478. ],
  2479. "time": "2020-05-12T16:47:27+00:00"
  2480. },
  2481. {
  2482. "name": "symfony/stopwatch",
  2483. "version": "v5.0.8",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/symfony/stopwatch.git",
  2487. "reference": "a1d86d30d4522423afc998f32404efa34fcf5a73"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/a1d86d30d4522423afc998f32404efa34fcf5a73",
  2492. "reference": "a1d86d30d4522423afc998f32404efa34fcf5a73",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": "^7.2.5",
  2497. "symfony/service-contracts": "^1.0|^2"
  2498. },
  2499. "type": "library",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "5.0-dev"
  2503. }
  2504. },
  2505. "autoload": {
  2506. "psr-4": {
  2507. "Symfony\\Component\\Stopwatch\\": ""
  2508. },
  2509. "exclude-from-classmap": [
  2510. "/Tests/"
  2511. ]
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Fabien Potencier",
  2520. "email": "fabien@symfony.com"
  2521. },
  2522. {
  2523. "name": "Symfony Community",
  2524. "homepage": "https://symfony.com/contributors"
  2525. }
  2526. ],
  2527. "description": "Symfony Stopwatch Component",
  2528. "homepage": "https://symfony.com",
  2529. "time": "2020-03-27T16:56:45+00:00"
  2530. },
  2531. {
  2532. "name": "symfony/yaml",
  2533. "version": "v5.0.8",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/symfony/yaml.git",
  2537. "reference": "482fb4e710e5af3e0e78015f19aa716ad953392f"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/symfony/yaml/zipball/482fb4e710e5af3e0e78015f19aa716ad953392f",
  2542. "reference": "482fb4e710e5af3e0e78015f19aa716ad953392f",
  2543. "shasum": ""
  2544. },
  2545. "require": {
  2546. "php": "^7.2.5",
  2547. "symfony/polyfill-ctype": "~1.8"
  2548. },
  2549. "conflict": {
  2550. "symfony/console": "<4.4"
  2551. },
  2552. "require-dev": {
  2553. "symfony/console": "^4.4|^5.0"
  2554. },
  2555. "suggest": {
  2556. "symfony/console": "For validating YAML files using the lint command"
  2557. },
  2558. "type": "library",
  2559. "extra": {
  2560. "branch-alias": {
  2561. "dev-master": "5.0-dev"
  2562. }
  2563. },
  2564. "autoload": {
  2565. "psr-4": {
  2566. "Symfony\\Component\\Yaml\\": ""
  2567. },
  2568. "exclude-from-classmap": [
  2569. "/Tests/"
  2570. ]
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "MIT"
  2575. ],
  2576. "authors": [
  2577. {
  2578. "name": "Fabien Potencier",
  2579. "email": "fabien@symfony.com"
  2580. },
  2581. {
  2582. "name": "Symfony Community",
  2583. "homepage": "https://symfony.com/contributors"
  2584. }
  2585. ],
  2586. "description": "Symfony Yaml Component",
  2587. "homepage": "https://symfony.com",
  2588. "time": "2020-04-28T17:58:55+00:00"
  2589. },
  2590. {
  2591. "name": "theseer/tokenizer",
  2592. "version": "1.1.3",
  2593. "source": {
  2594. "type": "git",
  2595. "url": "https://github.com/theseer/tokenizer.git",
  2596. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  2597. },
  2598. "dist": {
  2599. "type": "zip",
  2600. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  2601. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  2602. "shasum": ""
  2603. },
  2604. "require": {
  2605. "ext-dom": "*",
  2606. "ext-tokenizer": "*",
  2607. "ext-xmlwriter": "*",
  2608. "php": "^7.0"
  2609. },
  2610. "type": "library",
  2611. "autoload": {
  2612. "classmap": [
  2613. "src/"
  2614. ]
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "BSD-3-Clause"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Arne Blankerts",
  2623. "email": "arne@blankerts.de",
  2624. "role": "Developer"
  2625. }
  2626. ],
  2627. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2628. "time": "2019-06-13T22:48:21+00:00"
  2629. },
  2630. {
  2631. "name": "webmozart/assert",
  2632. "version": "1.8.0",
  2633. "source": {
  2634. "type": "git",
  2635. "url": "https://github.com/webmozart/assert.git",
  2636. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  2637. },
  2638. "dist": {
  2639. "type": "zip",
  2640. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  2641. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  2642. "shasum": ""
  2643. },
  2644. "require": {
  2645. "php": "^5.3.3 || ^7.0",
  2646. "symfony/polyfill-ctype": "^1.8"
  2647. },
  2648. "conflict": {
  2649. "vimeo/psalm": "<3.9.1"
  2650. },
  2651. "require-dev": {
  2652. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  2653. },
  2654. "type": "library",
  2655. "autoload": {
  2656. "psr-4": {
  2657. "Webmozart\\Assert\\": "src/"
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "Bernhard Schussek",
  2667. "email": "bschussek@gmail.com"
  2668. }
  2669. ],
  2670. "description": "Assertions to validate method input/output with nice error messages.",
  2671. "keywords": [
  2672. "assert",
  2673. "check",
  2674. "validate"
  2675. ],
  2676. "time": "2020-04-18T12:12:48+00:00"
  2677. }
  2678. ],
  2679. "aliases": [],
  2680. "minimum-stability": "stable",
  2681. "stability-flags": [],
  2682. "prefer-stable": false,
  2683. "prefer-lowest": false,
  2684. "platform": {
  2685. "php": ">=7.1.3"
  2686. },
  2687. "platform-dev": [],
  2688. "platform-overrides": {
  2689. "php": "7.2.28"
  2690. }
  2691. }