composer.lock 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619
  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": "6d7da53324a7d53b31d05453a72e1136",
  8. "packages": [
  9. {
  10. "name": "container-interop/container-interop",
  11. "version": "1.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/container-interop/container-interop.git",
  15. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  20. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "psr/container": "^1.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "Interop\\Container\\": "src/Interop/Container/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "MIT"
  35. ],
  36. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  37. "homepage": "https://github.com/container-interop/container-interop",
  38. "time": "2017-02-14T19:40:03+00:00"
  39. },
  40. {
  41. "name": "psr/container",
  42. "version": "1.0.0",
  43. "source": {
  44. "type": "git",
  45. "url": "https://github.com/php-fig/container.git",
  46. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  47. },
  48. "dist": {
  49. "type": "zip",
  50. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  51. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  52. "shasum": ""
  53. },
  54. "require": {
  55. "php": ">=5.3.0"
  56. },
  57. "type": "library",
  58. "extra": {
  59. "branch-alias": {
  60. "dev-master": "1.0.x-dev"
  61. }
  62. },
  63. "autoload": {
  64. "psr-4": {
  65. "Psr\\Container\\": "src/"
  66. }
  67. },
  68. "notification-url": "https://packagist.org/downloads/",
  69. "license": [
  70. "MIT"
  71. ],
  72. "authors": [
  73. {
  74. "name": "PHP-FIG",
  75. "homepage": "http://www.php-fig.org/"
  76. }
  77. ],
  78. "description": "Common Container Interface (PHP FIG PSR-11)",
  79. "homepage": "https://github.com/php-fig/container",
  80. "keywords": [
  81. "PSR-11",
  82. "container",
  83. "container-interface",
  84. "container-interop",
  85. "psr"
  86. ],
  87. "time": "2017-02-14T16:28:37+00:00"
  88. },
  89. {
  90. "name": "zendframework/zend-stdlib",
  91. "version": "3.2.1",
  92. "source": {
  93. "type": "git",
  94. "url": "https://github.com/zendframework/zend-stdlib.git",
  95. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  96. },
  97. "dist": {
  98. "type": "zip",
  99. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  100. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  101. "shasum": ""
  102. },
  103. "require": {
  104. "php": "^5.6 || ^7.0"
  105. },
  106. "require-dev": {
  107. "phpbench/phpbench": "^0.13",
  108. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  109. "zendframework/zend-coding-standard": "~1.0.0"
  110. },
  111. "type": "library",
  112. "extra": {
  113. "branch-alias": {
  114. "dev-master": "3.2.x-dev",
  115. "dev-develop": "3.3.x-dev"
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Zend\\Stdlib\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "BSD-3-Clause"
  126. ],
  127. "description": "SPL extensions, array utilities, error handlers, and more",
  128. "keywords": [
  129. "ZendFramework",
  130. "stdlib",
  131. "zf"
  132. ],
  133. "time": "2018-08-28T21:34:05+00:00"
  134. }
  135. ],
  136. "packages-dev": [
  137. {
  138. "name": "doctrine/instantiator",
  139. "version": "1.1.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/instantiator.git",
  143. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  148. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "php": "^7.1"
  153. },
  154. "require-dev": {
  155. "athletic/athletic": "~0.1.8",
  156. "ext-pdo": "*",
  157. "ext-phar": "*",
  158. "phpunit/phpunit": "^6.2.3",
  159. "squizlabs/php_codesniffer": "^3.0.2"
  160. },
  161. "type": "library",
  162. "extra": {
  163. "branch-alias": {
  164. "dev-master": "1.2.x-dev"
  165. }
  166. },
  167. "autoload": {
  168. "psr-4": {
  169. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "MIT"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Marco Pivetta",
  179. "email": "ocramius@gmail.com",
  180. "homepage": "http://ocramius.github.com/"
  181. }
  182. ],
  183. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  184. "homepage": "https://github.com/doctrine/instantiator",
  185. "keywords": [
  186. "constructor",
  187. "instantiate"
  188. ],
  189. "time": "2017-07-22T11:58:36+00:00"
  190. },
  191. {
  192. "name": "myclabs/deep-copy",
  193. "version": "1.8.1",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/myclabs/DeepCopy.git",
  197. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  202. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "php": "^7.1"
  207. },
  208. "replace": {
  209. "myclabs/deep-copy": "self.version"
  210. },
  211. "require-dev": {
  212. "doctrine/collections": "^1.0",
  213. "doctrine/common": "^2.6",
  214. "phpunit/phpunit": "^7.1"
  215. },
  216. "type": "library",
  217. "autoload": {
  218. "psr-4": {
  219. "DeepCopy\\": "src/DeepCopy/"
  220. },
  221. "files": [
  222. "src/DeepCopy/deep_copy.php"
  223. ]
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "MIT"
  228. ],
  229. "description": "Create deep copies (clones) of your objects",
  230. "keywords": [
  231. "clone",
  232. "copy",
  233. "duplicate",
  234. "object",
  235. "object graph"
  236. ],
  237. "time": "2018-06-11T23:09:50+00:00"
  238. },
  239. {
  240. "name": "phar-io/manifest",
  241. "version": "1.0.1",
  242. "source": {
  243. "type": "git",
  244. "url": "https://github.com/phar-io/manifest.git",
  245. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  246. },
  247. "dist": {
  248. "type": "zip",
  249. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  250. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  251. "shasum": ""
  252. },
  253. "require": {
  254. "ext-dom": "*",
  255. "ext-phar": "*",
  256. "phar-io/version": "^1.0.1",
  257. "php": "^5.6 || ^7.0"
  258. },
  259. "type": "library",
  260. "extra": {
  261. "branch-alias": {
  262. "dev-master": "1.0.x-dev"
  263. }
  264. },
  265. "autoload": {
  266. "classmap": [
  267. "src/"
  268. ]
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "BSD-3-Clause"
  273. ],
  274. "authors": [
  275. {
  276. "name": "Arne Blankerts",
  277. "email": "arne@blankerts.de",
  278. "role": "Developer"
  279. },
  280. {
  281. "name": "Sebastian Heuer",
  282. "email": "sebastian@phpeople.de",
  283. "role": "Developer"
  284. },
  285. {
  286. "name": "Sebastian Bergmann",
  287. "email": "sebastian@phpunit.de",
  288. "role": "Developer"
  289. }
  290. ],
  291. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  292. "time": "2017-03-05T18:14:27+00:00"
  293. },
  294. {
  295. "name": "phar-io/version",
  296. "version": "1.0.1",
  297. "source": {
  298. "type": "git",
  299. "url": "https://github.com/phar-io/version.git",
  300. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  301. },
  302. "dist": {
  303. "type": "zip",
  304. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  305. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  306. "shasum": ""
  307. },
  308. "require": {
  309. "php": "^5.6 || ^7.0"
  310. },
  311. "type": "library",
  312. "autoload": {
  313. "classmap": [
  314. "src/"
  315. ]
  316. },
  317. "notification-url": "https://packagist.org/downloads/",
  318. "license": [
  319. "BSD-3-Clause"
  320. ],
  321. "authors": [
  322. {
  323. "name": "Arne Blankerts",
  324. "email": "arne@blankerts.de",
  325. "role": "Developer"
  326. },
  327. {
  328. "name": "Sebastian Heuer",
  329. "email": "sebastian@phpeople.de",
  330. "role": "Developer"
  331. },
  332. {
  333. "name": "Sebastian Bergmann",
  334. "email": "sebastian@phpunit.de",
  335. "role": "Developer"
  336. }
  337. ],
  338. "description": "Library for handling version information and constraints",
  339. "time": "2017-03-05T17:38:23+00:00"
  340. },
  341. {
  342. "name": "phpdocumentor/reflection-common",
  343. "version": "1.0.1",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  347. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  352. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": ">=5.5"
  357. },
  358. "require-dev": {
  359. "phpunit/phpunit": "^4.6"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-master": "1.0.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "phpDocumentor\\Reflection\\": [
  370. "src"
  371. ]
  372. }
  373. },
  374. "notification-url": "https://packagist.org/downloads/",
  375. "license": [
  376. "MIT"
  377. ],
  378. "authors": [
  379. {
  380. "name": "Jaap van Otterdijk",
  381. "email": "opensource@ijaap.nl"
  382. }
  383. ],
  384. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  385. "homepage": "http://www.phpdoc.org",
  386. "keywords": [
  387. "FQSEN",
  388. "phpDocumentor",
  389. "phpdoc",
  390. "reflection",
  391. "static analysis"
  392. ],
  393. "time": "2017-09-11T18:02:19+00:00"
  394. },
  395. {
  396. "name": "phpdocumentor/reflection-docblock",
  397. "version": "4.3.0",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  401. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  406. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": "^7.0",
  411. "phpdocumentor/reflection-common": "^1.0.0",
  412. "phpdocumentor/type-resolver": "^0.4.0",
  413. "webmozart/assert": "^1.0"
  414. },
  415. "require-dev": {
  416. "doctrine/instantiator": "~1.0.5",
  417. "mockery/mockery": "^1.0",
  418. "phpunit/phpunit": "^6.4"
  419. },
  420. "type": "library",
  421. "extra": {
  422. "branch-alias": {
  423. "dev-master": "4.x-dev"
  424. }
  425. },
  426. "autoload": {
  427. "psr-4": {
  428. "phpDocumentor\\Reflection\\": [
  429. "src/"
  430. ]
  431. }
  432. },
  433. "notification-url": "https://packagist.org/downloads/",
  434. "license": [
  435. "MIT"
  436. ],
  437. "authors": [
  438. {
  439. "name": "Mike van Riel",
  440. "email": "me@mikevanriel.com"
  441. }
  442. ],
  443. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  444. "time": "2017-11-30T07:14:17+00:00"
  445. },
  446. {
  447. "name": "phpdocumentor/type-resolver",
  448. "version": "0.4.0",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  452. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  457. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "php": "^5.5 || ^7.0",
  462. "phpdocumentor/reflection-common": "^1.0"
  463. },
  464. "require-dev": {
  465. "mockery/mockery": "^0.9.4",
  466. "phpunit/phpunit": "^5.2||^4.8.24"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "1.0.x-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "phpDocumentor\\Reflection\\": [
  477. "src/"
  478. ]
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Mike van Riel",
  488. "email": "me@mikevanriel.com"
  489. }
  490. ],
  491. "time": "2017-07-14T14:27:02+00:00"
  492. },
  493. {
  494. "name": "phpspec/prophecy",
  495. "version": "1.8.0",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/phpspec/prophecy.git",
  499. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  504. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "doctrine/instantiator": "^1.0.2",
  509. "php": "^5.3|^7.0",
  510. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  511. "sebastian/comparator": "^1.1|^2.0|^3.0",
  512. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  513. },
  514. "require-dev": {
  515. "phpspec/phpspec": "^2.5|^3.2",
  516. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  517. },
  518. "type": "library",
  519. "extra": {
  520. "branch-alias": {
  521. "dev-master": "1.8.x-dev"
  522. }
  523. },
  524. "autoload": {
  525. "psr-0": {
  526. "Prophecy\\": "src/"
  527. }
  528. },
  529. "notification-url": "https://packagist.org/downloads/",
  530. "license": [
  531. "MIT"
  532. ],
  533. "authors": [
  534. {
  535. "name": "Konstantin Kudryashov",
  536. "email": "ever.zet@gmail.com",
  537. "homepage": "http://everzet.com"
  538. },
  539. {
  540. "name": "Marcello Duarte",
  541. "email": "marcello.duarte@gmail.com"
  542. }
  543. ],
  544. "description": "Highly opinionated mocking framework for PHP 5.3+",
  545. "homepage": "https://github.com/phpspec/prophecy",
  546. "keywords": [
  547. "Double",
  548. "Dummy",
  549. "fake",
  550. "mock",
  551. "spy",
  552. "stub"
  553. ],
  554. "time": "2018-08-05T17:53:17+00:00"
  555. },
  556. {
  557. "name": "phpunit/php-code-coverage",
  558. "version": "5.3.2",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  562. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  567. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  568. "shasum": ""
  569. },
  570. "require": {
  571. "ext-dom": "*",
  572. "ext-xmlwriter": "*",
  573. "php": "^7.0",
  574. "phpunit/php-file-iterator": "^1.4.2",
  575. "phpunit/php-text-template": "^1.2.1",
  576. "phpunit/php-token-stream": "^2.0.1",
  577. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  578. "sebastian/environment": "^3.0",
  579. "sebastian/version": "^2.0.1",
  580. "theseer/tokenizer": "^1.1"
  581. },
  582. "require-dev": {
  583. "phpunit/phpunit": "^6.0"
  584. },
  585. "suggest": {
  586. "ext-xdebug": "^2.5.5"
  587. },
  588. "type": "library",
  589. "extra": {
  590. "branch-alias": {
  591. "dev-master": "5.3.x-dev"
  592. }
  593. },
  594. "autoload": {
  595. "classmap": [
  596. "src/"
  597. ]
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "BSD-3-Clause"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Sebastian Bergmann",
  606. "email": "sebastian@phpunit.de",
  607. "role": "lead"
  608. }
  609. ],
  610. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  611. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  612. "keywords": [
  613. "coverage",
  614. "testing",
  615. "xunit"
  616. ],
  617. "time": "2018-04-06T15:36:58+00:00"
  618. },
  619. {
  620. "name": "phpunit/php-file-iterator",
  621. "version": "1.4.5",
  622. "source": {
  623. "type": "git",
  624. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  625. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  626. },
  627. "dist": {
  628. "type": "zip",
  629. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  630. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  631. "shasum": ""
  632. },
  633. "require": {
  634. "php": ">=5.3.3"
  635. },
  636. "type": "library",
  637. "extra": {
  638. "branch-alias": {
  639. "dev-master": "1.4.x-dev"
  640. }
  641. },
  642. "autoload": {
  643. "classmap": [
  644. "src/"
  645. ]
  646. },
  647. "notification-url": "https://packagist.org/downloads/",
  648. "license": [
  649. "BSD-3-Clause"
  650. ],
  651. "authors": [
  652. {
  653. "name": "Sebastian Bergmann",
  654. "email": "sb@sebastian-bergmann.de",
  655. "role": "lead"
  656. }
  657. ],
  658. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  659. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  660. "keywords": [
  661. "filesystem",
  662. "iterator"
  663. ],
  664. "time": "2017-11-27T13:52:08+00:00"
  665. },
  666. {
  667. "name": "phpunit/php-text-template",
  668. "version": "1.2.1",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  672. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  677. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": ">=5.3.3"
  682. },
  683. "type": "library",
  684. "autoload": {
  685. "classmap": [
  686. "src/"
  687. ]
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "BSD-3-Clause"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Sebastian Bergmann",
  696. "email": "sebastian@phpunit.de",
  697. "role": "lead"
  698. }
  699. ],
  700. "description": "Simple template engine.",
  701. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  702. "keywords": [
  703. "template"
  704. ],
  705. "time": "2015-06-21T13:50:34+00:00"
  706. },
  707. {
  708. "name": "phpunit/php-timer",
  709. "version": "1.0.9",
  710. "source": {
  711. "type": "git",
  712. "url": "https://github.com/sebastianbergmann/php-timer.git",
  713. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  714. },
  715. "dist": {
  716. "type": "zip",
  717. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  718. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  719. "shasum": ""
  720. },
  721. "require": {
  722. "php": "^5.3.3 || ^7.0"
  723. },
  724. "require-dev": {
  725. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  726. },
  727. "type": "library",
  728. "extra": {
  729. "branch-alias": {
  730. "dev-master": "1.0-dev"
  731. }
  732. },
  733. "autoload": {
  734. "classmap": [
  735. "src/"
  736. ]
  737. },
  738. "notification-url": "https://packagist.org/downloads/",
  739. "license": [
  740. "BSD-3-Clause"
  741. ],
  742. "authors": [
  743. {
  744. "name": "Sebastian Bergmann",
  745. "email": "sb@sebastian-bergmann.de",
  746. "role": "lead"
  747. }
  748. ],
  749. "description": "Utility class for timing",
  750. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  751. "keywords": [
  752. "timer"
  753. ],
  754. "time": "2017-02-26T11:10:40+00:00"
  755. },
  756. {
  757. "name": "phpunit/php-token-stream",
  758. "version": "2.0.2",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  762. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  767. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "ext-tokenizer": "*",
  772. "php": "^7.0"
  773. },
  774. "require-dev": {
  775. "phpunit/phpunit": "^6.2.4"
  776. },
  777. "type": "library",
  778. "extra": {
  779. "branch-alias": {
  780. "dev-master": "2.0-dev"
  781. }
  782. },
  783. "autoload": {
  784. "classmap": [
  785. "src/"
  786. ]
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "BSD-3-Clause"
  791. ],
  792. "authors": [
  793. {
  794. "name": "Sebastian Bergmann",
  795. "email": "sebastian@phpunit.de"
  796. }
  797. ],
  798. "description": "Wrapper around PHP's tokenizer extension.",
  799. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  800. "keywords": [
  801. "tokenizer"
  802. ],
  803. "time": "2017-11-27T05:48:46+00:00"
  804. },
  805. {
  806. "name": "phpunit/phpunit",
  807. "version": "6.5.13",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/sebastianbergmann/phpunit.git",
  811. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  816. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  817. "shasum": ""
  818. },
  819. "require": {
  820. "ext-dom": "*",
  821. "ext-json": "*",
  822. "ext-libxml": "*",
  823. "ext-mbstring": "*",
  824. "ext-xml": "*",
  825. "myclabs/deep-copy": "^1.6.1",
  826. "phar-io/manifest": "^1.0.1",
  827. "phar-io/version": "^1.0",
  828. "php": "^7.0",
  829. "phpspec/prophecy": "^1.7",
  830. "phpunit/php-code-coverage": "^5.3",
  831. "phpunit/php-file-iterator": "^1.4.3",
  832. "phpunit/php-text-template": "^1.2.1",
  833. "phpunit/php-timer": "^1.0.9",
  834. "phpunit/phpunit-mock-objects": "^5.0.9",
  835. "sebastian/comparator": "^2.1",
  836. "sebastian/diff": "^2.0",
  837. "sebastian/environment": "^3.1",
  838. "sebastian/exporter": "^3.1",
  839. "sebastian/global-state": "^2.0",
  840. "sebastian/object-enumerator": "^3.0.3",
  841. "sebastian/resource-operations": "^1.0",
  842. "sebastian/version": "^2.0.1"
  843. },
  844. "conflict": {
  845. "phpdocumentor/reflection-docblock": "3.0.2",
  846. "phpunit/dbunit": "<3.0"
  847. },
  848. "require-dev": {
  849. "ext-pdo": "*"
  850. },
  851. "suggest": {
  852. "ext-xdebug": "*",
  853. "phpunit/php-invoker": "^1.1"
  854. },
  855. "bin": [
  856. "phpunit"
  857. ],
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "6.5.x-dev"
  862. }
  863. },
  864. "autoload": {
  865. "classmap": [
  866. "src/"
  867. ]
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "BSD-3-Clause"
  872. ],
  873. "authors": [
  874. {
  875. "name": "Sebastian Bergmann",
  876. "email": "sebastian@phpunit.de",
  877. "role": "lead"
  878. }
  879. ],
  880. "description": "The PHP Unit Testing framework.",
  881. "homepage": "https://phpunit.de/",
  882. "keywords": [
  883. "phpunit",
  884. "testing",
  885. "xunit"
  886. ],
  887. "time": "2018-09-08T15:10:43+00:00"
  888. },
  889. {
  890. "name": "phpunit/phpunit-mock-objects",
  891. "version": "5.0.10",
  892. "source": {
  893. "type": "git",
  894. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  895. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  896. },
  897. "dist": {
  898. "type": "zip",
  899. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  900. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  901. "shasum": ""
  902. },
  903. "require": {
  904. "doctrine/instantiator": "^1.0.5",
  905. "php": "^7.0",
  906. "phpunit/php-text-template": "^1.2.1",
  907. "sebastian/exporter": "^3.1"
  908. },
  909. "conflict": {
  910. "phpunit/phpunit": "<6.0"
  911. },
  912. "require-dev": {
  913. "phpunit/phpunit": "^6.5.11"
  914. },
  915. "suggest": {
  916. "ext-soap": "*"
  917. },
  918. "type": "library",
  919. "extra": {
  920. "branch-alias": {
  921. "dev-master": "5.0.x-dev"
  922. }
  923. },
  924. "autoload": {
  925. "classmap": [
  926. "src/"
  927. ]
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "BSD-3-Clause"
  932. ],
  933. "authors": [
  934. {
  935. "name": "Sebastian Bergmann",
  936. "email": "sebastian@phpunit.de",
  937. "role": "lead"
  938. }
  939. ],
  940. "description": "Mock Object library for PHPUnit",
  941. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  942. "keywords": [
  943. "mock",
  944. "xunit"
  945. ],
  946. "time": "2018-08-09T05:50:03+00:00"
  947. },
  948. {
  949. "name": "psr/cache",
  950. "version": "1.0.1",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/php-fig/cache.git",
  954. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  959. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  960. "shasum": ""
  961. },
  962. "require": {
  963. "php": ">=5.3.0"
  964. },
  965. "type": "library",
  966. "extra": {
  967. "branch-alias": {
  968. "dev-master": "1.0.x-dev"
  969. }
  970. },
  971. "autoload": {
  972. "psr-4": {
  973. "Psr\\Cache\\": "src/"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "PHP-FIG",
  983. "homepage": "http://www.php-fig.org/"
  984. }
  985. ],
  986. "description": "Common interface for caching libraries",
  987. "keywords": [
  988. "cache",
  989. "psr",
  990. "psr-6"
  991. ],
  992. "time": "2016-08-06T20:24:11+00:00"
  993. },
  994. {
  995. "name": "psr/http-message",
  996. "version": "1.0.1",
  997. "source": {
  998. "type": "git",
  999. "url": "https://github.com/php-fig/http-message.git",
  1000. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1001. },
  1002. "dist": {
  1003. "type": "zip",
  1004. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1005. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1006. "shasum": ""
  1007. },
  1008. "require": {
  1009. "php": ">=5.3.0"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "1.0.x-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Psr\\Http\\Message\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "PHP-FIG",
  1029. "homepage": "http://www.php-fig.org/"
  1030. }
  1031. ],
  1032. "description": "Common interface for HTTP messages",
  1033. "homepage": "https://github.com/php-fig/http-message",
  1034. "keywords": [
  1035. "http",
  1036. "http-message",
  1037. "psr",
  1038. "psr-7",
  1039. "request",
  1040. "response"
  1041. ],
  1042. "time": "2016-08-06T14:39:51+00:00"
  1043. },
  1044. {
  1045. "name": "psr/simple-cache",
  1046. "version": "1.0.1",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/php-fig/simple-cache.git",
  1050. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1055. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "php": ">=5.3.0"
  1060. },
  1061. "type": "library",
  1062. "extra": {
  1063. "branch-alias": {
  1064. "dev-master": "1.0.x-dev"
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Psr\\SimpleCache\\": "src/"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "PHP-FIG",
  1079. "homepage": "http://www.php-fig.org/"
  1080. }
  1081. ],
  1082. "description": "Common interfaces for simple caching",
  1083. "keywords": [
  1084. "cache",
  1085. "caching",
  1086. "psr",
  1087. "psr-16",
  1088. "simple-cache"
  1089. ],
  1090. "time": "2017-10-23T01:57:42+00:00"
  1091. },
  1092. {
  1093. "name": "sebastian/code-unit-reverse-lookup",
  1094. "version": "1.0.1",
  1095. "source": {
  1096. "type": "git",
  1097. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1098. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1099. },
  1100. "dist": {
  1101. "type": "zip",
  1102. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1103. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1104. "shasum": ""
  1105. },
  1106. "require": {
  1107. "php": "^5.6 || ^7.0"
  1108. },
  1109. "require-dev": {
  1110. "phpunit/phpunit": "^5.7 || ^6.0"
  1111. },
  1112. "type": "library",
  1113. "extra": {
  1114. "branch-alias": {
  1115. "dev-master": "1.0.x-dev"
  1116. }
  1117. },
  1118. "autoload": {
  1119. "classmap": [
  1120. "src/"
  1121. ]
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "BSD-3-Clause"
  1126. ],
  1127. "authors": [
  1128. {
  1129. "name": "Sebastian Bergmann",
  1130. "email": "sebastian@phpunit.de"
  1131. }
  1132. ],
  1133. "description": "Looks up which function or method a line of code belongs to",
  1134. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1135. "time": "2017-03-04T06:30:41+00:00"
  1136. },
  1137. {
  1138. "name": "sebastian/comparator",
  1139. "version": "2.1.3",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/sebastianbergmann/comparator.git",
  1143. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  1148. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "php": "^7.0",
  1153. "sebastian/diff": "^2.0 || ^3.0",
  1154. "sebastian/exporter": "^3.1"
  1155. },
  1156. "require-dev": {
  1157. "phpunit/phpunit": "^6.4"
  1158. },
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-master": "2.1.x-dev"
  1163. }
  1164. },
  1165. "autoload": {
  1166. "classmap": [
  1167. "src/"
  1168. ]
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "BSD-3-Clause"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Jeff Welch",
  1177. "email": "whatthejeff@gmail.com"
  1178. },
  1179. {
  1180. "name": "Volker Dusch",
  1181. "email": "github@wallbash.com"
  1182. },
  1183. {
  1184. "name": "Bernhard Schussek",
  1185. "email": "bschussek@2bepublished.at"
  1186. },
  1187. {
  1188. "name": "Sebastian Bergmann",
  1189. "email": "sebastian@phpunit.de"
  1190. }
  1191. ],
  1192. "description": "Provides the functionality to compare PHP values for equality",
  1193. "homepage": "https://github.com/sebastianbergmann/comparator",
  1194. "keywords": [
  1195. "comparator",
  1196. "compare",
  1197. "equality"
  1198. ],
  1199. "time": "2018-02-01T13:46:46+00:00"
  1200. },
  1201. {
  1202. "name": "sebastian/diff",
  1203. "version": "2.0.1",
  1204. "source": {
  1205. "type": "git",
  1206. "url": "https://github.com/sebastianbergmann/diff.git",
  1207. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  1208. },
  1209. "dist": {
  1210. "type": "zip",
  1211. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1212. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1213. "shasum": ""
  1214. },
  1215. "require": {
  1216. "php": "^7.0"
  1217. },
  1218. "require-dev": {
  1219. "phpunit/phpunit": "^6.2"
  1220. },
  1221. "type": "library",
  1222. "extra": {
  1223. "branch-alias": {
  1224. "dev-master": "2.0-dev"
  1225. }
  1226. },
  1227. "autoload": {
  1228. "classmap": [
  1229. "src/"
  1230. ]
  1231. },
  1232. "notification-url": "https://packagist.org/downloads/",
  1233. "license": [
  1234. "BSD-3-Clause"
  1235. ],
  1236. "authors": [
  1237. {
  1238. "name": "Kore Nordmann",
  1239. "email": "mail@kore-nordmann.de"
  1240. },
  1241. {
  1242. "name": "Sebastian Bergmann",
  1243. "email": "sebastian@phpunit.de"
  1244. }
  1245. ],
  1246. "description": "Diff implementation",
  1247. "homepage": "https://github.com/sebastianbergmann/diff",
  1248. "keywords": [
  1249. "diff"
  1250. ],
  1251. "time": "2017-08-03T08:09:46+00:00"
  1252. },
  1253. {
  1254. "name": "sebastian/environment",
  1255. "version": "3.1.0",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/sebastianbergmann/environment.git",
  1259. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1264. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "php": "^7.0"
  1269. },
  1270. "require-dev": {
  1271. "phpunit/phpunit": "^6.1"
  1272. },
  1273. "type": "library",
  1274. "extra": {
  1275. "branch-alias": {
  1276. "dev-master": "3.1.x-dev"
  1277. }
  1278. },
  1279. "autoload": {
  1280. "classmap": [
  1281. "src/"
  1282. ]
  1283. },
  1284. "notification-url": "https://packagist.org/downloads/",
  1285. "license": [
  1286. "BSD-3-Clause"
  1287. ],
  1288. "authors": [
  1289. {
  1290. "name": "Sebastian Bergmann",
  1291. "email": "sebastian@phpunit.de"
  1292. }
  1293. ],
  1294. "description": "Provides functionality to handle HHVM/PHP environments",
  1295. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1296. "keywords": [
  1297. "Xdebug",
  1298. "environment",
  1299. "hhvm"
  1300. ],
  1301. "time": "2017-07-01T08:51:00+00:00"
  1302. },
  1303. {
  1304. "name": "sebastian/exporter",
  1305. "version": "3.1.0",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/sebastianbergmann/exporter.git",
  1309. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  1314. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  1315. "shasum": ""
  1316. },
  1317. "require": {
  1318. "php": "^7.0",
  1319. "sebastian/recursion-context": "^3.0"
  1320. },
  1321. "require-dev": {
  1322. "ext-mbstring": "*",
  1323. "phpunit/phpunit": "^6.0"
  1324. },
  1325. "type": "library",
  1326. "extra": {
  1327. "branch-alias": {
  1328. "dev-master": "3.1.x-dev"
  1329. }
  1330. },
  1331. "autoload": {
  1332. "classmap": [
  1333. "src/"
  1334. ]
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "BSD-3-Clause"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "Jeff Welch",
  1343. "email": "whatthejeff@gmail.com"
  1344. },
  1345. {
  1346. "name": "Volker Dusch",
  1347. "email": "github@wallbash.com"
  1348. },
  1349. {
  1350. "name": "Bernhard Schussek",
  1351. "email": "bschussek@2bepublished.at"
  1352. },
  1353. {
  1354. "name": "Sebastian Bergmann",
  1355. "email": "sebastian@phpunit.de"
  1356. },
  1357. {
  1358. "name": "Adam Harvey",
  1359. "email": "aharvey@php.net"
  1360. }
  1361. ],
  1362. "description": "Provides the functionality to export PHP variables for visualization",
  1363. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1364. "keywords": [
  1365. "export",
  1366. "exporter"
  1367. ],
  1368. "time": "2017-04-03T13:19:02+00:00"
  1369. },
  1370. {
  1371. "name": "sebastian/global-state",
  1372. "version": "2.0.0",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/sebastianbergmann/global-state.git",
  1376. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1381. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "php": "^7.0"
  1386. },
  1387. "require-dev": {
  1388. "phpunit/phpunit": "^6.0"
  1389. },
  1390. "suggest": {
  1391. "ext-uopz": "*"
  1392. },
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "2.0-dev"
  1397. }
  1398. },
  1399. "autoload": {
  1400. "classmap": [
  1401. "src/"
  1402. ]
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "BSD-3-Clause"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Sebastian Bergmann",
  1411. "email": "sebastian@phpunit.de"
  1412. }
  1413. ],
  1414. "description": "Snapshotting of global state",
  1415. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1416. "keywords": [
  1417. "global state"
  1418. ],
  1419. "time": "2017-04-27T15:39:26+00:00"
  1420. },
  1421. {
  1422. "name": "sebastian/object-enumerator",
  1423. "version": "3.0.3",
  1424. "source": {
  1425. "type": "git",
  1426. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1427. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1428. },
  1429. "dist": {
  1430. "type": "zip",
  1431. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1432. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1433. "shasum": ""
  1434. },
  1435. "require": {
  1436. "php": "^7.0",
  1437. "sebastian/object-reflector": "^1.1.1",
  1438. "sebastian/recursion-context": "^3.0"
  1439. },
  1440. "require-dev": {
  1441. "phpunit/phpunit": "^6.0"
  1442. },
  1443. "type": "library",
  1444. "extra": {
  1445. "branch-alias": {
  1446. "dev-master": "3.0.x-dev"
  1447. }
  1448. },
  1449. "autoload": {
  1450. "classmap": [
  1451. "src/"
  1452. ]
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "BSD-3-Clause"
  1457. ],
  1458. "authors": [
  1459. {
  1460. "name": "Sebastian Bergmann",
  1461. "email": "sebastian@phpunit.de"
  1462. }
  1463. ],
  1464. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1465. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1466. "time": "2017-08-03T12:35:26+00:00"
  1467. },
  1468. {
  1469. "name": "sebastian/object-reflector",
  1470. "version": "1.1.1",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1474. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  1479. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "php": "^7.0"
  1484. },
  1485. "require-dev": {
  1486. "phpunit/phpunit": "^6.0"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "1.1-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "classmap": [
  1496. "src/"
  1497. ]
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "BSD-3-Clause"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Sebastian Bergmann",
  1506. "email": "sebastian@phpunit.de"
  1507. }
  1508. ],
  1509. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1510. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1511. "time": "2017-03-29T09:07:27+00:00"
  1512. },
  1513. {
  1514. "name": "sebastian/recursion-context",
  1515. "version": "3.0.0",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1519. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1524. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "php": "^7.0"
  1529. },
  1530. "require-dev": {
  1531. "phpunit/phpunit": "^6.0"
  1532. },
  1533. "type": "library",
  1534. "extra": {
  1535. "branch-alias": {
  1536. "dev-master": "3.0.x-dev"
  1537. }
  1538. },
  1539. "autoload": {
  1540. "classmap": [
  1541. "src/"
  1542. ]
  1543. },
  1544. "notification-url": "https://packagist.org/downloads/",
  1545. "license": [
  1546. "BSD-3-Clause"
  1547. ],
  1548. "authors": [
  1549. {
  1550. "name": "Jeff Welch",
  1551. "email": "whatthejeff@gmail.com"
  1552. },
  1553. {
  1554. "name": "Sebastian Bergmann",
  1555. "email": "sebastian@phpunit.de"
  1556. },
  1557. {
  1558. "name": "Adam Harvey",
  1559. "email": "aharvey@php.net"
  1560. }
  1561. ],
  1562. "description": "Provides functionality to recursively process PHP variables",
  1563. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1564. "time": "2017-03-03T06:23:57+00:00"
  1565. },
  1566. {
  1567. "name": "sebastian/resource-operations",
  1568. "version": "1.0.0",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1572. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1577. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": ">=5.6.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "1.0.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "classmap": [
  1591. "src/"
  1592. ]
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "BSD-3-Clause"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Sebastian Bergmann",
  1601. "email": "sebastian@phpunit.de"
  1602. }
  1603. ],
  1604. "description": "Provides a list of PHP built-in functions that operate on resources",
  1605. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1606. "time": "2015-07-28T20:34:47+00:00"
  1607. },
  1608. {
  1609. "name": "sebastian/version",
  1610. "version": "2.0.1",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/sebastianbergmann/version.git",
  1614. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1619. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "php": ">=5.6"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "2.0.x-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "classmap": [
  1633. "src/"
  1634. ]
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "BSD-3-Clause"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Sebastian Bergmann",
  1643. "email": "sebastian@phpunit.de",
  1644. "role": "lead"
  1645. }
  1646. ],
  1647. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1648. "homepage": "https://github.com/sebastianbergmann/version",
  1649. "time": "2016-10-03T07:35:21+00:00"
  1650. },
  1651. {
  1652. "name": "squizlabs/php_codesniffer",
  1653. "version": "2.9.2",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1657. "reference": "2acf168de78487db620ab4bc524135a13cfe6745"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/2acf168de78487db620ab4bc524135a13cfe6745",
  1662. "reference": "2acf168de78487db620ab4bc524135a13cfe6745",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "ext-simplexml": "*",
  1667. "ext-tokenizer": "*",
  1668. "ext-xmlwriter": "*",
  1669. "php": ">=5.1.2"
  1670. },
  1671. "require-dev": {
  1672. "phpunit/phpunit": "~4.0"
  1673. },
  1674. "bin": [
  1675. "scripts/phpcs",
  1676. "scripts/phpcbf"
  1677. ],
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "2.x-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "classmap": [
  1686. "CodeSniffer.php",
  1687. "CodeSniffer/CLI.php",
  1688. "CodeSniffer/Exception.php",
  1689. "CodeSniffer/File.php",
  1690. "CodeSniffer/Fixer.php",
  1691. "CodeSniffer/Report.php",
  1692. "CodeSniffer/Reporting.php",
  1693. "CodeSniffer/Sniff.php",
  1694. "CodeSniffer/Tokens.php",
  1695. "CodeSniffer/Reports/",
  1696. "CodeSniffer/Tokenizers/",
  1697. "CodeSniffer/DocGenerators/",
  1698. "CodeSniffer/Standards/AbstractPatternSniff.php",
  1699. "CodeSniffer/Standards/AbstractScopeSniff.php",
  1700. "CodeSniffer/Standards/AbstractVariableSniff.php",
  1701. "CodeSniffer/Standards/IncorrectPatternException.php",
  1702. "CodeSniffer/Standards/Generic/Sniffs/",
  1703. "CodeSniffer/Standards/MySource/Sniffs/",
  1704. "CodeSniffer/Standards/PEAR/Sniffs/",
  1705. "CodeSniffer/Standards/PSR1/Sniffs/",
  1706. "CodeSniffer/Standards/PSR2/Sniffs/",
  1707. "CodeSniffer/Standards/Squiz/Sniffs/",
  1708. "CodeSniffer/Standards/Zend/Sniffs/"
  1709. ]
  1710. },
  1711. "notification-url": "https://packagist.org/downloads/",
  1712. "license": [
  1713. "BSD-3-Clause"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "Greg Sherwood",
  1718. "role": "lead"
  1719. }
  1720. ],
  1721. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1722. "homepage": "http://www.squizlabs.com/php-codesniffer",
  1723. "keywords": [
  1724. "phpcs",
  1725. "standards"
  1726. ],
  1727. "time": "2018-11-07T22:31:41+00:00"
  1728. },
  1729. {
  1730. "name": "theseer/tokenizer",
  1731. "version": "1.1.0",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/theseer/tokenizer.git",
  1735. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  1740. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "ext-dom": "*",
  1745. "ext-tokenizer": "*",
  1746. "ext-xmlwriter": "*",
  1747. "php": "^7.0"
  1748. },
  1749. "type": "library",
  1750. "autoload": {
  1751. "classmap": [
  1752. "src/"
  1753. ]
  1754. },
  1755. "notification-url": "https://packagist.org/downloads/",
  1756. "license": [
  1757. "BSD-3-Clause"
  1758. ],
  1759. "authors": [
  1760. {
  1761. "name": "Arne Blankerts",
  1762. "email": "arne@blankerts.de",
  1763. "role": "Developer"
  1764. }
  1765. ],
  1766. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  1767. "time": "2017-04-07T12:08:54+00:00"
  1768. },
  1769. {
  1770. "name": "webmozart/assert",
  1771. "version": "1.3.0",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/webmozart/assert.git",
  1775. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  1780. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  1781. "shasum": ""
  1782. },
  1783. "require": {
  1784. "php": "^5.3.3 || ^7.0"
  1785. },
  1786. "require-dev": {
  1787. "phpunit/phpunit": "^4.6",
  1788. "sebastian/version": "^1.0.1"
  1789. },
  1790. "type": "library",
  1791. "extra": {
  1792. "branch-alias": {
  1793. "dev-master": "1.3-dev"
  1794. }
  1795. },
  1796. "autoload": {
  1797. "psr-4": {
  1798. "Webmozart\\Assert\\": "src/"
  1799. }
  1800. },
  1801. "notification-url": "https://packagist.org/downloads/",
  1802. "license": [
  1803. "MIT"
  1804. ],
  1805. "authors": [
  1806. {
  1807. "name": "Bernhard Schussek",
  1808. "email": "bschussek@gmail.com"
  1809. }
  1810. ],
  1811. "description": "Assertions to validate method input/output with nice error messages.",
  1812. "keywords": [
  1813. "assert",
  1814. "check",
  1815. "validate"
  1816. ],
  1817. "time": "2018-01-29T19:49:41+00:00"
  1818. },
  1819. {
  1820. "name": "zendframework/zend-cache",
  1821. "version": "2.8.2",
  1822. "source": {
  1823. "type": "git",
  1824. "url": "https://github.com/zendframework/zend-cache.git",
  1825. "reference": "4983dff629956490c78b88adcc8ece4711d7d8a3"
  1826. },
  1827. "dist": {
  1828. "type": "zip",
  1829. "url": "https://api.github.com/repos/zendframework/zend-cache/zipball/4983dff629956490c78b88adcc8ece4711d7d8a3",
  1830. "reference": "4983dff629956490c78b88adcc8ece4711d7d8a3",
  1831. "shasum": ""
  1832. },
  1833. "require": {
  1834. "php": "^5.6 || ^7.0",
  1835. "psr/cache": "^1.0",
  1836. "psr/simple-cache": "^1.0",
  1837. "zendframework/zend-eventmanager": "^2.6.3 || ^3.2",
  1838. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  1839. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  1840. },
  1841. "provide": {
  1842. "psr/cache-implementation": "1.0",
  1843. "psr/simple-cache-implementation": "1.0"
  1844. },
  1845. "require-dev": {
  1846. "cache/integration-tests": "^0.16",
  1847. "phpbench/phpbench": "^0.13",
  1848. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  1849. "zendframework/zend-coding-standard": "~1.0.0",
  1850. "zendframework/zend-serializer": "^2.6",
  1851. "zendframework/zend-session": "^2.7.4"
  1852. },
  1853. "suggest": {
  1854. "ext-apc": "APC or compatible extension, to use the APC storage adapter",
  1855. "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter",
  1856. "ext-dba": "DBA, to use the DBA storage adapter",
  1857. "ext-memcache": "Memcache >= 2.0.0 to use the Memcache storage adapter",
  1858. "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter",
  1859. "ext-mongo": "Mongo, to use MongoDb storage adapter",
  1860. "ext-mongodb": "MongoDB, to use the ExtMongoDb storage adapter",
  1861. "ext-redis": "Redis, to use Redis storage adapter",
  1862. "ext-wincache": "WinCache, to use the WinCache storage adapter",
  1863. "ext-xcache": "XCache, to use the XCache storage adapter",
  1864. "mongodb/mongodb": "Required for use with the ext-mongodb adapter",
  1865. "mongofill/mongofill": "Alternative to ext-mongo - a pure PHP implementation designed as a drop in replacement",
  1866. "zendframework/zend-serializer": "Zend\\Serializer component",
  1867. "zendframework/zend-session": "Zend\\Session component"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "2.8.x-dev",
  1873. "dev-develop": "2.9.x-dev"
  1874. },
  1875. "zf": {
  1876. "component": "Zend\\Cache",
  1877. "config-provider": "Zend\\Cache\\ConfigProvider"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "files": [
  1882. "autoload/patternPluginManagerPolyfill.php"
  1883. ],
  1884. "psr-4": {
  1885. "Zend\\Cache\\": "src/"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "BSD-3-Clause"
  1891. ],
  1892. "description": "Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output",
  1893. "keywords": [
  1894. "ZendFramework",
  1895. "cache",
  1896. "psr-16",
  1897. "psr-6",
  1898. "zf"
  1899. ],
  1900. "time": "2018-05-01T21:58:00+00:00"
  1901. },
  1902. {
  1903. "name": "zendframework/zend-coding-standard",
  1904. "version": "1.0.0",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/zendframework/zend-coding-standard.git",
  1908. "reference": "893316d2904e93f1c74c1384b6d7d57778299cb6"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/zendframework/zend-coding-standard/zipball/893316d2904e93f1c74c1384b6d7d57778299cb6",
  1913. "reference": "893316d2904e93f1c74c1384b6d7d57778299cb6",
  1914. "shasum": ""
  1915. },
  1916. "require": {
  1917. "squizlabs/php_codesniffer": "^2.7"
  1918. },
  1919. "type": "library",
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "BSD-3-Clause"
  1923. ],
  1924. "description": "Zend Framework coding standard",
  1925. "keywords": [
  1926. "Coding Standard",
  1927. "zf"
  1928. ],
  1929. "time": "2016-11-09T21:30:43+00:00"
  1930. },
  1931. {
  1932. "name": "zendframework/zend-config",
  1933. "version": "2.6.0",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/zendframework/zend-config.git",
  1937. "reference": "2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/zendframework/zend-config/zipball/2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d",
  1942. "reference": "2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "php": "^5.5 || ^7.0",
  1947. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  1948. },
  1949. "require-dev": {
  1950. "fabpot/php-cs-fixer": "1.7.*",
  1951. "phpunit/phpunit": "~4.0",
  1952. "zendframework/zend-filter": "^2.6",
  1953. "zendframework/zend-i18n": "^2.5",
  1954. "zendframework/zend-json": "^2.6.1",
  1955. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  1956. },
  1957. "suggest": {
  1958. "zendframework/zend-filter": "Zend\\Filter component",
  1959. "zendframework/zend-i18n": "Zend\\I18n component",
  1960. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  1961. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  1962. },
  1963. "type": "library",
  1964. "extra": {
  1965. "branch-alias": {
  1966. "dev-master": "2.6-dev",
  1967. "dev-develop": "2.7-dev"
  1968. }
  1969. },
  1970. "autoload": {
  1971. "psr-4": {
  1972. "Zend\\Config\\": "src/"
  1973. }
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "BSD-3-Clause"
  1978. ],
  1979. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  1980. "homepage": "https://github.com/zendframework/zend-config",
  1981. "keywords": [
  1982. "config",
  1983. "zf2"
  1984. ],
  1985. "time": "2016-02-04T23:01:10+00:00"
  1986. },
  1987. {
  1988. "name": "zendframework/zend-db",
  1989. "version": "2.9.3",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/zendframework/zend-db.git",
  1993. "reference": "5b4f2c42f94c9f7f4b2f456a0ebe459fab12b3d9"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/zendframework/zend-db/zipball/5b4f2c42f94c9f7f4b2f456a0ebe459fab12b3d9",
  1998. "reference": "5b4f2c42f94c9f7f4b2f456a0ebe459fab12b3d9",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "php": "^5.6 || ^7.0",
  2003. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2004. },
  2005. "require-dev": {
  2006. "phpunit/phpunit": "^5.7.25 || ^6.4.4",
  2007. "zendframework/zend-coding-standard": "~1.0.0",
  2008. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  2009. "zendframework/zend-hydrator": "^1.1 || ^2.1",
  2010. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  2011. },
  2012. "suggest": {
  2013. "zendframework/zend-eventmanager": "Zend\\EventManager component",
  2014. "zendframework/zend-hydrator": "Zend\\Hydrator component for using HydratingResultSets",
  2015. "zendframework/zend-servicemanager": "Zend\\ServiceManager component"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "branch-alias": {
  2020. "dev-master": "2.9-dev",
  2021. "dev-develop": "2.10-dev"
  2022. },
  2023. "zf": {
  2024. "component": "Zend\\Db",
  2025. "config-provider": "Zend\\Db\\ConfigProvider"
  2026. }
  2027. },
  2028. "autoload": {
  2029. "psr-4": {
  2030. "Zend\\Db\\": "src/"
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "BSD-3-Clause"
  2036. ],
  2037. "description": "Database abstraction layer, SQL abstraction, result set abstraction, and RowDataGateway and TableDataGateway implementations",
  2038. "keywords": [
  2039. "ZendFramework",
  2040. "db",
  2041. "zf"
  2042. ],
  2043. "time": "2018-04-09T13:21:36+00:00"
  2044. },
  2045. {
  2046. "name": "zendframework/zend-escaper",
  2047. "version": "2.6.0",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/zendframework/zend-escaper.git",
  2051. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  2056. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "php": "^5.6 || ^7.0"
  2061. },
  2062. "require-dev": {
  2063. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2064. "zendframework/zend-coding-standard": "~1.0.0"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "2.6.x-dev",
  2070. "dev-develop": "2.7.x-dev"
  2071. }
  2072. },
  2073. "autoload": {
  2074. "psr-4": {
  2075. "Zend\\Escaper\\": "src/"
  2076. }
  2077. },
  2078. "notification-url": "https://packagist.org/downloads/",
  2079. "license": [
  2080. "BSD-3-Clause"
  2081. ],
  2082. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  2083. "keywords": [
  2084. "ZendFramework",
  2085. "escaper",
  2086. "zf"
  2087. ],
  2088. "time": "2018-04-25T15:48:53+00:00"
  2089. },
  2090. {
  2091. "name": "zendframework/zend-eventmanager",
  2092. "version": "3.2.1",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://github.com/zendframework/zend-eventmanager.git",
  2096. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  2097. },
  2098. "dist": {
  2099. "type": "zip",
  2100. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  2101. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  2102. "shasum": ""
  2103. },
  2104. "require": {
  2105. "php": "^5.6 || ^7.0"
  2106. },
  2107. "require-dev": {
  2108. "athletic/athletic": "^0.1",
  2109. "container-interop/container-interop": "^1.1.0",
  2110. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2111. "zendframework/zend-coding-standard": "~1.0.0",
  2112. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  2113. },
  2114. "suggest": {
  2115. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  2116. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2117. },
  2118. "type": "library",
  2119. "extra": {
  2120. "branch-alias": {
  2121. "dev-master": "3.2-dev",
  2122. "dev-develop": "3.3-dev"
  2123. }
  2124. },
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Zend\\EventManager\\": "src/"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "BSD-3-Clause"
  2133. ],
  2134. "description": "Trigger and listen to events within a PHP application",
  2135. "homepage": "https://github.com/zendframework/zend-eventmanager",
  2136. "keywords": [
  2137. "event",
  2138. "eventmanager",
  2139. "events",
  2140. "zf2"
  2141. ],
  2142. "time": "2018-04-25T15:33:34+00:00"
  2143. },
  2144. {
  2145. "name": "zendframework/zend-filter",
  2146. "version": "2.9.0",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/zendframework/zend-filter.git",
  2150. "reference": "875da9790e5cb16b9a12f41453d5f7c441452daf"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/zendframework/zend-filter/zipball/875da9790e5cb16b9a12f41453d5f7c441452daf",
  2155. "reference": "875da9790e5cb16b9a12f41453d5f7c441452daf",
  2156. "shasum": ""
  2157. },
  2158. "require": {
  2159. "php": "^5.6 || ^7.0",
  2160. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  2161. },
  2162. "conflict": {
  2163. "zendframework/zend-validator": "<2.10.1"
  2164. },
  2165. "require-dev": {
  2166. "pear/archive_tar": "^1.4.3",
  2167. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  2168. "psr/http-factory": "^1.0",
  2169. "zendframework/zend-coding-standard": "~1.0.0",
  2170. "zendframework/zend-crypt": "^3.2.1",
  2171. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  2172. "zendframework/zend-uri": "^2.6"
  2173. },
  2174. "suggest": {
  2175. "psr/http-factory-implementation": "psr/http-factory-implementation, for creating file upload instances when consuming PSR-7 in file upload filters",
  2176. "zendframework/zend-crypt": "Zend\\Crypt component, for encryption filters",
  2177. "zendframework/zend-i18n": "Zend\\I18n component for filters depending on i18n functionality",
  2178. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for using the filter chain functionality",
  2179. "zendframework/zend-uri": "Zend\\Uri component, for the UriNormalize filter"
  2180. },
  2181. "type": "library",
  2182. "extra": {
  2183. "branch-alias": {
  2184. "dev-master": "2.9.x-dev",
  2185. "dev-develop": "2.10.x-dev"
  2186. },
  2187. "zf": {
  2188. "component": "Zend\\Filter",
  2189. "config-provider": "Zend\\Filter\\ConfigProvider"
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Zend\\Filter\\": "src/"
  2195. }
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "BSD-3-Clause"
  2200. ],
  2201. "description": "provides a set of commonly needed data filters",
  2202. "keywords": [
  2203. "ZendFramework",
  2204. "filter",
  2205. "zf"
  2206. ],
  2207. "time": "2018-12-12T23:14:25+00:00"
  2208. },
  2209. {
  2210. "name": "zendframework/zend-http",
  2211. "version": "2.8.2",
  2212. "source": {
  2213. "type": "git",
  2214. "url": "https://github.com/zendframework/zend-http.git",
  2215. "reference": "2c8aed3d25522618573194e7cc51351f8cd4a45b"
  2216. },
  2217. "dist": {
  2218. "type": "zip",
  2219. "url": "https://api.github.com/repos/zendframework/zend-http/zipball/2c8aed3d25522618573194e7cc51351f8cd4a45b",
  2220. "reference": "2c8aed3d25522618573194e7cc51351f8cd4a45b",
  2221. "shasum": ""
  2222. },
  2223. "require": {
  2224. "php": "^5.6 || ^7.0",
  2225. "zendframework/zend-loader": "^2.5.1",
  2226. "zendframework/zend-stdlib": "^3.1 || ^2.7.7",
  2227. "zendframework/zend-uri": "^2.5.2",
  2228. "zendframework/zend-validator": "^2.10.1"
  2229. },
  2230. "require-dev": {
  2231. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.3",
  2232. "zendframework/zend-coding-standard": "~1.0.0",
  2233. "zendframework/zend-config": "^3.1 || ^2.6"
  2234. },
  2235. "suggest": {
  2236. "paragonie/certainty": "For automated management of cacert.pem"
  2237. },
  2238. "type": "library",
  2239. "extra": {
  2240. "branch-alias": {
  2241. "dev-master": "2.8.x-dev",
  2242. "dev-develop": "2.9.x-dev"
  2243. }
  2244. },
  2245. "autoload": {
  2246. "psr-4": {
  2247. "Zend\\Http\\": "src/"
  2248. }
  2249. },
  2250. "notification-url": "https://packagist.org/downloads/",
  2251. "license": [
  2252. "BSD-3-Clause"
  2253. ],
  2254. "description": "Provides an easy interface for performing Hyper-Text Transfer Protocol (HTTP) requests",
  2255. "keywords": [
  2256. "ZendFramework",
  2257. "http",
  2258. "http client",
  2259. "zend",
  2260. "zf"
  2261. ],
  2262. "time": "2018-08-13T18:47:03+00:00"
  2263. },
  2264. {
  2265. "name": "zendframework/zend-i18n",
  2266. "version": "2.9.0",
  2267. "source": {
  2268. "type": "git",
  2269. "url": "https://github.com/zendframework/zend-i18n.git",
  2270. "reference": "6d69af5a04e1a4de7250043cb1322f077a0cdb7f"
  2271. },
  2272. "dist": {
  2273. "type": "zip",
  2274. "url": "https://api.github.com/repos/zendframework/zend-i18n/zipball/6d69af5a04e1a4de7250043cb1322f077a0cdb7f",
  2275. "reference": "6d69af5a04e1a4de7250043cb1322f077a0cdb7f",
  2276. "shasum": ""
  2277. },
  2278. "require": {
  2279. "php": "^5.6 || ^7.0",
  2280. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2281. },
  2282. "require-dev": {
  2283. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2284. "zendframework/zend-cache": "^2.6.1",
  2285. "zendframework/zend-coding-standard": "~1.0.0",
  2286. "zendframework/zend-config": "^2.6",
  2287. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  2288. "zendframework/zend-filter": "^2.6.1",
  2289. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  2290. "zendframework/zend-validator": "^2.6",
  2291. "zendframework/zend-view": "^2.6.3"
  2292. },
  2293. "suggest": {
  2294. "ext-intl": "Required for most features of Zend\\I18n; included in default builds of PHP",
  2295. "zendframework/zend-cache": "Zend\\Cache component",
  2296. "zendframework/zend-config": "Zend\\Config component",
  2297. "zendframework/zend-eventmanager": "You should install this package to use the events in the translator",
  2298. "zendframework/zend-filter": "You should install this package to use the provided filters",
  2299. "zendframework/zend-i18n-resources": "Translation resources",
  2300. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  2301. "zendframework/zend-validator": "You should install this package to use the provided validators",
  2302. "zendframework/zend-view": "You should install this package to use the provided view helpers"
  2303. },
  2304. "type": "library",
  2305. "extra": {
  2306. "branch-alias": {
  2307. "dev-master": "2.9.x-dev",
  2308. "dev-develop": "2.10.x-dev"
  2309. },
  2310. "zf": {
  2311. "component": "Zend\\I18n",
  2312. "config-provider": "Zend\\I18n\\ConfigProvider"
  2313. }
  2314. },
  2315. "autoload": {
  2316. "psr-4": {
  2317. "Zend\\I18n\\": "src/"
  2318. }
  2319. },
  2320. "notification-url": "https://packagist.org/downloads/",
  2321. "license": [
  2322. "BSD-3-Clause"
  2323. ],
  2324. "description": "Provide translations for your application, and filter and validate internationalized values",
  2325. "keywords": [
  2326. "ZendFramework",
  2327. "i18n",
  2328. "zf"
  2329. ],
  2330. "time": "2018-05-16T16:39:13+00:00"
  2331. },
  2332. {
  2333. "name": "zendframework/zend-loader",
  2334. "version": "2.6.0",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://github.com/zendframework/zend-loader.git",
  2338. "reference": "78f11749ea340f6ca316bca5958eef80b38f9b6c"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://api.github.com/repos/zendframework/zend-loader/zipball/78f11749ea340f6ca316bca5958eef80b38f9b6c",
  2343. "reference": "78f11749ea340f6ca316bca5958eef80b38f9b6c",
  2344. "shasum": ""
  2345. },
  2346. "require": {
  2347. "php": "^5.6 || ^7.0"
  2348. },
  2349. "require-dev": {
  2350. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  2351. "zendframework/zend-coding-standard": "~1.0.0"
  2352. },
  2353. "type": "library",
  2354. "extra": {
  2355. "branch-alias": {
  2356. "dev-master": "2.6.x-dev",
  2357. "dev-develop": "2.7.x-dev"
  2358. }
  2359. },
  2360. "autoload": {
  2361. "psr-4": {
  2362. "Zend\\Loader\\": "src/"
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "BSD-3-Clause"
  2368. ],
  2369. "description": "Autoloading and plugin loading strategies",
  2370. "keywords": [
  2371. "ZendFramework",
  2372. "loader",
  2373. "zf"
  2374. ],
  2375. "time": "2018-04-30T15:20:54+00:00"
  2376. },
  2377. {
  2378. "name": "zendframework/zend-math",
  2379. "version": "2.7.1",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/zendframework/zend-math.git",
  2383. "reference": "1abce074004dacac1a32cd54de94ad47ef960d38"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/zendframework/zend-math/zipball/1abce074004dacac1a32cd54de94ad47ef960d38",
  2388. "reference": "1abce074004dacac1a32cd54de94ad47ef960d38",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "php": "^5.5 || ^7.0"
  2393. },
  2394. "require-dev": {
  2395. "fabpot/php-cs-fixer": "1.7.*",
  2396. "ircmaxell/random-lib": "~1.1",
  2397. "phpunit/phpunit": "~4.0"
  2398. },
  2399. "suggest": {
  2400. "ext-bcmath": "If using the bcmath functionality",
  2401. "ext-gmp": "If using the gmp functionality",
  2402. "ircmaxell/random-lib": "Fallback random byte generator for Zend\\Math\\Rand if Mcrypt extensions is unavailable"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "2.7-dev",
  2408. "dev-develop": "2.8-dev"
  2409. }
  2410. },
  2411. "autoload": {
  2412. "psr-4": {
  2413. "Zend\\Math\\": "src/"
  2414. }
  2415. },
  2416. "notification-url": "https://packagist.org/downloads/",
  2417. "license": [
  2418. "BSD-3-Clause"
  2419. ],
  2420. "homepage": "https://github.com/zendframework/zend-math",
  2421. "keywords": [
  2422. "math",
  2423. "zf2"
  2424. ],
  2425. "time": "2018-12-04T15:34:17+00:00"
  2426. },
  2427. {
  2428. "name": "zendframework/zend-servicemanager",
  2429. "version": "3.3.2",
  2430. "source": {
  2431. "type": "git",
  2432. "url": "https://github.com/zendframework/zend-servicemanager.git",
  2433. "reference": "9f35a104b8d4d3b32da5f4a3b6efc0dd62e5af42"
  2434. },
  2435. "dist": {
  2436. "type": "zip",
  2437. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/9f35a104b8d4d3b32da5f4a3b6efc0dd62e5af42",
  2438. "reference": "9f35a104b8d4d3b32da5f4a3b6efc0dd62e5af42",
  2439. "shasum": ""
  2440. },
  2441. "require": {
  2442. "container-interop/container-interop": "^1.2",
  2443. "php": "^5.6 || ^7.0",
  2444. "psr/container": "^1.0",
  2445. "zendframework/zend-stdlib": "^3.1"
  2446. },
  2447. "provide": {
  2448. "container-interop/container-interop-implementation": "^1.2",
  2449. "psr/container-implementation": "^1.0"
  2450. },
  2451. "require-dev": {
  2452. "mikey179/vfsstream": "^1.6.5",
  2453. "ocramius/proxy-manager": "^1.0 || ^2.0",
  2454. "phpbench/phpbench": "^0.13.0",
  2455. "phpunit/phpunit": "^5.7.25 || ^6.4.4",
  2456. "zendframework/zend-coding-standard": "~1.0.0"
  2457. },
  2458. "suggest": {
  2459. "ocramius/proxy-manager": "ProxyManager 1.* to handle lazy initialization of services",
  2460. "zendframework/zend-stdlib": "zend-stdlib ^2.5 if you wish to use the MergeReplaceKey or MergeRemoveKey features in Config instances"
  2461. },
  2462. "bin": [
  2463. "bin/generate-deps-for-config-factory",
  2464. "bin/generate-factory-for-class"
  2465. ],
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "3.3-dev",
  2470. "dev-develop": "4.0-dev"
  2471. }
  2472. },
  2473. "autoload": {
  2474. "psr-4": {
  2475. "Zend\\ServiceManager\\": "src/"
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "BSD-3-Clause"
  2481. ],
  2482. "description": "Factory-Driven Dependency Injection Container",
  2483. "keywords": [
  2484. "PSR-11",
  2485. "ZendFramework",
  2486. "dependency-injection",
  2487. "di",
  2488. "dic",
  2489. "service-manager",
  2490. "servicemanager",
  2491. "zf"
  2492. ],
  2493. "time": "2018-01-29T16:48:37+00:00"
  2494. },
  2495. {
  2496. "name": "zendframework/zend-session",
  2497. "version": "2.8.5",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/zendframework/zend-session.git",
  2501. "reference": "2cfd90e1a2f6b066b9f908599251d8f64f07021b"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/zendframework/zend-session/zipball/2cfd90e1a2f6b066b9f908599251d8f64f07021b",
  2506. "reference": "2cfd90e1a2f6b066b9f908599251d8f64f07021b",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "php": "^5.6 || ^7.0",
  2511. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  2512. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2513. },
  2514. "require-dev": {
  2515. "container-interop/container-interop": "^1.1",
  2516. "mongodb/mongodb": "^1.0.1",
  2517. "php-mock/php-mock-phpunit": "^1.1.2 || ^2.0",
  2518. "phpunit/phpunit": "^5.7.5 || >=6.0.13 <6.5.0",
  2519. "zendframework/zend-cache": "^2.6.1",
  2520. "zendframework/zend-coding-standard": "~1.0.0",
  2521. "zendframework/zend-db": "^2.7",
  2522. "zendframework/zend-http": "^2.5.4",
  2523. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  2524. "zendframework/zend-validator": "^2.6"
  2525. },
  2526. "suggest": {
  2527. "mongodb/mongodb": "If you want to use the MongoDB session save handler",
  2528. "zendframework/zend-cache": "Zend\\Cache component",
  2529. "zendframework/zend-db": "Zend\\Db component",
  2530. "zendframework/zend-http": "Zend\\Http component",
  2531. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  2532. "zendframework/zend-validator": "Zend\\Validator component"
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-master": "2.8-dev",
  2538. "dev-develop": "2.9-dev"
  2539. },
  2540. "zf": {
  2541. "component": "Zend\\Session",
  2542. "config-provider": "Zend\\Session\\ConfigProvider"
  2543. }
  2544. },
  2545. "autoload": {
  2546. "psr-4": {
  2547. "Zend\\Session\\": "src/"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "BSD-3-Clause"
  2553. ],
  2554. "description": "manage and preserve session data, a logical complement of cookie data, across multiple page requests by the same client",
  2555. "keywords": [
  2556. "ZendFramework",
  2557. "session",
  2558. "zf"
  2559. ],
  2560. "time": "2018-02-22T16:33:54+00:00"
  2561. },
  2562. {
  2563. "name": "zendframework/zend-uri",
  2564. "version": "2.6.1",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/zendframework/zend-uri.git",
  2568. "reference": "3b6463645c6766f78ce537c70cb4fdabee1e725f"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/3b6463645c6766f78ce537c70cb4fdabee1e725f",
  2573. "reference": "3b6463645c6766f78ce537c70cb4fdabee1e725f",
  2574. "shasum": ""
  2575. },
  2576. "require": {
  2577. "php": "^5.6 || ^7.0",
  2578. "zendframework/zend-escaper": "^2.5",
  2579. "zendframework/zend-validator": "^2.10"
  2580. },
  2581. "require-dev": {
  2582. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  2583. "zendframework/zend-coding-standard": "~1.0.0"
  2584. },
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-master": "2.6.x-dev",
  2589. "dev-develop": "2.7.x-dev"
  2590. }
  2591. },
  2592. "autoload": {
  2593. "psr-4": {
  2594. "Zend\\Uri\\": "src/"
  2595. }
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "BSD-3-Clause"
  2600. ],
  2601. "description": "A component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  2602. "keywords": [
  2603. "ZendFramework",
  2604. "uri",
  2605. "zf"
  2606. ],
  2607. "time": "2018-04-30T13:40:08+00:00"
  2608. }
  2609. ],
  2610. "aliases": [],
  2611. "minimum-stability": "dev",
  2612. "stability-flags": [],
  2613. "prefer-stable": true,
  2614. "prefer-lowest": false,
  2615. "platform": {
  2616. "php": "^5.6 || ^7.0"
  2617. },
  2618. "platform-dev": []
  2619. }