composer.lock 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019
  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": "ae81b9e7daa60d332450889eb23e80a9",
  8. "packages": [
  9. {
  10. "name": "dflydev/dot-access-data",
  11. "version": "v1.1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  15. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  20. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.2"
  25. },
  26. "type": "library",
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "1.0-dev"
  30. }
  31. },
  32. "autoload": {
  33. "psr-0": {
  34. "Dflydev\\DotAccessData": "src"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Dragonfly Development Inc.",
  44. "email": "info@dflydev.com",
  45. "homepage": "http://dflydev.com"
  46. },
  47. {
  48. "name": "Beau Simensen",
  49. "email": "beau@dflydev.com",
  50. "homepage": "http://beausimensen.com"
  51. },
  52. {
  53. "name": "Carlos Frutos",
  54. "email": "carlos@kiwing.it",
  55. "homepage": "https://github.com/cfrutos"
  56. }
  57. ],
  58. "description": "Given a deep data structure, access data by dot notation.",
  59. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  60. "keywords": [
  61. "access",
  62. "data",
  63. "dot",
  64. "notation"
  65. ],
  66. "time": "2017-01-20T21:14:22+00:00"
  67. },
  68. {
  69. "name": "symfony/yaml",
  70. "version": "v3.4.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/symfony/yaml.git",
  74. "reference": "b3d0c9c11be3831b84825967dc6b52b5a7b84e04"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/symfony/yaml/zipball/b3d0c9c11be3831b84825967dc6b52b5a7b84e04",
  79. "reference": "b3d0c9c11be3831b84825967dc6b52b5a7b84e04",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "php": "^5.5.9|>=7.0.8"
  84. },
  85. "conflict": {
  86. "symfony/console": "<3.4"
  87. },
  88. "require-dev": {
  89. "symfony/console": "~3.4|~4.0"
  90. },
  91. "suggest": {
  92. "symfony/console": "For validating YAML files using the lint command"
  93. },
  94. "type": "library",
  95. "extra": {
  96. "branch-alias": {
  97. "dev-master": "3.4-dev"
  98. }
  99. },
  100. "autoload": {
  101. "psr-4": {
  102. "Symfony\\Component\\Yaml\\": ""
  103. },
  104. "exclude-from-classmap": [
  105. "/Tests/"
  106. ]
  107. },
  108. "notification-url": "https://packagist.org/downloads/",
  109. "license": [
  110. "MIT"
  111. ],
  112. "authors": [
  113. {
  114. "name": "Fabien Potencier",
  115. "email": "fabien@symfony.com"
  116. },
  117. {
  118. "name": "Symfony Community",
  119. "homepage": "https://symfony.com/contributors"
  120. }
  121. ],
  122. "description": "Symfony Yaml Component",
  123. "homepage": "https://symfony.com",
  124. "time": "2017-11-29T13:28:14+00:00"
  125. }
  126. ],
  127. "packages-dev": [
  128. {
  129. "name": "doctrine/instantiator",
  130. "version": "1.0.5",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/doctrine/instantiator.git",
  134. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  139. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "php": ">=5.3,<8.0-DEV"
  144. },
  145. "require-dev": {
  146. "athletic/athletic": "~0.1.8",
  147. "ext-pdo": "*",
  148. "ext-phar": "*",
  149. "phpunit/phpunit": "~4.0",
  150. "squizlabs/php_codesniffer": "~2.0"
  151. },
  152. "type": "library",
  153. "extra": {
  154. "branch-alias": {
  155. "dev-master": "1.0.x-dev"
  156. }
  157. },
  158. "autoload": {
  159. "psr-4": {
  160. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "MIT"
  166. ],
  167. "authors": [
  168. {
  169. "name": "Marco Pivetta",
  170. "email": "ocramius@gmail.com",
  171. "homepage": "http://ocramius.github.com/"
  172. }
  173. ],
  174. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  175. "homepage": "https://github.com/doctrine/instantiator",
  176. "keywords": [
  177. "constructor",
  178. "instantiate"
  179. ],
  180. "time": "2015-06-14T21:17:01+00:00"
  181. },
  182. {
  183. "name": "greg-1-anderson/composer-test-scenarios",
  184. "version": "1.0.0",
  185. "source": {
  186. "type": "git",
  187. "url": "https://github.com/greg-1-anderson/composer-test-scenarios.git",
  188. "reference": "00ff9f3af3132f0c6b2fb9e0906efee402f0c703"
  189. },
  190. "dist": {
  191. "type": "zip",
  192. "url": "https://api.github.com/repos/greg-1-anderson/composer-test-scenarios/zipball/00ff9f3af3132f0c6b2fb9e0906efee402f0c703",
  193. "reference": "00ff9f3af3132f0c6b2fb9e0906efee402f0c703",
  194. "shasum": ""
  195. },
  196. "bin": [
  197. "scripts/create-scenario",
  198. "scripts/install-scenario"
  199. ],
  200. "type": "library",
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Greg Anderson",
  208. "email": "greg.1.anderson@greenknowe.org"
  209. }
  210. ],
  211. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  212. "time": "2017-12-01T21:34:53+00:00"
  213. },
  214. {
  215. "name": "guzzlehttp/guzzle",
  216. "version": "6.3.0",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/guzzle/guzzle.git",
  220. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  225. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "guzzlehttp/promises": "^1.0",
  230. "guzzlehttp/psr7": "^1.4",
  231. "php": ">=5.5"
  232. },
  233. "require-dev": {
  234. "ext-curl": "*",
  235. "phpunit/phpunit": "^4.0 || ^5.0",
  236. "psr/log": "^1.0"
  237. },
  238. "suggest": {
  239. "psr/log": "Required for using the Log middleware"
  240. },
  241. "type": "library",
  242. "extra": {
  243. "branch-alias": {
  244. "dev-master": "6.2-dev"
  245. }
  246. },
  247. "autoload": {
  248. "files": [
  249. "src/functions_include.php"
  250. ],
  251. "psr-4": {
  252. "GuzzleHttp\\": "src/"
  253. }
  254. },
  255. "notification-url": "https://packagist.org/downloads/",
  256. "license": [
  257. "MIT"
  258. ],
  259. "authors": [
  260. {
  261. "name": "Michael Dowling",
  262. "email": "mtdowling@gmail.com",
  263. "homepage": "https://github.com/mtdowling"
  264. }
  265. ],
  266. "description": "Guzzle is a PHP HTTP client library",
  267. "homepage": "http://guzzlephp.org/",
  268. "keywords": [
  269. "client",
  270. "curl",
  271. "framework",
  272. "http",
  273. "http client",
  274. "rest",
  275. "web service"
  276. ],
  277. "time": "2017-06-22T18:50:49+00:00"
  278. },
  279. {
  280. "name": "guzzlehttp/promises",
  281. "version": "v1.3.1",
  282. "source": {
  283. "type": "git",
  284. "url": "https://github.com/guzzle/promises.git",
  285. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  286. },
  287. "dist": {
  288. "type": "zip",
  289. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  290. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  291. "shasum": ""
  292. },
  293. "require": {
  294. "php": ">=5.5.0"
  295. },
  296. "require-dev": {
  297. "phpunit/phpunit": "^4.0"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "1.4-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-4": {
  307. "GuzzleHttp\\Promise\\": "src/"
  308. },
  309. "files": [
  310. "src/functions_include.php"
  311. ]
  312. },
  313. "notification-url": "https://packagist.org/downloads/",
  314. "license": [
  315. "MIT"
  316. ],
  317. "authors": [
  318. {
  319. "name": "Michael Dowling",
  320. "email": "mtdowling@gmail.com",
  321. "homepage": "https://github.com/mtdowling"
  322. }
  323. ],
  324. "description": "Guzzle promises library",
  325. "keywords": [
  326. "promise"
  327. ],
  328. "time": "2016-12-20T10:07:11+00:00"
  329. },
  330. {
  331. "name": "guzzlehttp/psr7",
  332. "version": "1.4.2",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/guzzle/psr7.git",
  336. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  341. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  342. "shasum": ""
  343. },
  344. "require": {
  345. "php": ">=5.4.0",
  346. "psr/http-message": "~1.0"
  347. },
  348. "provide": {
  349. "psr/http-message-implementation": "1.0"
  350. },
  351. "require-dev": {
  352. "phpunit/phpunit": "~4.0"
  353. },
  354. "type": "library",
  355. "extra": {
  356. "branch-alias": {
  357. "dev-master": "1.4-dev"
  358. }
  359. },
  360. "autoload": {
  361. "psr-4": {
  362. "GuzzleHttp\\Psr7\\": "src/"
  363. },
  364. "files": [
  365. "src/functions_include.php"
  366. ]
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "authors": [
  373. {
  374. "name": "Michael Dowling",
  375. "email": "mtdowling@gmail.com",
  376. "homepage": "https://github.com/mtdowling"
  377. },
  378. {
  379. "name": "Tobias Schultze",
  380. "homepage": "https://github.com/Tobion"
  381. }
  382. ],
  383. "description": "PSR-7 message implementation that also provides common utility methods",
  384. "keywords": [
  385. "http",
  386. "message",
  387. "request",
  388. "response",
  389. "stream",
  390. "uri",
  391. "url"
  392. ],
  393. "time": "2017-03-20T17:10:46+00:00"
  394. },
  395. {
  396. "name": "phpdocumentor/reflection-common",
  397. "version": "1.0.1",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  401. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  406. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": ">=5.5"
  411. },
  412. "require-dev": {
  413. "phpunit/phpunit": "^4.6"
  414. },
  415. "type": "library",
  416. "extra": {
  417. "branch-alias": {
  418. "dev-master": "1.0.x-dev"
  419. }
  420. },
  421. "autoload": {
  422. "psr-4": {
  423. "phpDocumentor\\Reflection\\": [
  424. "src"
  425. ]
  426. }
  427. },
  428. "notification-url": "https://packagist.org/downloads/",
  429. "license": [
  430. "MIT"
  431. ],
  432. "authors": [
  433. {
  434. "name": "Jaap van Otterdijk",
  435. "email": "opensource@ijaap.nl"
  436. }
  437. ],
  438. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  439. "homepage": "http://www.phpdoc.org",
  440. "keywords": [
  441. "FQSEN",
  442. "phpDocumentor",
  443. "phpdoc",
  444. "reflection",
  445. "static analysis"
  446. ],
  447. "time": "2017-09-11T18:02:19+00:00"
  448. },
  449. {
  450. "name": "phpdocumentor/reflection-docblock",
  451. "version": "3.2.2",
  452. "source": {
  453. "type": "git",
  454. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  455. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157"
  456. },
  457. "dist": {
  458. "type": "zip",
  459. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  460. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  461. "shasum": ""
  462. },
  463. "require": {
  464. "php": ">=5.5",
  465. "phpdocumentor/reflection-common": "^1.0@dev",
  466. "phpdocumentor/type-resolver": "^0.3.0",
  467. "webmozart/assert": "^1.0"
  468. },
  469. "require-dev": {
  470. "mockery/mockery": "^0.9.4",
  471. "phpunit/phpunit": "^4.4"
  472. },
  473. "type": "library",
  474. "autoload": {
  475. "psr-4": {
  476. "phpDocumentor\\Reflection\\": [
  477. "src/"
  478. ]
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Mike van Riel",
  488. "email": "me@mikevanriel.com"
  489. }
  490. ],
  491. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  492. "time": "2017-08-08T06:39:58+00:00"
  493. },
  494. {
  495. "name": "phpdocumentor/type-resolver",
  496. "version": "0.3.0",
  497. "source": {
  498. "type": "git",
  499. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  500. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773"
  501. },
  502. "dist": {
  503. "type": "zip",
  504. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fb3933512008d8162b3cdf9e18dba9309b7c3773",
  505. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773",
  506. "shasum": ""
  507. },
  508. "require": {
  509. "php": "^5.5 || ^7.0",
  510. "phpdocumentor/reflection-common": "^1.0"
  511. },
  512. "require-dev": {
  513. "mockery/mockery": "^0.9.4",
  514. "phpunit/phpunit": "^5.2||^4.8.24"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-master": "1.0.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "phpDocumentor\\Reflection\\": [
  525. "src/"
  526. ]
  527. }
  528. },
  529. "notification-url": "https://packagist.org/downloads/",
  530. "license": [
  531. "MIT"
  532. ],
  533. "authors": [
  534. {
  535. "name": "Mike van Riel",
  536. "email": "me@mikevanriel.com"
  537. }
  538. ],
  539. "time": "2017-06-03T08:32:36+00:00"
  540. },
  541. {
  542. "name": "phpspec/prophecy",
  543. "version": "1.7.3",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/phpspec/prophecy.git",
  547. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  552. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "doctrine/instantiator": "^1.0.2",
  557. "php": "^5.3|^7.0",
  558. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  559. "sebastian/comparator": "^1.1|^2.0",
  560. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  561. },
  562. "require-dev": {
  563. "phpspec/phpspec": "^2.5|^3.2",
  564. "phpunit/phpunit": "^4.8.35 || ^5.7"
  565. },
  566. "type": "library",
  567. "extra": {
  568. "branch-alias": {
  569. "dev-master": "1.7.x-dev"
  570. }
  571. },
  572. "autoload": {
  573. "psr-0": {
  574. "Prophecy\\": "src/"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Konstantin Kudryashov",
  584. "email": "ever.zet@gmail.com",
  585. "homepage": "http://everzet.com"
  586. },
  587. {
  588. "name": "Marcello Duarte",
  589. "email": "marcello.duarte@gmail.com"
  590. }
  591. ],
  592. "description": "Highly opinionated mocking framework for PHP 5.3+",
  593. "homepage": "https://github.com/phpspec/prophecy",
  594. "keywords": [
  595. "Double",
  596. "Dummy",
  597. "fake",
  598. "mock",
  599. "spy",
  600. "stub"
  601. ],
  602. "time": "2017-11-24T13:59:53+00:00"
  603. },
  604. {
  605. "name": "phpunit/php-code-coverage",
  606. "version": "2.2.4",
  607. "source": {
  608. "type": "git",
  609. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  610. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  611. },
  612. "dist": {
  613. "type": "zip",
  614. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  615. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  616. "shasum": ""
  617. },
  618. "require": {
  619. "php": ">=5.3.3",
  620. "phpunit/php-file-iterator": "~1.3",
  621. "phpunit/php-text-template": "~1.2",
  622. "phpunit/php-token-stream": "~1.3",
  623. "sebastian/environment": "^1.3.2",
  624. "sebastian/version": "~1.0"
  625. },
  626. "require-dev": {
  627. "ext-xdebug": ">=2.1.4",
  628. "phpunit/phpunit": "~4"
  629. },
  630. "suggest": {
  631. "ext-dom": "*",
  632. "ext-xdebug": ">=2.2.1",
  633. "ext-xmlwriter": "*"
  634. },
  635. "type": "library",
  636. "extra": {
  637. "branch-alias": {
  638. "dev-master": "2.2.x-dev"
  639. }
  640. },
  641. "autoload": {
  642. "classmap": [
  643. "src/"
  644. ]
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "BSD-3-Clause"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Sebastian Bergmann",
  653. "email": "sb@sebastian-bergmann.de",
  654. "role": "lead"
  655. }
  656. ],
  657. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  658. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  659. "keywords": [
  660. "coverage",
  661. "testing",
  662. "xunit"
  663. ],
  664. "time": "2015-10-06T15:47:00+00:00"
  665. },
  666. {
  667. "name": "phpunit/php-file-iterator",
  668. "version": "1.4.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  672. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  677. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": ">=5.3.3"
  682. },
  683. "type": "library",
  684. "extra": {
  685. "branch-alias": {
  686. "dev-master": "1.4.x-dev"
  687. }
  688. },
  689. "autoload": {
  690. "classmap": [
  691. "src/"
  692. ]
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "BSD-3-Clause"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Sebastian Bergmann",
  701. "email": "sb@sebastian-bergmann.de",
  702. "role": "lead"
  703. }
  704. ],
  705. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  706. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  707. "keywords": [
  708. "filesystem",
  709. "iterator"
  710. ],
  711. "time": "2017-11-27T13:52:08+00:00"
  712. },
  713. {
  714. "name": "phpunit/php-text-template",
  715. "version": "1.2.1",
  716. "source": {
  717. "type": "git",
  718. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  719. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  720. },
  721. "dist": {
  722. "type": "zip",
  723. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  724. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  725. "shasum": ""
  726. },
  727. "require": {
  728. "php": ">=5.3.3"
  729. },
  730. "type": "library",
  731. "autoload": {
  732. "classmap": [
  733. "src/"
  734. ]
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "BSD-3-Clause"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Sebastian Bergmann",
  743. "email": "sebastian@phpunit.de",
  744. "role": "lead"
  745. }
  746. ],
  747. "description": "Simple template engine.",
  748. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  749. "keywords": [
  750. "template"
  751. ],
  752. "time": "2015-06-21T13:50:34+00:00"
  753. },
  754. {
  755. "name": "phpunit/php-timer",
  756. "version": "1.0.9",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/sebastianbergmann/php-timer.git",
  760. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  765. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  766. "shasum": ""
  767. },
  768. "require": {
  769. "php": "^5.3.3 || ^7.0"
  770. },
  771. "require-dev": {
  772. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "branch-alias": {
  777. "dev-master": "1.0-dev"
  778. }
  779. },
  780. "autoload": {
  781. "classmap": [
  782. "src/"
  783. ]
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "BSD-3-Clause"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Sebastian Bergmann",
  792. "email": "sb@sebastian-bergmann.de",
  793. "role": "lead"
  794. }
  795. ],
  796. "description": "Utility class for timing",
  797. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  798. "keywords": [
  799. "timer"
  800. ],
  801. "time": "2017-02-26T11:10:40+00:00"
  802. },
  803. {
  804. "name": "phpunit/php-token-stream",
  805. "version": "1.4.11",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  809. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
  814. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  815. "shasum": ""
  816. },
  817. "require": {
  818. "ext-tokenizer": "*",
  819. "php": ">=5.3.3"
  820. },
  821. "require-dev": {
  822. "phpunit/phpunit": "~4.2"
  823. },
  824. "type": "library",
  825. "extra": {
  826. "branch-alias": {
  827. "dev-master": "1.4-dev"
  828. }
  829. },
  830. "autoload": {
  831. "classmap": [
  832. "src/"
  833. ]
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "BSD-3-Clause"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Sebastian Bergmann",
  842. "email": "sebastian@phpunit.de"
  843. }
  844. ],
  845. "description": "Wrapper around PHP's tokenizer extension.",
  846. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  847. "keywords": [
  848. "tokenizer"
  849. ],
  850. "time": "2017-02-27T10:12:30+00:00"
  851. },
  852. {
  853. "name": "phpunit/phpunit",
  854. "version": "4.8.36",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/sebastianbergmann/phpunit.git",
  858. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  863. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "ext-dom": "*",
  868. "ext-json": "*",
  869. "ext-pcre": "*",
  870. "ext-reflection": "*",
  871. "ext-spl": "*",
  872. "php": ">=5.3.3",
  873. "phpspec/prophecy": "^1.3.1",
  874. "phpunit/php-code-coverage": "~2.1",
  875. "phpunit/php-file-iterator": "~1.4",
  876. "phpunit/php-text-template": "~1.2",
  877. "phpunit/php-timer": "^1.0.6",
  878. "phpunit/phpunit-mock-objects": "~2.3",
  879. "sebastian/comparator": "~1.2.2",
  880. "sebastian/diff": "~1.2",
  881. "sebastian/environment": "~1.3",
  882. "sebastian/exporter": "~1.2",
  883. "sebastian/global-state": "~1.0",
  884. "sebastian/version": "~1.0",
  885. "symfony/yaml": "~2.1|~3.0"
  886. },
  887. "suggest": {
  888. "phpunit/php-invoker": "~1.1"
  889. },
  890. "bin": [
  891. "phpunit"
  892. ],
  893. "type": "library",
  894. "extra": {
  895. "branch-alias": {
  896. "dev-master": "4.8.x-dev"
  897. }
  898. },
  899. "autoload": {
  900. "classmap": [
  901. "src/"
  902. ]
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "BSD-3-Clause"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Sebastian Bergmann",
  911. "email": "sebastian@phpunit.de",
  912. "role": "lead"
  913. }
  914. ],
  915. "description": "The PHP Unit Testing framework.",
  916. "homepage": "https://phpunit.de/",
  917. "keywords": [
  918. "phpunit",
  919. "testing",
  920. "xunit"
  921. ],
  922. "time": "2017-06-21T08:07:12+00:00"
  923. },
  924. {
  925. "name": "phpunit/phpunit-mock-objects",
  926. "version": "2.3.8",
  927. "source": {
  928. "type": "git",
  929. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  930. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  931. },
  932. "dist": {
  933. "type": "zip",
  934. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  935. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  936. "shasum": ""
  937. },
  938. "require": {
  939. "doctrine/instantiator": "^1.0.2",
  940. "php": ">=5.3.3",
  941. "phpunit/php-text-template": "~1.2",
  942. "sebastian/exporter": "~1.2"
  943. },
  944. "require-dev": {
  945. "phpunit/phpunit": "~4.4"
  946. },
  947. "suggest": {
  948. "ext-soap": "*"
  949. },
  950. "type": "library",
  951. "extra": {
  952. "branch-alias": {
  953. "dev-master": "2.3.x-dev"
  954. }
  955. },
  956. "autoload": {
  957. "classmap": [
  958. "src/"
  959. ]
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "BSD-3-Clause"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Sebastian Bergmann",
  968. "email": "sb@sebastian-bergmann.de",
  969. "role": "lead"
  970. }
  971. ],
  972. "description": "Mock Object library for PHPUnit",
  973. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  974. "keywords": [
  975. "mock",
  976. "xunit"
  977. ],
  978. "time": "2015-10-02T06:51:40+00:00"
  979. },
  980. {
  981. "name": "psr/http-message",
  982. "version": "1.0.1",
  983. "source": {
  984. "type": "git",
  985. "url": "https://github.com/php-fig/http-message.git",
  986. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  987. },
  988. "dist": {
  989. "type": "zip",
  990. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  991. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  992. "shasum": ""
  993. },
  994. "require": {
  995. "php": ">=5.3.0"
  996. },
  997. "type": "library",
  998. "extra": {
  999. "branch-alias": {
  1000. "dev-master": "1.0.x-dev"
  1001. }
  1002. },
  1003. "autoload": {
  1004. "psr-4": {
  1005. "Psr\\Http\\Message\\": "src/"
  1006. }
  1007. },
  1008. "notification-url": "https://packagist.org/downloads/",
  1009. "license": [
  1010. "MIT"
  1011. ],
  1012. "authors": [
  1013. {
  1014. "name": "PHP-FIG",
  1015. "homepage": "http://www.php-fig.org/"
  1016. }
  1017. ],
  1018. "description": "Common interface for HTTP messages",
  1019. "homepage": "https://github.com/php-fig/http-message",
  1020. "keywords": [
  1021. "http",
  1022. "http-message",
  1023. "psr",
  1024. "psr-7",
  1025. "request",
  1026. "response"
  1027. ],
  1028. "time": "2016-08-06T14:39:51+00:00"
  1029. },
  1030. {
  1031. "name": "psr/log",
  1032. "version": "1.0.2",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/php-fig/log.git",
  1036. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1041. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": ">=5.3.0"
  1046. },
  1047. "type": "library",
  1048. "extra": {
  1049. "branch-alias": {
  1050. "dev-master": "1.0.x-dev"
  1051. }
  1052. },
  1053. "autoload": {
  1054. "psr-4": {
  1055. "Psr\\Log\\": "Psr/Log/"
  1056. }
  1057. },
  1058. "notification-url": "https://packagist.org/downloads/",
  1059. "license": [
  1060. "MIT"
  1061. ],
  1062. "authors": [
  1063. {
  1064. "name": "PHP-FIG",
  1065. "homepage": "http://www.php-fig.org/"
  1066. }
  1067. ],
  1068. "description": "Common interface for logging libraries",
  1069. "homepage": "https://github.com/php-fig/log",
  1070. "keywords": [
  1071. "log",
  1072. "psr",
  1073. "psr-3"
  1074. ],
  1075. "time": "2016-10-10T12:19:37+00:00"
  1076. },
  1077. {
  1078. "name": "satooshi/php-coveralls",
  1079. "version": "dev-master",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/php-coveralls/php-coveralls.git",
  1083. "reference": "c9d3fe2327c8539f1105dc19954673ba993e4ad9"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/c9d3fe2327c8539f1105dc19954673ba993e4ad9",
  1088. "reference": "c9d3fe2327c8539f1105dc19954673ba993e4ad9",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "ext-json": "*",
  1093. "ext-simplexml": "*",
  1094. "guzzlehttp/guzzle": "^6.0",
  1095. "php": "^5.5 || ^7.0",
  1096. "psr/log": "^1.0",
  1097. "symfony/config": "^2.1 || ^3.0 || ^4.0",
  1098. "symfony/console": "^2.1 || ^3.0 || ^4.0",
  1099. "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0",
  1100. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  1101. },
  1102. "require-dev": {
  1103. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
  1104. },
  1105. "suggest": {
  1106. "symfony/http-kernel": "Allows Symfony integration"
  1107. },
  1108. "bin": [
  1109. "bin/coveralls"
  1110. ],
  1111. "type": "library",
  1112. "extra": {
  1113. "branch-alias": {
  1114. "dev-master": "2.0-dev"
  1115. }
  1116. },
  1117. "autoload": {
  1118. "psr-4": {
  1119. "PhpCoveralls\\": "src/"
  1120. }
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "Kitamura Satoshi",
  1129. "email": "with.no.parachute@gmail.com",
  1130. "homepage": "https://www.facebook.com/satooshi.jp",
  1131. "role": "Original creator"
  1132. },
  1133. {
  1134. "name": "Takashi Matsuo",
  1135. "email": "tmatsuo@google.com"
  1136. },
  1137. {
  1138. "name": "Google Inc"
  1139. },
  1140. {
  1141. "name": "Dariusz Ruminski",
  1142. "email": "dariusz.ruminski@gmail.com",
  1143. "homepage": "https://github.com/keradus"
  1144. },
  1145. {
  1146. "name": "Contributors",
  1147. "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
  1148. }
  1149. ],
  1150. "description": "PHP client library for Coveralls API",
  1151. "homepage": "https://github.com/php-coveralls/php-coveralls",
  1152. "keywords": [
  1153. "ci",
  1154. "coverage",
  1155. "github",
  1156. "test"
  1157. ],
  1158. "time": "2017-10-14T23:16:28+00:00"
  1159. },
  1160. {
  1161. "name": "sebastian/comparator",
  1162. "version": "1.2.4",
  1163. "source": {
  1164. "type": "git",
  1165. "url": "https://github.com/sebastianbergmann/comparator.git",
  1166. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1167. },
  1168. "dist": {
  1169. "type": "zip",
  1170. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1171. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1172. "shasum": ""
  1173. },
  1174. "require": {
  1175. "php": ">=5.3.3",
  1176. "sebastian/diff": "~1.2",
  1177. "sebastian/exporter": "~1.2 || ~2.0"
  1178. },
  1179. "require-dev": {
  1180. "phpunit/phpunit": "~4.4"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.2.x-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "classmap": [
  1190. "src/"
  1191. ]
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "BSD-3-Clause"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Jeff Welch",
  1200. "email": "whatthejeff@gmail.com"
  1201. },
  1202. {
  1203. "name": "Volker Dusch",
  1204. "email": "github@wallbash.com"
  1205. },
  1206. {
  1207. "name": "Bernhard Schussek",
  1208. "email": "bschussek@2bepublished.at"
  1209. },
  1210. {
  1211. "name": "Sebastian Bergmann",
  1212. "email": "sebastian@phpunit.de"
  1213. }
  1214. ],
  1215. "description": "Provides the functionality to compare PHP values for equality",
  1216. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1217. "keywords": [
  1218. "comparator",
  1219. "compare",
  1220. "equality"
  1221. ],
  1222. "time": "2017-01-29T09:50:25+00:00"
  1223. },
  1224. {
  1225. "name": "sebastian/diff",
  1226. "version": "1.4.3",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/sebastianbergmann/diff.git",
  1230. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1235. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "php": "^5.3.3 || ^7.0"
  1240. },
  1241. "require-dev": {
  1242. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "1.4-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "classmap": [
  1252. "src/"
  1253. ]
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "BSD-3-Clause"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Kore Nordmann",
  1262. "email": "mail@kore-nordmann.de"
  1263. },
  1264. {
  1265. "name": "Sebastian Bergmann",
  1266. "email": "sebastian@phpunit.de"
  1267. }
  1268. ],
  1269. "description": "Diff implementation",
  1270. "homepage": "https://github.com/sebastianbergmann/diff",
  1271. "keywords": [
  1272. "diff"
  1273. ],
  1274. "time": "2017-05-22T07:24:03+00:00"
  1275. },
  1276. {
  1277. "name": "sebastian/environment",
  1278. "version": "1.3.8",
  1279. "source": {
  1280. "type": "git",
  1281. "url": "https://github.com/sebastianbergmann/environment.git",
  1282. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1283. },
  1284. "dist": {
  1285. "type": "zip",
  1286. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1287. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1288. "shasum": ""
  1289. },
  1290. "require": {
  1291. "php": "^5.3.3 || ^7.0"
  1292. },
  1293. "require-dev": {
  1294. "phpunit/phpunit": "^4.8 || ^5.0"
  1295. },
  1296. "type": "library",
  1297. "extra": {
  1298. "branch-alias": {
  1299. "dev-master": "1.3.x-dev"
  1300. }
  1301. },
  1302. "autoload": {
  1303. "classmap": [
  1304. "src/"
  1305. ]
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "BSD-3-Clause"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "Sebastian Bergmann",
  1314. "email": "sebastian@phpunit.de"
  1315. }
  1316. ],
  1317. "description": "Provides functionality to handle HHVM/PHP environments",
  1318. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1319. "keywords": [
  1320. "Xdebug",
  1321. "environment",
  1322. "hhvm"
  1323. ],
  1324. "time": "2016-08-18T05:49:44+00:00"
  1325. },
  1326. {
  1327. "name": "sebastian/exporter",
  1328. "version": "1.2.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/sebastianbergmann/exporter.git",
  1332. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1337. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": ">=5.3.3",
  1342. "sebastian/recursion-context": "~1.0"
  1343. },
  1344. "require-dev": {
  1345. "ext-mbstring": "*",
  1346. "phpunit/phpunit": "~4.4"
  1347. },
  1348. "type": "library",
  1349. "extra": {
  1350. "branch-alias": {
  1351. "dev-master": "1.3.x-dev"
  1352. }
  1353. },
  1354. "autoload": {
  1355. "classmap": [
  1356. "src/"
  1357. ]
  1358. },
  1359. "notification-url": "https://packagist.org/downloads/",
  1360. "license": [
  1361. "BSD-3-Clause"
  1362. ],
  1363. "authors": [
  1364. {
  1365. "name": "Jeff Welch",
  1366. "email": "whatthejeff@gmail.com"
  1367. },
  1368. {
  1369. "name": "Volker Dusch",
  1370. "email": "github@wallbash.com"
  1371. },
  1372. {
  1373. "name": "Bernhard Schussek",
  1374. "email": "bschussek@2bepublished.at"
  1375. },
  1376. {
  1377. "name": "Sebastian Bergmann",
  1378. "email": "sebastian@phpunit.de"
  1379. },
  1380. {
  1381. "name": "Adam Harvey",
  1382. "email": "aharvey@php.net"
  1383. }
  1384. ],
  1385. "description": "Provides the functionality to export PHP variables for visualization",
  1386. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1387. "keywords": [
  1388. "export",
  1389. "exporter"
  1390. ],
  1391. "time": "2016-06-17T09:04:28+00:00"
  1392. },
  1393. {
  1394. "name": "sebastian/global-state",
  1395. "version": "1.1.1",
  1396. "source": {
  1397. "type": "git",
  1398. "url": "https://github.com/sebastianbergmann/global-state.git",
  1399. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1400. },
  1401. "dist": {
  1402. "type": "zip",
  1403. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1404. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1405. "shasum": ""
  1406. },
  1407. "require": {
  1408. "php": ">=5.3.3"
  1409. },
  1410. "require-dev": {
  1411. "phpunit/phpunit": "~4.2"
  1412. },
  1413. "suggest": {
  1414. "ext-uopz": "*"
  1415. },
  1416. "type": "library",
  1417. "extra": {
  1418. "branch-alias": {
  1419. "dev-master": "1.0-dev"
  1420. }
  1421. },
  1422. "autoload": {
  1423. "classmap": [
  1424. "src/"
  1425. ]
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "BSD-3-Clause"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Sebastian Bergmann",
  1434. "email": "sebastian@phpunit.de"
  1435. }
  1436. ],
  1437. "description": "Snapshotting of global state",
  1438. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1439. "keywords": [
  1440. "global state"
  1441. ],
  1442. "time": "2015-10-12T03:26:01+00:00"
  1443. },
  1444. {
  1445. "name": "sebastian/recursion-context",
  1446. "version": "1.0.5",
  1447. "source": {
  1448. "type": "git",
  1449. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1450. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  1451. },
  1452. "dist": {
  1453. "type": "zip",
  1454. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1455. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1456. "shasum": ""
  1457. },
  1458. "require": {
  1459. "php": ">=5.3.3"
  1460. },
  1461. "require-dev": {
  1462. "phpunit/phpunit": "~4.4"
  1463. },
  1464. "type": "library",
  1465. "extra": {
  1466. "branch-alias": {
  1467. "dev-master": "1.0.x-dev"
  1468. }
  1469. },
  1470. "autoload": {
  1471. "classmap": [
  1472. "src/"
  1473. ]
  1474. },
  1475. "notification-url": "https://packagist.org/downloads/",
  1476. "license": [
  1477. "BSD-3-Clause"
  1478. ],
  1479. "authors": [
  1480. {
  1481. "name": "Jeff Welch",
  1482. "email": "whatthejeff@gmail.com"
  1483. },
  1484. {
  1485. "name": "Sebastian Bergmann",
  1486. "email": "sebastian@phpunit.de"
  1487. },
  1488. {
  1489. "name": "Adam Harvey",
  1490. "email": "aharvey@php.net"
  1491. }
  1492. ],
  1493. "description": "Provides functionality to recursively process PHP variables",
  1494. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1495. "time": "2016-10-03T07:41:43+00:00"
  1496. },
  1497. {
  1498. "name": "sebastian/version",
  1499. "version": "1.0.6",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/sebastianbergmann/version.git",
  1503. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1508. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1509. "shasum": ""
  1510. },
  1511. "type": "library",
  1512. "autoload": {
  1513. "classmap": [
  1514. "src/"
  1515. ]
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "BSD-3-Clause"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Sebastian Bergmann",
  1524. "email": "sebastian@phpunit.de",
  1525. "role": "lead"
  1526. }
  1527. ],
  1528. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1529. "homepage": "https://github.com/sebastianbergmann/version",
  1530. "time": "2015-06-21T13:59:46+00:00"
  1531. },
  1532. {
  1533. "name": "squizlabs/php_codesniffer",
  1534. "version": "2.9.1",
  1535. "source": {
  1536. "type": "git",
  1537. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1538. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  1539. },
  1540. "dist": {
  1541. "type": "zip",
  1542. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  1543. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  1544. "shasum": ""
  1545. },
  1546. "require": {
  1547. "ext-simplexml": "*",
  1548. "ext-tokenizer": "*",
  1549. "ext-xmlwriter": "*",
  1550. "php": ">=5.1.2"
  1551. },
  1552. "require-dev": {
  1553. "phpunit/phpunit": "~4.0"
  1554. },
  1555. "bin": [
  1556. "scripts/phpcs",
  1557. "scripts/phpcbf"
  1558. ],
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "2.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "classmap": [
  1567. "CodeSniffer.php",
  1568. "CodeSniffer/CLI.php",
  1569. "CodeSniffer/Exception.php",
  1570. "CodeSniffer/File.php",
  1571. "CodeSniffer/Fixer.php",
  1572. "CodeSniffer/Report.php",
  1573. "CodeSniffer/Reporting.php",
  1574. "CodeSniffer/Sniff.php",
  1575. "CodeSniffer/Tokens.php",
  1576. "CodeSniffer/Reports/",
  1577. "CodeSniffer/Tokenizers/",
  1578. "CodeSniffer/DocGenerators/",
  1579. "CodeSniffer/Standards/AbstractPatternSniff.php",
  1580. "CodeSniffer/Standards/AbstractScopeSniff.php",
  1581. "CodeSniffer/Standards/AbstractVariableSniff.php",
  1582. "CodeSniffer/Standards/IncorrectPatternException.php",
  1583. "CodeSniffer/Standards/Generic/Sniffs/",
  1584. "CodeSniffer/Standards/MySource/Sniffs/",
  1585. "CodeSniffer/Standards/PEAR/Sniffs/",
  1586. "CodeSniffer/Standards/PSR1/Sniffs/",
  1587. "CodeSniffer/Standards/PSR2/Sniffs/",
  1588. "CodeSniffer/Standards/Squiz/Sniffs/",
  1589. "CodeSniffer/Standards/Zend/Sniffs/"
  1590. ]
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "BSD-3-Clause"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "Greg Sherwood",
  1599. "role": "lead"
  1600. }
  1601. ],
  1602. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1603. "homepage": "http://www.squizlabs.com/php-codesniffer",
  1604. "keywords": [
  1605. "phpcs",
  1606. "standards"
  1607. ],
  1608. "time": "2017-05-22T02:43:20+00:00"
  1609. },
  1610. {
  1611. "name": "symfony/config",
  1612. "version": "v3.4.0",
  1613. "source": {
  1614. "type": "git",
  1615. "url": "https://github.com/symfony/config.git",
  1616. "reference": "1de51a6c76359897ab32c309934b93d036bccb60"
  1617. },
  1618. "dist": {
  1619. "type": "zip",
  1620. "url": "https://api.github.com/repos/symfony/config/zipball/1de51a6c76359897ab32c309934b93d036bccb60",
  1621. "reference": "1de51a6c76359897ab32c309934b93d036bccb60",
  1622. "shasum": ""
  1623. },
  1624. "require": {
  1625. "php": "^5.5.9|>=7.0.8",
  1626. "symfony/filesystem": "~2.8|~3.0|~4.0"
  1627. },
  1628. "conflict": {
  1629. "symfony/dependency-injection": "<3.3",
  1630. "symfony/finder": "<3.3"
  1631. },
  1632. "require-dev": {
  1633. "symfony/dependency-injection": "~3.3|~4.0",
  1634. "symfony/finder": "~3.3|~4.0",
  1635. "symfony/yaml": "~3.0|~4.0"
  1636. },
  1637. "suggest": {
  1638. "symfony/yaml": "To use the yaml reference dumper"
  1639. },
  1640. "type": "library",
  1641. "extra": {
  1642. "branch-alias": {
  1643. "dev-master": "3.4-dev"
  1644. }
  1645. },
  1646. "autoload": {
  1647. "psr-4": {
  1648. "Symfony\\Component\\Config\\": ""
  1649. },
  1650. "exclude-from-classmap": [
  1651. "/Tests/"
  1652. ]
  1653. },
  1654. "notification-url": "https://packagist.org/downloads/",
  1655. "license": [
  1656. "MIT"
  1657. ],
  1658. "authors": [
  1659. {
  1660. "name": "Fabien Potencier",
  1661. "email": "fabien@symfony.com"
  1662. },
  1663. {
  1664. "name": "Symfony Community",
  1665. "homepage": "https://symfony.com/contributors"
  1666. }
  1667. ],
  1668. "description": "Symfony Config Component",
  1669. "homepage": "https://symfony.com",
  1670. "time": "2017-11-19T20:09:36+00:00"
  1671. },
  1672. {
  1673. "name": "symfony/console",
  1674. "version": "v3.4.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://github.com/symfony/console.git",
  1678. "reference": "9468ad3fba3a5e1f0dc12a96e50e84cddb923cf0"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://api.github.com/repos/symfony/console/zipball/9468ad3fba3a5e1f0dc12a96e50e84cddb923cf0",
  1683. "reference": "9468ad3fba3a5e1f0dc12a96e50e84cddb923cf0",
  1684. "shasum": ""
  1685. },
  1686. "require": {
  1687. "php": "^5.5.9|>=7.0.8",
  1688. "symfony/debug": "~2.8|~3.0|~4.0",
  1689. "symfony/polyfill-mbstring": "~1.0"
  1690. },
  1691. "conflict": {
  1692. "symfony/dependency-injection": "<3.4",
  1693. "symfony/process": "<3.3"
  1694. },
  1695. "require-dev": {
  1696. "psr/log": "~1.0",
  1697. "symfony/config": "~3.3|~4.0",
  1698. "symfony/dependency-injection": "~3.4|~4.0",
  1699. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1700. "symfony/lock": "~3.4|~4.0",
  1701. "symfony/process": "~3.3|~4.0"
  1702. },
  1703. "suggest": {
  1704. "psr/log": "For using the console logger",
  1705. "symfony/event-dispatcher": "",
  1706. "symfony/lock": "",
  1707. "symfony/process": ""
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "3.4-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Symfony\\Component\\Console\\": ""
  1718. },
  1719. "exclude-from-classmap": [
  1720. "/Tests/"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Fabien Potencier",
  1730. "email": "fabien@symfony.com"
  1731. },
  1732. {
  1733. "name": "Symfony Community",
  1734. "homepage": "https://symfony.com/contributors"
  1735. }
  1736. ],
  1737. "description": "Symfony Console Component",
  1738. "homepage": "https://symfony.com",
  1739. "time": "2017-11-29T13:28:14+00:00"
  1740. },
  1741. {
  1742. "name": "symfony/debug",
  1743. "version": "v3.4.0",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/symfony/debug.git",
  1747. "reference": "fb2001e5d85f95d8b6ab94ae3be5d2672df128fd"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/symfony/debug/zipball/fb2001e5d85f95d8b6ab94ae3be5d2672df128fd",
  1752. "reference": "fb2001e5d85f95d8b6ab94ae3be5d2672df128fd",
  1753. "shasum": ""
  1754. },
  1755. "require": {
  1756. "php": "^5.5.9|>=7.0.8",
  1757. "psr/log": "~1.0"
  1758. },
  1759. "conflict": {
  1760. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1761. },
  1762. "require-dev": {
  1763. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1764. },
  1765. "type": "library",
  1766. "extra": {
  1767. "branch-alias": {
  1768. "dev-master": "3.4-dev"
  1769. }
  1770. },
  1771. "autoload": {
  1772. "psr-4": {
  1773. "Symfony\\Component\\Debug\\": ""
  1774. },
  1775. "exclude-from-classmap": [
  1776. "/Tests/"
  1777. ]
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Fabien Potencier",
  1786. "email": "fabien@symfony.com"
  1787. },
  1788. {
  1789. "name": "Symfony Community",
  1790. "homepage": "https://symfony.com/contributors"
  1791. }
  1792. ],
  1793. "description": "Symfony Debug Component",
  1794. "homepage": "https://symfony.com",
  1795. "time": "2017-11-21T09:01:46+00:00"
  1796. },
  1797. {
  1798. "name": "symfony/filesystem",
  1799. "version": "v3.4.0",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/symfony/filesystem.git",
  1803. "reference": "de56eee71e0a128d8c54ccc1909cdefd574bad0f"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/symfony/filesystem/zipball/de56eee71e0a128d8c54ccc1909cdefd574bad0f",
  1808. "reference": "de56eee71e0a128d8c54ccc1909cdefd574bad0f",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "php": "^5.5.9|>=7.0.8"
  1813. },
  1814. "type": "library",
  1815. "extra": {
  1816. "branch-alias": {
  1817. "dev-master": "3.4-dev"
  1818. }
  1819. },
  1820. "autoload": {
  1821. "psr-4": {
  1822. "Symfony\\Component\\Filesystem\\": ""
  1823. },
  1824. "exclude-from-classmap": [
  1825. "/Tests/"
  1826. ]
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Fabien Potencier",
  1835. "email": "fabien@symfony.com"
  1836. },
  1837. {
  1838. "name": "Symfony Community",
  1839. "homepage": "https://symfony.com/contributors"
  1840. }
  1841. ],
  1842. "description": "Symfony Filesystem Component",
  1843. "homepage": "https://symfony.com",
  1844. "time": "2017-11-19T18:59:05+00:00"
  1845. },
  1846. {
  1847. "name": "symfony/polyfill-mbstring",
  1848. "version": "v1.6.0",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1852. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1857. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "php": ">=5.3.3"
  1862. },
  1863. "suggest": {
  1864. "ext-mbstring": "For best performance"
  1865. },
  1866. "type": "library",
  1867. "extra": {
  1868. "branch-alias": {
  1869. "dev-master": "1.6-dev"
  1870. }
  1871. },
  1872. "autoload": {
  1873. "psr-4": {
  1874. "Symfony\\Polyfill\\Mbstring\\": ""
  1875. },
  1876. "files": [
  1877. "bootstrap.php"
  1878. ]
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Nicolas Grekas",
  1887. "email": "p@tchwork.com"
  1888. },
  1889. {
  1890. "name": "Symfony Community",
  1891. "homepage": "https://symfony.com/contributors"
  1892. }
  1893. ],
  1894. "description": "Symfony polyfill for the Mbstring extension",
  1895. "homepage": "https://symfony.com",
  1896. "keywords": [
  1897. "compatibility",
  1898. "mbstring",
  1899. "polyfill",
  1900. "portable",
  1901. "shim"
  1902. ],
  1903. "time": "2017-10-11T12:05:26+00:00"
  1904. },
  1905. {
  1906. "name": "symfony/stopwatch",
  1907. "version": "v3.4.0",
  1908. "source": {
  1909. "type": "git",
  1910. "url": "https://github.com/symfony/stopwatch.git",
  1911. "reference": "52510fe1aefdc1c5d2076ac6030421d387e689d1"
  1912. },
  1913. "dist": {
  1914. "type": "zip",
  1915. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/52510fe1aefdc1c5d2076ac6030421d387e689d1",
  1916. "reference": "52510fe1aefdc1c5d2076ac6030421d387e689d1",
  1917. "shasum": ""
  1918. },
  1919. "require": {
  1920. "php": "^5.5.9|>=7.0.8"
  1921. },
  1922. "type": "library",
  1923. "extra": {
  1924. "branch-alias": {
  1925. "dev-master": "3.4-dev"
  1926. }
  1927. },
  1928. "autoload": {
  1929. "psr-4": {
  1930. "Symfony\\Component\\Stopwatch\\": ""
  1931. },
  1932. "exclude-from-classmap": [
  1933. "/Tests/"
  1934. ]
  1935. },
  1936. "notification-url": "https://packagist.org/downloads/",
  1937. "license": [
  1938. "MIT"
  1939. ],
  1940. "authors": [
  1941. {
  1942. "name": "Fabien Potencier",
  1943. "email": "fabien@symfony.com"
  1944. },
  1945. {
  1946. "name": "Symfony Community",
  1947. "homepage": "https://symfony.com/contributors"
  1948. }
  1949. ],
  1950. "description": "Symfony Stopwatch Component",
  1951. "homepage": "https://symfony.com",
  1952. "time": "2017-11-07T14:28:09+00:00"
  1953. },
  1954. {
  1955. "name": "webmozart/assert",
  1956. "version": "1.2.0",
  1957. "source": {
  1958. "type": "git",
  1959. "url": "https://github.com/webmozart/assert.git",
  1960. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  1961. },
  1962. "dist": {
  1963. "type": "zip",
  1964. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  1965. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  1966. "shasum": ""
  1967. },
  1968. "require": {
  1969. "php": "^5.3.3 || ^7.0"
  1970. },
  1971. "require-dev": {
  1972. "phpunit/phpunit": "^4.6",
  1973. "sebastian/version": "^1.0.1"
  1974. },
  1975. "type": "library",
  1976. "extra": {
  1977. "branch-alias": {
  1978. "dev-master": "1.3-dev"
  1979. }
  1980. },
  1981. "autoload": {
  1982. "psr-4": {
  1983. "Webmozart\\Assert\\": "src/"
  1984. }
  1985. },
  1986. "notification-url": "https://packagist.org/downloads/",
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Bernhard Schussek",
  1993. "email": "bschussek@gmail.com"
  1994. }
  1995. ],
  1996. "description": "Assertions to validate method input/output with nice error messages.",
  1997. "keywords": [
  1998. "assert",
  1999. "check",
  2000. "validate"
  2001. ],
  2002. "time": "2016-11-23T20:04:58+00:00"
  2003. }
  2004. ],
  2005. "aliases": [],
  2006. "minimum-stability": "stable",
  2007. "stability-flags": {
  2008. "satooshi/php-coveralls": 20
  2009. },
  2010. "prefer-stable": false,
  2011. "prefer-lowest": false,
  2012. "platform": {
  2013. "php": ">=5.4"
  2014. },
  2015. "platform-dev": [],
  2016. "platform-overrides": {
  2017. "php": "5.5.9"
  2018. }
  2019. }