composer.lock 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163
  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": "d2caa274a8dbc1766b1756b440be19a0",
  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": "v4.0.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/symfony/yaml.git",
  74. "reference": "7be8741ce5dce9943f41a9269f6828b66e726776"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/symfony/yaml/zipball/7be8741ce5dce9943f41a9269f6828b66e726776",
  79. "reference": "7be8741ce5dce9943f41a9269f6828b66e726776",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "php": "^7.1.3"
  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": "4.0-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:42:03+00:00"
  125. }
  126. ],
  127. "packages-dev": [
  128. {
  129. "name": "doctrine/instantiator",
  130. "version": "1.1.0",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/doctrine/instantiator.git",
  134. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  139. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "php": "^7.1"
  144. },
  145. "require-dev": {
  146. "athletic/athletic": "~0.1.8",
  147. "ext-pdo": "*",
  148. "ext-phar": "*",
  149. "phpunit/phpunit": "^6.2.3",
  150. "squizlabs/php_codesniffer": "^3.0.2"
  151. },
  152. "type": "library",
  153. "extra": {
  154. "branch-alias": {
  155. "dev-master": "1.2.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": "2017-07-22T11:58:36+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": "myclabs/deep-copy",
  397. "version": "1.7.0",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/myclabs/DeepCopy.git",
  401. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  406. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": "^5.6 || ^7.0"
  411. },
  412. "require-dev": {
  413. "doctrine/collections": "^1.0",
  414. "doctrine/common": "^2.6",
  415. "phpunit/phpunit": "^4.1"
  416. },
  417. "type": "library",
  418. "autoload": {
  419. "psr-4": {
  420. "DeepCopy\\": "src/DeepCopy/"
  421. },
  422. "files": [
  423. "src/DeepCopy/deep_copy.php"
  424. ]
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "MIT"
  429. ],
  430. "description": "Create deep copies (clones) of your objects",
  431. "keywords": [
  432. "clone",
  433. "copy",
  434. "duplicate",
  435. "object",
  436. "object graph"
  437. ],
  438. "time": "2017-10-19T19:58:43+00:00"
  439. },
  440. {
  441. "name": "phpdocumentor/reflection-common",
  442. "version": "1.0.1",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  446. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  451. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  452. "shasum": ""
  453. },
  454. "require": {
  455. "php": ">=5.5"
  456. },
  457. "require-dev": {
  458. "phpunit/phpunit": "^4.6"
  459. },
  460. "type": "library",
  461. "extra": {
  462. "branch-alias": {
  463. "dev-master": "1.0.x-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "phpDocumentor\\Reflection\\": [
  469. "src"
  470. ]
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "MIT"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Jaap van Otterdijk",
  480. "email": "opensource@ijaap.nl"
  481. }
  482. ],
  483. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  484. "homepage": "http://www.phpdoc.org",
  485. "keywords": [
  486. "FQSEN",
  487. "phpDocumentor",
  488. "phpdoc",
  489. "reflection",
  490. "static analysis"
  491. ],
  492. "time": "2017-09-11T18:02:19+00:00"
  493. },
  494. {
  495. "name": "phpdocumentor/reflection-docblock",
  496. "version": "4.2.0",
  497. "source": {
  498. "type": "git",
  499. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  500. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  501. },
  502. "dist": {
  503. "type": "zip",
  504. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da",
  505. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  506. "shasum": ""
  507. },
  508. "require": {
  509. "php": "^7.0",
  510. "phpdocumentor/reflection-common": "^1.0.0",
  511. "phpdocumentor/type-resolver": "^0.4.0",
  512. "webmozart/assert": "^1.0"
  513. },
  514. "require-dev": {
  515. "doctrine/instantiator": "~1.0.5",
  516. "mockery/mockery": "^1.0",
  517. "phpunit/phpunit": "^6.4"
  518. },
  519. "type": "library",
  520. "extra": {
  521. "branch-alias": {
  522. "dev-master": "4.x-dev"
  523. }
  524. },
  525. "autoload": {
  526. "psr-4": {
  527. "phpDocumentor\\Reflection\\": [
  528. "src/"
  529. ]
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "Mike van Riel",
  539. "email": "me@mikevanriel.com"
  540. }
  541. ],
  542. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  543. "time": "2017-11-27T17:38:31+00:00"
  544. },
  545. {
  546. "name": "phpdocumentor/type-resolver",
  547. "version": "0.4.0",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  551. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  556. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "php": "^5.5 || ^7.0",
  561. "phpdocumentor/reflection-common": "^1.0"
  562. },
  563. "require-dev": {
  564. "mockery/mockery": "^0.9.4",
  565. "phpunit/phpunit": "^5.2||^4.8.24"
  566. },
  567. "type": "library",
  568. "extra": {
  569. "branch-alias": {
  570. "dev-master": "1.0.x-dev"
  571. }
  572. },
  573. "autoload": {
  574. "psr-4": {
  575. "phpDocumentor\\Reflection\\": [
  576. "src/"
  577. ]
  578. }
  579. },
  580. "notification-url": "https://packagist.org/downloads/",
  581. "license": [
  582. "MIT"
  583. ],
  584. "authors": [
  585. {
  586. "name": "Mike van Riel",
  587. "email": "me@mikevanriel.com"
  588. }
  589. ],
  590. "time": "2017-07-14T14:27:02+00:00"
  591. },
  592. {
  593. "name": "phpspec/prophecy",
  594. "version": "1.7.3",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/phpspec/prophecy.git",
  598. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  603. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "doctrine/instantiator": "^1.0.2",
  608. "php": "^5.3|^7.0",
  609. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  610. "sebastian/comparator": "^1.1|^2.0",
  611. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  612. },
  613. "require-dev": {
  614. "phpspec/phpspec": "^2.5|^3.2",
  615. "phpunit/phpunit": "^4.8.35 || ^5.7"
  616. },
  617. "type": "library",
  618. "extra": {
  619. "branch-alias": {
  620. "dev-master": "1.7.x-dev"
  621. }
  622. },
  623. "autoload": {
  624. "psr-0": {
  625. "Prophecy\\": "src/"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "MIT"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Konstantin Kudryashov",
  635. "email": "ever.zet@gmail.com",
  636. "homepage": "http://everzet.com"
  637. },
  638. {
  639. "name": "Marcello Duarte",
  640. "email": "marcello.duarte@gmail.com"
  641. }
  642. ],
  643. "description": "Highly opinionated mocking framework for PHP 5.3+",
  644. "homepage": "https://github.com/phpspec/prophecy",
  645. "keywords": [
  646. "Double",
  647. "Dummy",
  648. "fake",
  649. "mock",
  650. "spy",
  651. "stub"
  652. ],
  653. "time": "2017-11-24T13:59:53+00:00"
  654. },
  655. {
  656. "name": "phpunit/php-code-coverage",
  657. "version": "4.0.8",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  661. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  666. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "ext-dom": "*",
  671. "ext-xmlwriter": "*",
  672. "php": "^5.6 || ^7.0",
  673. "phpunit/php-file-iterator": "^1.3",
  674. "phpunit/php-text-template": "^1.2",
  675. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  676. "sebastian/code-unit-reverse-lookup": "^1.0",
  677. "sebastian/environment": "^1.3.2 || ^2.0",
  678. "sebastian/version": "^1.0 || ^2.0"
  679. },
  680. "require-dev": {
  681. "ext-xdebug": "^2.1.4",
  682. "phpunit/phpunit": "^5.7"
  683. },
  684. "suggest": {
  685. "ext-xdebug": "^2.5.1"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "branch-alias": {
  690. "dev-master": "4.0.x-dev"
  691. }
  692. },
  693. "autoload": {
  694. "classmap": [
  695. "src/"
  696. ]
  697. },
  698. "notification-url": "https://packagist.org/downloads/",
  699. "license": [
  700. "BSD-3-Clause"
  701. ],
  702. "authors": [
  703. {
  704. "name": "Sebastian Bergmann",
  705. "email": "sb@sebastian-bergmann.de",
  706. "role": "lead"
  707. }
  708. ],
  709. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  710. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  711. "keywords": [
  712. "coverage",
  713. "testing",
  714. "xunit"
  715. ],
  716. "time": "2017-04-02T07:44:40+00:00"
  717. },
  718. {
  719. "name": "phpunit/php-file-iterator",
  720. "version": "1.4.5",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  724. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  729. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "php": ">=5.3.3"
  734. },
  735. "type": "library",
  736. "extra": {
  737. "branch-alias": {
  738. "dev-master": "1.4.x-dev"
  739. }
  740. },
  741. "autoload": {
  742. "classmap": [
  743. "src/"
  744. ]
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "BSD-3-Clause"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Sebastian Bergmann",
  753. "email": "sb@sebastian-bergmann.de",
  754. "role": "lead"
  755. }
  756. ],
  757. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  758. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  759. "keywords": [
  760. "filesystem",
  761. "iterator"
  762. ],
  763. "time": "2017-11-27T13:52:08+00:00"
  764. },
  765. {
  766. "name": "phpunit/php-text-template",
  767. "version": "1.2.1",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  771. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  776. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "php": ">=5.3.3"
  781. },
  782. "type": "library",
  783. "autoload": {
  784. "classmap": [
  785. "src/"
  786. ]
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "BSD-3-Clause"
  791. ],
  792. "authors": [
  793. {
  794. "name": "Sebastian Bergmann",
  795. "email": "sebastian@phpunit.de",
  796. "role": "lead"
  797. }
  798. ],
  799. "description": "Simple template engine.",
  800. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  801. "keywords": [
  802. "template"
  803. ],
  804. "time": "2015-06-21T13:50:34+00:00"
  805. },
  806. {
  807. "name": "phpunit/php-timer",
  808. "version": "1.0.9",
  809. "source": {
  810. "type": "git",
  811. "url": "https://github.com/sebastianbergmann/php-timer.git",
  812. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  813. },
  814. "dist": {
  815. "type": "zip",
  816. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  817. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  818. "shasum": ""
  819. },
  820. "require": {
  821. "php": "^5.3.3 || ^7.0"
  822. },
  823. "require-dev": {
  824. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "branch-alias": {
  829. "dev-master": "1.0-dev"
  830. }
  831. },
  832. "autoload": {
  833. "classmap": [
  834. "src/"
  835. ]
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "BSD-3-Clause"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Sebastian Bergmann",
  844. "email": "sb@sebastian-bergmann.de",
  845. "role": "lead"
  846. }
  847. ],
  848. "description": "Utility class for timing",
  849. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  850. "keywords": [
  851. "timer"
  852. ],
  853. "time": "2017-02-26T11:10:40+00:00"
  854. },
  855. {
  856. "name": "phpunit/php-token-stream",
  857. "version": "2.0.2",
  858. "source": {
  859. "type": "git",
  860. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  861. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  862. },
  863. "dist": {
  864. "type": "zip",
  865. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  866. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  867. "shasum": ""
  868. },
  869. "require": {
  870. "ext-tokenizer": "*",
  871. "php": "^7.0"
  872. },
  873. "require-dev": {
  874. "phpunit/phpunit": "^6.2.4"
  875. },
  876. "type": "library",
  877. "extra": {
  878. "branch-alias": {
  879. "dev-master": "2.0-dev"
  880. }
  881. },
  882. "autoload": {
  883. "classmap": [
  884. "src/"
  885. ]
  886. },
  887. "notification-url": "https://packagist.org/downloads/",
  888. "license": [
  889. "BSD-3-Clause"
  890. ],
  891. "authors": [
  892. {
  893. "name": "Sebastian Bergmann",
  894. "email": "sebastian@phpunit.de"
  895. }
  896. ],
  897. "description": "Wrapper around PHP's tokenizer extension.",
  898. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  899. "keywords": [
  900. "tokenizer"
  901. ],
  902. "time": "2017-11-27T05:48:46+00:00"
  903. },
  904. {
  905. "name": "phpunit/phpunit",
  906. "version": "5.7.25",
  907. "source": {
  908. "type": "git",
  909. "url": "https://github.com/sebastianbergmann/phpunit.git",
  910. "reference": "4b1c822a68ae6577df38a59eb49b046712ec0f6a"
  911. },
  912. "dist": {
  913. "type": "zip",
  914. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b1c822a68ae6577df38a59eb49b046712ec0f6a",
  915. "reference": "4b1c822a68ae6577df38a59eb49b046712ec0f6a",
  916. "shasum": ""
  917. },
  918. "require": {
  919. "ext-dom": "*",
  920. "ext-json": "*",
  921. "ext-libxml": "*",
  922. "ext-mbstring": "*",
  923. "ext-xml": "*",
  924. "myclabs/deep-copy": "~1.3",
  925. "php": "^5.6 || ^7.0",
  926. "phpspec/prophecy": "^1.6.2",
  927. "phpunit/php-code-coverage": "^4.0.4",
  928. "phpunit/php-file-iterator": "~1.4",
  929. "phpunit/php-text-template": "~1.2",
  930. "phpunit/php-timer": "^1.0.6",
  931. "phpunit/phpunit-mock-objects": "^3.2",
  932. "sebastian/comparator": "^1.2.4",
  933. "sebastian/diff": "^1.4.3",
  934. "sebastian/environment": "^1.3.4 || ^2.0",
  935. "sebastian/exporter": "~2.0",
  936. "sebastian/global-state": "^1.1",
  937. "sebastian/object-enumerator": "~2.0",
  938. "sebastian/resource-operations": "~1.0",
  939. "sebastian/version": "~1.0.3|~2.0",
  940. "symfony/yaml": "~2.1|~3.0|~4.0"
  941. },
  942. "conflict": {
  943. "phpdocumentor/reflection-docblock": "3.0.2"
  944. },
  945. "require-dev": {
  946. "ext-pdo": "*"
  947. },
  948. "suggest": {
  949. "ext-xdebug": "*",
  950. "phpunit/php-invoker": "~1.1"
  951. },
  952. "bin": [
  953. "phpunit"
  954. ],
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "5.7.x-dev"
  959. }
  960. },
  961. "autoload": {
  962. "classmap": [
  963. "src/"
  964. ]
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "BSD-3-Clause"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Sebastian Bergmann",
  973. "email": "sebastian@phpunit.de",
  974. "role": "lead"
  975. }
  976. ],
  977. "description": "The PHP Unit Testing framework.",
  978. "homepage": "https://phpunit.de/",
  979. "keywords": [
  980. "phpunit",
  981. "testing",
  982. "xunit"
  983. ],
  984. "time": "2017-11-14T14:50:51+00:00"
  985. },
  986. {
  987. "name": "phpunit/phpunit-mock-objects",
  988. "version": "3.4.4",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  992. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
  997. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "doctrine/instantiator": "^1.0.2",
  1002. "php": "^5.6 || ^7.0",
  1003. "phpunit/php-text-template": "^1.2",
  1004. "sebastian/exporter": "^1.2 || ^2.0"
  1005. },
  1006. "conflict": {
  1007. "phpunit/phpunit": "<5.4.0"
  1008. },
  1009. "require-dev": {
  1010. "phpunit/phpunit": "^5.4"
  1011. },
  1012. "suggest": {
  1013. "ext-soap": "*"
  1014. },
  1015. "type": "library",
  1016. "extra": {
  1017. "branch-alias": {
  1018. "dev-master": "3.2.x-dev"
  1019. }
  1020. },
  1021. "autoload": {
  1022. "classmap": [
  1023. "src/"
  1024. ]
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "BSD-3-Clause"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Sebastian Bergmann",
  1033. "email": "sb@sebastian-bergmann.de",
  1034. "role": "lead"
  1035. }
  1036. ],
  1037. "description": "Mock Object library for PHPUnit",
  1038. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1039. "keywords": [
  1040. "mock",
  1041. "xunit"
  1042. ],
  1043. "time": "2017-06-30T09:13:00+00:00"
  1044. },
  1045. {
  1046. "name": "psr/http-message",
  1047. "version": "1.0.1",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/php-fig/http-message.git",
  1051. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1056. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "php": ">=5.3.0"
  1061. },
  1062. "type": "library",
  1063. "extra": {
  1064. "branch-alias": {
  1065. "dev-master": "1.0.x-dev"
  1066. }
  1067. },
  1068. "autoload": {
  1069. "psr-4": {
  1070. "Psr\\Http\\Message\\": "src/"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "PHP-FIG",
  1080. "homepage": "http://www.php-fig.org/"
  1081. }
  1082. ],
  1083. "description": "Common interface for HTTP messages",
  1084. "homepage": "https://github.com/php-fig/http-message",
  1085. "keywords": [
  1086. "http",
  1087. "http-message",
  1088. "psr",
  1089. "psr-7",
  1090. "request",
  1091. "response"
  1092. ],
  1093. "time": "2016-08-06T14:39:51+00:00"
  1094. },
  1095. {
  1096. "name": "psr/log",
  1097. "version": "1.0.2",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/php-fig/log.git",
  1101. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1106. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "php": ">=5.3.0"
  1111. },
  1112. "type": "library",
  1113. "extra": {
  1114. "branch-alias": {
  1115. "dev-master": "1.0.x-dev"
  1116. }
  1117. },
  1118. "autoload": {
  1119. "psr-4": {
  1120. "Psr\\Log\\": "Psr/Log/"
  1121. }
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "MIT"
  1126. ],
  1127. "authors": [
  1128. {
  1129. "name": "PHP-FIG",
  1130. "homepage": "http://www.php-fig.org/"
  1131. }
  1132. ],
  1133. "description": "Common interface for logging libraries",
  1134. "homepage": "https://github.com/php-fig/log",
  1135. "keywords": [
  1136. "log",
  1137. "psr",
  1138. "psr-3"
  1139. ],
  1140. "time": "2016-10-10T12:19:37+00:00"
  1141. },
  1142. {
  1143. "name": "satooshi/php-coveralls",
  1144. "version": "dev-master",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/php-coveralls/php-coveralls.git",
  1148. "reference": "c9d3fe2327c8539f1105dc19954673ba993e4ad9"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/c9d3fe2327c8539f1105dc19954673ba993e4ad9",
  1153. "reference": "c9d3fe2327c8539f1105dc19954673ba993e4ad9",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "ext-json": "*",
  1158. "ext-simplexml": "*",
  1159. "guzzlehttp/guzzle": "^6.0",
  1160. "php": "^5.5 || ^7.0",
  1161. "psr/log": "^1.0",
  1162. "symfony/config": "^2.1 || ^3.0 || ^4.0",
  1163. "symfony/console": "^2.1 || ^3.0 || ^4.0",
  1164. "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0",
  1165. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  1166. },
  1167. "require-dev": {
  1168. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
  1169. },
  1170. "suggest": {
  1171. "symfony/http-kernel": "Allows Symfony integration"
  1172. },
  1173. "bin": [
  1174. "bin/coveralls"
  1175. ],
  1176. "type": "library",
  1177. "extra": {
  1178. "branch-alias": {
  1179. "dev-master": "2.0-dev"
  1180. }
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "PhpCoveralls\\": "src/"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "MIT"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Kitamura Satoshi",
  1194. "email": "with.no.parachute@gmail.com",
  1195. "homepage": "https://www.facebook.com/satooshi.jp",
  1196. "role": "Original creator"
  1197. },
  1198. {
  1199. "name": "Takashi Matsuo",
  1200. "email": "tmatsuo@google.com"
  1201. },
  1202. {
  1203. "name": "Google Inc"
  1204. },
  1205. {
  1206. "name": "Dariusz Ruminski",
  1207. "email": "dariusz.ruminski@gmail.com",
  1208. "homepage": "https://github.com/keradus"
  1209. },
  1210. {
  1211. "name": "Contributors",
  1212. "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
  1213. }
  1214. ],
  1215. "description": "PHP client library for Coveralls API",
  1216. "homepage": "https://github.com/php-coveralls/php-coveralls",
  1217. "keywords": [
  1218. "ci",
  1219. "coverage",
  1220. "github",
  1221. "test"
  1222. ],
  1223. "time": "2017-10-14T23:16:28+00:00"
  1224. },
  1225. {
  1226. "name": "sebastian/code-unit-reverse-lookup",
  1227. "version": "1.0.1",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1231. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1236. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": "^5.6 || ^7.0"
  1241. },
  1242. "require-dev": {
  1243. "phpunit/phpunit": "^5.7 || ^6.0"
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "branch-alias": {
  1248. "dev-master": "1.0.x-dev"
  1249. }
  1250. },
  1251. "autoload": {
  1252. "classmap": [
  1253. "src/"
  1254. ]
  1255. },
  1256. "notification-url": "https://packagist.org/downloads/",
  1257. "license": [
  1258. "BSD-3-Clause"
  1259. ],
  1260. "authors": [
  1261. {
  1262. "name": "Sebastian Bergmann",
  1263. "email": "sebastian@phpunit.de"
  1264. }
  1265. ],
  1266. "description": "Looks up which function or method a line of code belongs to",
  1267. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1268. "time": "2017-03-04T06:30:41+00:00"
  1269. },
  1270. {
  1271. "name": "sebastian/comparator",
  1272. "version": "1.2.4",
  1273. "source": {
  1274. "type": "git",
  1275. "url": "https://github.com/sebastianbergmann/comparator.git",
  1276. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1277. },
  1278. "dist": {
  1279. "type": "zip",
  1280. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1281. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1282. "shasum": ""
  1283. },
  1284. "require": {
  1285. "php": ">=5.3.3",
  1286. "sebastian/diff": "~1.2",
  1287. "sebastian/exporter": "~1.2 || ~2.0"
  1288. },
  1289. "require-dev": {
  1290. "phpunit/phpunit": "~4.4"
  1291. },
  1292. "type": "library",
  1293. "extra": {
  1294. "branch-alias": {
  1295. "dev-master": "1.2.x-dev"
  1296. }
  1297. },
  1298. "autoload": {
  1299. "classmap": [
  1300. "src/"
  1301. ]
  1302. },
  1303. "notification-url": "https://packagist.org/downloads/",
  1304. "license": [
  1305. "BSD-3-Clause"
  1306. ],
  1307. "authors": [
  1308. {
  1309. "name": "Jeff Welch",
  1310. "email": "whatthejeff@gmail.com"
  1311. },
  1312. {
  1313. "name": "Volker Dusch",
  1314. "email": "github@wallbash.com"
  1315. },
  1316. {
  1317. "name": "Bernhard Schussek",
  1318. "email": "bschussek@2bepublished.at"
  1319. },
  1320. {
  1321. "name": "Sebastian Bergmann",
  1322. "email": "sebastian@phpunit.de"
  1323. }
  1324. ],
  1325. "description": "Provides the functionality to compare PHP values for equality",
  1326. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1327. "keywords": [
  1328. "comparator",
  1329. "compare",
  1330. "equality"
  1331. ],
  1332. "time": "2017-01-29T09:50:25+00:00"
  1333. },
  1334. {
  1335. "name": "sebastian/diff",
  1336. "version": "1.4.3",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/sebastianbergmann/diff.git",
  1340. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1345. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "php": "^5.3.3 || ^7.0"
  1350. },
  1351. "require-dev": {
  1352. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1353. },
  1354. "type": "library",
  1355. "extra": {
  1356. "branch-alias": {
  1357. "dev-master": "1.4-dev"
  1358. }
  1359. },
  1360. "autoload": {
  1361. "classmap": [
  1362. "src/"
  1363. ]
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "BSD-3-Clause"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Kore Nordmann",
  1372. "email": "mail@kore-nordmann.de"
  1373. },
  1374. {
  1375. "name": "Sebastian Bergmann",
  1376. "email": "sebastian@phpunit.de"
  1377. }
  1378. ],
  1379. "description": "Diff implementation",
  1380. "homepage": "https://github.com/sebastianbergmann/diff",
  1381. "keywords": [
  1382. "diff"
  1383. ],
  1384. "time": "2017-05-22T07:24:03+00:00"
  1385. },
  1386. {
  1387. "name": "sebastian/environment",
  1388. "version": "2.0.0",
  1389. "source": {
  1390. "type": "git",
  1391. "url": "https://github.com/sebastianbergmann/environment.git",
  1392. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  1393. },
  1394. "dist": {
  1395. "type": "zip",
  1396. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1397. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1398. "shasum": ""
  1399. },
  1400. "require": {
  1401. "php": "^5.6 || ^7.0"
  1402. },
  1403. "require-dev": {
  1404. "phpunit/phpunit": "^5.0"
  1405. },
  1406. "type": "library",
  1407. "extra": {
  1408. "branch-alias": {
  1409. "dev-master": "2.0.x-dev"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "classmap": [
  1414. "src/"
  1415. ]
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "BSD-3-Clause"
  1420. ],
  1421. "authors": [
  1422. {
  1423. "name": "Sebastian Bergmann",
  1424. "email": "sebastian@phpunit.de"
  1425. }
  1426. ],
  1427. "description": "Provides functionality to handle HHVM/PHP environments",
  1428. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1429. "keywords": [
  1430. "Xdebug",
  1431. "environment",
  1432. "hhvm"
  1433. ],
  1434. "time": "2016-11-26T07:53:53+00:00"
  1435. },
  1436. {
  1437. "name": "sebastian/exporter",
  1438. "version": "2.0.0",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/sebastianbergmann/exporter.git",
  1442. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1447. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": ">=5.3.3",
  1452. "sebastian/recursion-context": "~2.0"
  1453. },
  1454. "require-dev": {
  1455. "ext-mbstring": "*",
  1456. "phpunit/phpunit": "~4.4"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "2.0.x-dev"
  1462. }
  1463. },
  1464. "autoload": {
  1465. "classmap": [
  1466. "src/"
  1467. ]
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "BSD-3-Clause"
  1472. ],
  1473. "authors": [
  1474. {
  1475. "name": "Jeff Welch",
  1476. "email": "whatthejeff@gmail.com"
  1477. },
  1478. {
  1479. "name": "Volker Dusch",
  1480. "email": "github@wallbash.com"
  1481. },
  1482. {
  1483. "name": "Bernhard Schussek",
  1484. "email": "bschussek@2bepublished.at"
  1485. },
  1486. {
  1487. "name": "Sebastian Bergmann",
  1488. "email": "sebastian@phpunit.de"
  1489. },
  1490. {
  1491. "name": "Adam Harvey",
  1492. "email": "aharvey@php.net"
  1493. }
  1494. ],
  1495. "description": "Provides the functionality to export PHP variables for visualization",
  1496. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1497. "keywords": [
  1498. "export",
  1499. "exporter"
  1500. ],
  1501. "time": "2016-11-19T08:54:04+00:00"
  1502. },
  1503. {
  1504. "name": "sebastian/global-state",
  1505. "version": "1.1.1",
  1506. "source": {
  1507. "type": "git",
  1508. "url": "https://github.com/sebastianbergmann/global-state.git",
  1509. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1510. },
  1511. "dist": {
  1512. "type": "zip",
  1513. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1514. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1515. "shasum": ""
  1516. },
  1517. "require": {
  1518. "php": ">=5.3.3"
  1519. },
  1520. "require-dev": {
  1521. "phpunit/phpunit": "~4.2"
  1522. },
  1523. "suggest": {
  1524. "ext-uopz": "*"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "branch-alias": {
  1529. "dev-master": "1.0-dev"
  1530. }
  1531. },
  1532. "autoload": {
  1533. "classmap": [
  1534. "src/"
  1535. ]
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "BSD-3-Clause"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "Sebastian Bergmann",
  1544. "email": "sebastian@phpunit.de"
  1545. }
  1546. ],
  1547. "description": "Snapshotting of global state",
  1548. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1549. "keywords": [
  1550. "global state"
  1551. ],
  1552. "time": "2015-10-12T03:26:01+00:00"
  1553. },
  1554. {
  1555. "name": "sebastian/object-enumerator",
  1556. "version": "2.0.1",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1560. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1565. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "php": ">=5.6",
  1570. "sebastian/recursion-context": "~2.0"
  1571. },
  1572. "require-dev": {
  1573. "phpunit/phpunit": "~5"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "branch-alias": {
  1578. "dev-master": "2.0.x-dev"
  1579. }
  1580. },
  1581. "autoload": {
  1582. "classmap": [
  1583. "src/"
  1584. ]
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "BSD-3-Clause"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Sebastian Bergmann",
  1593. "email": "sebastian@phpunit.de"
  1594. }
  1595. ],
  1596. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1597. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1598. "time": "2017-02-18T15:18:39+00:00"
  1599. },
  1600. {
  1601. "name": "sebastian/recursion-context",
  1602. "version": "2.0.0",
  1603. "source": {
  1604. "type": "git",
  1605. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1606. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  1607. },
  1608. "dist": {
  1609. "type": "zip",
  1610. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  1611. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  1612. "shasum": ""
  1613. },
  1614. "require": {
  1615. "php": ">=5.3.3"
  1616. },
  1617. "require-dev": {
  1618. "phpunit/phpunit": "~4.4"
  1619. },
  1620. "type": "library",
  1621. "extra": {
  1622. "branch-alias": {
  1623. "dev-master": "2.0.x-dev"
  1624. }
  1625. },
  1626. "autoload": {
  1627. "classmap": [
  1628. "src/"
  1629. ]
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "BSD-3-Clause"
  1634. ],
  1635. "authors": [
  1636. {
  1637. "name": "Jeff Welch",
  1638. "email": "whatthejeff@gmail.com"
  1639. },
  1640. {
  1641. "name": "Sebastian Bergmann",
  1642. "email": "sebastian@phpunit.de"
  1643. },
  1644. {
  1645. "name": "Adam Harvey",
  1646. "email": "aharvey@php.net"
  1647. }
  1648. ],
  1649. "description": "Provides functionality to recursively process PHP variables",
  1650. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1651. "time": "2016-11-19T07:33:16+00:00"
  1652. },
  1653. {
  1654. "name": "sebastian/resource-operations",
  1655. "version": "1.0.0",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1659. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1664. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "php": ">=5.6.0"
  1669. },
  1670. "type": "library",
  1671. "extra": {
  1672. "branch-alias": {
  1673. "dev-master": "1.0.x-dev"
  1674. }
  1675. },
  1676. "autoload": {
  1677. "classmap": [
  1678. "src/"
  1679. ]
  1680. },
  1681. "notification-url": "https://packagist.org/downloads/",
  1682. "license": [
  1683. "BSD-3-Clause"
  1684. ],
  1685. "authors": [
  1686. {
  1687. "name": "Sebastian Bergmann",
  1688. "email": "sebastian@phpunit.de"
  1689. }
  1690. ],
  1691. "description": "Provides a list of PHP built-in functions that operate on resources",
  1692. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1693. "time": "2015-07-28T20:34:47+00:00"
  1694. },
  1695. {
  1696. "name": "sebastian/version",
  1697. "version": "2.0.1",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/sebastianbergmann/version.git",
  1701. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1706. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "php": ">=5.6"
  1711. },
  1712. "type": "library",
  1713. "extra": {
  1714. "branch-alias": {
  1715. "dev-master": "2.0.x-dev"
  1716. }
  1717. },
  1718. "autoload": {
  1719. "classmap": [
  1720. "src/"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "BSD-3-Clause"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Sebastian Bergmann",
  1730. "email": "sebastian@phpunit.de",
  1731. "role": "lead"
  1732. }
  1733. ],
  1734. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1735. "homepage": "https://github.com/sebastianbergmann/version",
  1736. "time": "2016-10-03T07:35:21+00:00"
  1737. },
  1738. {
  1739. "name": "squizlabs/php_codesniffer",
  1740. "version": "2.9.1",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1744. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  1749. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  1750. "shasum": ""
  1751. },
  1752. "require": {
  1753. "ext-simplexml": "*",
  1754. "ext-tokenizer": "*",
  1755. "ext-xmlwriter": "*",
  1756. "php": ">=5.1.2"
  1757. },
  1758. "require-dev": {
  1759. "phpunit/phpunit": "~4.0"
  1760. },
  1761. "bin": [
  1762. "scripts/phpcs",
  1763. "scripts/phpcbf"
  1764. ],
  1765. "type": "library",
  1766. "extra": {
  1767. "branch-alias": {
  1768. "dev-master": "2.x-dev"
  1769. }
  1770. },
  1771. "autoload": {
  1772. "classmap": [
  1773. "CodeSniffer.php",
  1774. "CodeSniffer/CLI.php",
  1775. "CodeSniffer/Exception.php",
  1776. "CodeSniffer/File.php",
  1777. "CodeSniffer/Fixer.php",
  1778. "CodeSniffer/Report.php",
  1779. "CodeSniffer/Reporting.php",
  1780. "CodeSniffer/Sniff.php",
  1781. "CodeSniffer/Tokens.php",
  1782. "CodeSniffer/Reports/",
  1783. "CodeSniffer/Tokenizers/",
  1784. "CodeSniffer/DocGenerators/",
  1785. "CodeSniffer/Standards/AbstractPatternSniff.php",
  1786. "CodeSniffer/Standards/AbstractScopeSniff.php",
  1787. "CodeSniffer/Standards/AbstractVariableSniff.php",
  1788. "CodeSniffer/Standards/IncorrectPatternException.php",
  1789. "CodeSniffer/Standards/Generic/Sniffs/",
  1790. "CodeSniffer/Standards/MySource/Sniffs/",
  1791. "CodeSniffer/Standards/PEAR/Sniffs/",
  1792. "CodeSniffer/Standards/PSR1/Sniffs/",
  1793. "CodeSniffer/Standards/PSR2/Sniffs/",
  1794. "CodeSniffer/Standards/Squiz/Sniffs/",
  1795. "CodeSniffer/Standards/Zend/Sniffs/"
  1796. ]
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "BSD-3-Clause"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Greg Sherwood",
  1805. "role": "lead"
  1806. }
  1807. ],
  1808. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1809. "homepage": "http://www.squizlabs.com/php-codesniffer",
  1810. "keywords": [
  1811. "phpcs",
  1812. "standards"
  1813. ],
  1814. "time": "2017-05-22T02:43:20+00:00"
  1815. },
  1816. {
  1817. "name": "symfony/config",
  1818. "version": "v4.0.0",
  1819. "source": {
  1820. "type": "git",
  1821. "url": "https://github.com/symfony/config.git",
  1822. "reference": "6e6dbc6d2beff8117b974d74274bff02e43c32a6"
  1823. },
  1824. "dist": {
  1825. "type": "zip",
  1826. "url": "https://api.github.com/repos/symfony/config/zipball/6e6dbc6d2beff8117b974d74274bff02e43c32a6",
  1827. "reference": "6e6dbc6d2beff8117b974d74274bff02e43c32a6",
  1828. "shasum": ""
  1829. },
  1830. "require": {
  1831. "php": "^7.1.3",
  1832. "symfony/filesystem": "~3.4|~4.0"
  1833. },
  1834. "conflict": {
  1835. "symfony/finder": "<3.4"
  1836. },
  1837. "require-dev": {
  1838. "symfony/finder": "~3.4|~4.0",
  1839. "symfony/yaml": "~3.4|~4.0"
  1840. },
  1841. "suggest": {
  1842. "symfony/yaml": "To use the yaml reference dumper"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-master": "4.0-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Symfony\\Component\\Config\\": ""
  1853. },
  1854. "exclude-from-classmap": [
  1855. "/Tests/"
  1856. ]
  1857. },
  1858. "notification-url": "https://packagist.org/downloads/",
  1859. "license": [
  1860. "MIT"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "Fabien Potencier",
  1865. "email": "fabien@symfony.com"
  1866. },
  1867. {
  1868. "name": "Symfony Community",
  1869. "homepage": "https://symfony.com/contributors"
  1870. }
  1871. ],
  1872. "description": "Symfony Config Component",
  1873. "homepage": "https://symfony.com",
  1874. "time": "2017-11-20T18:22:57+00:00"
  1875. },
  1876. {
  1877. "name": "symfony/console",
  1878. "version": "v4.0.0",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/symfony/console.git",
  1882. "reference": "5cd0dd461dfc72f59c8405cac32d31e82c7348e8"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/symfony/console/zipball/5cd0dd461dfc72f59c8405cac32d31e82c7348e8",
  1887. "reference": "5cd0dd461dfc72f59c8405cac32d31e82c7348e8",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "php": "^7.1.3",
  1892. "symfony/polyfill-mbstring": "~1.0"
  1893. },
  1894. "conflict": {
  1895. "symfony/dependency-injection": "<3.4",
  1896. "symfony/process": "<3.3"
  1897. },
  1898. "require-dev": {
  1899. "psr/log": "~1.0",
  1900. "symfony/config": "~3.4|~4.0",
  1901. "symfony/dependency-injection": "~3.4|~4.0",
  1902. "symfony/event-dispatcher": "~3.4|~4.0",
  1903. "symfony/lock": "~3.4|~4.0",
  1904. "symfony/process": "~3.4|~4.0"
  1905. },
  1906. "suggest": {
  1907. "psr/log": "For using the console logger",
  1908. "symfony/event-dispatcher": "",
  1909. "symfony/lock": "",
  1910. "symfony/process": ""
  1911. },
  1912. "type": "library",
  1913. "extra": {
  1914. "branch-alias": {
  1915. "dev-master": "4.0-dev"
  1916. }
  1917. },
  1918. "autoload": {
  1919. "psr-4": {
  1920. "Symfony\\Component\\Console\\": ""
  1921. },
  1922. "exclude-from-classmap": [
  1923. "/Tests/"
  1924. ]
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Fabien Potencier",
  1933. "email": "fabien@symfony.com"
  1934. },
  1935. {
  1936. "name": "Symfony Community",
  1937. "homepage": "https://symfony.com/contributors"
  1938. }
  1939. ],
  1940. "description": "Symfony Console Component",
  1941. "homepage": "https://symfony.com",
  1942. "time": "2017-11-29T13:42:03+00:00"
  1943. },
  1944. {
  1945. "name": "symfony/filesystem",
  1946. "version": "v4.0.0",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/symfony/filesystem.git",
  1950. "reference": "c9d4a26759ff75a077e4e334315cb632739b661a"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c9d4a26759ff75a077e4e334315cb632739b661a",
  1955. "reference": "c9d4a26759ff75a077e4e334315cb632739b661a",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": "^7.1.3"
  1960. },
  1961. "type": "library",
  1962. "extra": {
  1963. "branch-alias": {
  1964. "dev-master": "4.0-dev"
  1965. }
  1966. },
  1967. "autoload": {
  1968. "psr-4": {
  1969. "Symfony\\Component\\Filesystem\\": ""
  1970. },
  1971. "exclude-from-classmap": [
  1972. "/Tests/"
  1973. ]
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "MIT"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Fabien Potencier",
  1982. "email": "fabien@symfony.com"
  1983. },
  1984. {
  1985. "name": "Symfony Community",
  1986. "homepage": "https://symfony.com/contributors"
  1987. }
  1988. ],
  1989. "description": "Symfony Filesystem Component",
  1990. "homepage": "https://symfony.com",
  1991. "time": "2017-11-21T14:14:53+00:00"
  1992. },
  1993. {
  1994. "name": "symfony/polyfill-mbstring",
  1995. "version": "v1.6.0",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1999. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2004. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2005. "shasum": ""
  2006. },
  2007. "require": {
  2008. "php": ">=5.3.3"
  2009. },
  2010. "suggest": {
  2011. "ext-mbstring": "For best performance"
  2012. },
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "1.6-dev"
  2017. }
  2018. },
  2019. "autoload": {
  2020. "psr-4": {
  2021. "Symfony\\Polyfill\\Mbstring\\": ""
  2022. },
  2023. "files": [
  2024. "bootstrap.php"
  2025. ]
  2026. },
  2027. "notification-url": "https://packagist.org/downloads/",
  2028. "license": [
  2029. "MIT"
  2030. ],
  2031. "authors": [
  2032. {
  2033. "name": "Nicolas Grekas",
  2034. "email": "p@tchwork.com"
  2035. },
  2036. {
  2037. "name": "Symfony Community",
  2038. "homepage": "https://symfony.com/contributors"
  2039. }
  2040. ],
  2041. "description": "Symfony polyfill for the Mbstring extension",
  2042. "homepage": "https://symfony.com",
  2043. "keywords": [
  2044. "compatibility",
  2045. "mbstring",
  2046. "polyfill",
  2047. "portable",
  2048. "shim"
  2049. ],
  2050. "time": "2017-10-11T12:05:26+00:00"
  2051. },
  2052. {
  2053. "name": "symfony/stopwatch",
  2054. "version": "v4.0.0",
  2055. "source": {
  2056. "type": "git",
  2057. "url": "https://github.com/symfony/stopwatch.git",
  2058. "reference": "ac0e49150555c703fef6b696d8eaba1db7a3ca03"
  2059. },
  2060. "dist": {
  2061. "type": "zip",
  2062. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/ac0e49150555c703fef6b696d8eaba1db7a3ca03",
  2063. "reference": "ac0e49150555c703fef6b696d8eaba1db7a3ca03",
  2064. "shasum": ""
  2065. },
  2066. "require": {
  2067. "php": "^7.1.3"
  2068. },
  2069. "type": "library",
  2070. "extra": {
  2071. "branch-alias": {
  2072. "dev-master": "4.0-dev"
  2073. }
  2074. },
  2075. "autoload": {
  2076. "psr-4": {
  2077. "Symfony\\Component\\Stopwatch\\": ""
  2078. },
  2079. "exclude-from-classmap": [
  2080. "/Tests/"
  2081. ]
  2082. },
  2083. "notification-url": "https://packagist.org/downloads/",
  2084. "license": [
  2085. "MIT"
  2086. ],
  2087. "authors": [
  2088. {
  2089. "name": "Fabien Potencier",
  2090. "email": "fabien@symfony.com"
  2091. },
  2092. {
  2093. "name": "Symfony Community",
  2094. "homepage": "https://symfony.com/contributors"
  2095. }
  2096. ],
  2097. "description": "Symfony Stopwatch Component",
  2098. "homepage": "https://symfony.com",
  2099. "time": "2017-11-09T12:45:29+00:00"
  2100. },
  2101. {
  2102. "name": "webmozart/assert",
  2103. "version": "1.2.0",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/webmozart/assert.git",
  2107. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2112. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2113. "shasum": ""
  2114. },
  2115. "require": {
  2116. "php": "^5.3.3 || ^7.0"
  2117. },
  2118. "require-dev": {
  2119. "phpunit/phpunit": "^4.6",
  2120. "sebastian/version": "^1.0.1"
  2121. },
  2122. "type": "library",
  2123. "extra": {
  2124. "branch-alias": {
  2125. "dev-master": "1.3-dev"
  2126. }
  2127. },
  2128. "autoload": {
  2129. "psr-4": {
  2130. "Webmozart\\Assert\\": "src/"
  2131. }
  2132. },
  2133. "notification-url": "https://packagist.org/downloads/",
  2134. "license": [
  2135. "MIT"
  2136. ],
  2137. "authors": [
  2138. {
  2139. "name": "Bernhard Schussek",
  2140. "email": "bschussek@gmail.com"
  2141. }
  2142. ],
  2143. "description": "Assertions to validate method input/output with nice error messages.",
  2144. "keywords": [
  2145. "assert",
  2146. "check",
  2147. "validate"
  2148. ],
  2149. "time": "2016-11-23T20:04:58+00:00"
  2150. }
  2151. ],
  2152. "aliases": [],
  2153. "minimum-stability": "stable",
  2154. "stability-flags": {
  2155. "satooshi/php-coveralls": 20
  2156. },
  2157. "prefer-stable": false,
  2158. "prefer-lowest": false,
  2159. "platform": {
  2160. "php": ">=5.4"
  2161. },
  2162. "platform-dev": []
  2163. }