composer.lock 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "bec46eaaa9fa07a4cbd8c84302f0d275",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  20. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2017-12-20T14:37:45+00:00"
  60. },
  61. {
  62. "name": "composer/installers",
  63. "version": "v1.5.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/composer/installers.git",
  67. "reference": "049797d727261bf27f2690430d935067710049c2"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2",
  72. "reference": "049797d727261bf27f2690430d935067710049c2",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "composer-plugin-api": "^1.0"
  77. },
  78. "replace": {
  79. "roundcube/plugin-installer": "*",
  80. "shama/baton": "*"
  81. },
  82. "require-dev": {
  83. "composer/composer": "1.0.*@dev",
  84. "phpunit/phpunit": "^4.8.36"
  85. },
  86. "type": "composer-plugin",
  87. "extra": {
  88. "class": "Composer\\Installers\\Plugin",
  89. "branch-alias": {
  90. "dev-master": "1.0-dev"
  91. }
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "Composer\\Installers\\": "src/Composer/Installers"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Kyle Robinson Young",
  105. "email": "kyle@dontkry.com",
  106. "homepage": "https://github.com/shama"
  107. }
  108. ],
  109. "description": "A multi-framework Composer library installer",
  110. "homepage": "https://composer.github.io/installers/",
  111. "keywords": [
  112. "Craft",
  113. "Dolibarr",
  114. "Eliasis",
  115. "Hurad",
  116. "ImageCMS",
  117. "Kanboard",
  118. "Lan Management System",
  119. "MODX Evo",
  120. "Mautic",
  121. "Maya",
  122. "OXID",
  123. "Plentymarkets",
  124. "Porto",
  125. "RadPHP",
  126. "SMF",
  127. "Thelia",
  128. "WolfCMS",
  129. "agl",
  130. "aimeos",
  131. "annotatecms",
  132. "attogram",
  133. "bitrix",
  134. "cakephp",
  135. "chef",
  136. "cockpit",
  137. "codeigniter",
  138. "concrete5",
  139. "croogo",
  140. "dokuwiki",
  141. "drupal",
  142. "eZ Platform",
  143. "elgg",
  144. "expressionengine",
  145. "fuelphp",
  146. "grav",
  147. "installer",
  148. "itop",
  149. "joomla",
  150. "kohana",
  151. "laravel",
  152. "lavalite",
  153. "lithium",
  154. "magento",
  155. "majima",
  156. "mako",
  157. "mediawiki",
  158. "modulework",
  159. "modx",
  160. "moodle",
  161. "osclass",
  162. "phpbb",
  163. "piwik",
  164. "ppi",
  165. "puppet",
  166. "pxcms",
  167. "reindex",
  168. "roundcube",
  169. "shopware",
  170. "silverstripe",
  171. "sydes",
  172. "symfony",
  173. "typo3",
  174. "wordpress",
  175. "yawik",
  176. "zend",
  177. "zikula"
  178. ],
  179. "time": "2017-12-29T09:13:20+00:00"
  180. },
  181. {
  182. "name": "composer/semver",
  183. "version": "1.4.2",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/composer/semver.git",
  187. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  192. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "php": "^5.3.2 || ^7.0"
  197. },
  198. "require-dev": {
  199. "phpunit/phpunit": "^4.5 || ^5.0.5",
  200. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  201. },
  202. "type": "library",
  203. "extra": {
  204. "branch-alias": {
  205. "dev-master": "1.x-dev"
  206. }
  207. },
  208. "autoload": {
  209. "psr-4": {
  210. "Composer\\Semver\\": "src"
  211. }
  212. },
  213. "notification-url": "https://packagist.org/downloads/",
  214. "license": [
  215. "MIT"
  216. ],
  217. "authors": [
  218. {
  219. "name": "Nils Adermann",
  220. "email": "naderman@naderman.de",
  221. "homepage": "http://www.naderman.de"
  222. },
  223. {
  224. "name": "Jordi Boggiano",
  225. "email": "j.boggiano@seld.be",
  226. "homepage": "http://seld.be"
  227. },
  228. {
  229. "name": "Rob Bast",
  230. "email": "rob.bast@gmail.com",
  231. "homepage": "http://robbast.nl"
  232. }
  233. ],
  234. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  235. "keywords": [
  236. "semantic",
  237. "semver",
  238. "validation",
  239. "versioning"
  240. ],
  241. "time": "2016-08-30T16:08:34+00:00"
  242. },
  243. {
  244. "name": "doctrine/annotations",
  245. "version": "v1.4.0",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/doctrine/annotations.git",
  249. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  254. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  255. "shasum": ""
  256. },
  257. "require": {
  258. "doctrine/lexer": "1.*",
  259. "php": "^5.6 || ^7.0"
  260. },
  261. "require-dev": {
  262. "doctrine/cache": "1.*",
  263. "phpunit/phpunit": "^5.7"
  264. },
  265. "type": "library",
  266. "extra": {
  267. "branch-alias": {
  268. "dev-master": "1.4.x-dev"
  269. }
  270. },
  271. "autoload": {
  272. "psr-4": {
  273. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  274. }
  275. },
  276. "notification-url": "https://packagist.org/downloads/",
  277. "license": [
  278. "MIT"
  279. ],
  280. "authors": [
  281. {
  282. "name": "Roman Borschel",
  283. "email": "roman@code-factory.org"
  284. },
  285. {
  286. "name": "Benjamin Eberlei",
  287. "email": "kontakt@beberlei.de"
  288. },
  289. {
  290. "name": "Guilherme Blanco",
  291. "email": "guilhermeblanco@gmail.com"
  292. },
  293. {
  294. "name": "Jonathan Wage",
  295. "email": "jonwage@gmail.com"
  296. },
  297. {
  298. "name": "Johannes Schmitt",
  299. "email": "schmittjoh@gmail.com"
  300. }
  301. ],
  302. "description": "Docblock Annotations Parser",
  303. "homepage": "http://www.doctrine-project.org",
  304. "keywords": [
  305. "annotations",
  306. "docblock",
  307. "parser"
  308. ],
  309. "time": "2017-02-24T16:22:25+00:00"
  310. },
  311. {
  312. "name": "doctrine/cache",
  313. "version": "v1.6.2",
  314. "source": {
  315. "type": "git",
  316. "url": "https://github.com/doctrine/cache.git",
  317. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  318. },
  319. "dist": {
  320. "type": "zip",
  321. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  322. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  323. "shasum": ""
  324. },
  325. "require": {
  326. "php": "~5.5|~7.0"
  327. },
  328. "conflict": {
  329. "doctrine/common": ">2.2,<2.4"
  330. },
  331. "require-dev": {
  332. "phpunit/phpunit": "~4.8|~5.0",
  333. "predis/predis": "~1.0",
  334. "satooshi/php-coveralls": "~0.6"
  335. },
  336. "type": "library",
  337. "extra": {
  338. "branch-alias": {
  339. "dev-master": "1.6.x-dev"
  340. }
  341. },
  342. "autoload": {
  343. "psr-4": {
  344. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "MIT"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Roman Borschel",
  354. "email": "roman@code-factory.org"
  355. },
  356. {
  357. "name": "Benjamin Eberlei",
  358. "email": "kontakt@beberlei.de"
  359. },
  360. {
  361. "name": "Guilherme Blanco",
  362. "email": "guilhermeblanco@gmail.com"
  363. },
  364. {
  365. "name": "Jonathan Wage",
  366. "email": "jonwage@gmail.com"
  367. },
  368. {
  369. "name": "Johannes Schmitt",
  370. "email": "schmittjoh@gmail.com"
  371. }
  372. ],
  373. "description": "Caching library offering an object-oriented API for many cache backends",
  374. "homepage": "http://www.doctrine-project.org",
  375. "keywords": [
  376. "cache",
  377. "caching"
  378. ],
  379. "time": "2017-07-22T12:49:21+00:00"
  380. },
  381. {
  382. "name": "doctrine/collections",
  383. "version": "v1.4.0",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/doctrine/collections.git",
  387. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  392. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  393. "shasum": ""
  394. },
  395. "require": {
  396. "php": "^5.6 || ^7.0"
  397. },
  398. "require-dev": {
  399. "doctrine/coding-standard": "~0.1@dev",
  400. "phpunit/phpunit": "^5.7"
  401. },
  402. "type": "library",
  403. "extra": {
  404. "branch-alias": {
  405. "dev-master": "1.3.x-dev"
  406. }
  407. },
  408. "autoload": {
  409. "psr-0": {
  410. "Doctrine\\Common\\Collections\\": "lib/"
  411. }
  412. },
  413. "notification-url": "https://packagist.org/downloads/",
  414. "license": [
  415. "MIT"
  416. ],
  417. "authors": [
  418. {
  419. "name": "Roman Borschel",
  420. "email": "roman@code-factory.org"
  421. },
  422. {
  423. "name": "Benjamin Eberlei",
  424. "email": "kontakt@beberlei.de"
  425. },
  426. {
  427. "name": "Guilherme Blanco",
  428. "email": "guilhermeblanco@gmail.com"
  429. },
  430. {
  431. "name": "Jonathan Wage",
  432. "email": "jonwage@gmail.com"
  433. },
  434. {
  435. "name": "Johannes Schmitt",
  436. "email": "schmittjoh@gmail.com"
  437. }
  438. ],
  439. "description": "Collections Abstraction library",
  440. "homepage": "http://www.doctrine-project.org",
  441. "keywords": [
  442. "array",
  443. "collections",
  444. "iterator"
  445. ],
  446. "time": "2017-01-03T10:49:41+00:00"
  447. },
  448. {
  449. "name": "doctrine/common",
  450. "version": "v2.7.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/doctrine/common.git",
  454. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  459. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "doctrine/annotations": "1.*",
  464. "doctrine/cache": "1.*",
  465. "doctrine/collections": "1.*",
  466. "doctrine/inflector": "1.*",
  467. "doctrine/lexer": "1.*",
  468. "php": "~5.6|~7.0"
  469. },
  470. "require-dev": {
  471. "phpunit/phpunit": "^5.4.6"
  472. },
  473. "type": "library",
  474. "extra": {
  475. "branch-alias": {
  476. "dev-master": "2.7.x-dev"
  477. }
  478. },
  479. "autoload": {
  480. "psr-4": {
  481. "Doctrine\\Common\\": "lib/Doctrine/Common"
  482. }
  483. },
  484. "notification-url": "https://packagist.org/downloads/",
  485. "license": [
  486. "MIT"
  487. ],
  488. "authors": [
  489. {
  490. "name": "Roman Borschel",
  491. "email": "roman@code-factory.org"
  492. },
  493. {
  494. "name": "Benjamin Eberlei",
  495. "email": "kontakt@beberlei.de"
  496. },
  497. {
  498. "name": "Guilherme Blanco",
  499. "email": "guilhermeblanco@gmail.com"
  500. },
  501. {
  502. "name": "Jonathan Wage",
  503. "email": "jonwage@gmail.com"
  504. },
  505. {
  506. "name": "Johannes Schmitt",
  507. "email": "schmittjoh@gmail.com"
  508. }
  509. ],
  510. "description": "Common Library for Doctrine projects",
  511. "homepage": "http://www.doctrine-project.org",
  512. "keywords": [
  513. "annotations",
  514. "collections",
  515. "eventmanager",
  516. "persistence",
  517. "spl"
  518. ],
  519. "time": "2017-07-22T08:35:12+00:00"
  520. },
  521. {
  522. "name": "doctrine/inflector",
  523. "version": "v1.2.0",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/doctrine/inflector.git",
  527. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  532. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  533. "shasum": ""
  534. },
  535. "require": {
  536. "php": "^7.0"
  537. },
  538. "require-dev": {
  539. "phpunit/phpunit": "^6.2"
  540. },
  541. "type": "library",
  542. "extra": {
  543. "branch-alias": {
  544. "dev-master": "1.2.x-dev"
  545. }
  546. },
  547. "autoload": {
  548. "psr-4": {
  549. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Roman Borschel",
  559. "email": "roman@code-factory.org"
  560. },
  561. {
  562. "name": "Benjamin Eberlei",
  563. "email": "kontakt@beberlei.de"
  564. },
  565. {
  566. "name": "Guilherme Blanco",
  567. "email": "guilhermeblanco@gmail.com"
  568. },
  569. {
  570. "name": "Jonathan Wage",
  571. "email": "jonwage@gmail.com"
  572. },
  573. {
  574. "name": "Johannes Schmitt",
  575. "email": "schmittjoh@gmail.com"
  576. }
  577. ],
  578. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  579. "homepage": "http://www.doctrine-project.org",
  580. "keywords": [
  581. "inflection",
  582. "pluralize",
  583. "singularize",
  584. "string"
  585. ],
  586. "time": "2017-07-22T12:18:28+00:00"
  587. },
  588. {
  589. "name": "doctrine/lexer",
  590. "version": "v1.0.1",
  591. "source": {
  592. "type": "git",
  593. "url": "https://github.com/doctrine/lexer.git",
  594. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  595. },
  596. "dist": {
  597. "type": "zip",
  598. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  599. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  600. "shasum": ""
  601. },
  602. "require": {
  603. "php": ">=5.3.2"
  604. },
  605. "type": "library",
  606. "extra": {
  607. "branch-alias": {
  608. "dev-master": "1.0.x-dev"
  609. }
  610. },
  611. "autoload": {
  612. "psr-0": {
  613. "Doctrine\\Common\\Lexer\\": "lib/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "MIT"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Roman Borschel",
  623. "email": "roman@code-factory.org"
  624. },
  625. {
  626. "name": "Guilherme Blanco",
  627. "email": "guilhermeblanco@gmail.com"
  628. },
  629. {
  630. "name": "Johannes Schmitt",
  631. "email": "schmittjoh@gmail.com"
  632. }
  633. ],
  634. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  635. "homepage": "http://www.doctrine-project.org",
  636. "keywords": [
  637. "lexer",
  638. "parser"
  639. ],
  640. "time": "2014-09-09T13:34:57+00:00"
  641. },
  642. {
  643. "name": "easyrdf/easyrdf",
  644. "version": "0.9.1",
  645. "source": {
  646. "type": "git",
  647. "url": "https://github.com/njh/easyrdf.git",
  648. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  649. },
  650. "dist": {
  651. "type": "zip",
  652. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  653. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  654. "shasum": ""
  655. },
  656. "require": {
  657. "ext-mbstring": "*",
  658. "ext-pcre": "*",
  659. "php": ">=5.2.8"
  660. },
  661. "require-dev": {
  662. "phpunit/phpunit": "~3.5",
  663. "sami/sami": "~1.4",
  664. "squizlabs/php_codesniffer": "~1.4.3"
  665. },
  666. "suggest": {
  667. "ml/json-ld": "~1.0"
  668. },
  669. "type": "library",
  670. "autoload": {
  671. "psr-0": {
  672. "EasyRdf_": "lib/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "BSD-3-Clause"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Nicholas Humfrey",
  682. "email": "njh@aelius.com",
  683. "homepage": "http://www.aelius.com/njh/",
  684. "role": "Developer"
  685. },
  686. {
  687. "name": "Alexey Zakhlestin",
  688. "email": "indeyets@gmail.com",
  689. "role": "Developer"
  690. }
  691. ],
  692. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  693. "homepage": "http://www.easyrdf.org/",
  694. "keywords": [
  695. "Linked Data",
  696. "RDF",
  697. "Semantic Web",
  698. "Turtle",
  699. "rdfa",
  700. "sparql"
  701. ],
  702. "time": "2015-02-27T09:45:49+00:00"
  703. },
  704. {
  705. "name": "egulias/email-validator",
  706. "version": "1.2.14",
  707. "source": {
  708. "type": "git",
  709. "url": "https://github.com/egulias/EmailValidator.git",
  710. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  711. },
  712. "dist": {
  713. "type": "zip",
  714. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  715. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  716. "shasum": ""
  717. },
  718. "require": {
  719. "doctrine/lexer": "^1.0.1",
  720. "php": ">= 5.3.3"
  721. },
  722. "require-dev": {
  723. "phpunit/phpunit": "^4.8.24"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-master": "2.0.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-0": {
  733. "Egulias\\": "src/"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Eduardo Gulias Davis"
  743. }
  744. ],
  745. "description": "A library for validating emails",
  746. "homepage": "https://github.com/egulias/EmailValidator",
  747. "keywords": [
  748. "email",
  749. "emailvalidation",
  750. "emailvalidator",
  751. "validation",
  752. "validator"
  753. ],
  754. "time": "2017-02-03T22:48:59+00:00"
  755. },
  756. {
  757. "name": "guzzlehttp/guzzle",
  758. "version": "6.3.0",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/guzzle/guzzle.git",
  762. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  767. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "guzzlehttp/promises": "^1.0",
  772. "guzzlehttp/psr7": "^1.4",
  773. "php": ">=5.5"
  774. },
  775. "require-dev": {
  776. "ext-curl": "*",
  777. "phpunit/phpunit": "^4.0 || ^5.0",
  778. "psr/log": "^1.0"
  779. },
  780. "suggest": {
  781. "psr/log": "Required for using the Log middleware"
  782. },
  783. "type": "library",
  784. "extra": {
  785. "branch-alias": {
  786. "dev-master": "6.2-dev"
  787. }
  788. },
  789. "autoload": {
  790. "files": [
  791. "src/functions_include.php"
  792. ],
  793. "psr-4": {
  794. "GuzzleHttp\\": "src/"
  795. }
  796. },
  797. "notification-url": "https://packagist.org/downloads/",
  798. "license": [
  799. "MIT"
  800. ],
  801. "authors": [
  802. {
  803. "name": "Michael Dowling",
  804. "email": "mtdowling@gmail.com",
  805. "homepage": "https://github.com/mtdowling"
  806. }
  807. ],
  808. "description": "Guzzle is a PHP HTTP client library",
  809. "homepage": "http://guzzlephp.org/",
  810. "keywords": [
  811. "client",
  812. "curl",
  813. "framework",
  814. "http",
  815. "http client",
  816. "rest",
  817. "web service"
  818. ],
  819. "time": "2017-06-22T18:50:49+00:00"
  820. },
  821. {
  822. "name": "guzzlehttp/promises",
  823. "version": "v1.3.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/guzzle/promises.git",
  827. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  832. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "php": ">=5.5.0"
  837. },
  838. "require-dev": {
  839. "phpunit/phpunit": "^4.0"
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-master": "1.4-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "GuzzleHttp\\Promise\\": "src/"
  850. },
  851. "files": [
  852. "src/functions_include.php"
  853. ]
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "authors": [
  860. {
  861. "name": "Michael Dowling",
  862. "email": "mtdowling@gmail.com",
  863. "homepage": "https://github.com/mtdowling"
  864. }
  865. ],
  866. "description": "Guzzle promises library",
  867. "keywords": [
  868. "promise"
  869. ],
  870. "time": "2016-12-20T10:07:11+00:00"
  871. },
  872. {
  873. "name": "guzzlehttp/psr7",
  874. "version": "1.4.2",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/guzzle/psr7.git",
  878. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  883. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": ">=5.4.0",
  888. "psr/http-message": "~1.0"
  889. },
  890. "provide": {
  891. "psr/http-message-implementation": "1.0"
  892. },
  893. "require-dev": {
  894. "phpunit/phpunit": "~4.0"
  895. },
  896. "type": "library",
  897. "extra": {
  898. "branch-alias": {
  899. "dev-master": "1.4-dev"
  900. }
  901. },
  902. "autoload": {
  903. "psr-4": {
  904. "GuzzleHttp\\Psr7\\": "src/"
  905. },
  906. "files": [
  907. "src/functions_include.php"
  908. ]
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Michael Dowling",
  917. "email": "mtdowling@gmail.com",
  918. "homepage": "https://github.com/mtdowling"
  919. },
  920. {
  921. "name": "Tobias Schultze",
  922. "homepage": "https://github.com/Tobion"
  923. }
  924. ],
  925. "description": "PSR-7 message implementation that also provides common utility methods",
  926. "keywords": [
  927. "http",
  928. "message",
  929. "request",
  930. "response",
  931. "stream",
  932. "uri",
  933. "url"
  934. ],
  935. "time": "2017-03-20T17:10:46+00:00"
  936. },
  937. {
  938. "name": "masterminds/html5",
  939. "version": "2.3.0",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/Masterminds/html5-php.git",
  943. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  948. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "ext-libxml": "*",
  953. "php": ">=5.3.0"
  954. },
  955. "require-dev": {
  956. "phpunit/phpunit": "4.*",
  957. "sami/sami": "~2.0",
  958. "satooshi/php-coveralls": "1.0.*"
  959. },
  960. "type": "library",
  961. "extra": {
  962. "branch-alias": {
  963. "dev-master": "2.2-dev"
  964. }
  965. },
  966. "autoload": {
  967. "psr-4": {
  968. "Masterminds\\": "src"
  969. }
  970. },
  971. "notification-url": "https://packagist.org/downloads/",
  972. "license": [
  973. "MIT"
  974. ],
  975. "authors": [
  976. {
  977. "name": "Matt Butcher",
  978. "email": "technosophos@gmail.com"
  979. },
  980. {
  981. "name": "Asmir Mustafic",
  982. "email": "goetas@gmail.com"
  983. },
  984. {
  985. "name": "Matt Farina",
  986. "email": "matt@mattfarina.com"
  987. }
  988. ],
  989. "description": "An HTML5 parser and serializer.",
  990. "homepage": "http://masterminds.github.io/html5-php",
  991. "keywords": [
  992. "HTML5",
  993. "dom",
  994. "html",
  995. "parser",
  996. "querypath",
  997. "serializer",
  998. "xml"
  999. ],
  1000. "time": "2017-09-04T12:26:28+00:00"
  1001. },
  1002. {
  1003. "name": "paragonie/random_compat",
  1004. "version": "v2.0.11",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/paragonie/random_compat.git",
  1008. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  1013. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "php": ">=5.2.0"
  1018. },
  1019. "require-dev": {
  1020. "phpunit/phpunit": "4.*|5.*"
  1021. },
  1022. "suggest": {
  1023. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1024. },
  1025. "type": "library",
  1026. "autoload": {
  1027. "files": [
  1028. "lib/random.php"
  1029. ]
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "authors": [
  1036. {
  1037. "name": "Paragon Initiative Enterprises",
  1038. "email": "security@paragonie.com",
  1039. "homepage": "https://paragonie.com"
  1040. }
  1041. ],
  1042. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1043. "keywords": [
  1044. "csprng",
  1045. "pseudorandom",
  1046. "random"
  1047. ],
  1048. "time": "2017-09-27T21:40:39+00:00"
  1049. },
  1050. {
  1051. "name": "psr/http-message",
  1052. "version": "1.0.1",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/php-fig/http-message.git",
  1056. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1061. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1062. "shasum": ""
  1063. },
  1064. "require": {
  1065. "php": ">=5.3.0"
  1066. },
  1067. "type": "library",
  1068. "extra": {
  1069. "branch-alias": {
  1070. "dev-master": "1.0.x-dev"
  1071. }
  1072. },
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Psr\\Http\\Message\\": "src/"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "PHP-FIG",
  1085. "homepage": "http://www.php-fig.org/"
  1086. }
  1087. ],
  1088. "description": "Common interface for HTTP messages",
  1089. "homepage": "https://github.com/php-fig/http-message",
  1090. "keywords": [
  1091. "http",
  1092. "http-message",
  1093. "psr",
  1094. "psr-7",
  1095. "request",
  1096. "response"
  1097. ],
  1098. "time": "2016-08-06T14:39:51+00:00"
  1099. },
  1100. {
  1101. "name": "psr/log",
  1102. "version": "1.0.2",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/php-fig/log.git",
  1106. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1111. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.0"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0.x-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-4": {
  1125. "Psr\\Log\\": "Psr/Log/"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "PHP-FIG",
  1135. "homepage": "http://www.php-fig.org/"
  1136. }
  1137. ],
  1138. "description": "Common interface for logging libraries",
  1139. "homepage": "https://github.com/php-fig/log",
  1140. "keywords": [
  1141. "log",
  1142. "psr",
  1143. "psr-3"
  1144. ],
  1145. "time": "2016-10-10T12:19:37+00:00"
  1146. },
  1147. {
  1148. "name": "stack/builder",
  1149. "version": "v1.0.5",
  1150. "source": {
  1151. "type": "git",
  1152. "url": "https://github.com/stackphp/builder.git",
  1153. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  1154. },
  1155. "dist": {
  1156. "type": "zip",
  1157. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  1158. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  1159. "shasum": ""
  1160. },
  1161. "require": {
  1162. "php": ">=5.3.0",
  1163. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  1164. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  1165. },
  1166. "require-dev": {
  1167. "silex/silex": "~1.0"
  1168. },
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "1.0-dev"
  1173. }
  1174. },
  1175. "autoload": {
  1176. "psr-0": {
  1177. "Stack": "src"
  1178. }
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "MIT"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Igor Wiedler",
  1187. "email": "igor@wiedler.ch"
  1188. }
  1189. ],
  1190. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  1191. "keywords": [
  1192. "stack"
  1193. ],
  1194. "time": "2017-11-18T14:57:29+00:00"
  1195. },
  1196. {
  1197. "name": "symfony-cmf/routing",
  1198. "version": "1.4.1",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/symfony-cmf/routing.git",
  1202. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  1207. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  1208. "shasum": ""
  1209. },
  1210. "require": {
  1211. "php": "^5.3.9|^7.0",
  1212. "psr/log": "1.*",
  1213. "symfony/http-kernel": "^2.2|3.*",
  1214. "symfony/routing": "^2.2|3.*"
  1215. },
  1216. "require-dev": {
  1217. "friendsofsymfony/jsrouting-bundle": "^1.1",
  1218. "symfony-cmf/testing": "^1.3",
  1219. "symfony/config": "^2.2|3.*",
  1220. "symfony/dependency-injection": "^2.0.5|3.*",
  1221. "symfony/event-dispatcher": "^2.1|3.*"
  1222. },
  1223. "suggest": {
  1224. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  1225. },
  1226. "type": "library",
  1227. "extra": {
  1228. "branch-alias": {
  1229. "dev-master": "1.4-dev"
  1230. }
  1231. },
  1232. "autoload": {
  1233. "psr-4": {
  1234. "Symfony\\Cmf\\Component\\Routing\\": ""
  1235. }
  1236. },
  1237. "notification-url": "https://packagist.org/downloads/",
  1238. "license": [
  1239. "MIT"
  1240. ],
  1241. "authors": [
  1242. {
  1243. "name": "Symfony CMF Community",
  1244. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  1245. }
  1246. ],
  1247. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  1248. "homepage": "http://cmf.symfony.com",
  1249. "keywords": [
  1250. "database",
  1251. "routing"
  1252. ],
  1253. "time": "2017-05-09T08:10:41+00:00"
  1254. },
  1255. {
  1256. "name": "symfony/class-loader",
  1257. "version": "v3.2.14",
  1258. "source": {
  1259. "type": "git",
  1260. "url": "https://github.com/symfony/class-loader.git",
  1261. "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482"
  1262. },
  1263. "dist": {
  1264. "type": "zip",
  1265. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e192d96b15fdd168bdb1c91001d26c93ba4af482",
  1266. "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482",
  1267. "shasum": ""
  1268. },
  1269. "require": {
  1270. "php": ">=5.5.9"
  1271. },
  1272. "require-dev": {
  1273. "symfony/finder": "~2.8|~3.0",
  1274. "symfony/polyfill-apcu": "~1.1"
  1275. },
  1276. "suggest": {
  1277. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  1278. },
  1279. "type": "library",
  1280. "extra": {
  1281. "branch-alias": {
  1282. "dev-master": "3.2-dev"
  1283. }
  1284. },
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Symfony\\Component\\ClassLoader\\": ""
  1288. },
  1289. "exclude-from-classmap": [
  1290. "/Tests/"
  1291. ]
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "MIT"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "Fabien Potencier",
  1300. "email": "fabien@symfony.com"
  1301. },
  1302. {
  1303. "name": "Symfony Community",
  1304. "homepage": "https://symfony.com/contributors"
  1305. }
  1306. ],
  1307. "description": "Symfony ClassLoader Component",
  1308. "homepage": "https://symfony.com",
  1309. "time": "2017-06-01T21:00:24+00:00"
  1310. },
  1311. {
  1312. "name": "symfony/console",
  1313. "version": "v3.2.14",
  1314. "source": {
  1315. "type": "git",
  1316. "url": "https://github.com/symfony/console.git",
  1317. "reference": "eced439413608647aeff243038a33ea246b2b33a"
  1318. },
  1319. "dist": {
  1320. "type": "zip",
  1321. "url": "https://api.github.com/repos/symfony/console/zipball/eced439413608647aeff243038a33ea246b2b33a",
  1322. "reference": "eced439413608647aeff243038a33ea246b2b33a",
  1323. "shasum": ""
  1324. },
  1325. "require": {
  1326. "php": ">=5.5.9",
  1327. "symfony/debug": "~2.8|~3.0",
  1328. "symfony/polyfill-mbstring": "~1.0"
  1329. },
  1330. "require-dev": {
  1331. "psr/log": "~1.0",
  1332. "symfony/event-dispatcher": "~2.8|~3.0",
  1333. "symfony/filesystem": "~2.8|~3.0",
  1334. "symfony/process": "~2.8|~3.0"
  1335. },
  1336. "suggest": {
  1337. "psr/log": "For using the console logger",
  1338. "symfony/event-dispatcher": "",
  1339. "symfony/filesystem": "",
  1340. "symfony/process": ""
  1341. },
  1342. "type": "library",
  1343. "extra": {
  1344. "branch-alias": {
  1345. "dev-master": "3.2-dev"
  1346. }
  1347. },
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Symfony\\Component\\Console\\": ""
  1351. },
  1352. "exclude-from-classmap": [
  1353. "/Tests/"
  1354. ]
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "authors": [
  1361. {
  1362. "name": "Fabien Potencier",
  1363. "email": "fabien@symfony.com"
  1364. },
  1365. {
  1366. "name": "Symfony Community",
  1367. "homepage": "https://symfony.com/contributors"
  1368. }
  1369. ],
  1370. "description": "Symfony Console Component",
  1371. "homepage": "https://symfony.com",
  1372. "time": "2017-07-29T21:27:41+00:00"
  1373. },
  1374. {
  1375. "name": "symfony/debug",
  1376. "version": "v3.4.3",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/symfony/debug.git",
  1380. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/symfony/debug/zipball/603b95dda8b00020e4e6e60dc906e7b715b1c245",
  1385. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "php": "^5.5.9|>=7.0.8",
  1390. "psr/log": "~1.0"
  1391. },
  1392. "conflict": {
  1393. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1394. },
  1395. "require-dev": {
  1396. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "3.4-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Symfony\\Component\\Debug\\": ""
  1407. },
  1408. "exclude-from-classmap": [
  1409. "/Tests/"
  1410. ]
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Fabien Potencier",
  1419. "email": "fabien@symfony.com"
  1420. },
  1421. {
  1422. "name": "Symfony Community",
  1423. "homepage": "https://symfony.com/contributors"
  1424. }
  1425. ],
  1426. "description": "Symfony Debug Component",
  1427. "homepage": "https://symfony.com",
  1428. "time": "2018-01-03T17:14:19+00:00"
  1429. },
  1430. {
  1431. "name": "symfony/dependency-injection",
  1432. "version": "v3.2.14",
  1433. "source": {
  1434. "type": "git",
  1435. "url": "https://github.com/symfony/dependency-injection.git",
  1436. "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761"
  1437. },
  1438. "dist": {
  1439. "type": "zip",
  1440. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  1441. "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  1442. "shasum": ""
  1443. },
  1444. "require": {
  1445. "php": ">=5.5.9"
  1446. },
  1447. "conflict": {
  1448. "symfony/yaml": "<3.2"
  1449. },
  1450. "require-dev": {
  1451. "symfony/config": "~2.8|~3.0",
  1452. "symfony/expression-language": "~2.8|~3.0",
  1453. "symfony/yaml": "~3.2"
  1454. },
  1455. "suggest": {
  1456. "symfony/config": "",
  1457. "symfony/expression-language": "For using expressions in service container configuration",
  1458. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1459. "symfony/yaml": ""
  1460. },
  1461. "type": "library",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "3.2-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "psr-4": {
  1469. "Symfony\\Component\\DependencyInjection\\": ""
  1470. },
  1471. "exclude-from-classmap": [
  1472. "/Tests/"
  1473. ]
  1474. },
  1475. "notification-url": "https://packagist.org/downloads/",
  1476. "license": [
  1477. "MIT"
  1478. ],
  1479. "authors": [
  1480. {
  1481. "name": "Fabien Potencier",
  1482. "email": "fabien@symfony.com"
  1483. },
  1484. {
  1485. "name": "Symfony Community",
  1486. "homepage": "https://symfony.com/contributors"
  1487. }
  1488. ],
  1489. "description": "Symfony DependencyInjection Component",
  1490. "homepage": "https://symfony.com",
  1491. "time": "2017-07-28T15:22:55+00:00"
  1492. },
  1493. {
  1494. "name": "symfony/event-dispatcher",
  1495. "version": "v3.2.14",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/symfony/event-dispatcher.git",
  1499. "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  1504. "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  1505. "shasum": ""
  1506. },
  1507. "require": {
  1508. "php": ">=5.5.9"
  1509. },
  1510. "require-dev": {
  1511. "psr/log": "~1.0",
  1512. "symfony/config": "~2.8|~3.0",
  1513. "symfony/dependency-injection": "~2.8|~3.0",
  1514. "symfony/expression-language": "~2.8|~3.0",
  1515. "symfony/stopwatch": "~2.8|~3.0"
  1516. },
  1517. "suggest": {
  1518. "symfony/dependency-injection": "",
  1519. "symfony/http-kernel": ""
  1520. },
  1521. "type": "library",
  1522. "extra": {
  1523. "branch-alias": {
  1524. "dev-master": "3.2-dev"
  1525. }
  1526. },
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Symfony\\Component\\EventDispatcher\\": ""
  1530. },
  1531. "exclude-from-classmap": [
  1532. "/Tests/"
  1533. ]
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Fabien Potencier",
  1542. "email": "fabien@symfony.com"
  1543. },
  1544. {
  1545. "name": "Symfony Community",
  1546. "homepage": "https://symfony.com/contributors"
  1547. }
  1548. ],
  1549. "description": "Symfony EventDispatcher Component",
  1550. "homepage": "https://symfony.com",
  1551. "time": "2017-06-02T08:26:05+00:00"
  1552. },
  1553. {
  1554. "name": "symfony/http-foundation",
  1555. "version": "v3.2.14",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/symfony/http-foundation.git",
  1559. "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  1564. "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": ">=5.5.9",
  1569. "symfony/polyfill-mbstring": "~1.1"
  1570. },
  1571. "require-dev": {
  1572. "symfony/expression-language": "~2.8|~3.0"
  1573. },
  1574. "type": "library",
  1575. "extra": {
  1576. "branch-alias": {
  1577. "dev-master": "3.2-dev"
  1578. }
  1579. },
  1580. "autoload": {
  1581. "psr-4": {
  1582. "Symfony\\Component\\HttpFoundation\\": ""
  1583. },
  1584. "exclude-from-classmap": [
  1585. "/Tests/"
  1586. ]
  1587. },
  1588. "notification-url": "https://packagist.org/downloads/",
  1589. "license": [
  1590. "MIT"
  1591. ],
  1592. "authors": [
  1593. {
  1594. "name": "Fabien Potencier",
  1595. "email": "fabien@symfony.com"
  1596. },
  1597. {
  1598. "name": "Symfony Community",
  1599. "homepage": "https://symfony.com/contributors"
  1600. }
  1601. ],
  1602. "description": "Symfony HttpFoundation Component",
  1603. "homepage": "https://symfony.com",
  1604. "time": "2017-07-20T07:58:49+00:00"
  1605. },
  1606. {
  1607. "name": "symfony/http-kernel",
  1608. "version": "v3.2.14",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/symfony/http-kernel.git",
  1612. "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/18ec42e19ec676d7da5ddff13f1eed68d88fb460",
  1617. "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": ">=5.5.9",
  1622. "psr/log": "~1.0",
  1623. "symfony/debug": "~2.8|~3.0",
  1624. "symfony/event-dispatcher": "~2.8|~3.0",
  1625. "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
  1626. },
  1627. "conflict": {
  1628. "symfony/config": "<2.8",
  1629. "twig/twig": "<1.34|<2.4,>=2"
  1630. },
  1631. "require-dev": {
  1632. "symfony/browser-kit": "~2.8|~3.0",
  1633. "symfony/class-loader": "~2.8|~3.0",
  1634. "symfony/config": "~2.8|~3.0",
  1635. "symfony/console": "~2.8|~3.0",
  1636. "symfony/css-selector": "~2.8|~3.0",
  1637. "symfony/dependency-injection": "~2.8|~3.0",
  1638. "symfony/dom-crawler": "~2.8|~3.0",
  1639. "symfony/expression-language": "~2.8|~3.0",
  1640. "symfony/finder": "~2.8|~3.0",
  1641. "symfony/process": "~2.8|~3.0",
  1642. "symfony/routing": "~2.8|~3.0",
  1643. "symfony/stopwatch": "~2.8|~3.0",
  1644. "symfony/templating": "~2.8|~3.0",
  1645. "symfony/translation": "~2.8|~3.0",
  1646. "symfony/var-dumper": "~3.2"
  1647. },
  1648. "suggest": {
  1649. "symfony/browser-kit": "",
  1650. "symfony/class-loader": "",
  1651. "symfony/config": "",
  1652. "symfony/console": "",
  1653. "symfony/dependency-injection": "",
  1654. "symfony/finder": "",
  1655. "symfony/var-dumper": ""
  1656. },
  1657. "type": "library",
  1658. "extra": {
  1659. "branch-alias": {
  1660. "dev-master": "3.2-dev"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "Symfony\\Component\\HttpKernel\\": ""
  1666. },
  1667. "exclude-from-classmap": [
  1668. "/Tests/"
  1669. ]
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "Fabien Potencier",
  1678. "email": "fabien@symfony.com"
  1679. },
  1680. {
  1681. "name": "Symfony Community",
  1682. "homepage": "https://symfony.com/contributors"
  1683. }
  1684. ],
  1685. "description": "Symfony HttpKernel Component",
  1686. "homepage": "https://symfony.com",
  1687. "time": "2017-08-01T09:40:19+00:00"
  1688. },
  1689. {
  1690. "name": "symfony/polyfill-iconv",
  1691. "version": "v1.6.0",
  1692. "source": {
  1693. "type": "git",
  1694. "url": "https://github.com/symfony/polyfill-iconv.git",
  1695. "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a"
  1696. },
  1697. "dist": {
  1698. "type": "zip",
  1699. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  1700. "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  1701. "shasum": ""
  1702. },
  1703. "require": {
  1704. "php": ">=5.3.3"
  1705. },
  1706. "suggest": {
  1707. "ext-iconv": "For best performance"
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "1.6-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Symfony\\Polyfill\\Iconv\\": ""
  1718. },
  1719. "files": [
  1720. "bootstrap.php"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Nicolas Grekas",
  1730. "email": "p@tchwork.com"
  1731. },
  1732. {
  1733. "name": "Symfony Community",
  1734. "homepage": "https://symfony.com/contributors"
  1735. }
  1736. ],
  1737. "description": "Symfony polyfill for the Iconv extension",
  1738. "homepage": "https://symfony.com",
  1739. "keywords": [
  1740. "compatibility",
  1741. "iconv",
  1742. "polyfill",
  1743. "portable",
  1744. "shim"
  1745. ],
  1746. "time": "2017-10-11T12:05:26+00:00"
  1747. },
  1748. {
  1749. "name": "symfony/polyfill-mbstring",
  1750. "version": "v1.6.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1754. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1759. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": ">=5.3.3"
  1764. },
  1765. "suggest": {
  1766. "ext-mbstring": "For best performance"
  1767. },
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "1.6-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Symfony\\Polyfill\\Mbstring\\": ""
  1777. },
  1778. "files": [
  1779. "bootstrap.php"
  1780. ]
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Nicolas Grekas",
  1789. "email": "p@tchwork.com"
  1790. },
  1791. {
  1792. "name": "Symfony Community",
  1793. "homepage": "https://symfony.com/contributors"
  1794. }
  1795. ],
  1796. "description": "Symfony polyfill for the Mbstring extension",
  1797. "homepage": "https://symfony.com",
  1798. "keywords": [
  1799. "compatibility",
  1800. "mbstring",
  1801. "polyfill",
  1802. "portable",
  1803. "shim"
  1804. ],
  1805. "time": "2017-10-11T12:05:26+00:00"
  1806. },
  1807. {
  1808. "name": "symfony/process",
  1809. "version": "v3.2.14",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/symfony/process.git",
  1813. "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/symfony/process/zipball/b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  1818. "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  1819. "shasum": ""
  1820. },
  1821. "require": {
  1822. "php": ">=5.5.9"
  1823. },
  1824. "type": "library",
  1825. "extra": {
  1826. "branch-alias": {
  1827. "dev-master": "3.2-dev"
  1828. }
  1829. },
  1830. "autoload": {
  1831. "psr-4": {
  1832. "Symfony\\Component\\Process\\": ""
  1833. },
  1834. "exclude-from-classmap": [
  1835. "/Tests/"
  1836. ]
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Fabien Potencier",
  1845. "email": "fabien@symfony.com"
  1846. },
  1847. {
  1848. "name": "Symfony Community",
  1849. "homepage": "https://symfony.com/contributors"
  1850. }
  1851. ],
  1852. "description": "Symfony Process Component",
  1853. "homepage": "https://symfony.com",
  1854. "time": "2017-07-03T08:06:20+00:00"
  1855. },
  1856. {
  1857. "name": "symfony/psr-http-message-bridge",
  1858. "version": "v1.0.2",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  1862. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
  1867. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "php": ">=5.3.3",
  1872. "psr/http-message": "~1.0",
  1873. "symfony/http-foundation": "~2.3|~3.0|~4.0"
  1874. },
  1875. "require-dev": {
  1876. "symfony/phpunit-bridge": "~3.2|4.0"
  1877. },
  1878. "suggest": {
  1879. "psr/http-message-implementation": "To use the HttpFoundation factory",
  1880. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  1881. },
  1882. "type": "symfony-bridge",
  1883. "extra": {
  1884. "branch-alias": {
  1885. "dev-master": "1.0-dev"
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Symfony Community",
  1900. "homepage": "http://symfony.com/contributors"
  1901. },
  1902. {
  1903. "name": "Fabien Potencier",
  1904. "email": "fabien@symfony.com"
  1905. }
  1906. ],
  1907. "description": "PSR HTTP message bridge",
  1908. "homepage": "http://symfony.com",
  1909. "keywords": [
  1910. "http",
  1911. "http-message",
  1912. "psr-7"
  1913. ],
  1914. "time": "2017-12-19T00:31:44+00:00"
  1915. },
  1916. {
  1917. "name": "symfony/routing",
  1918. "version": "v3.2.14",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/symfony/routing.git",
  1922. "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/symfony/routing/zipball/b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  1927. "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": ">=5.5.9"
  1932. },
  1933. "conflict": {
  1934. "symfony/config": "<2.8"
  1935. },
  1936. "require-dev": {
  1937. "doctrine/annotations": "~1.0",
  1938. "doctrine/common": "~2.2",
  1939. "psr/log": "~1.0",
  1940. "symfony/config": "~2.8|~3.0",
  1941. "symfony/expression-language": "~2.8|~3.0",
  1942. "symfony/http-foundation": "~2.8|~3.0",
  1943. "symfony/yaml": "~2.8|~3.0"
  1944. },
  1945. "suggest": {
  1946. "doctrine/annotations": "For using the annotation loader",
  1947. "symfony/config": "For using the all-in-one router or any loader",
  1948. "symfony/dependency-injection": "For loading routes from a service",
  1949. "symfony/expression-language": "For using expression matching",
  1950. "symfony/http-foundation": "For using a Symfony Request object",
  1951. "symfony/yaml": "For using the YAML loader"
  1952. },
  1953. "type": "library",
  1954. "extra": {
  1955. "branch-alias": {
  1956. "dev-master": "3.2-dev"
  1957. }
  1958. },
  1959. "autoload": {
  1960. "psr-4": {
  1961. "Symfony\\Component\\Routing\\": ""
  1962. },
  1963. "exclude-from-classmap": [
  1964. "/Tests/"
  1965. ]
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Fabien Potencier",
  1974. "email": "fabien@symfony.com"
  1975. },
  1976. {
  1977. "name": "Symfony Community",
  1978. "homepage": "https://symfony.com/contributors"
  1979. }
  1980. ],
  1981. "description": "Symfony Routing Component",
  1982. "homepage": "https://symfony.com",
  1983. "keywords": [
  1984. "router",
  1985. "routing",
  1986. "uri",
  1987. "url"
  1988. ],
  1989. "time": "2017-06-23T06:35:45+00:00"
  1990. },
  1991. {
  1992. "name": "symfony/serializer",
  1993. "version": "v3.2.14",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/symfony/serializer.git",
  1997. "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/symfony/serializer/zipball/dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  2002. "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": ">=5.5.9"
  2007. },
  2008. "conflict": {
  2009. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  2010. "symfony/property-info": "<3.1",
  2011. "symfony/yaml": "<3.1"
  2012. },
  2013. "require-dev": {
  2014. "doctrine/annotations": "~1.0",
  2015. "doctrine/cache": "~1.0",
  2016. "phpdocumentor/reflection-docblock": "~3.0",
  2017. "symfony/cache": "~3.1",
  2018. "symfony/config": "~2.8|~3.0",
  2019. "symfony/http-foundation": "~2.8|~3.0",
  2020. "symfony/property-access": "~2.8|~3.0",
  2021. "symfony/property-info": "~3.1",
  2022. "symfony/yaml": "~3.1"
  2023. },
  2024. "suggest": {
  2025. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  2026. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  2027. "psr/cache-implementation": "For using the metadata cache.",
  2028. "symfony/config": "For using the XML mapping loader.",
  2029. "symfony/http-foundation": "To use the DataUriNormalizer.",
  2030. "symfony/property-access": "For using the ObjectNormalizer.",
  2031. "symfony/property-info": "To deserialize relations.",
  2032. "symfony/yaml": "For using the default YAML mapping loader."
  2033. },
  2034. "type": "library",
  2035. "extra": {
  2036. "branch-alias": {
  2037. "dev-master": "3.2-dev"
  2038. }
  2039. },
  2040. "autoload": {
  2041. "psr-4": {
  2042. "Symfony\\Component\\Serializer\\": ""
  2043. },
  2044. "exclude-from-classmap": [
  2045. "/Tests/"
  2046. ]
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "MIT"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "Fabien Potencier",
  2055. "email": "fabien@symfony.com"
  2056. },
  2057. {
  2058. "name": "Symfony Community",
  2059. "homepage": "https://symfony.com/contributors"
  2060. }
  2061. ],
  2062. "description": "Symfony Serializer Component",
  2063. "homepage": "https://symfony.com",
  2064. "time": "2017-07-06T07:39:51+00:00"
  2065. },
  2066. {
  2067. "name": "symfony/translation",
  2068. "version": "v3.2.14",
  2069. "source": {
  2070. "type": "git",
  2071. "url": "https://github.com/symfony/translation.git",
  2072. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
  2073. },
  2074. "dist": {
  2075. "type": "zip",
  2076. "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
  2077. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
  2078. "shasum": ""
  2079. },
  2080. "require": {
  2081. "php": ">=5.5.9",
  2082. "symfony/polyfill-mbstring": "~1.0"
  2083. },
  2084. "conflict": {
  2085. "symfony/config": "<2.8"
  2086. },
  2087. "require-dev": {
  2088. "psr/log": "~1.0",
  2089. "symfony/config": "~2.8|~3.0",
  2090. "symfony/intl": "^2.8.18|^3.2.5",
  2091. "symfony/yaml": "~2.8|~3.0"
  2092. },
  2093. "suggest": {
  2094. "psr/log": "To use logging capability in translator",
  2095. "symfony/config": "",
  2096. "symfony/yaml": ""
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-master": "3.2-dev"
  2102. }
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Symfony\\Component\\Translation\\": ""
  2107. },
  2108. "exclude-from-classmap": [
  2109. "/Tests/"
  2110. ]
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "MIT"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Fabien Potencier",
  2119. "email": "fabien@symfony.com"
  2120. },
  2121. {
  2122. "name": "Symfony Community",
  2123. "homepage": "https://symfony.com/contributors"
  2124. }
  2125. ],
  2126. "description": "Symfony Translation Component",
  2127. "homepage": "https://symfony.com",
  2128. "time": "2017-06-24T16:45:17+00:00"
  2129. },
  2130. {
  2131. "name": "symfony/validator",
  2132. "version": "v3.2.14",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/symfony/validator.git",
  2136. "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/symfony/validator/zipball/39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  2141. "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "php": ">=5.5.9",
  2146. "symfony/polyfill-mbstring": "~1.0",
  2147. "symfony/translation": "~2.8|~3.0"
  2148. },
  2149. "conflict": {
  2150. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2151. },
  2152. "require-dev": {
  2153. "doctrine/annotations": "~1.0",
  2154. "doctrine/cache": "~1.0",
  2155. "egulias/email-validator": "^1.2.8|~2.0",
  2156. "symfony/cache": "~3.1",
  2157. "symfony/config": "~2.8|~3.0",
  2158. "symfony/expression-language": "~2.8|~3.0",
  2159. "symfony/http-foundation": "~2.8|~3.0",
  2160. "symfony/intl": "^2.8.18|^3.2.5",
  2161. "symfony/yaml": "~2.8|~3.0"
  2162. },
  2163. "suggest": {
  2164. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  2165. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  2166. "egulias/email-validator": "Strict (RFC compliant) email validation",
  2167. "psr/cache-implementation": "For using the metadata cache.",
  2168. "symfony/config": "",
  2169. "symfony/expression-language": "For using the Expression validator",
  2170. "symfony/http-foundation": "",
  2171. "symfony/intl": "",
  2172. "symfony/yaml": ""
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "3.2-dev"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "psr-4": {
  2182. "Symfony\\Component\\Validator\\": ""
  2183. },
  2184. "exclude-from-classmap": [
  2185. "/Tests/"
  2186. ]
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "Fabien Potencier",
  2195. "email": "fabien@symfony.com"
  2196. },
  2197. {
  2198. "name": "Symfony Community",
  2199. "homepage": "https://symfony.com/contributors"
  2200. }
  2201. ],
  2202. "description": "Symfony Validator Component",
  2203. "homepage": "https://symfony.com",
  2204. "time": "2017-07-26T06:34:07+00:00"
  2205. },
  2206. {
  2207. "name": "symfony/yaml",
  2208. "version": "v3.2.14",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/symfony/yaml.git",
  2212. "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/symfony/yaml/zipball/78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  2217. "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  2218. "shasum": ""
  2219. },
  2220. "require": {
  2221. "php": ">=5.5.9"
  2222. },
  2223. "require-dev": {
  2224. "symfony/console": "~2.8|~3.0"
  2225. },
  2226. "suggest": {
  2227. "symfony/console": "For validating YAML files using the lint command"
  2228. },
  2229. "type": "library",
  2230. "extra": {
  2231. "branch-alias": {
  2232. "dev-master": "3.2-dev"
  2233. }
  2234. },
  2235. "autoload": {
  2236. "psr-4": {
  2237. "Symfony\\Component\\Yaml\\": ""
  2238. },
  2239. "exclude-from-classmap": [
  2240. "/Tests/"
  2241. ]
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "Fabien Potencier",
  2250. "email": "fabien@symfony.com"
  2251. },
  2252. {
  2253. "name": "Symfony Community",
  2254. "homepage": "https://symfony.com/contributors"
  2255. }
  2256. ],
  2257. "description": "Symfony Yaml Component",
  2258. "homepage": "https://symfony.com",
  2259. "time": "2017-06-02T09:43:35+00:00"
  2260. },
  2261. {
  2262. "name": "twig/twig",
  2263. "version": "v1.35.0",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://github.com/twigphp/Twig.git",
  2267. "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://api.github.com/repos/twigphp/Twig/zipball/daa657073e55b0a78cce8fdd22682fddecc6385f",
  2272. "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f",
  2273. "shasum": ""
  2274. },
  2275. "require": {
  2276. "php": ">=5.3.3"
  2277. },
  2278. "require-dev": {
  2279. "psr/container": "^1.0",
  2280. "symfony/debug": "~2.7",
  2281. "symfony/phpunit-bridge": "~3.3@dev"
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "1.35-dev"
  2287. }
  2288. },
  2289. "autoload": {
  2290. "psr-0": {
  2291. "Twig_": "lib/"
  2292. },
  2293. "psr-4": {
  2294. "Twig\\": "src/"
  2295. }
  2296. },
  2297. "notification-url": "https://packagist.org/downloads/",
  2298. "license": [
  2299. "BSD-3-Clause"
  2300. ],
  2301. "authors": [
  2302. {
  2303. "name": "Fabien Potencier",
  2304. "email": "fabien@symfony.com",
  2305. "homepage": "http://fabien.potencier.org",
  2306. "role": "Lead Developer"
  2307. },
  2308. {
  2309. "name": "Armin Ronacher",
  2310. "email": "armin.ronacher@active-4.com",
  2311. "role": "Project Founder"
  2312. },
  2313. {
  2314. "name": "Twig Team",
  2315. "homepage": "http://twig.sensiolabs.org/contributors",
  2316. "role": "Contributors"
  2317. }
  2318. ],
  2319. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2320. "homepage": "http://twig.sensiolabs.org",
  2321. "keywords": [
  2322. "templating"
  2323. ],
  2324. "time": "2017-09-27T18:06:46+00:00"
  2325. },
  2326. {
  2327. "name": "wikimedia/composer-merge-plugin",
  2328. "version": "v1.4.1",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  2332. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  2337. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  2338. "shasum": ""
  2339. },
  2340. "require": {
  2341. "composer-plugin-api": "^1.0",
  2342. "php": ">=5.3.2"
  2343. },
  2344. "require-dev": {
  2345. "composer/composer": "~1.0.0",
  2346. "jakub-onderka/php-parallel-lint": "~0.8",
  2347. "phpunit/phpunit": "~4.8|~5.0",
  2348. "squizlabs/php_codesniffer": "~2.1.0"
  2349. },
  2350. "type": "composer-plugin",
  2351. "extra": {
  2352. "branch-alias": {
  2353. "dev-master": "1.3.x-dev"
  2354. },
  2355. "class": "Wikimedia\\Composer\\MergePlugin"
  2356. },
  2357. "autoload": {
  2358. "psr-4": {
  2359. "Wikimedia\\Composer\\": "src/"
  2360. }
  2361. },
  2362. "notification-url": "https://packagist.org/downloads/",
  2363. "license": [
  2364. "MIT"
  2365. ],
  2366. "authors": [
  2367. {
  2368. "name": "Bryan Davis",
  2369. "email": "bd808@wikimedia.org"
  2370. }
  2371. ],
  2372. "description": "Composer plugin to merge multiple composer.json files",
  2373. "time": "2017-04-25T02:31:25+00:00"
  2374. },
  2375. {
  2376. "name": "zendframework/zend-diactoros",
  2377. "version": "1.7.0",
  2378. "source": {
  2379. "type": "git",
  2380. "url": "https://github.com/zendframework/zend-diactoros.git",
  2381. "reference": "ed6ce7e2105c400ca10277643a8327957c0384b7"
  2382. },
  2383. "dist": {
  2384. "type": "zip",
  2385. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/ed6ce7e2105c400ca10277643a8327957c0384b7",
  2386. "reference": "ed6ce7e2105c400ca10277643a8327957c0384b7",
  2387. "shasum": ""
  2388. },
  2389. "require": {
  2390. "php": "^5.6 || ^7.0",
  2391. "psr/http-message": "^1.0"
  2392. },
  2393. "provide": {
  2394. "psr/http-message-implementation": "1.0"
  2395. },
  2396. "require-dev": {
  2397. "ext-dom": "*",
  2398. "ext-libxml": "*",
  2399. "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  2400. "zendframework/zend-coding-standard": "~1.0"
  2401. },
  2402. "type": "library",
  2403. "extra": {
  2404. "branch-alias": {
  2405. "dev-master": "1.7.x-dev",
  2406. "dev-develop": "1.8.x-dev"
  2407. }
  2408. },
  2409. "autoload": {
  2410. "psr-4": {
  2411. "Zend\\Diactoros\\": "src/"
  2412. }
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "BSD-2-Clause"
  2417. ],
  2418. "description": "PSR HTTP Message implementations",
  2419. "homepage": "https://github.com/zendframework/zend-diactoros",
  2420. "keywords": [
  2421. "http",
  2422. "psr",
  2423. "psr-7"
  2424. ],
  2425. "time": "2018-01-04T18:21:48+00:00"
  2426. },
  2427. {
  2428. "name": "zendframework/zend-escaper",
  2429. "version": "2.5.2",
  2430. "source": {
  2431. "type": "git",
  2432. "url": "https://github.com/zendframework/zend-escaper.git",
  2433. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  2434. },
  2435. "dist": {
  2436. "type": "zip",
  2437. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  2438. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  2439. "shasum": ""
  2440. },
  2441. "require": {
  2442. "php": ">=5.5"
  2443. },
  2444. "require-dev": {
  2445. "fabpot/php-cs-fixer": "1.7.*",
  2446. "phpunit/phpunit": "~4.0"
  2447. },
  2448. "type": "library",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-master": "2.5-dev",
  2452. "dev-develop": "2.6-dev"
  2453. }
  2454. },
  2455. "autoload": {
  2456. "psr-4": {
  2457. "Zend\\Escaper\\": "src/"
  2458. }
  2459. },
  2460. "notification-url": "https://packagist.org/downloads/",
  2461. "license": [
  2462. "BSD-3-Clause"
  2463. ],
  2464. "homepage": "https://github.com/zendframework/zend-escaper",
  2465. "keywords": [
  2466. "escaper",
  2467. "zf2"
  2468. ],
  2469. "time": "2016-06-30T19:48:38+00:00"
  2470. },
  2471. {
  2472. "name": "zendframework/zend-feed",
  2473. "version": "2.9.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/zendframework/zend-feed.git",
  2477. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
  2482. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "php": "^5.6 || ^7.0",
  2487. "zendframework/zend-escaper": "^2.5.2",
  2488. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  2489. },
  2490. "require-dev": {
  2491. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  2492. "psr/http-message": "^1.0.1",
  2493. "zendframework/zend-cache": "^2.7.2",
  2494. "zendframework/zend-coding-standard": "~1.0.0",
  2495. "zendframework/zend-db": "^2.8.2",
  2496. "zendframework/zend-http": "^2.7",
  2497. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  2498. "zendframework/zend-validator": "^2.10.1"
  2499. },
  2500. "suggest": {
  2501. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  2502. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  2503. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  2504. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  2505. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  2506. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  2507. },
  2508. "type": "library",
  2509. "extra": {
  2510. "branch-alias": {
  2511. "dev-master": "2.9-dev",
  2512. "dev-develop": "2.10-dev"
  2513. }
  2514. },
  2515. "autoload": {
  2516. "psr-4": {
  2517. "Zend\\Feed\\": "src/"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "BSD-3-Clause"
  2523. ],
  2524. "description": "provides functionality for consuming RSS and Atom feeds",
  2525. "keywords": [
  2526. "ZendFramework",
  2527. "feed",
  2528. "zf"
  2529. ],
  2530. "time": "2017-12-04T17:59:38+00:00"
  2531. },
  2532. {
  2533. "name": "zendframework/zend-stdlib",
  2534. "version": "3.1.0",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/zendframework/zend-stdlib.git",
  2538. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  2543. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  2544. "shasum": ""
  2545. },
  2546. "require": {
  2547. "php": "^5.6 || ^7.0"
  2548. },
  2549. "require-dev": {
  2550. "athletic/athletic": "~0.1",
  2551. "phpunit/phpunit": "~4.0",
  2552. "squizlabs/php_codesniffer": "^2.6.2"
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "3.1-dev",
  2558. "dev-develop": "3.2-dev"
  2559. }
  2560. },
  2561. "autoload": {
  2562. "psr-4": {
  2563. "Zend\\Stdlib\\": "src/"
  2564. }
  2565. },
  2566. "notification-url": "https://packagist.org/downloads/",
  2567. "license": [
  2568. "BSD-3-Clause"
  2569. ],
  2570. "homepage": "https://github.com/zendframework/zend-stdlib",
  2571. "keywords": [
  2572. "stdlib",
  2573. "zf2"
  2574. ],
  2575. "time": "2016-09-13T14:38:50+00:00"
  2576. }
  2577. ],
  2578. "packages-dev": [
  2579. {
  2580. "name": "behat/mink",
  2581. "version": "dev-master",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/minkphp/Mink.git",
  2585. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/minkphp/Mink/zipball/04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  2590. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  2591. "shasum": ""
  2592. },
  2593. "require": {
  2594. "php": ">=5.3.1",
  2595. "symfony/css-selector": "^2.7|^3.0|^4.0"
  2596. },
  2597. "require-dev": {
  2598. "symfony/phpunit-bridge": "^3.3|^4.0"
  2599. },
  2600. "suggest": {
  2601. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  2602. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  2603. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  2604. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  2605. },
  2606. "type": "library",
  2607. "extra": {
  2608. "branch-alias": {
  2609. "dev-master": "1.7.x-dev"
  2610. }
  2611. },
  2612. "autoload": {
  2613. "psr-4": {
  2614. "Behat\\Mink\\": "src/"
  2615. }
  2616. },
  2617. "notification-url": "https://packagist.org/downloads/",
  2618. "license": [
  2619. "MIT"
  2620. ],
  2621. "authors": [
  2622. {
  2623. "name": "Konstantin Kudryashov",
  2624. "email": "ever.zet@gmail.com",
  2625. "homepage": "http://everzet.com"
  2626. }
  2627. ],
  2628. "description": "Browser controller/emulator abstraction for PHP",
  2629. "homepage": "http://mink.behat.org/",
  2630. "keywords": [
  2631. "browser",
  2632. "testing",
  2633. "web"
  2634. ],
  2635. "time": "2018-01-07T17:25:05+00:00"
  2636. },
  2637. {
  2638. "name": "behat/mink-browserkit-driver",
  2639. "version": "v1.3.2",
  2640. "source": {
  2641. "type": "git",
  2642. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  2643. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  2644. },
  2645. "dist": {
  2646. "type": "zip",
  2647. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  2648. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  2649. "shasum": ""
  2650. },
  2651. "require": {
  2652. "behat/mink": "^1.7.1@dev",
  2653. "php": ">=5.3.6",
  2654. "symfony/browser-kit": "~2.3|~3.0",
  2655. "symfony/dom-crawler": "~2.3|~3.0"
  2656. },
  2657. "require-dev": {
  2658. "silex/silex": "~1.2",
  2659. "symfony/phpunit-bridge": "~2.7|~3.0"
  2660. },
  2661. "type": "mink-driver",
  2662. "extra": {
  2663. "branch-alias": {
  2664. "dev-master": "1.3.x-dev"
  2665. }
  2666. },
  2667. "autoload": {
  2668. "psr-4": {
  2669. "Behat\\Mink\\Driver\\": "src/"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Konstantin Kudryashov",
  2679. "email": "ever.zet@gmail.com",
  2680. "homepage": "http://everzet.com"
  2681. }
  2682. ],
  2683. "description": "Symfony2 BrowserKit driver for Mink framework",
  2684. "homepage": "http://mink.behat.org/",
  2685. "keywords": [
  2686. "Mink",
  2687. "Symfony2",
  2688. "browser",
  2689. "testing"
  2690. ],
  2691. "time": "2016-03-05T08:59:47+00:00"
  2692. },
  2693. {
  2694. "name": "behat/mink-goutte-driver",
  2695. "version": "v1.2.1",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  2699. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  2704. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "behat/mink": "~1.6@dev",
  2709. "behat/mink-browserkit-driver": "~1.2@dev",
  2710. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  2711. "php": ">=5.3.1"
  2712. },
  2713. "require-dev": {
  2714. "symfony/phpunit-bridge": "~2.7|~3.0"
  2715. },
  2716. "type": "mink-driver",
  2717. "extra": {
  2718. "branch-alias": {
  2719. "dev-master": "1.2.x-dev"
  2720. }
  2721. },
  2722. "autoload": {
  2723. "psr-4": {
  2724. "Behat\\Mink\\Driver\\": "src/"
  2725. }
  2726. },
  2727. "notification-url": "https://packagist.org/downloads/",
  2728. "license": [
  2729. "MIT"
  2730. ],
  2731. "authors": [
  2732. {
  2733. "name": "Konstantin Kudryashov",
  2734. "email": "ever.zet@gmail.com",
  2735. "homepage": "http://everzet.com"
  2736. }
  2737. ],
  2738. "description": "Goutte driver for Mink framework",
  2739. "homepage": "http://mink.behat.org/",
  2740. "keywords": [
  2741. "browser",
  2742. "goutte",
  2743. "headless",
  2744. "testing"
  2745. ],
  2746. "time": "2016-03-05T09:04:22+00:00"
  2747. },
  2748. {
  2749. "name": "doctrine/instantiator",
  2750. "version": "1.0.5",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://github.com/doctrine/instantiator.git",
  2754. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2759. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2760. "shasum": ""
  2761. },
  2762. "require": {
  2763. "php": ">=5.3,<8.0-DEV"
  2764. },
  2765. "require-dev": {
  2766. "athletic/athletic": "~0.1.8",
  2767. "ext-pdo": "*",
  2768. "ext-phar": "*",
  2769. "phpunit/phpunit": "~4.0",
  2770. "squizlabs/php_codesniffer": "~2.0"
  2771. },
  2772. "type": "library",
  2773. "extra": {
  2774. "branch-alias": {
  2775. "dev-master": "1.0.x-dev"
  2776. }
  2777. },
  2778. "autoload": {
  2779. "psr-4": {
  2780. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2781. }
  2782. },
  2783. "notification-url": "https://packagist.org/downloads/",
  2784. "license": [
  2785. "MIT"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "Marco Pivetta",
  2790. "email": "ocramius@gmail.com",
  2791. "homepage": "http://ocramius.github.com/"
  2792. }
  2793. ],
  2794. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2795. "homepage": "https://github.com/doctrine/instantiator",
  2796. "keywords": [
  2797. "constructor",
  2798. "instantiate"
  2799. ],
  2800. "time": "2015-06-14T21:17:01+00:00"
  2801. },
  2802. {
  2803. "name": "drupal/coder",
  2804. "version": "8.2.12",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://git.drupal.org/project/coder.git",
  2808. "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  2809. },
  2810. "require": {
  2811. "ext-mbstring": "*",
  2812. "php": ">=5.4.0",
  2813. "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  2814. "symfony/yaml": ">=2.0.0"
  2815. },
  2816. "require-dev": {
  2817. "phpunit/phpunit": ">=3.7 <6"
  2818. },
  2819. "type": "phpcodesniffer-standard",
  2820. "notification-url": "https://packagist.org/downloads/",
  2821. "license": [
  2822. "GPL-2.0+"
  2823. ],
  2824. "description": "Coder is a library to review Drupal code.",
  2825. "homepage": "https://www.drupal.org/project/coder",
  2826. "keywords": [
  2827. "code review",
  2828. "phpcs",
  2829. "standards"
  2830. ],
  2831. "time": "2017-03-18T10:28:49+00:00"
  2832. },
  2833. {
  2834. "name": "fabpot/goutte",
  2835. "version": "v3.2.2",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  2839. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/395f61d7c2e15a813839769553a4de16fa3b3c96",
  2844. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96",
  2845. "shasum": ""
  2846. },
  2847. "require": {
  2848. "guzzlehttp/guzzle": "^6.0",
  2849. "php": ">=5.5.0",
  2850. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  2851. "symfony/css-selector": "~2.1|~3.0|~4.0",
  2852. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  2853. },
  2854. "require-dev": {
  2855. "symfony/phpunit-bridge": "^3.3 || ^4"
  2856. },
  2857. "type": "application",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-master": "3.2-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-4": {
  2865. "Goutte\\": "Goutte"
  2866. },
  2867. "exclude-from-classmap": [
  2868. "Goutte/Tests"
  2869. ]
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "Fabien Potencier",
  2878. "email": "fabien@symfony.com"
  2879. }
  2880. ],
  2881. "description": "A simple PHP Web Scraper",
  2882. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  2883. "keywords": [
  2884. "scraper"
  2885. ],
  2886. "time": "2017-11-19T08:45:40+00:00"
  2887. },
  2888. {
  2889. "name": "jcalderonzumba/gastonjs",
  2890. "version": "v1.2.0",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  2894. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  2899. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  2900. "shasum": ""
  2901. },
  2902. "require": {
  2903. "guzzlehttp/guzzle": "~5.0|~6.0",
  2904. "php": ">=5.4"
  2905. },
  2906. "require-dev": {
  2907. "phpunit/phpunit": "~4.6",
  2908. "silex/silex": "~1.2",
  2909. "symfony/phpunit-bridge": "~2.7",
  2910. "symfony/process": "~2.1"
  2911. },
  2912. "type": "phantomjs-api",
  2913. "extra": {
  2914. "branch-alias": {
  2915. "dev-master": "1.1.x-dev"
  2916. }
  2917. },
  2918. "autoload": {
  2919. "psr-4": {
  2920. "Zumba\\GastonJS\\": "src"
  2921. }
  2922. },
  2923. "notification-url": "https://packagist.org/downloads/",
  2924. "license": [
  2925. "MIT"
  2926. ],
  2927. "authors": [
  2928. {
  2929. "name": "Juan Francisco Calderón Zumba",
  2930. "email": "juanfcz@gmail.com",
  2931. "homepage": "http://github.com/jcalderonzumba"
  2932. }
  2933. ],
  2934. "description": "PhantomJS API based server for webpage automation",
  2935. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  2936. "keywords": [
  2937. "api",
  2938. "automation",
  2939. "browser",
  2940. "headless",
  2941. "phantomjs"
  2942. ],
  2943. "time": "2017-03-31T07:31:47+00:00"
  2944. },
  2945. {
  2946. "name": "jcalderonzumba/mink-phantomjs-driver",
  2947. "version": "v0.3.3",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  2951. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  2956. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "behat/mink": "~1.7",
  2961. "jcalderonzumba/gastonjs": "~1.0",
  2962. "php": ">=5.4",
  2963. "twig/twig": "~1.20|~2.0"
  2964. },
  2965. "require-dev": {
  2966. "mink/driver-testsuite": "dev-master",
  2967. "phpunit/phpunit": "~4.6"
  2968. },
  2969. "type": "mink-driver",
  2970. "extra": {
  2971. "branch-alias": {
  2972. "dev-master": "0.4.x-dev"
  2973. }
  2974. },
  2975. "autoload": {
  2976. "psr-4": {
  2977. "Zumba\\Mink\\Driver\\": "src"
  2978. }
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "MIT"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Juan Francisco Calderón Zumba",
  2987. "email": "juanfcz@gmail.com",
  2988. "homepage": "http://github.com/jcalderonzumba"
  2989. }
  2990. ],
  2991. "description": "PhantomJS driver for Mink framework",
  2992. "homepage": "http://mink.behat.org/",
  2993. "keywords": [
  2994. "ajax",
  2995. "browser",
  2996. "headless",
  2997. "javascript",
  2998. "phantomjs",
  2999. "testing"
  3000. ],
  3001. "time": "2016-12-01T10:57:30+00:00"
  3002. },
  3003. {
  3004. "name": "mikey179/vfsStream",
  3005. "version": "v1.6.5",
  3006. "source": {
  3007. "type": "git",
  3008. "url": "https://github.com/mikey179/vfsStream.git",
  3009. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  3010. },
  3011. "dist": {
  3012. "type": "zip",
  3013. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  3014. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  3015. "shasum": ""
  3016. },
  3017. "require": {
  3018. "php": ">=5.3.0"
  3019. },
  3020. "require-dev": {
  3021. "phpunit/phpunit": "~4.5"
  3022. },
  3023. "type": "library",
  3024. "extra": {
  3025. "branch-alias": {
  3026. "dev-master": "1.6.x-dev"
  3027. }
  3028. },
  3029. "autoload": {
  3030. "psr-0": {
  3031. "org\\bovigo\\vfs\\": "src/main/php"
  3032. }
  3033. },
  3034. "notification-url": "https://packagist.org/downloads/",
  3035. "license": [
  3036. "BSD-3-Clause"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Frank Kleine",
  3041. "homepage": "http://frankkleine.de/",
  3042. "role": "Developer"
  3043. }
  3044. ],
  3045. "description": "Virtual file system to mock the real file system in unit tests.",
  3046. "homepage": "http://vfs.bovigo.org/",
  3047. "time": "2017-08-01T08:02:14+00:00"
  3048. },
  3049. {
  3050. "name": "phpdocumentor/reflection-common",
  3051. "version": "1.0.1",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3055. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3060. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3061. "shasum": ""
  3062. },
  3063. "require": {
  3064. "php": ">=5.5"
  3065. },
  3066. "require-dev": {
  3067. "phpunit/phpunit": "^4.6"
  3068. },
  3069. "type": "library",
  3070. "extra": {
  3071. "branch-alias": {
  3072. "dev-master": "1.0.x-dev"
  3073. }
  3074. },
  3075. "autoload": {
  3076. "psr-4": {
  3077. "phpDocumentor\\Reflection\\": [
  3078. "src"
  3079. ]
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "authors": [
  3087. {
  3088. "name": "Jaap van Otterdijk",
  3089. "email": "opensource@ijaap.nl"
  3090. }
  3091. ],
  3092. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3093. "homepage": "http://www.phpdoc.org",
  3094. "keywords": [
  3095. "FQSEN",
  3096. "phpDocumentor",
  3097. "phpdoc",
  3098. "reflection",
  3099. "static analysis"
  3100. ],
  3101. "time": "2017-09-11T18:02:19+00:00"
  3102. },
  3103. {
  3104. "name": "phpdocumentor/reflection-docblock",
  3105. "version": "4.2.0",
  3106. "source": {
  3107. "type": "git",
  3108. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3109. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  3110. },
  3111. "dist": {
  3112. "type": "zip",
  3113. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da",
  3114. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  3115. "shasum": ""
  3116. },
  3117. "require": {
  3118. "php": "^7.0",
  3119. "phpdocumentor/reflection-common": "^1.0.0",
  3120. "phpdocumentor/type-resolver": "^0.4.0",
  3121. "webmozart/assert": "^1.0"
  3122. },
  3123. "require-dev": {
  3124. "doctrine/instantiator": "~1.0.5",
  3125. "mockery/mockery": "^1.0",
  3126. "phpunit/phpunit": "^6.4"
  3127. },
  3128. "type": "library",
  3129. "extra": {
  3130. "branch-alias": {
  3131. "dev-master": "4.x-dev"
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "phpDocumentor\\Reflection\\": [
  3137. "src/"
  3138. ]
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "Mike van Riel",
  3148. "email": "me@mikevanriel.com"
  3149. }
  3150. ],
  3151. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3152. "time": "2017-11-27T17:38:31+00:00"
  3153. },
  3154. {
  3155. "name": "phpdocumentor/type-resolver",
  3156. "version": "0.4.0",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3160. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  3165. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "php": "^5.5 || ^7.0",
  3170. "phpdocumentor/reflection-common": "^1.0"
  3171. },
  3172. "require-dev": {
  3173. "mockery/mockery": "^0.9.4",
  3174. "phpunit/phpunit": "^5.2||^4.8.24"
  3175. },
  3176. "type": "library",
  3177. "extra": {
  3178. "branch-alias": {
  3179. "dev-master": "1.0.x-dev"
  3180. }
  3181. },
  3182. "autoload": {
  3183. "psr-4": {
  3184. "phpDocumentor\\Reflection\\": [
  3185. "src/"
  3186. ]
  3187. }
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "MIT"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Mike van Riel",
  3196. "email": "me@mikevanriel.com"
  3197. }
  3198. ],
  3199. "time": "2017-07-14T14:27:02+00:00"
  3200. },
  3201. {
  3202. "name": "phpspec/prophecy",
  3203. "version": "1.7.3",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/phpspec/prophecy.git",
  3207. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  3212. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "doctrine/instantiator": "^1.0.2",
  3217. "php": "^5.3|^7.0",
  3218. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  3219. "sebastian/comparator": "^1.1|^2.0",
  3220. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  3221. },
  3222. "require-dev": {
  3223. "phpspec/phpspec": "^2.5|^3.2",
  3224. "phpunit/phpunit": "^4.8.35 || ^5.7"
  3225. },
  3226. "type": "library",
  3227. "extra": {
  3228. "branch-alias": {
  3229. "dev-master": "1.7.x-dev"
  3230. }
  3231. },
  3232. "autoload": {
  3233. "psr-0": {
  3234. "Prophecy\\": "src/"
  3235. }
  3236. },
  3237. "notification-url": "https://packagist.org/downloads/",
  3238. "license": [
  3239. "MIT"
  3240. ],
  3241. "authors": [
  3242. {
  3243. "name": "Konstantin Kudryashov",
  3244. "email": "ever.zet@gmail.com",
  3245. "homepage": "http://everzet.com"
  3246. },
  3247. {
  3248. "name": "Marcello Duarte",
  3249. "email": "marcello.duarte@gmail.com"
  3250. }
  3251. ],
  3252. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3253. "homepage": "https://github.com/phpspec/prophecy",
  3254. "keywords": [
  3255. "Double",
  3256. "Dummy",
  3257. "fake",
  3258. "mock",
  3259. "spy",
  3260. "stub"
  3261. ],
  3262. "time": "2017-11-24T13:59:53+00:00"
  3263. },
  3264. {
  3265. "name": "phpunit/php-code-coverage",
  3266. "version": "2.2.4",
  3267. "source": {
  3268. "type": "git",
  3269. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3270. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  3271. },
  3272. "dist": {
  3273. "type": "zip",
  3274. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  3275. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  3276. "shasum": ""
  3277. },
  3278. "require": {
  3279. "php": ">=5.3.3",
  3280. "phpunit/php-file-iterator": "~1.3",
  3281. "phpunit/php-text-template": "~1.2",
  3282. "phpunit/php-token-stream": "~1.3",
  3283. "sebastian/environment": "^1.3.2",
  3284. "sebastian/version": "~1.0"
  3285. },
  3286. "require-dev": {
  3287. "ext-xdebug": ">=2.1.4",
  3288. "phpunit/phpunit": "~4"
  3289. },
  3290. "suggest": {
  3291. "ext-dom": "*",
  3292. "ext-xdebug": ">=2.2.1",
  3293. "ext-xmlwriter": "*"
  3294. },
  3295. "type": "library",
  3296. "extra": {
  3297. "branch-alias": {
  3298. "dev-master": "2.2.x-dev"
  3299. }
  3300. },
  3301. "autoload": {
  3302. "classmap": [
  3303. "src/"
  3304. ]
  3305. },
  3306. "notification-url": "https://packagist.org/downloads/",
  3307. "license": [
  3308. "BSD-3-Clause"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Sebastian Bergmann",
  3313. "email": "sb@sebastian-bergmann.de",
  3314. "role": "lead"
  3315. }
  3316. ],
  3317. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3318. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3319. "keywords": [
  3320. "coverage",
  3321. "testing",
  3322. "xunit"
  3323. ],
  3324. "time": "2015-10-06T15:47:00+00:00"
  3325. },
  3326. {
  3327. "name": "phpunit/php-file-iterator",
  3328. "version": "1.4.5",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3332. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3337. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "php": ">=5.3.3"
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "branch-alias": {
  3346. "dev-master": "1.4.x-dev"
  3347. }
  3348. },
  3349. "autoload": {
  3350. "classmap": [
  3351. "src/"
  3352. ]
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "BSD-3-Clause"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Sebastian Bergmann",
  3361. "email": "sb@sebastian-bergmann.de",
  3362. "role": "lead"
  3363. }
  3364. ],
  3365. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3366. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3367. "keywords": [
  3368. "filesystem",
  3369. "iterator"
  3370. ],
  3371. "time": "2017-11-27T13:52:08+00:00"
  3372. },
  3373. {
  3374. "name": "phpunit/php-text-template",
  3375. "version": "1.2.1",
  3376. "source": {
  3377. "type": "git",
  3378. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3379. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3380. },
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3384. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3385. "shasum": ""
  3386. },
  3387. "require": {
  3388. "php": ">=5.3.3"
  3389. },
  3390. "type": "library",
  3391. "autoload": {
  3392. "classmap": [
  3393. "src/"
  3394. ]
  3395. },
  3396. "notification-url": "https://packagist.org/downloads/",
  3397. "license": [
  3398. "BSD-3-Clause"
  3399. ],
  3400. "authors": [
  3401. {
  3402. "name": "Sebastian Bergmann",
  3403. "email": "sebastian@phpunit.de",
  3404. "role": "lead"
  3405. }
  3406. ],
  3407. "description": "Simple template engine.",
  3408. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3409. "keywords": [
  3410. "template"
  3411. ],
  3412. "time": "2015-06-21T13:50:34+00:00"
  3413. },
  3414. {
  3415. "name": "phpunit/php-timer",
  3416. "version": "1.0.9",
  3417. "source": {
  3418. "type": "git",
  3419. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3420. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  3421. },
  3422. "dist": {
  3423. "type": "zip",
  3424. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3425. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3426. "shasum": ""
  3427. },
  3428. "require": {
  3429. "php": "^5.3.3 || ^7.0"
  3430. },
  3431. "require-dev": {
  3432. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3433. },
  3434. "type": "library",
  3435. "extra": {
  3436. "branch-alias": {
  3437. "dev-master": "1.0-dev"
  3438. }
  3439. },
  3440. "autoload": {
  3441. "classmap": [
  3442. "src/"
  3443. ]
  3444. },
  3445. "notification-url": "https://packagist.org/downloads/",
  3446. "license": [
  3447. "BSD-3-Clause"
  3448. ],
  3449. "authors": [
  3450. {
  3451. "name": "Sebastian Bergmann",
  3452. "email": "sb@sebastian-bergmann.de",
  3453. "role": "lead"
  3454. }
  3455. ],
  3456. "description": "Utility class for timing",
  3457. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3458. "keywords": [
  3459. "timer"
  3460. ],
  3461. "time": "2017-02-26T11:10:40+00:00"
  3462. },
  3463. {
  3464. "name": "phpunit/php-token-stream",
  3465. "version": "1.4.12",
  3466. "source": {
  3467. "type": "git",
  3468. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3469. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  3470. },
  3471. "dist": {
  3472. "type": "zip",
  3473. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  3474. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  3475. "shasum": ""
  3476. },
  3477. "require": {
  3478. "ext-tokenizer": "*",
  3479. "php": ">=5.3.3"
  3480. },
  3481. "require-dev": {
  3482. "phpunit/phpunit": "~4.2"
  3483. },
  3484. "type": "library",
  3485. "extra": {
  3486. "branch-alias": {
  3487. "dev-master": "1.4-dev"
  3488. }
  3489. },
  3490. "autoload": {
  3491. "classmap": [
  3492. "src/"
  3493. ]
  3494. },
  3495. "notification-url": "https://packagist.org/downloads/",
  3496. "license": [
  3497. "BSD-3-Clause"
  3498. ],
  3499. "authors": [
  3500. {
  3501. "name": "Sebastian Bergmann",
  3502. "email": "sebastian@phpunit.de"
  3503. }
  3504. ],
  3505. "description": "Wrapper around PHP's tokenizer extension.",
  3506. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3507. "keywords": [
  3508. "tokenizer"
  3509. ],
  3510. "time": "2017-12-04T08:55:13+00:00"
  3511. },
  3512. {
  3513. "name": "phpunit/phpunit",
  3514. "version": "4.8.36",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3518. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  3523. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  3524. "shasum": ""
  3525. },
  3526. "require": {
  3527. "ext-dom": "*",
  3528. "ext-json": "*",
  3529. "ext-pcre": "*",
  3530. "ext-reflection": "*",
  3531. "ext-spl": "*",
  3532. "php": ">=5.3.3",
  3533. "phpspec/prophecy": "^1.3.1",
  3534. "phpunit/php-code-coverage": "~2.1",
  3535. "phpunit/php-file-iterator": "~1.4",
  3536. "phpunit/php-text-template": "~1.2",
  3537. "phpunit/php-timer": "^1.0.6",
  3538. "phpunit/phpunit-mock-objects": "~2.3",
  3539. "sebastian/comparator": "~1.2.2",
  3540. "sebastian/diff": "~1.2",
  3541. "sebastian/environment": "~1.3",
  3542. "sebastian/exporter": "~1.2",
  3543. "sebastian/global-state": "~1.0",
  3544. "sebastian/version": "~1.0",
  3545. "symfony/yaml": "~2.1|~3.0"
  3546. },
  3547. "suggest": {
  3548. "phpunit/php-invoker": "~1.1"
  3549. },
  3550. "bin": [
  3551. "phpunit"
  3552. ],
  3553. "type": "library",
  3554. "extra": {
  3555. "branch-alias": {
  3556. "dev-master": "4.8.x-dev"
  3557. }
  3558. },
  3559. "autoload": {
  3560. "classmap": [
  3561. "src/"
  3562. ]
  3563. },
  3564. "notification-url": "https://packagist.org/downloads/",
  3565. "license": [
  3566. "BSD-3-Clause"
  3567. ],
  3568. "authors": [
  3569. {
  3570. "name": "Sebastian Bergmann",
  3571. "email": "sebastian@phpunit.de",
  3572. "role": "lead"
  3573. }
  3574. ],
  3575. "description": "The PHP Unit Testing framework.",
  3576. "homepage": "https://phpunit.de/",
  3577. "keywords": [
  3578. "phpunit",
  3579. "testing",
  3580. "xunit"
  3581. ],
  3582. "time": "2017-06-21T08:07:12+00:00"
  3583. },
  3584. {
  3585. "name": "phpunit/phpunit-mock-objects",
  3586. "version": "2.3.8",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3590. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3595. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "doctrine/instantiator": "^1.0.2",
  3600. "php": ">=5.3.3",
  3601. "phpunit/php-text-template": "~1.2",
  3602. "sebastian/exporter": "~1.2"
  3603. },
  3604. "require-dev": {
  3605. "phpunit/phpunit": "~4.4"
  3606. },
  3607. "suggest": {
  3608. "ext-soap": "*"
  3609. },
  3610. "type": "library",
  3611. "extra": {
  3612. "branch-alias": {
  3613. "dev-master": "2.3.x-dev"
  3614. }
  3615. },
  3616. "autoload": {
  3617. "classmap": [
  3618. "src/"
  3619. ]
  3620. },
  3621. "notification-url": "https://packagist.org/downloads/",
  3622. "license": [
  3623. "BSD-3-Clause"
  3624. ],
  3625. "authors": [
  3626. {
  3627. "name": "Sebastian Bergmann",
  3628. "email": "sb@sebastian-bergmann.de",
  3629. "role": "lead"
  3630. }
  3631. ],
  3632. "description": "Mock Object library for PHPUnit",
  3633. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3634. "keywords": [
  3635. "mock",
  3636. "xunit"
  3637. ],
  3638. "time": "2015-10-02T06:51:40+00:00"
  3639. },
  3640. {
  3641. "name": "sebastian/comparator",
  3642. "version": "1.2.4",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/sebastianbergmann/comparator.git",
  3646. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3651. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "php": ">=5.3.3",
  3656. "sebastian/diff": "~1.2",
  3657. "sebastian/exporter": "~1.2 || ~2.0"
  3658. },
  3659. "require-dev": {
  3660. "phpunit/phpunit": "~4.4"
  3661. },
  3662. "type": "library",
  3663. "extra": {
  3664. "branch-alias": {
  3665. "dev-master": "1.2.x-dev"
  3666. }
  3667. },
  3668. "autoload": {
  3669. "classmap": [
  3670. "src/"
  3671. ]
  3672. },
  3673. "notification-url": "https://packagist.org/downloads/",
  3674. "license": [
  3675. "BSD-3-Clause"
  3676. ],
  3677. "authors": [
  3678. {
  3679. "name": "Jeff Welch",
  3680. "email": "whatthejeff@gmail.com"
  3681. },
  3682. {
  3683. "name": "Volker Dusch",
  3684. "email": "github@wallbash.com"
  3685. },
  3686. {
  3687. "name": "Bernhard Schussek",
  3688. "email": "bschussek@2bepublished.at"
  3689. },
  3690. {
  3691. "name": "Sebastian Bergmann",
  3692. "email": "sebastian@phpunit.de"
  3693. }
  3694. ],
  3695. "description": "Provides the functionality to compare PHP values for equality",
  3696. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3697. "keywords": [
  3698. "comparator",
  3699. "compare",
  3700. "equality"
  3701. ],
  3702. "time": "2017-01-29T09:50:25+00:00"
  3703. },
  3704. {
  3705. "name": "sebastian/diff",
  3706. "version": "1.4.3",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/sebastianbergmann/diff.git",
  3710. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  3715. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "php": "^5.3.3 || ^7.0"
  3720. },
  3721. "require-dev": {
  3722. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3723. },
  3724. "type": "library",
  3725. "extra": {
  3726. "branch-alias": {
  3727. "dev-master": "1.4-dev"
  3728. }
  3729. },
  3730. "autoload": {
  3731. "classmap": [
  3732. "src/"
  3733. ]
  3734. },
  3735. "notification-url": "https://packagist.org/downloads/",
  3736. "license": [
  3737. "BSD-3-Clause"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Kore Nordmann",
  3742. "email": "mail@kore-nordmann.de"
  3743. },
  3744. {
  3745. "name": "Sebastian Bergmann",
  3746. "email": "sebastian@phpunit.de"
  3747. }
  3748. ],
  3749. "description": "Diff implementation",
  3750. "homepage": "https://github.com/sebastianbergmann/diff",
  3751. "keywords": [
  3752. "diff"
  3753. ],
  3754. "time": "2017-05-22T07:24:03+00:00"
  3755. },
  3756. {
  3757. "name": "sebastian/environment",
  3758. "version": "1.3.8",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/sebastianbergmann/environment.git",
  3762. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  3767. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  3768. "shasum": ""
  3769. },
  3770. "require": {
  3771. "php": "^5.3.3 || ^7.0"
  3772. },
  3773. "require-dev": {
  3774. "phpunit/phpunit": "^4.8 || ^5.0"
  3775. },
  3776. "type": "library",
  3777. "extra": {
  3778. "branch-alias": {
  3779. "dev-master": "1.3.x-dev"
  3780. }
  3781. },
  3782. "autoload": {
  3783. "classmap": [
  3784. "src/"
  3785. ]
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "BSD-3-Clause"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Sebastian Bergmann",
  3794. "email": "sebastian@phpunit.de"
  3795. }
  3796. ],
  3797. "description": "Provides functionality to handle HHVM/PHP environments",
  3798. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3799. "keywords": [
  3800. "Xdebug",
  3801. "environment",
  3802. "hhvm"
  3803. ],
  3804. "time": "2016-08-18T05:49:44+00:00"
  3805. },
  3806. {
  3807. "name": "sebastian/exporter",
  3808. "version": "1.2.2",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://github.com/sebastianbergmann/exporter.git",
  3812. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  3817. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  3818. "shasum": ""
  3819. },
  3820. "require": {
  3821. "php": ">=5.3.3",
  3822. "sebastian/recursion-context": "~1.0"
  3823. },
  3824. "require-dev": {
  3825. "ext-mbstring": "*",
  3826. "phpunit/phpunit": "~4.4"
  3827. },
  3828. "type": "library",
  3829. "extra": {
  3830. "branch-alias": {
  3831. "dev-master": "1.3.x-dev"
  3832. }
  3833. },
  3834. "autoload": {
  3835. "classmap": [
  3836. "src/"
  3837. ]
  3838. },
  3839. "notification-url": "https://packagist.org/downloads/",
  3840. "license": [
  3841. "BSD-3-Clause"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Jeff Welch",
  3846. "email": "whatthejeff@gmail.com"
  3847. },
  3848. {
  3849. "name": "Volker Dusch",
  3850. "email": "github@wallbash.com"
  3851. },
  3852. {
  3853. "name": "Bernhard Schussek",
  3854. "email": "bschussek@2bepublished.at"
  3855. },
  3856. {
  3857. "name": "Sebastian Bergmann",
  3858. "email": "sebastian@phpunit.de"
  3859. },
  3860. {
  3861. "name": "Adam Harvey",
  3862. "email": "aharvey@php.net"
  3863. }
  3864. ],
  3865. "description": "Provides the functionality to export PHP variables for visualization",
  3866. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3867. "keywords": [
  3868. "export",
  3869. "exporter"
  3870. ],
  3871. "time": "2016-06-17T09:04:28+00:00"
  3872. },
  3873. {
  3874. "name": "sebastian/global-state",
  3875. "version": "1.1.1",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://github.com/sebastianbergmann/global-state.git",
  3879. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3884. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3885. "shasum": ""
  3886. },
  3887. "require": {
  3888. "php": ">=5.3.3"
  3889. },
  3890. "require-dev": {
  3891. "phpunit/phpunit": "~4.2"
  3892. },
  3893. "suggest": {
  3894. "ext-uopz": "*"
  3895. },
  3896. "type": "library",
  3897. "extra": {
  3898. "branch-alias": {
  3899. "dev-master": "1.0-dev"
  3900. }
  3901. },
  3902. "autoload": {
  3903. "classmap": [
  3904. "src/"
  3905. ]
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "BSD-3-Clause"
  3910. ],
  3911. "authors": [
  3912. {
  3913. "name": "Sebastian Bergmann",
  3914. "email": "sebastian@phpunit.de"
  3915. }
  3916. ],
  3917. "description": "Snapshotting of global state",
  3918. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3919. "keywords": [
  3920. "global state"
  3921. ],
  3922. "time": "2015-10-12T03:26:01+00:00"
  3923. },
  3924. {
  3925. "name": "sebastian/recursion-context",
  3926. "version": "1.0.5",
  3927. "source": {
  3928. "type": "git",
  3929. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3930. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  3931. },
  3932. "dist": {
  3933. "type": "zip",
  3934. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  3935. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  3936. "shasum": ""
  3937. },
  3938. "require": {
  3939. "php": ">=5.3.3"
  3940. },
  3941. "require-dev": {
  3942. "phpunit/phpunit": "~4.4"
  3943. },
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-master": "1.0.x-dev"
  3948. }
  3949. },
  3950. "autoload": {
  3951. "classmap": [
  3952. "src/"
  3953. ]
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "BSD-3-Clause"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Jeff Welch",
  3962. "email": "whatthejeff@gmail.com"
  3963. },
  3964. {
  3965. "name": "Sebastian Bergmann",
  3966. "email": "sebastian@phpunit.de"
  3967. },
  3968. {
  3969. "name": "Adam Harvey",
  3970. "email": "aharvey@php.net"
  3971. }
  3972. ],
  3973. "description": "Provides functionality to recursively process PHP variables",
  3974. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3975. "time": "2016-10-03T07:41:43+00:00"
  3976. },
  3977. {
  3978. "name": "sebastian/version",
  3979. "version": "1.0.6",
  3980. "source": {
  3981. "type": "git",
  3982. "url": "https://github.com/sebastianbergmann/version.git",
  3983. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  3984. },
  3985. "dist": {
  3986. "type": "zip",
  3987. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3988. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3989. "shasum": ""
  3990. },
  3991. "type": "library",
  3992. "autoload": {
  3993. "classmap": [
  3994. "src/"
  3995. ]
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "BSD-3-Clause"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Sebastian Bergmann",
  4004. "email": "sebastian@phpunit.de",
  4005. "role": "lead"
  4006. }
  4007. ],
  4008. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4009. "homepage": "https://github.com/sebastianbergmann/version",
  4010. "time": "2015-06-21T13:59:46+00:00"
  4011. },
  4012. {
  4013. "name": "squizlabs/php_codesniffer",
  4014. "version": "2.9.1",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  4018. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  4023. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  4024. "shasum": ""
  4025. },
  4026. "require": {
  4027. "ext-simplexml": "*",
  4028. "ext-tokenizer": "*",
  4029. "ext-xmlwriter": "*",
  4030. "php": ">=5.1.2"
  4031. },
  4032. "require-dev": {
  4033. "phpunit/phpunit": "~4.0"
  4034. },
  4035. "bin": [
  4036. "scripts/phpcs",
  4037. "scripts/phpcbf"
  4038. ],
  4039. "type": "library",
  4040. "extra": {
  4041. "branch-alias": {
  4042. "dev-master": "2.x-dev"
  4043. }
  4044. },
  4045. "autoload": {
  4046. "classmap": [
  4047. "CodeSniffer.php",
  4048. "CodeSniffer/CLI.php",
  4049. "CodeSniffer/Exception.php",
  4050. "CodeSniffer/File.php",
  4051. "CodeSniffer/Fixer.php",
  4052. "CodeSniffer/Report.php",
  4053. "CodeSniffer/Reporting.php",
  4054. "CodeSniffer/Sniff.php",
  4055. "CodeSniffer/Tokens.php",
  4056. "CodeSniffer/Reports/",
  4057. "CodeSniffer/Tokenizers/",
  4058. "CodeSniffer/DocGenerators/",
  4059. "CodeSniffer/Standards/AbstractPatternSniff.php",
  4060. "CodeSniffer/Standards/AbstractScopeSniff.php",
  4061. "CodeSniffer/Standards/AbstractVariableSniff.php",
  4062. "CodeSniffer/Standards/IncorrectPatternException.php",
  4063. "CodeSniffer/Standards/Generic/Sniffs/",
  4064. "CodeSniffer/Standards/MySource/Sniffs/",
  4065. "CodeSniffer/Standards/PEAR/Sniffs/",
  4066. "CodeSniffer/Standards/PSR1/Sniffs/",
  4067. "CodeSniffer/Standards/PSR2/Sniffs/",
  4068. "CodeSniffer/Standards/Squiz/Sniffs/",
  4069. "CodeSniffer/Standards/Zend/Sniffs/"
  4070. ]
  4071. },
  4072. "notification-url": "https://packagist.org/downloads/",
  4073. "license": [
  4074. "BSD-3-Clause"
  4075. ],
  4076. "authors": [
  4077. {
  4078. "name": "Greg Sherwood",
  4079. "role": "lead"
  4080. }
  4081. ],
  4082. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  4083. "homepage": "http://www.squizlabs.com/php-codesniffer",
  4084. "keywords": [
  4085. "phpcs",
  4086. "standards"
  4087. ],
  4088. "time": "2017-05-22T02:43:20+00:00"
  4089. },
  4090. {
  4091. "name": "symfony/browser-kit",
  4092. "version": "v3.4.3",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/symfony/browser-kit.git",
  4096. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/490f27762705c8489bd042fe3e9377a191dba9b4",
  4101. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
  4102. "shasum": ""
  4103. },
  4104. "require": {
  4105. "php": "^5.5.9|>=7.0.8",
  4106. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  4107. },
  4108. "require-dev": {
  4109. "symfony/css-selector": "~2.8|~3.0|~4.0",
  4110. "symfony/process": "~2.8|~3.0|~4.0"
  4111. },
  4112. "suggest": {
  4113. "symfony/process": ""
  4114. },
  4115. "type": "library",
  4116. "extra": {
  4117. "branch-alias": {
  4118. "dev-master": "3.4-dev"
  4119. }
  4120. },
  4121. "autoload": {
  4122. "psr-4": {
  4123. "Symfony\\Component\\BrowserKit\\": ""
  4124. },
  4125. "exclude-from-classmap": [
  4126. "/Tests/"
  4127. ]
  4128. },
  4129. "notification-url": "https://packagist.org/downloads/",
  4130. "license": [
  4131. "MIT"
  4132. ],
  4133. "authors": [
  4134. {
  4135. "name": "Fabien Potencier",
  4136. "email": "fabien@symfony.com"
  4137. },
  4138. {
  4139. "name": "Symfony Community",
  4140. "homepage": "https://symfony.com/contributors"
  4141. }
  4142. ],
  4143. "description": "Symfony BrowserKit Component",
  4144. "homepage": "https://symfony.com",
  4145. "time": "2018-01-03T07:37:34+00:00"
  4146. },
  4147. {
  4148. "name": "symfony/css-selector",
  4149. "version": "v3.2.14",
  4150. "source": {
  4151. "type": "git",
  4152. "url": "https://github.com/symfony/css-selector.git",
  4153. "reference": "02983c144038e697c959e6b06ef6666de759ccbc"
  4154. },
  4155. "dist": {
  4156. "type": "zip",
  4157. "url": "https://api.github.com/repos/symfony/css-selector/zipball/02983c144038e697c959e6b06ef6666de759ccbc",
  4158. "reference": "02983c144038e697c959e6b06ef6666de759ccbc",
  4159. "shasum": ""
  4160. },
  4161. "require": {
  4162. "php": ">=5.5.9"
  4163. },
  4164. "type": "library",
  4165. "extra": {
  4166. "branch-alias": {
  4167. "dev-master": "3.2-dev"
  4168. }
  4169. },
  4170. "autoload": {
  4171. "psr-4": {
  4172. "Symfony\\Component\\CssSelector\\": ""
  4173. },
  4174. "exclude-from-classmap": [
  4175. "/Tests/"
  4176. ]
  4177. },
  4178. "notification-url": "https://packagist.org/downloads/",
  4179. "license": [
  4180. "MIT"
  4181. ],
  4182. "authors": [
  4183. {
  4184. "name": "Jean-François Simon",
  4185. "email": "jeanfrancois.simon@sensiolabs.com"
  4186. },
  4187. {
  4188. "name": "Fabien Potencier",
  4189. "email": "fabien@symfony.com"
  4190. },
  4191. {
  4192. "name": "Symfony Community",
  4193. "homepage": "https://symfony.com/contributors"
  4194. }
  4195. ],
  4196. "description": "Symfony CssSelector Component",
  4197. "homepage": "https://symfony.com",
  4198. "time": "2017-05-01T14:55:58+00:00"
  4199. },
  4200. {
  4201. "name": "symfony/dom-crawler",
  4202. "version": "v3.4.3",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/symfony/dom-crawler.git",
  4206. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/09bd97b844b3151fab82f2fdd62db9c464b3910a",
  4211. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "php": "^5.5.9|>=7.0.8",
  4216. "symfony/polyfill-mbstring": "~1.0"
  4217. },
  4218. "require-dev": {
  4219. "symfony/css-selector": "~2.8|~3.0|~4.0"
  4220. },
  4221. "suggest": {
  4222. "symfony/css-selector": ""
  4223. },
  4224. "type": "library",
  4225. "extra": {
  4226. "branch-alias": {
  4227. "dev-master": "3.4-dev"
  4228. }
  4229. },
  4230. "autoload": {
  4231. "psr-4": {
  4232. "Symfony\\Component\\DomCrawler\\": ""
  4233. },
  4234. "exclude-from-classmap": [
  4235. "/Tests/"
  4236. ]
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "Fabien Potencier",
  4245. "email": "fabien@symfony.com"
  4246. },
  4247. {
  4248. "name": "Symfony Community",
  4249. "homepage": "https://symfony.com/contributors"
  4250. }
  4251. ],
  4252. "description": "Symfony DomCrawler Component",
  4253. "homepage": "https://symfony.com",
  4254. "time": "2018-01-03T07:37:34+00:00"
  4255. },
  4256. {
  4257. "name": "symfony/phpunit-bridge",
  4258. "version": "v3.2.14",
  4259. "source": {
  4260. "type": "git",
  4261. "url": "https://github.com/symfony/phpunit-bridge.git",
  4262. "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f"
  4263. },
  4264. "dist": {
  4265. "type": "zip",
  4266. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
  4267. "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
  4268. "shasum": ""
  4269. },
  4270. "require": {
  4271. "php": ">=5.3.3"
  4272. },
  4273. "conflict": {
  4274. "phpunit/phpunit": ">=6.0"
  4275. },
  4276. "suggest": {
  4277. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  4278. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  4279. },
  4280. "bin": [
  4281. "bin/simple-phpunit"
  4282. ],
  4283. "type": "symfony-bridge",
  4284. "extra": {
  4285. "branch-alias": {
  4286. "dev-master": "3.2-dev"
  4287. }
  4288. },
  4289. "autoload": {
  4290. "files": [
  4291. "bootstrap.php"
  4292. ],
  4293. "psr-4": {
  4294. "Symfony\\Bridge\\PhpUnit\\": ""
  4295. },
  4296. "exclude-from-classmap": [
  4297. "/Tests/"
  4298. ]
  4299. },
  4300. "notification-url": "https://packagist.org/downloads/",
  4301. "license": [
  4302. "MIT"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "Nicolas Grekas",
  4307. "email": "p@tchwork.com"
  4308. },
  4309. {
  4310. "name": "Symfony Community",
  4311. "homepage": "https://symfony.com/contributors"
  4312. }
  4313. ],
  4314. "description": "Symfony PHPUnit Bridge",
  4315. "homepage": "https://symfony.com",
  4316. "time": "2017-06-02T09:43:35+00:00"
  4317. },
  4318. {
  4319. "name": "webmozart/assert",
  4320. "version": "1.2.0",
  4321. "source": {
  4322. "type": "git",
  4323. "url": "https://github.com/webmozart/assert.git",
  4324. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  4325. },
  4326. "dist": {
  4327. "type": "zip",
  4328. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  4329. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  4330. "shasum": ""
  4331. },
  4332. "require": {
  4333. "php": "^5.3.3 || ^7.0"
  4334. },
  4335. "require-dev": {
  4336. "phpunit/phpunit": "^4.6",
  4337. "sebastian/version": "^1.0.1"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-master": "1.3-dev"
  4343. }
  4344. },
  4345. "autoload": {
  4346. "psr-4": {
  4347. "Webmozart\\Assert\\": "src/"
  4348. }
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "Bernhard Schussek",
  4357. "email": "bschussek@gmail.com"
  4358. }
  4359. ],
  4360. "description": "Assertions to validate method input/output with nice error messages.",
  4361. "keywords": [
  4362. "assert",
  4363. "check",
  4364. "validate"
  4365. ],
  4366. "time": "2016-11-23T20:04:58+00:00"
  4367. }
  4368. ],
  4369. "aliases": [],
  4370. "minimum-stability": "dev",
  4371. "stability-flags": {
  4372. "behat/mink": 20
  4373. },
  4374. "prefer-stable": true,
  4375. "prefer-lowest": false,
  4376. "platform": {
  4377. "php": ">=5.5.9"
  4378. },
  4379. "platform-dev": []
  4380. }