composer.lock 67 KB

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