composer.lock 90 KB

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