composer.lock 62 KB

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