composer.lock 68 KB

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