composer.lock 147 KB

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