composer.lock 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058
  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. "hash": "fb6804c37bed8acdfd446dc61ca8f2bf",
  8. "content-hash": "d97ae83e8d2de733853279035ff12311",
  9. "packages": [
  10. {
  11. "name": "bower-asset/inputmask",
  12. "version": "3.3.11",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/RobinHerbots/Inputmask.git",
  16. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  21. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "bower-asset/jquery": ">=1.7"
  26. },
  27. "type": "bower-asset-library",
  28. "extra": {
  29. "bower-asset-main": [
  30. "./dist/inputmask/inputmask.js",
  31. "./dist/inputmask/inputmask.extensions.js",
  32. "./dist/inputmask/inputmask.date.extensions.js",
  33. "./dist/inputmask/inputmask.numeric.extensions.js",
  34. "./dist/inputmask/inputmask.phone.extensions.js",
  35. "./dist/inputmask/jquery.inputmask.js",
  36. "./dist/inputmask/global/document.js",
  37. "./dist/inputmask/global/window.js",
  38. "./dist/inputmask/phone-codes/phone.js",
  39. "./dist/inputmask/phone-codes/phone-be.js",
  40. "./dist/inputmask/phone-codes/phone-nl.js",
  41. "./dist/inputmask/phone-codes/phone-ru.js",
  42. "./dist/inputmask/phone-codes/phone-uk.js",
  43. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
  44. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
  45. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
  46. "./dist/inputmask/bindings/inputmask.binding.js"
  47. ],
  48. "bower-asset-ignore": [
  49. "**/*",
  50. "!dist/*",
  51. "!dist/inputmask/*",
  52. "!dist/min/*",
  53. "!dist/min/inputmask/*"
  54. ]
  55. },
  56. "license": [
  57. "http://opensource.org/licenses/mit-license.php"
  58. ],
  59. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  60. "keywords": [
  61. "form",
  62. "input",
  63. "inputmask",
  64. "jquery",
  65. "mask",
  66. "plugins"
  67. ],
  68. "time": "2017-11-21 11:46:23"
  69. },
  70. {
  71. "name": "bower-asset/jquery",
  72. "version": "3.2.1",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/jquery/jquery-dist.git",
  76. "reference": "77d2a51d0520d2ee44173afdf4e40a9201f5964e"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/77d2a51d0520d2ee44173afdf4e40a9201f5964e",
  81. "reference": "77d2a51d0520d2ee44173afdf4e40a9201f5964e",
  82. "shasum": ""
  83. },
  84. "type": "bower-asset-library",
  85. "extra": {
  86. "bower-asset-main": "dist/jquery.js",
  87. "bower-asset-ignore": [
  88. "package.json"
  89. ]
  90. },
  91. "license": [
  92. "MIT"
  93. ],
  94. "keywords": [
  95. "browser",
  96. "javascript",
  97. "jquery",
  98. "library"
  99. ],
  100. "time": "2017-03-20 19:02:00"
  101. },
  102. {
  103. "name": "bower-asset/punycode",
  104. "version": "v1.3.2",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/bestiejs/punycode.js.git",
  108. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  113. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  114. "shasum": ""
  115. },
  116. "type": "bower-asset-library",
  117. "extra": {
  118. "bower-asset-main": "punycode.js",
  119. "bower-asset-ignore": [
  120. "coverage",
  121. "tests",
  122. ".*",
  123. "component.json",
  124. "Gruntfile.js",
  125. "node_modules",
  126. "package.json"
  127. ]
  128. },
  129. "time": "2014-10-22 12:02:42"
  130. },
  131. {
  132. "name": "bower-asset/yii2-pjax",
  133. "version": "2.0.7.1",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/yiisoft/jquery-pjax.git",
  137. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  142. "reference": "aef7b953107264f00234902a3880eb50dafc48be",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "bower-asset/jquery": ">=1.8"
  147. },
  148. "type": "bower-asset-library",
  149. "extra": {
  150. "bower-asset-main": "./jquery.pjax.js",
  151. "bower-asset-ignore": [
  152. ".travis.yml",
  153. "Gemfile",
  154. "Gemfile.lock",
  155. "CONTRIBUTING.md",
  156. "vendor/",
  157. "script/",
  158. "test/"
  159. ]
  160. },
  161. "license": [
  162. "MIT"
  163. ],
  164. "time": "2017-10-12 10:11:14"
  165. },
  166. {
  167. "name": "cebe/markdown",
  168. "version": "1.1.2",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/cebe/markdown.git",
  172. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/cebe/markdown/zipball/25b28bae8a6f185b5030673af77b32e1163d5c6e",
  177. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "lib-pcre": "*",
  182. "php": ">=5.4.0"
  183. },
  184. "require-dev": {
  185. "cebe/indent": "*",
  186. "facebook/xhprof": "*@dev",
  187. "phpunit/phpunit": "4.1.*"
  188. },
  189. "bin": [
  190. "bin/markdown"
  191. ],
  192. "type": "library",
  193. "extra": {
  194. "branch-alias": {
  195. "dev-master": "1.1.x-dev"
  196. }
  197. },
  198. "autoload": {
  199. "psr-4": {
  200. "cebe\\markdown\\": ""
  201. }
  202. },
  203. "notification-url": "https://packagist.org/downloads/",
  204. "license": [
  205. "MIT"
  206. ],
  207. "authors": [
  208. {
  209. "name": "Carsten Brandt",
  210. "email": "mail@cebe.cc",
  211. "homepage": "http://cebe.cc/",
  212. "role": "Creator"
  213. }
  214. ],
  215. "description": "A super fast, highly extensible markdown parser for PHP",
  216. "homepage": "https://github.com/cebe/markdown#readme",
  217. "keywords": [
  218. "extensible",
  219. "fast",
  220. "gfm",
  221. "markdown",
  222. "markdown-extra"
  223. ],
  224. "time": "2017-07-16 21:13:23"
  225. },
  226. {
  227. "name": "doctrine/annotations",
  228. "version": "v1.6.1",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/doctrine/annotations.git",
  232. "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/doctrine/annotations/zipball/53120e0eb10355388d6ccbe462f1fea34ddadb24",
  237. "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "doctrine/lexer": "1.*",
  242. "php": "^7.1"
  243. },
  244. "require-dev": {
  245. "doctrine/cache": "1.*",
  246. "phpunit/phpunit": "^6.4"
  247. },
  248. "type": "library",
  249. "extra": {
  250. "branch-alias": {
  251. "dev-master": "1.6.x-dev"
  252. }
  253. },
  254. "autoload": {
  255. "psr-4": {
  256. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  257. }
  258. },
  259. "notification-url": "https://packagist.org/downloads/",
  260. "license": [
  261. "MIT"
  262. ],
  263. "authors": [
  264. {
  265. "name": "Roman Borschel",
  266. "email": "roman@code-factory.org"
  267. },
  268. {
  269. "name": "Benjamin Eberlei",
  270. "email": "kontakt@beberlei.de"
  271. },
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Jonathan Wage",
  278. "email": "jonwage@gmail.com"
  279. },
  280. {
  281. "name": "Johannes Schmitt",
  282. "email": "schmittjoh@gmail.com"
  283. }
  284. ],
  285. "description": "Docblock Annotations Parser",
  286. "homepage": "http://www.doctrine-project.org",
  287. "keywords": [
  288. "annotations",
  289. "docblock",
  290. "parser"
  291. ],
  292. "time": "2019-03-25 19:12:02"
  293. },
  294. {
  295. "name": "doctrine/cache",
  296. "version": "v1.8.0",
  297. "source": {
  298. "type": "git",
  299. "url": "https://github.com/doctrine/cache.git",
  300. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  301. },
  302. "dist": {
  303. "type": "zip",
  304. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  305. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  306. "shasum": ""
  307. },
  308. "require": {
  309. "php": "~7.1"
  310. },
  311. "conflict": {
  312. "doctrine/common": ">2.2,<2.4"
  313. },
  314. "require-dev": {
  315. "alcaeus/mongo-php-adapter": "^1.1",
  316. "doctrine/coding-standard": "^4.0",
  317. "mongodb/mongodb": "^1.1",
  318. "phpunit/phpunit": "^7.0",
  319. "predis/predis": "~1.0"
  320. },
  321. "suggest": {
  322. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  323. },
  324. "type": "library",
  325. "extra": {
  326. "branch-alias": {
  327. "dev-master": "1.8.x-dev"
  328. }
  329. },
  330. "autoload": {
  331. "psr-4": {
  332. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "Roman Borschel",
  342. "email": "roman@code-factory.org"
  343. },
  344. {
  345. "name": "Benjamin Eberlei",
  346. "email": "kontakt@beberlei.de"
  347. },
  348. {
  349. "name": "Guilherme Blanco",
  350. "email": "guilhermeblanco@gmail.com"
  351. },
  352. {
  353. "name": "Jonathan Wage",
  354. "email": "jonwage@gmail.com"
  355. },
  356. {
  357. "name": "Johannes Schmitt",
  358. "email": "schmittjoh@gmail.com"
  359. }
  360. ],
  361. "description": "Caching library offering an object-oriented API for many cache backends",
  362. "homepage": "https://www.doctrine-project.org",
  363. "keywords": [
  364. "cache",
  365. "caching"
  366. ],
  367. "time": "2018-08-21 18:01:43"
  368. },
  369. {
  370. "name": "doctrine/collections",
  371. "version": "v1.6.2",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/doctrine/collections.git",
  375. "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/doctrine/collections/zipball/c5e0bc17b1620e97c968ac409acbff28b8b850be",
  380. "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "php": "^7.1.3"
  385. },
  386. "require-dev": {
  387. "doctrine/coding-standard": "^6.0",
  388. "phpstan/phpstan-shim": "^0.9.2",
  389. "phpunit/phpunit": "^7.0",
  390. "vimeo/psalm": "^3.2.2"
  391. },
  392. "type": "library",
  393. "extra": {
  394. "branch-alias": {
  395. "dev-master": "1.6.x-dev"
  396. }
  397. },
  398. "autoload": {
  399. "psr-4": {
  400. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Roman Borschel",
  410. "email": "roman@code-factory.org"
  411. },
  412. {
  413. "name": "Benjamin Eberlei",
  414. "email": "kontakt@beberlei.de"
  415. },
  416. {
  417. "name": "Guilherme Blanco",
  418. "email": "guilhermeblanco@gmail.com"
  419. },
  420. {
  421. "name": "Jonathan Wage",
  422. "email": "jonwage@gmail.com"
  423. },
  424. {
  425. "name": "Johannes Schmitt",
  426. "email": "schmittjoh@gmail.com"
  427. }
  428. ],
  429. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  430. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  431. "keywords": [
  432. "array",
  433. "collections",
  434. "iterators",
  435. "php"
  436. ],
  437. "time": "2019-06-09 13:48:14"
  438. },
  439. {
  440. "name": "doctrine/common",
  441. "version": "v2.10.0",
  442. "source": {
  443. "type": "git",
  444. "url": "https://github.com/doctrine/common.git",
  445. "reference": "30e33f60f64deec87df728c02b107f82cdafad9d"
  446. },
  447. "dist": {
  448. "type": "zip",
  449. "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d",
  450. "reference": "30e33f60f64deec87df728c02b107f82cdafad9d",
  451. "shasum": ""
  452. },
  453. "require": {
  454. "doctrine/annotations": "^1.0",
  455. "doctrine/cache": "^1.0",
  456. "doctrine/collections": "^1.0",
  457. "doctrine/event-manager": "^1.0",
  458. "doctrine/inflector": "^1.0",
  459. "doctrine/lexer": "^1.0",
  460. "doctrine/persistence": "^1.1",
  461. "doctrine/reflection": "^1.0",
  462. "php": "^7.1"
  463. },
  464. "require-dev": {
  465. "doctrine/coding-standard": "^1.0",
  466. "phpunit/phpunit": "^6.3",
  467. "squizlabs/php_codesniffer": "^3.0",
  468. "symfony/phpunit-bridge": "^4.0.5"
  469. },
  470. "type": "library",
  471. "extra": {
  472. "branch-alias": {
  473. "dev-master": "2.10.x-dev"
  474. }
  475. },
  476. "autoload": {
  477. "psr-4": {
  478. "Doctrine\\Common\\": "lib/Doctrine/Common"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Roman Borschel",
  488. "email": "roman@code-factory.org"
  489. },
  490. {
  491. "name": "Benjamin Eberlei",
  492. "email": "kontakt@beberlei.de"
  493. },
  494. {
  495. "name": "Guilherme Blanco",
  496. "email": "guilhermeblanco@gmail.com"
  497. },
  498. {
  499. "name": "Jonathan Wage",
  500. "email": "jonwage@gmail.com"
  501. },
  502. {
  503. "name": "Johannes Schmitt",
  504. "email": "schmittjoh@gmail.com"
  505. },
  506. {
  507. "name": "Marco Pivetta",
  508. "email": "ocramius@gmail.com"
  509. }
  510. ],
  511. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  512. "homepage": "https://www.doctrine-project.org/projects/common.html",
  513. "keywords": [
  514. "common",
  515. "doctrine",
  516. "php"
  517. ],
  518. "time": "2018-11-21 01:24:55"
  519. },
  520. {
  521. "name": "doctrine/dbal",
  522. "version": "v2.9.2",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/doctrine/dbal.git",
  526. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  531. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "doctrine/cache": "^1.0",
  536. "doctrine/event-manager": "^1.0",
  537. "ext-pdo": "*",
  538. "php": "^7.1"
  539. },
  540. "require-dev": {
  541. "doctrine/coding-standard": "^5.0",
  542. "jetbrains/phpstorm-stubs": "^2018.1.2",
  543. "phpstan/phpstan": "^0.10.1",
  544. "phpunit/phpunit": "^7.4",
  545. "symfony/console": "^2.0.5|^3.0|^4.0",
  546. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  547. },
  548. "suggest": {
  549. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  550. },
  551. "bin": [
  552. "bin/doctrine-dbal"
  553. ],
  554. "type": "library",
  555. "extra": {
  556. "branch-alias": {
  557. "dev-master": "2.9.x-dev",
  558. "dev-develop": "3.0.x-dev"
  559. }
  560. },
  561. "autoload": {
  562. "psr-4": {
  563. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Roman Borschel",
  573. "email": "roman@code-factory.org"
  574. },
  575. {
  576. "name": "Benjamin Eberlei",
  577. "email": "kontakt@beberlei.de"
  578. },
  579. {
  580. "name": "Guilherme Blanco",
  581. "email": "guilhermeblanco@gmail.com"
  582. },
  583. {
  584. "name": "Jonathan Wage",
  585. "email": "jonwage@gmail.com"
  586. }
  587. ],
  588. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  589. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  590. "keywords": [
  591. "abstraction",
  592. "database",
  593. "dbal",
  594. "mysql",
  595. "persistence",
  596. "pgsql",
  597. "php",
  598. "queryobject"
  599. ],
  600. "time": "2018-12-31 03:27:51"
  601. },
  602. {
  603. "name": "doctrine/event-manager",
  604. "version": "v1.0.0",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/doctrine/event-manager.git",
  608. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  613. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  614. "shasum": ""
  615. },
  616. "require": {
  617. "php": "^7.1"
  618. },
  619. "conflict": {
  620. "doctrine/common": "<2.9@dev"
  621. },
  622. "require-dev": {
  623. "doctrine/coding-standard": "^4.0",
  624. "phpunit/phpunit": "^7.0"
  625. },
  626. "type": "library",
  627. "extra": {
  628. "branch-alias": {
  629. "dev-master": "1.0.x-dev"
  630. }
  631. },
  632. "autoload": {
  633. "psr-4": {
  634. "Doctrine\\Common\\": "lib/Doctrine/Common"
  635. }
  636. },
  637. "notification-url": "https://packagist.org/downloads/",
  638. "license": [
  639. "MIT"
  640. ],
  641. "authors": [
  642. {
  643. "name": "Roman Borschel",
  644. "email": "roman@code-factory.org"
  645. },
  646. {
  647. "name": "Benjamin Eberlei",
  648. "email": "kontakt@beberlei.de"
  649. },
  650. {
  651. "name": "Guilherme Blanco",
  652. "email": "guilhermeblanco@gmail.com"
  653. },
  654. {
  655. "name": "Jonathan Wage",
  656. "email": "jonwage@gmail.com"
  657. },
  658. {
  659. "name": "Johannes Schmitt",
  660. "email": "schmittjoh@gmail.com"
  661. },
  662. {
  663. "name": "Marco Pivetta",
  664. "email": "ocramius@gmail.com"
  665. }
  666. ],
  667. "description": "Doctrine Event Manager component",
  668. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  669. "keywords": [
  670. "event",
  671. "eventdispatcher",
  672. "eventmanager"
  673. ],
  674. "time": "2018-06-11 11:59:03"
  675. },
  676. {
  677. "name": "doctrine/inflector",
  678. "version": "v1.3.0",
  679. "source": {
  680. "type": "git",
  681. "url": "https://github.com/doctrine/inflector.git",
  682. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  683. },
  684. "dist": {
  685. "type": "zip",
  686. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  687. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  688. "shasum": ""
  689. },
  690. "require": {
  691. "php": "^7.1"
  692. },
  693. "require-dev": {
  694. "phpunit/phpunit": "^6.2"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "branch-alias": {
  699. "dev-master": "1.3.x-dev"
  700. }
  701. },
  702. "autoload": {
  703. "psr-4": {
  704. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  705. }
  706. },
  707. "notification-url": "https://packagist.org/downloads/",
  708. "license": [
  709. "MIT"
  710. ],
  711. "authors": [
  712. {
  713. "name": "Roman Borschel",
  714. "email": "roman@code-factory.org"
  715. },
  716. {
  717. "name": "Benjamin Eberlei",
  718. "email": "kontakt@beberlei.de"
  719. },
  720. {
  721. "name": "Guilherme Blanco",
  722. "email": "guilhermeblanco@gmail.com"
  723. },
  724. {
  725. "name": "Jonathan Wage",
  726. "email": "jonwage@gmail.com"
  727. },
  728. {
  729. "name": "Johannes Schmitt",
  730. "email": "schmittjoh@gmail.com"
  731. }
  732. ],
  733. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  734. "homepage": "http://www.doctrine-project.org",
  735. "keywords": [
  736. "inflection",
  737. "pluralize",
  738. "singularize",
  739. "string"
  740. ],
  741. "time": "2018-01-09 20:05:19"
  742. },
  743. {
  744. "name": "doctrine/instantiator",
  745. "version": "1.2.0",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/doctrine/instantiator.git",
  749. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  754. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  755. "shasum": ""
  756. },
  757. "require": {
  758. "php": "^7.1"
  759. },
  760. "require-dev": {
  761. "doctrine/coding-standard": "^6.0",
  762. "ext-pdo": "*",
  763. "ext-phar": "*",
  764. "phpbench/phpbench": "^0.13",
  765. "phpstan/phpstan-phpunit": "^0.11",
  766. "phpstan/phpstan-shim": "^0.11",
  767. "phpunit/phpunit": "^7.0"
  768. },
  769. "type": "library",
  770. "extra": {
  771. "branch-alias": {
  772. "dev-master": "1.2.x-dev"
  773. }
  774. },
  775. "autoload": {
  776. "psr-4": {
  777. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Marco Pivetta",
  787. "email": "ocramius@gmail.com",
  788. "homepage": "http://ocramius.github.com/"
  789. }
  790. ],
  791. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  792. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  793. "keywords": [
  794. "constructor",
  795. "instantiate"
  796. ],
  797. "time": "2019-03-17 17:37:11"
  798. },
  799. {
  800. "name": "doctrine/lexer",
  801. "version": "1.0.2",
  802. "source": {
  803. "type": "git",
  804. "url": "https://github.com/doctrine/lexer.git",
  805. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  806. },
  807. "dist": {
  808. "type": "zip",
  809. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  810. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  811. "shasum": ""
  812. },
  813. "require": {
  814. "php": ">=5.3.2"
  815. },
  816. "require-dev": {
  817. "phpunit/phpunit": "^4.5"
  818. },
  819. "type": "library",
  820. "extra": {
  821. "branch-alias": {
  822. "dev-master": "1.0.x-dev"
  823. }
  824. },
  825. "autoload": {
  826. "psr-4": {
  827. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  828. }
  829. },
  830. "notification-url": "https://packagist.org/downloads/",
  831. "license": [
  832. "MIT"
  833. ],
  834. "authors": [
  835. {
  836. "name": "Roman Borschel",
  837. "email": "roman@code-factory.org"
  838. },
  839. {
  840. "name": "Guilherme Blanco",
  841. "email": "guilhermeblanco@gmail.com"
  842. },
  843. {
  844. "name": "Johannes Schmitt",
  845. "email": "schmittjoh@gmail.com"
  846. }
  847. ],
  848. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  849. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  850. "keywords": [
  851. "annotations",
  852. "docblock",
  853. "lexer",
  854. "parser",
  855. "php"
  856. ],
  857. "time": "2019-06-08 11:03:04"
  858. },
  859. {
  860. "name": "doctrine/migrations",
  861. "version": "v1.8.1",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/doctrine/migrations.git",
  865. "reference": "215438c0eef3e5f9b7da7d09c6b90756071b43e6"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/doctrine/migrations/zipball/215438c0eef3e5f9b7da7d09c6b90756071b43e6",
  870. "reference": "215438c0eef3e5f9b7da7d09c6b90756071b43e6",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "doctrine/dbal": "~2.6",
  875. "ocramius/proxy-manager": "^1.0|^2.0",
  876. "php": "^7.1",
  877. "symfony/console": "~3.3|^4.0"
  878. },
  879. "require-dev": {
  880. "doctrine/coding-standard": "^1.0",
  881. "doctrine/orm": "~2.5",
  882. "jdorn/sql-formatter": "~1.1",
  883. "mikey179/vfsstream": "^1.6",
  884. "phpunit/phpunit": "~7.0",
  885. "squizlabs/php_codesniffer": "^3.0",
  886. "symfony/yaml": "~3.3|^4.0"
  887. },
  888. "suggest": {
  889. "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  890. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  891. },
  892. "bin": [
  893. "bin/doctrine-migrations"
  894. ],
  895. "type": "library",
  896. "extra": {
  897. "branch-alias": {
  898. "dev-master": "v1.8.x-dev"
  899. }
  900. },
  901. "autoload": {
  902. "psr-4": {
  903. "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations",
  904. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Benjamin Eberlei",
  914. "email": "kontakt@beberlei.de"
  915. },
  916. {
  917. "name": "Jonathan Wage",
  918. "email": "jonwage@gmail.com"
  919. },
  920. {
  921. "name": "Michael Simonson",
  922. "email": "contact@mikesimonson.com"
  923. }
  924. ],
  925. "description": "Database Schema migrations using Doctrine DBAL",
  926. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  927. "keywords": [
  928. "database",
  929. "migrations"
  930. ],
  931. "time": "2018-06-06 21:00:30"
  932. },
  933. {
  934. "name": "doctrine/orm",
  935. "version": "v2.6.3",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/doctrine/orm.git",
  939. "reference": "434820973cadf2da2d66e7184be370084cc32ca8"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/doctrine/orm/zipball/434820973cadf2da2d66e7184be370084cc32ca8",
  944. "reference": "434820973cadf2da2d66e7184be370084cc32ca8",
  945. "shasum": ""
  946. },
  947. "require": {
  948. "doctrine/annotations": "~1.5",
  949. "doctrine/cache": "~1.6",
  950. "doctrine/collections": "^1.4",
  951. "doctrine/common": "^2.7.1",
  952. "doctrine/dbal": "^2.6",
  953. "doctrine/instantiator": "~1.1",
  954. "ext-pdo": "*",
  955. "php": "^7.1",
  956. "symfony/console": "~3.0|~4.0"
  957. },
  958. "require-dev": {
  959. "doctrine/coding-standard": "^1.0",
  960. "phpunit/phpunit": "^6.5",
  961. "squizlabs/php_codesniffer": "^3.2",
  962. "symfony/yaml": "~3.4|~4.0"
  963. },
  964. "suggest": {
  965. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  966. },
  967. "bin": [
  968. "bin/doctrine"
  969. ],
  970. "type": "library",
  971. "extra": {
  972. "branch-alias": {
  973. "dev-master": "2.6.x-dev"
  974. }
  975. },
  976. "autoload": {
  977. "psr-4": {
  978. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Roman Borschel",
  988. "email": "roman@code-factory.org"
  989. },
  990. {
  991. "name": "Benjamin Eberlei",
  992. "email": "kontakt@beberlei.de"
  993. },
  994. {
  995. "name": "Guilherme Blanco",
  996. "email": "guilhermeblanco@gmail.com"
  997. },
  998. {
  999. "name": "Jonathan Wage",
  1000. "email": "jonwage@gmail.com"
  1001. },
  1002. {
  1003. "name": "Marco Pivetta",
  1004. "email": "ocramius@gmail.com"
  1005. }
  1006. ],
  1007. "description": "Object-Relational-Mapper for PHP",
  1008. "homepage": "http://www.doctrine-project.org",
  1009. "keywords": [
  1010. "database",
  1011. "orm"
  1012. ],
  1013. "time": "2018-11-20 23:46:46"
  1014. },
  1015. {
  1016. "name": "doctrine/persistence",
  1017. "version": "1.1.1",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/doctrine/persistence.git",
  1021. "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://api.github.com/repos/doctrine/persistence/zipball/3da7c9d125591ca83944f477e65ed3d7b4617c48",
  1026. "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48",
  1027. "shasum": ""
  1028. },
  1029. "require": {
  1030. "doctrine/annotations": "^1.0",
  1031. "doctrine/cache": "^1.0",
  1032. "doctrine/collections": "^1.0",
  1033. "doctrine/event-manager": "^1.0",
  1034. "doctrine/reflection": "^1.0",
  1035. "php": "^7.1"
  1036. },
  1037. "conflict": {
  1038. "doctrine/common": "<2.10@dev"
  1039. },
  1040. "require-dev": {
  1041. "doctrine/coding-standard": "^5.0",
  1042. "phpstan/phpstan": "^0.8",
  1043. "phpunit/phpunit": "^7.0"
  1044. },
  1045. "type": "library",
  1046. "extra": {
  1047. "branch-alias": {
  1048. "dev-master": "1.1.x-dev"
  1049. }
  1050. },
  1051. "autoload": {
  1052. "psr-4": {
  1053. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1054. }
  1055. },
  1056. "notification-url": "https://packagist.org/downloads/",
  1057. "license": [
  1058. "MIT"
  1059. ],
  1060. "authors": [
  1061. {
  1062. "name": "Roman Borschel",
  1063. "email": "roman@code-factory.org"
  1064. },
  1065. {
  1066. "name": "Benjamin Eberlei",
  1067. "email": "kontakt@beberlei.de"
  1068. },
  1069. {
  1070. "name": "Guilherme Blanco",
  1071. "email": "guilhermeblanco@gmail.com"
  1072. },
  1073. {
  1074. "name": "Jonathan Wage",
  1075. "email": "jonwage@gmail.com"
  1076. },
  1077. {
  1078. "name": "Johannes Schmitt",
  1079. "email": "schmittjoh@gmail.com"
  1080. },
  1081. {
  1082. "name": "Marco Pivetta",
  1083. "email": "ocramius@gmail.com"
  1084. }
  1085. ],
  1086. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1087. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1088. "keywords": [
  1089. "mapper",
  1090. "object",
  1091. "odm",
  1092. "orm",
  1093. "persistence"
  1094. ],
  1095. "time": "2019-04-23 08:28:24"
  1096. },
  1097. {
  1098. "name": "doctrine/reflection",
  1099. "version": "v1.0.0",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/doctrine/reflection.git",
  1103. "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
  1108. "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "doctrine/annotations": "^1.0",
  1113. "ext-tokenizer": "*",
  1114. "php": "^7.1"
  1115. },
  1116. "require-dev": {
  1117. "doctrine/coding-standard": "^4.0",
  1118. "doctrine/common": "^2.8",
  1119. "phpstan/phpstan": "^0.9.2",
  1120. "phpstan/phpstan-phpunit": "^0.9.4",
  1121. "phpunit/phpunit": "^7.0",
  1122. "squizlabs/php_codesniffer": "^3.0"
  1123. },
  1124. "type": "library",
  1125. "extra": {
  1126. "branch-alias": {
  1127. "dev-master": "1.0.x-dev"
  1128. }
  1129. },
  1130. "autoload": {
  1131. "psr-4": {
  1132. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Roman Borschel",
  1142. "email": "roman@code-factory.org"
  1143. },
  1144. {
  1145. "name": "Benjamin Eberlei",
  1146. "email": "kontakt@beberlei.de"
  1147. },
  1148. {
  1149. "name": "Guilherme Blanco",
  1150. "email": "guilhermeblanco@gmail.com"
  1151. },
  1152. {
  1153. "name": "Jonathan Wage",
  1154. "email": "jonwage@gmail.com"
  1155. },
  1156. {
  1157. "name": "Johannes Schmitt",
  1158. "email": "schmittjoh@gmail.com"
  1159. },
  1160. {
  1161. "name": "Marco Pivetta",
  1162. "email": "ocramius@gmail.com"
  1163. }
  1164. ],
  1165. "description": "Doctrine Reflection component",
  1166. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1167. "keywords": [
  1168. "reflection"
  1169. ],
  1170. "time": "2018-06-14 14:45:07"
  1171. },
  1172. {
  1173. "name": "ezyang/htmlpurifier",
  1174. "version": "v4.10.0",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/ezyang/htmlpurifier.git",
  1178. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1183. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1184. "shasum": ""
  1185. },
  1186. "require": {
  1187. "php": ">=5.2"
  1188. },
  1189. "require-dev": {
  1190. "simpletest/simpletest": "^1.1"
  1191. },
  1192. "type": "library",
  1193. "autoload": {
  1194. "psr-0": {
  1195. "HTMLPurifier": "library/"
  1196. },
  1197. "files": [
  1198. "library/HTMLPurifier.composer.php"
  1199. ]
  1200. },
  1201. "notification-url": "https://packagist.org/downloads/",
  1202. "license": [
  1203. "LGPL"
  1204. ],
  1205. "authors": [
  1206. {
  1207. "name": "Edward Z. Yang",
  1208. "email": "admin@htmlpurifier.org",
  1209. "homepage": "http://ezyang.com"
  1210. }
  1211. ],
  1212. "description": "Standards compliant HTML filter written in PHP",
  1213. "homepage": "http://htmlpurifier.org/",
  1214. "keywords": [
  1215. "html"
  1216. ],
  1217. "time": "2018-02-23 01:58:20"
  1218. },
  1219. {
  1220. "name": "infinitiweb/yii2-doctrine",
  1221. "version": "v0.0.1",
  1222. "source": {
  1223. "type": "git",
  1224. "url": "https://github.com/Infinitiweb/yii2-doctrine.git",
  1225. "reference": "fe40b3a8d05e15ff1476064c4bbcb40bf744d79d"
  1226. },
  1227. "dist": {
  1228. "type": "zip",
  1229. "url": "https://api.github.com/repos/Infinitiweb/yii2-doctrine/zipball/fe40b3a8d05e15ff1476064c4bbcb40bf744d79d",
  1230. "reference": "fe40b3a8d05e15ff1476064c4bbcb40bf744d79d",
  1231. "shasum": ""
  1232. },
  1233. "require": {
  1234. "doctrine/migrations": "^1.8",
  1235. "doctrine/orm": "^2.6",
  1236. "php": "^7.1",
  1237. "yiisoft/yii2": "2.0.15.1"
  1238. },
  1239. "type": "library",
  1240. "autoload": {
  1241. "psr-4": {
  1242. "Infinitiweb\\YiiDoctrine\\": "src"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "authors": [
  1250. {
  1251. "name": "Ramazan Kamilov",
  1252. "email": "ramazan@kamilov.ru"
  1253. }
  1254. ],
  1255. "description": "Yii doctrine component",
  1256. "time": "2018-10-04 13:50:13"
  1257. },
  1258. {
  1259. "name": "ocramius/package-versions",
  1260. "version": "1.4.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/Ocramius/PackageVersions.git",
  1264. "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
  1269. "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "composer-plugin-api": "^1.0.0",
  1274. "php": "^7.1.0"
  1275. },
  1276. "require-dev": {
  1277. "composer/composer": "^1.6.3",
  1278. "doctrine/coding-standard": "^5.0.1",
  1279. "ext-zip": "*",
  1280. "infection/infection": "^0.7.1",
  1281. "phpunit/phpunit": "^7.0.0"
  1282. },
  1283. "type": "composer-plugin",
  1284. "extra": {
  1285. "class": "PackageVersions\\Installer",
  1286. "branch-alias": {
  1287. "dev-master": "2.0.x-dev"
  1288. }
  1289. },
  1290. "autoload": {
  1291. "psr-4": {
  1292. "PackageVersions\\": "src/PackageVersions"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Marco Pivetta",
  1302. "email": "ocramius@gmail.com"
  1303. }
  1304. ],
  1305. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  1306. "time": "2019-02-21 12:16:21"
  1307. },
  1308. {
  1309. "name": "ocramius/proxy-manager",
  1310. "version": "2.2.2",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/Ocramius/ProxyManager.git",
  1314. "reference": "14b137b06b0f911944132df9d51e445a35920ab1"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/14b137b06b0f911944132df9d51e445a35920ab1",
  1319. "reference": "14b137b06b0f911944132df9d51e445a35920ab1",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "ocramius/package-versions": "^1.1.3",
  1324. "php": "^7.2.0",
  1325. "zendframework/zend-code": "^3.3.0"
  1326. },
  1327. "require-dev": {
  1328. "couscous/couscous": "^1.6.1",
  1329. "ext-phar": "*",
  1330. "humbug/humbug": "1.0.0-RC.0@RC",
  1331. "nikic/php-parser": "^3.1.1",
  1332. "padraic/phpunit-accelerator": "dev-master@DEV",
  1333. "phpbench/phpbench": "^0.12.2",
  1334. "phpstan/phpstan": "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999",
  1335. "phpstan/phpstan-phpunit": "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761",
  1336. "phpunit/phpunit": "^6.4.3",
  1337. "squizlabs/php_codesniffer": "^2.9.1"
  1338. },
  1339. "suggest": {
  1340. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
  1341. "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
  1342. "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
  1343. "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
  1344. },
  1345. "type": "library",
  1346. "extra": {
  1347. "branch-alias": {
  1348. "dev-master": "3.0.x-dev"
  1349. }
  1350. },
  1351. "autoload": {
  1352. "psr-0": {
  1353. "ProxyManager\\": "src"
  1354. }
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "authors": [
  1361. {
  1362. "name": "Marco Pivetta",
  1363. "email": "ocramius@gmail.com",
  1364. "homepage": "http://ocramius.github.io/"
  1365. }
  1366. ],
  1367. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  1368. "homepage": "https://github.com/Ocramius/ProxyManager",
  1369. "keywords": [
  1370. "aop",
  1371. "lazy loading",
  1372. "proxy",
  1373. "proxy pattern",
  1374. "service proxies"
  1375. ],
  1376. "time": "2018-09-27 13:45:01"
  1377. },
  1378. {
  1379. "name": "psr/container",
  1380. "version": "1.0.0",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/php-fig/container.git",
  1384. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1389. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1390. "shasum": ""
  1391. },
  1392. "require": {
  1393. "php": ">=5.3.0"
  1394. },
  1395. "type": "library",
  1396. "extra": {
  1397. "branch-alias": {
  1398. "dev-master": "1.0.x-dev"
  1399. }
  1400. },
  1401. "autoload": {
  1402. "psr-4": {
  1403. "Psr\\Container\\": "src/"
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "authors": [
  1411. {
  1412. "name": "PHP-FIG",
  1413. "homepage": "http://www.php-fig.org/"
  1414. }
  1415. ],
  1416. "description": "Common Container Interface (PHP FIG PSR-11)",
  1417. "homepage": "https://github.com/php-fig/container",
  1418. "keywords": [
  1419. "PSR-11",
  1420. "container",
  1421. "container-interface",
  1422. "container-interop",
  1423. "psr"
  1424. ],
  1425. "time": "2017-02-14 16:28:37"
  1426. },
  1427. {
  1428. "name": "symfony/console",
  1429. "version": "v4.3.1",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/symfony/console.git",
  1433. "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/symfony/console/zipball/d50bbeeb0e17e6dd4124ea391eff235e932cbf64",
  1438. "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64",
  1439. "shasum": ""
  1440. },
  1441. "require": {
  1442. "php": "^7.1.3",
  1443. "symfony/polyfill-mbstring": "~1.0",
  1444. "symfony/polyfill-php73": "^1.8",
  1445. "symfony/service-contracts": "^1.1"
  1446. },
  1447. "conflict": {
  1448. "symfony/dependency-injection": "<3.4",
  1449. "symfony/event-dispatcher": "<4.3",
  1450. "symfony/process": "<3.3"
  1451. },
  1452. "provide": {
  1453. "psr/log-implementation": "1.0"
  1454. },
  1455. "require-dev": {
  1456. "psr/log": "~1.0",
  1457. "symfony/config": "~3.4|~4.0",
  1458. "symfony/dependency-injection": "~3.4|~4.0",
  1459. "symfony/event-dispatcher": "^4.3",
  1460. "symfony/lock": "~3.4|~4.0",
  1461. "symfony/process": "~3.4|~4.0",
  1462. "symfony/var-dumper": "^4.3"
  1463. },
  1464. "suggest": {
  1465. "psr/log": "For using the console logger",
  1466. "symfony/event-dispatcher": "",
  1467. "symfony/lock": "",
  1468. "symfony/process": ""
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "4.3-dev"
  1474. }
  1475. },
  1476. "autoload": {
  1477. "psr-4": {
  1478. "Symfony\\Component\\Console\\": ""
  1479. },
  1480. "exclude-from-classmap": [
  1481. "/Tests/"
  1482. ]
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Fabien Potencier",
  1491. "email": "fabien@symfony.com"
  1492. },
  1493. {
  1494. "name": "Symfony Community",
  1495. "homepage": "https://symfony.com/contributors"
  1496. }
  1497. ],
  1498. "description": "Symfony Console Component",
  1499. "homepage": "https://symfony.com",
  1500. "time": "2019-06-05 13:25:51"
  1501. },
  1502. {
  1503. "name": "symfony/polyfill-ctype",
  1504. "version": "v1.11.0",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/symfony/polyfill-ctype.git",
  1508. "reference": "82ebae02209c21113908c229e9883c419720738a"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  1513. "reference": "82ebae02209c21113908c229e9883c419720738a",
  1514. "shasum": ""
  1515. },
  1516. "require": {
  1517. "php": ">=5.3.3"
  1518. },
  1519. "suggest": {
  1520. "ext-ctype": "For best performance"
  1521. },
  1522. "type": "library",
  1523. "extra": {
  1524. "branch-alias": {
  1525. "dev-master": "1.11-dev"
  1526. }
  1527. },
  1528. "autoload": {
  1529. "psr-4": {
  1530. "Symfony\\Polyfill\\Ctype\\": ""
  1531. },
  1532. "files": [
  1533. "bootstrap.php"
  1534. ]
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Symfony Community",
  1543. "homepage": "https://symfony.com/contributors"
  1544. },
  1545. {
  1546. "name": "Gert de Pagter",
  1547. "email": "BackEndTea@gmail.com"
  1548. }
  1549. ],
  1550. "description": "Symfony polyfill for ctype functions",
  1551. "homepage": "https://symfony.com",
  1552. "keywords": [
  1553. "compatibility",
  1554. "ctype",
  1555. "polyfill",
  1556. "portable"
  1557. ],
  1558. "time": "2019-02-06 07:57:58"
  1559. },
  1560. {
  1561. "name": "symfony/polyfill-mbstring",
  1562. "version": "v1.11.0",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1566. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  1571. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": ">=5.3.3"
  1576. },
  1577. "suggest": {
  1578. "ext-mbstring": "For best performance"
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "branch-alias": {
  1583. "dev-master": "1.11-dev"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "psr-4": {
  1588. "Symfony\\Polyfill\\Mbstring\\": ""
  1589. },
  1590. "files": [
  1591. "bootstrap.php"
  1592. ]
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Nicolas Grekas",
  1601. "email": "p@tchwork.com"
  1602. },
  1603. {
  1604. "name": "Symfony Community",
  1605. "homepage": "https://symfony.com/contributors"
  1606. }
  1607. ],
  1608. "description": "Symfony polyfill for the Mbstring extension",
  1609. "homepage": "https://symfony.com",
  1610. "keywords": [
  1611. "compatibility",
  1612. "mbstring",
  1613. "polyfill",
  1614. "portable",
  1615. "shim"
  1616. ],
  1617. "time": "2019-02-06 07:57:58"
  1618. },
  1619. {
  1620. "name": "symfony/polyfill-php73",
  1621. "version": "v1.11.0",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/symfony/polyfill-php73.git",
  1625. "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/d1fb4abcc0c47be136208ad9d68bf59f1ee17abd",
  1630. "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "php": ">=5.3.3"
  1635. },
  1636. "type": "library",
  1637. "extra": {
  1638. "branch-alias": {
  1639. "dev-master": "1.11-dev"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "psr-4": {
  1644. "Symfony\\Polyfill\\Php73\\": ""
  1645. },
  1646. "files": [
  1647. "bootstrap.php"
  1648. ],
  1649. "classmap": [
  1650. "Resources/stubs"
  1651. ]
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Nicolas Grekas",
  1660. "email": "p@tchwork.com"
  1661. },
  1662. {
  1663. "name": "Symfony Community",
  1664. "homepage": "https://symfony.com/contributors"
  1665. }
  1666. ],
  1667. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  1668. "homepage": "https://symfony.com",
  1669. "keywords": [
  1670. "compatibility",
  1671. "polyfill",
  1672. "portable",
  1673. "shim"
  1674. ],
  1675. "time": "2019-02-06 07:57:58"
  1676. },
  1677. {
  1678. "name": "symfony/service-contracts",
  1679. "version": "v1.1.5",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/symfony/service-contracts.git",
  1683. "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d",
  1688. "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": "^7.1.3",
  1693. "psr/container": "^1.0"
  1694. },
  1695. "suggest": {
  1696. "symfony/service-implementation": ""
  1697. },
  1698. "type": "library",
  1699. "extra": {
  1700. "branch-alias": {
  1701. "dev-master": "1.1-dev"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Symfony\\Contracts\\Service\\": ""
  1707. }
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Nicolas Grekas",
  1716. "email": "p@tchwork.com"
  1717. },
  1718. {
  1719. "name": "Symfony Community",
  1720. "homepage": "https://symfony.com/contributors"
  1721. }
  1722. ],
  1723. "description": "Generic abstractions related to writing services",
  1724. "homepage": "https://symfony.com",
  1725. "keywords": [
  1726. "abstractions",
  1727. "contracts",
  1728. "decoupling",
  1729. "interfaces",
  1730. "interoperability",
  1731. "standards"
  1732. ],
  1733. "time": "2019-06-13 11:15:36"
  1734. },
  1735. {
  1736. "name": "symfony/yaml",
  1737. "version": "v2.8.50",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://github.com/symfony/yaml.git",
  1741. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  1746. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  1747. "shasum": ""
  1748. },
  1749. "require": {
  1750. "php": ">=5.3.9",
  1751. "symfony/polyfill-ctype": "~1.8"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "2.8-dev"
  1757. }
  1758. },
  1759. "autoload": {
  1760. "psr-4": {
  1761. "Symfony\\Component\\Yaml\\": ""
  1762. },
  1763. "exclude-from-classmap": [
  1764. "/Tests/"
  1765. ]
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Fabien Potencier",
  1774. "email": "fabien@symfony.com"
  1775. },
  1776. {
  1777. "name": "Symfony Community",
  1778. "homepage": "https://symfony.com/contributors"
  1779. }
  1780. ],
  1781. "description": "Symfony Yaml Component",
  1782. "homepage": "https://symfony.com",
  1783. "time": "2018-11-11 11:18:13"
  1784. },
  1785. {
  1786. "name": "yiisoft/yii2",
  1787. "version": "2.0.15.1",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/yiisoft/yii2-framework.git",
  1791. "reference": "ed3a9e1c4abe206e1c3ce48a6b3624119b79850d"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/ed3a9e1c4abe206e1c3ce48a6b3624119b79850d",
  1796. "reference": "ed3a9e1c4abe206e1c3ce48a6b3624119b79850d",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  1801. "bower-asset/jquery": "3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  1802. "bower-asset/punycode": "1.3.*",
  1803. "bower-asset/yii2-pjax": "~2.0.1",
  1804. "cebe/markdown": "~1.0.0 | ~1.1.0",
  1805. "ext-ctype": "*",
  1806. "ext-mbstring": "*",
  1807. "ezyang/htmlpurifier": "~4.6",
  1808. "lib-pcre": "*",
  1809. "php": ">=5.4.0",
  1810. "yiisoft/yii2-composer": "~2.0.4"
  1811. },
  1812. "bin": [
  1813. "yii"
  1814. ],
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "2.0.x-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "yii\\": ""
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "BSD-3-Clause"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Qiang Xue",
  1833. "email": "qiang.xue@gmail.com",
  1834. "homepage": "http://www.yiiframework.com/",
  1835. "role": "Founder and project lead"
  1836. },
  1837. {
  1838. "name": "Alexander Makarov",
  1839. "email": "sam@rmcreative.ru",
  1840. "homepage": "http://rmcreative.ru/",
  1841. "role": "Core framework development"
  1842. },
  1843. {
  1844. "name": "Maurizio Domba",
  1845. "homepage": "http://mdomba.info/",
  1846. "role": "Core framework development"
  1847. },
  1848. {
  1849. "name": "Carsten Brandt",
  1850. "email": "mail@cebe.cc",
  1851. "homepage": "http://cebe.cc/",
  1852. "role": "Core framework development"
  1853. },
  1854. {
  1855. "name": "Timur Ruziev",
  1856. "email": "resurtm@gmail.com",
  1857. "homepage": "http://resurtm.com/",
  1858. "role": "Core framework development"
  1859. },
  1860. {
  1861. "name": "Paul Klimov",
  1862. "email": "klimov.paul@gmail.com",
  1863. "role": "Core framework development"
  1864. },
  1865. {
  1866. "name": "Dmitry Naumenko",
  1867. "email": "d.naumenko.a@gmail.com",
  1868. "role": "Core framework development"
  1869. },
  1870. {
  1871. "name": "Boudewijn Vahrmeijer",
  1872. "email": "info@dynasource.eu",
  1873. "homepage": "http://dynasource.eu",
  1874. "role": "Core framework development"
  1875. }
  1876. ],
  1877. "description": "Yii PHP Framework Version 2",
  1878. "homepage": "http://www.yiiframework.com/",
  1879. "keywords": [
  1880. "framework",
  1881. "yii2"
  1882. ],
  1883. "time": "2018-03-21 18:36:53"
  1884. },
  1885. {
  1886. "name": "yiisoft/yii2-composer",
  1887. "version": "2.0.7",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/yiisoft/yii2-composer.git",
  1891. "reference": "1439e78be1218c492e6cde251ed87d3f128b9534"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/1439e78be1218c492e6cde251ed87d3f128b9534",
  1896. "reference": "1439e78be1218c492e6cde251ed87d3f128b9534",
  1897. "shasum": ""
  1898. },
  1899. "require": {
  1900. "composer-plugin-api": "^1.0"
  1901. },
  1902. "require-dev": {
  1903. "composer/composer": "^1.0"
  1904. },
  1905. "type": "composer-plugin",
  1906. "extra": {
  1907. "class": "yii\\composer\\Plugin",
  1908. "branch-alias": {
  1909. "dev-master": "2.0.x-dev"
  1910. }
  1911. },
  1912. "autoload": {
  1913. "psr-4": {
  1914. "yii\\composer\\": ""
  1915. }
  1916. },
  1917. "notification-url": "https://packagist.org/downloads/",
  1918. "license": [
  1919. "BSD-3-Clause"
  1920. ],
  1921. "authors": [
  1922. {
  1923. "name": "Qiang Xue",
  1924. "email": "qiang.xue@gmail.com"
  1925. },
  1926. {
  1927. "name": "Carsten Brandt",
  1928. "email": "mail@cebe.cc"
  1929. }
  1930. ],
  1931. "description": "The composer plugin for Yii extension installer",
  1932. "keywords": [
  1933. "composer",
  1934. "extension installer",
  1935. "yii2"
  1936. ],
  1937. "time": "2018-07-05 15:44:47"
  1938. },
  1939. {
  1940. "name": "zendframework/zend-code",
  1941. "version": "3.3.1",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/zendframework/zend-code.git",
  1945. "reference": "c21db169075c6ec4b342149f446e7b7b724f95eb"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/c21db169075c6ec4b342149f446e7b7b724f95eb",
  1950. "reference": "c21db169075c6ec4b342149f446e7b7b724f95eb",
  1951. "shasum": ""
  1952. },
  1953. "require": {
  1954. "php": "^7.1",
  1955. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  1956. },
  1957. "require-dev": {
  1958. "doctrine/annotations": "~1.0",
  1959. "ext-phar": "*",
  1960. "phpunit/phpunit": "^6.2.3",
  1961. "zendframework/zend-coding-standard": "^1.0.0",
  1962. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  1963. },
  1964. "suggest": {
  1965. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1966. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  1967. },
  1968. "type": "library",
  1969. "extra": {
  1970. "branch-alias": {
  1971. "dev-master": "3.3.x-dev",
  1972. "dev-develop": "3.4.x-dev"
  1973. }
  1974. },
  1975. "autoload": {
  1976. "psr-4": {
  1977. "Zend\\Code\\": "src/"
  1978. }
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "BSD-3-Clause"
  1983. ],
  1984. "description": "provides facilities to generate arbitrary code using an object oriented interface",
  1985. "homepage": "https://github.com/zendframework/zend-code",
  1986. "keywords": [
  1987. "code",
  1988. "zf2"
  1989. ],
  1990. "time": "2018-08-13 20:36:59"
  1991. },
  1992. {
  1993. "name": "zendframework/zend-eventmanager",
  1994. "version": "3.2.1",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/zendframework/zend-eventmanager.git",
  1998. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  2003. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  2004. "shasum": ""
  2005. },
  2006. "require": {
  2007. "php": "^5.6 || ^7.0"
  2008. },
  2009. "require-dev": {
  2010. "athletic/athletic": "^0.1",
  2011. "container-interop/container-interop": "^1.1.0",
  2012. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2013. "zendframework/zend-coding-standard": "~1.0.0",
  2014. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  2015. },
  2016. "suggest": {
  2017. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  2018. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "3.2-dev",
  2024. "dev-develop": "3.3-dev"
  2025. }
  2026. },
  2027. "autoload": {
  2028. "psr-4": {
  2029. "Zend\\EventManager\\": "src/"
  2030. }
  2031. },
  2032. "notification-url": "https://packagist.org/downloads/",
  2033. "license": [
  2034. "BSD-3-Clause"
  2035. ],
  2036. "description": "Trigger and listen to events within a PHP application",
  2037. "homepage": "https://github.com/zendframework/zend-eventmanager",
  2038. "keywords": [
  2039. "event",
  2040. "eventmanager",
  2041. "events",
  2042. "zf2"
  2043. ],
  2044. "time": "2018-04-25 15:33:34"
  2045. }
  2046. ],
  2047. "packages-dev": [],
  2048. "aliases": [],
  2049. "minimum-stability": "stable",
  2050. "stability-flags": [],
  2051. "prefer-stable": false,
  2052. "prefer-lowest": false,
  2053. "platform": {
  2054. "php": ">=5.4",
  2055. "ext-pdo_sqlite": "*"
  2056. },
  2057. "platform-dev": []
  2058. }