選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.lock 76 KiB

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