composer.lock 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776
  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": "ba0ab2078b5b2253eee3f37eaddba36f",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/943b2c4fcad1ef178d16a713c2468bf7e579c288",
  20. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8.35",
  30. "psr/log": "^1.0",
  31. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  32. },
  33. "type": "library",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.x-dev"
  37. }
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Composer\\CaBundle\\": "src"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Jordi Boggiano",
  51. "email": "j.boggiano@seld.be",
  52. "homepage": "http://seld.be"
  53. }
  54. ],
  55. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  56. "keywords": [
  57. "cabundle",
  58. "cacert",
  59. "certificate",
  60. "ssl",
  61. "tls"
  62. ],
  63. "time": "2017-11-29T09:37:33+00:00"
  64. },
  65. {
  66. "name": "composer/composer",
  67. "version": "1.5.5",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/composer/composer.git",
  71. "reference": "aab6229c9a4b6731f23b36107c39f4007c290b50"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/composer/composer/zipball/aab6229c9a4b6731f23b36107c39f4007c290b50",
  76. "reference": "aab6229c9a4b6731f23b36107c39f4007c290b50",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "composer/ca-bundle": "^1.0",
  81. "composer/semver": "^1.0",
  82. "composer/spdx-licenses": "^1.0",
  83. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  84. "php": "^5.3.2 || ^7.0",
  85. "psr/log": "^1.0",
  86. "seld/cli-prompt": "^1.0",
  87. "seld/jsonlint": "^1.4",
  88. "seld/phar-utils": "^1.0",
  89. "symfony/console": "^2.7 || ^3.0",
  90. "symfony/filesystem": "^2.7 || ^3.0",
  91. "symfony/finder": "^2.7 || ^3.0",
  92. "symfony/process": "^2.7 || ^3.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^4.5 || ^5.0.5",
  96. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  97. },
  98. "suggest": {
  99. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  100. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  101. "ext-zlib": "Allow gzip compression of HTTP requests"
  102. },
  103. "bin": [
  104. "bin/composer"
  105. ],
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-master": "1.5-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Composer\\": "src/Composer"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Nils Adermann",
  124. "email": "naderman@naderman.de",
  125. "homepage": "http://www.naderman.de"
  126. },
  127. {
  128. "name": "Jordi Boggiano",
  129. "email": "j.boggiano@seld.be",
  130. "homepage": "http://seld.be"
  131. }
  132. ],
  133. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  134. "homepage": "https://getcomposer.org/",
  135. "keywords": [
  136. "autoload",
  137. "dependency",
  138. "package"
  139. ],
  140. "time": "2017-12-01T13:42:57+00:00"
  141. },
  142. {
  143. "name": "composer/semver",
  144. "version": "1.4.2",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/composer/semver.git",
  148. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  153. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "php": "^5.3.2 || ^7.0"
  158. },
  159. "require-dev": {
  160. "phpunit/phpunit": "^4.5 || ^5.0.5",
  161. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  162. },
  163. "type": "library",
  164. "extra": {
  165. "branch-alias": {
  166. "dev-master": "1.x-dev"
  167. }
  168. },
  169. "autoload": {
  170. "psr-4": {
  171. "Composer\\Semver\\": "src"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Nils Adermann",
  181. "email": "naderman@naderman.de",
  182. "homepage": "http://www.naderman.de"
  183. },
  184. {
  185. "name": "Jordi Boggiano",
  186. "email": "j.boggiano@seld.be",
  187. "homepage": "http://seld.be"
  188. },
  189. {
  190. "name": "Rob Bast",
  191. "email": "rob.bast@gmail.com",
  192. "homepage": "http://robbast.nl"
  193. }
  194. ],
  195. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  196. "keywords": [
  197. "semantic",
  198. "semver",
  199. "validation",
  200. "versioning"
  201. ],
  202. "time": "2016-08-30T16:08:34+00:00"
  203. },
  204. {
  205. "name": "composer/spdx-licenses",
  206. "version": "1.1.6",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/composer/spdx-licenses.git",
  210. "reference": "2603a0d7ddc00a015deb576fa5297ca43dee6b1c"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/2603a0d7ddc00a015deb576fa5297ca43dee6b1c",
  215. "reference": "2603a0d7ddc00a015deb576fa5297ca43dee6b1c",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "php": "^5.3.2 || ^7.0"
  220. },
  221. "require-dev": {
  222. "phpunit/phpunit": "^4.5 || ^5.0.5",
  223. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  224. },
  225. "type": "library",
  226. "extra": {
  227. "branch-alias": {
  228. "dev-master": "1.x-dev"
  229. }
  230. },
  231. "autoload": {
  232. "psr-4": {
  233. "Composer\\Spdx\\": "src"
  234. }
  235. },
  236. "notification-url": "https://packagist.org/downloads/",
  237. "license": [
  238. "MIT"
  239. ],
  240. "authors": [
  241. {
  242. "name": "Nils Adermann",
  243. "email": "naderman@naderman.de",
  244. "homepage": "http://www.naderman.de"
  245. },
  246. {
  247. "name": "Jordi Boggiano",
  248. "email": "j.boggiano@seld.be",
  249. "homepage": "http://seld.be"
  250. },
  251. {
  252. "name": "Rob Bast",
  253. "email": "rob.bast@gmail.com",
  254. "homepage": "http://robbast.nl"
  255. }
  256. ],
  257. "description": "SPDX licenses list and validation library.",
  258. "keywords": [
  259. "license",
  260. "spdx",
  261. "validator"
  262. ],
  263. "time": "2017-04-03T19:08:52+00:00"
  264. },
  265. {
  266. "name": "doctrine/instantiator",
  267. "version": "1.1.0",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/doctrine/instantiator.git",
  271. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  276. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  277. "shasum": ""
  278. },
  279. "require": {
  280. "php": "^7.1"
  281. },
  282. "require-dev": {
  283. "athletic/athletic": "~0.1.8",
  284. "ext-pdo": "*",
  285. "ext-phar": "*",
  286. "phpunit/phpunit": "^6.2.3",
  287. "squizlabs/php_codesniffer": "^3.0.2"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-master": "1.2.x-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Marco Pivetta",
  307. "email": "ocramius@gmail.com",
  308. "homepage": "http://ocramius.github.com/"
  309. }
  310. ],
  311. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  312. "homepage": "https://github.com/doctrine/instantiator",
  313. "keywords": [
  314. "constructor",
  315. "instantiate"
  316. ],
  317. "time": "2017-07-22T11:58:36+00:00"
  318. },
  319. {
  320. "name": "justinrainbow/json-schema",
  321. "version": "5.2.6",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/justinrainbow/json-schema.git",
  325. "reference": "d283e11b6e14c6f4664cf080415c4341293e5bbd"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/d283e11b6e14c6f4664cf080415c4341293e5bbd",
  330. "reference": "d283e11b6e14c6f4664cf080415c4341293e5bbd",
  331. "shasum": ""
  332. },
  333. "require": {
  334. "php": ">=5.3.3"
  335. },
  336. "require-dev": {
  337. "friendsofphp/php-cs-fixer": "^2.1",
  338. "json-schema/json-schema-test-suite": "1.2.0",
  339. "phpunit/phpunit": "^4.8.22"
  340. },
  341. "bin": [
  342. "bin/validate-json"
  343. ],
  344. "type": "library",
  345. "extra": {
  346. "branch-alias": {
  347. "dev-master": "5.0.x-dev"
  348. }
  349. },
  350. "autoload": {
  351. "psr-4": {
  352. "JsonSchema\\": "src/JsonSchema/"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "MIT"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Bruno Prieto Reis",
  362. "email": "bruno.p.reis@gmail.com"
  363. },
  364. {
  365. "name": "Justin Rainbow",
  366. "email": "justin.rainbow@gmail.com"
  367. },
  368. {
  369. "name": "Igor Wiedler",
  370. "email": "igor@wiedler.ch"
  371. },
  372. {
  373. "name": "Robert Schönthal",
  374. "email": "seroscho@googlemail.com"
  375. }
  376. ],
  377. "description": "A library to validate a json schema.",
  378. "homepage": "https://github.com/justinrainbow/json-schema",
  379. "keywords": [
  380. "json",
  381. "schema"
  382. ],
  383. "time": "2017-10-21T13:15:38+00:00"
  384. },
  385. {
  386. "name": "monolog/monolog",
  387. "version": "1.23.0",
  388. "source": {
  389. "type": "git",
  390. "url": "https://github.com/Seldaek/monolog.git",
  391. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  392. },
  393. "dist": {
  394. "type": "zip",
  395. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  396. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  397. "shasum": ""
  398. },
  399. "require": {
  400. "php": ">=5.3.0",
  401. "psr/log": "~1.0"
  402. },
  403. "provide": {
  404. "psr/log-implementation": "1.0.0"
  405. },
  406. "require-dev": {
  407. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  408. "doctrine/couchdb": "~1.0@dev",
  409. "graylog2/gelf-php": "~1.0",
  410. "jakub-onderka/php-parallel-lint": "0.9",
  411. "php-amqplib/php-amqplib": "~2.4",
  412. "php-console/php-console": "^3.1.3",
  413. "phpunit/phpunit": "~4.5",
  414. "phpunit/phpunit-mock-objects": "2.3.0",
  415. "ruflin/elastica": ">=0.90 <3.0",
  416. "sentry/sentry": "^0.13",
  417. "swiftmailer/swiftmailer": "^5.3|^6.0"
  418. },
  419. "suggest": {
  420. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  421. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  422. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  423. "ext-mongo": "Allow sending log messages to a MongoDB server",
  424. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  425. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  426. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  427. "php-console/php-console": "Allow sending log messages to Google Chrome",
  428. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  429. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  430. "sentry/sentry": "Allow sending log messages to a Sentry server"
  431. },
  432. "type": "library",
  433. "extra": {
  434. "branch-alias": {
  435. "dev-master": "2.0.x-dev"
  436. }
  437. },
  438. "autoload": {
  439. "psr-4": {
  440. "Monolog\\": "src/Monolog"
  441. }
  442. },
  443. "notification-url": "https://packagist.org/downloads/",
  444. "license": [
  445. "MIT"
  446. ],
  447. "authors": [
  448. {
  449. "name": "Jordi Boggiano",
  450. "email": "j.boggiano@seld.be",
  451. "homepage": "http://seld.be"
  452. }
  453. ],
  454. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  455. "homepage": "http://github.com/Seldaek/monolog",
  456. "keywords": [
  457. "log",
  458. "logging",
  459. "psr-3"
  460. ],
  461. "time": "2017-06-19T01:22:40+00:00"
  462. },
  463. {
  464. "name": "myclabs/deep-copy",
  465. "version": "1.7.0",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/myclabs/DeepCopy.git",
  469. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  474. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "php": "^5.6 || ^7.0"
  479. },
  480. "require-dev": {
  481. "doctrine/collections": "^1.0",
  482. "doctrine/common": "^2.6",
  483. "phpunit/phpunit": "^4.1"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "DeepCopy\\": "src/DeepCopy/"
  489. },
  490. "files": [
  491. "src/DeepCopy/deep_copy.php"
  492. ]
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "description": "Create deep copies (clones) of your objects",
  499. "keywords": [
  500. "clone",
  501. "copy",
  502. "duplicate",
  503. "object",
  504. "object graph"
  505. ],
  506. "time": "2017-10-19T19:58:43+00:00"
  507. },
  508. {
  509. "name": "paragonie/random_compat",
  510. "version": "v2.0.11",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/paragonie/random_compat.git",
  514. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  519. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "php": ">=5.2.0"
  524. },
  525. "require-dev": {
  526. "phpunit/phpunit": "4.*|5.*"
  527. },
  528. "suggest": {
  529. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  530. },
  531. "type": "library",
  532. "autoload": {
  533. "files": [
  534. "lib/random.php"
  535. ]
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "MIT"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Paragon Initiative Enterprises",
  544. "email": "security@paragonie.com",
  545. "homepage": "https://paragonie.com"
  546. }
  547. ],
  548. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  549. "keywords": [
  550. "csprng",
  551. "pseudorandom",
  552. "random"
  553. ],
  554. "time": "2017-09-27T21:40:39+00:00"
  555. },
  556. {
  557. "name": "phar-io/manifest",
  558. "version": "1.0.1",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/phar-io/manifest.git",
  562. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  567. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  568. "shasum": ""
  569. },
  570. "require": {
  571. "ext-dom": "*",
  572. "ext-phar": "*",
  573. "phar-io/version": "^1.0.1",
  574. "php": "^5.6 || ^7.0"
  575. },
  576. "type": "library",
  577. "extra": {
  578. "branch-alias": {
  579. "dev-master": "1.0.x-dev"
  580. }
  581. },
  582. "autoload": {
  583. "classmap": [
  584. "src/"
  585. ]
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "BSD-3-Clause"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Arne Blankerts",
  594. "email": "arne@blankerts.de",
  595. "role": "Developer"
  596. },
  597. {
  598. "name": "Sebastian Heuer",
  599. "email": "sebastian@phpeople.de",
  600. "role": "Developer"
  601. },
  602. {
  603. "name": "Sebastian Bergmann",
  604. "email": "sebastian@phpunit.de",
  605. "role": "Developer"
  606. }
  607. ],
  608. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  609. "time": "2017-03-05T18:14:27+00:00"
  610. },
  611. {
  612. "name": "phar-io/version",
  613. "version": "1.0.1",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/phar-io/version.git",
  617. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  622. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  623. "shasum": ""
  624. },
  625. "require": {
  626. "php": "^5.6 || ^7.0"
  627. },
  628. "type": "library",
  629. "autoload": {
  630. "classmap": [
  631. "src/"
  632. ]
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "BSD-3-Clause"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Arne Blankerts",
  641. "email": "arne@blankerts.de",
  642. "role": "Developer"
  643. },
  644. {
  645. "name": "Sebastian Heuer",
  646. "email": "sebastian@phpeople.de",
  647. "role": "Developer"
  648. },
  649. {
  650. "name": "Sebastian Bergmann",
  651. "email": "sebastian@phpunit.de",
  652. "role": "Developer"
  653. }
  654. ],
  655. "description": "Library for handling version information and constraints",
  656. "time": "2017-03-05T17:38:23+00:00"
  657. },
  658. {
  659. "name": "phpdocumentor/reflection-common",
  660. "version": "1.0.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  664. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  669. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=5.5"
  674. },
  675. "require-dev": {
  676. "phpunit/phpunit": "^4.6"
  677. },
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "1.0.x-dev"
  682. }
  683. },
  684. "autoload": {
  685. "psr-4": {
  686. "phpDocumentor\\Reflection\\": [
  687. "src"
  688. ]
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Jaap van Otterdijk",
  698. "email": "opensource@ijaap.nl"
  699. }
  700. ],
  701. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  702. "homepage": "http://www.phpdoc.org",
  703. "keywords": [
  704. "FQSEN",
  705. "phpDocumentor",
  706. "phpdoc",
  707. "reflection",
  708. "static analysis"
  709. ],
  710. "time": "2017-09-11T18:02:19+00:00"
  711. },
  712. {
  713. "name": "phpdocumentor/reflection-docblock",
  714. "version": "4.2.0",
  715. "source": {
  716. "type": "git",
  717. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  718. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  719. },
  720. "dist": {
  721. "type": "zip",
  722. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da",
  723. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  724. "shasum": ""
  725. },
  726. "require": {
  727. "php": "^7.0",
  728. "phpdocumentor/reflection-common": "^1.0.0",
  729. "phpdocumentor/type-resolver": "^0.4.0",
  730. "webmozart/assert": "^1.0"
  731. },
  732. "require-dev": {
  733. "doctrine/instantiator": "~1.0.5",
  734. "mockery/mockery": "^1.0",
  735. "phpunit/phpunit": "^6.4"
  736. },
  737. "type": "library",
  738. "extra": {
  739. "branch-alias": {
  740. "dev-master": "4.x-dev"
  741. }
  742. },
  743. "autoload": {
  744. "psr-4": {
  745. "phpDocumentor\\Reflection\\": [
  746. "src/"
  747. ]
  748. }
  749. },
  750. "notification-url": "https://packagist.org/downloads/",
  751. "license": [
  752. "MIT"
  753. ],
  754. "authors": [
  755. {
  756. "name": "Mike van Riel",
  757. "email": "me@mikevanriel.com"
  758. }
  759. ],
  760. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  761. "time": "2017-11-27T17:38:31+00:00"
  762. },
  763. {
  764. "name": "phpdocumentor/type-resolver",
  765. "version": "0.4.0",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  769. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  774. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  775. "shasum": ""
  776. },
  777. "require": {
  778. "php": "^5.5 || ^7.0",
  779. "phpdocumentor/reflection-common": "^1.0"
  780. },
  781. "require-dev": {
  782. "mockery/mockery": "^0.9.4",
  783. "phpunit/phpunit": "^5.2||^4.8.24"
  784. },
  785. "type": "library",
  786. "extra": {
  787. "branch-alias": {
  788. "dev-master": "1.0.x-dev"
  789. }
  790. },
  791. "autoload": {
  792. "psr-4": {
  793. "phpDocumentor\\Reflection\\": [
  794. "src/"
  795. ]
  796. }
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "MIT"
  801. ],
  802. "authors": [
  803. {
  804. "name": "Mike van Riel",
  805. "email": "me@mikevanriel.com"
  806. }
  807. ],
  808. "time": "2017-07-14T14:27:02+00:00"
  809. },
  810. {
  811. "name": "phpspec/prophecy",
  812. "version": "1.7.3",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/phpspec/prophecy.git",
  816. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  821. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "doctrine/instantiator": "^1.0.2",
  826. "php": "^5.3|^7.0",
  827. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  828. "sebastian/comparator": "^1.1|^2.0",
  829. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  830. },
  831. "require-dev": {
  832. "phpspec/phpspec": "^2.5|^3.2",
  833. "phpunit/phpunit": "^4.8.35 || ^5.7"
  834. },
  835. "type": "library",
  836. "extra": {
  837. "branch-alias": {
  838. "dev-master": "1.7.x-dev"
  839. }
  840. },
  841. "autoload": {
  842. "psr-0": {
  843. "Prophecy\\": "src/"
  844. }
  845. },
  846. "notification-url": "https://packagist.org/downloads/",
  847. "license": [
  848. "MIT"
  849. ],
  850. "authors": [
  851. {
  852. "name": "Konstantin Kudryashov",
  853. "email": "ever.zet@gmail.com",
  854. "homepage": "http://everzet.com"
  855. },
  856. {
  857. "name": "Marcello Duarte",
  858. "email": "marcello.duarte@gmail.com"
  859. }
  860. ],
  861. "description": "Highly opinionated mocking framework for PHP 5.3+",
  862. "homepage": "https://github.com/phpspec/prophecy",
  863. "keywords": [
  864. "Double",
  865. "Dummy",
  866. "fake",
  867. "mock",
  868. "spy",
  869. "stub"
  870. ],
  871. "time": "2017-11-24T13:59:53+00:00"
  872. },
  873. {
  874. "name": "phpunit/php-code-coverage",
  875. "version": "5.3.0",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  879. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  884. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "ext-dom": "*",
  889. "ext-xmlwriter": "*",
  890. "php": "^7.0",
  891. "phpunit/php-file-iterator": "^1.4.2",
  892. "phpunit/php-text-template": "^1.2.1",
  893. "phpunit/php-token-stream": "^2.0.1",
  894. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  895. "sebastian/environment": "^3.0",
  896. "sebastian/version": "^2.0.1",
  897. "theseer/tokenizer": "^1.1"
  898. },
  899. "require-dev": {
  900. "phpunit/phpunit": "^6.0"
  901. },
  902. "suggest": {
  903. "ext-xdebug": "^2.5.5"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "5.3.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "classmap": [
  913. "src/"
  914. ]
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "BSD-3-Clause"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Sebastian Bergmann",
  923. "email": "sebastian@phpunit.de",
  924. "role": "lead"
  925. }
  926. ],
  927. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  928. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  929. "keywords": [
  930. "coverage",
  931. "testing",
  932. "xunit"
  933. ],
  934. "time": "2017-12-06T09:29:45+00:00"
  935. },
  936. {
  937. "name": "phpunit/php-file-iterator",
  938. "version": "1.4.5",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  942. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  947. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "php": ">=5.3.3"
  952. },
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-master": "1.4.x-dev"
  957. }
  958. },
  959. "autoload": {
  960. "classmap": [
  961. "src/"
  962. ]
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "BSD-3-Clause"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Sebastian Bergmann",
  971. "email": "sb@sebastian-bergmann.de",
  972. "role": "lead"
  973. }
  974. ],
  975. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  976. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  977. "keywords": [
  978. "filesystem",
  979. "iterator"
  980. ],
  981. "time": "2017-11-27T13:52:08+00:00"
  982. },
  983. {
  984. "name": "phpunit/php-text-template",
  985. "version": "1.2.1",
  986. "source": {
  987. "type": "git",
  988. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  989. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  990. },
  991. "dist": {
  992. "type": "zip",
  993. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  994. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  995. "shasum": ""
  996. },
  997. "require": {
  998. "php": ">=5.3.3"
  999. },
  1000. "type": "library",
  1001. "autoload": {
  1002. "classmap": [
  1003. "src/"
  1004. ]
  1005. },
  1006. "notification-url": "https://packagist.org/downloads/",
  1007. "license": [
  1008. "BSD-3-Clause"
  1009. ],
  1010. "authors": [
  1011. {
  1012. "name": "Sebastian Bergmann",
  1013. "email": "sebastian@phpunit.de",
  1014. "role": "lead"
  1015. }
  1016. ],
  1017. "description": "Simple template engine.",
  1018. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1019. "keywords": [
  1020. "template"
  1021. ],
  1022. "time": "2015-06-21T13:50:34+00:00"
  1023. },
  1024. {
  1025. "name": "phpunit/php-timer",
  1026. "version": "1.0.9",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1030. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1035. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "php": "^5.3.3 || ^7.0"
  1040. },
  1041. "require-dev": {
  1042. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1043. },
  1044. "type": "library",
  1045. "extra": {
  1046. "branch-alias": {
  1047. "dev-master": "1.0-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "classmap": [
  1052. "src/"
  1053. ]
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "BSD-3-Clause"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Sebastian Bergmann",
  1062. "email": "sb@sebastian-bergmann.de",
  1063. "role": "lead"
  1064. }
  1065. ],
  1066. "description": "Utility class for timing",
  1067. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1068. "keywords": [
  1069. "timer"
  1070. ],
  1071. "time": "2017-02-26T11:10:40+00:00"
  1072. },
  1073. {
  1074. "name": "phpunit/php-token-stream",
  1075. "version": "2.0.2",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1079. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  1084. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "ext-tokenizer": "*",
  1089. "php": "^7.0"
  1090. },
  1091. "require-dev": {
  1092. "phpunit/phpunit": "^6.2.4"
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-master": "2.0-dev"
  1098. }
  1099. },
  1100. "autoload": {
  1101. "classmap": [
  1102. "src/"
  1103. ]
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "BSD-3-Clause"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Sebastian Bergmann",
  1112. "email": "sebastian@phpunit.de"
  1113. }
  1114. ],
  1115. "description": "Wrapper around PHP's tokenizer extension.",
  1116. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1117. "keywords": [
  1118. "tokenizer"
  1119. ],
  1120. "time": "2017-11-27T05:48:46+00:00"
  1121. },
  1122. {
  1123. "name": "phpunit/phpunit",
  1124. "version": "6.5.4",
  1125. "source": {
  1126. "type": "git",
  1127. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1128. "reference": "1b2f933d5775f9237369deaa2d2bfbf9d652be4c"
  1129. },
  1130. "dist": {
  1131. "type": "zip",
  1132. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1b2f933d5775f9237369deaa2d2bfbf9d652be4c",
  1133. "reference": "1b2f933d5775f9237369deaa2d2bfbf9d652be4c",
  1134. "shasum": ""
  1135. },
  1136. "require": {
  1137. "ext-dom": "*",
  1138. "ext-json": "*",
  1139. "ext-libxml": "*",
  1140. "ext-mbstring": "*",
  1141. "ext-xml": "*",
  1142. "myclabs/deep-copy": "^1.6.1",
  1143. "phar-io/manifest": "^1.0.1",
  1144. "phar-io/version": "^1.0",
  1145. "php": "^7.0",
  1146. "phpspec/prophecy": "^1.7",
  1147. "phpunit/php-code-coverage": "^5.3",
  1148. "phpunit/php-file-iterator": "^1.4.3",
  1149. "phpunit/php-text-template": "^1.2.1",
  1150. "phpunit/php-timer": "^1.0.9",
  1151. "phpunit/phpunit-mock-objects": "^5.0.5",
  1152. "sebastian/comparator": "^2.1",
  1153. "sebastian/diff": "^2.0",
  1154. "sebastian/environment": "^3.1",
  1155. "sebastian/exporter": "^3.1",
  1156. "sebastian/global-state": "^2.0",
  1157. "sebastian/object-enumerator": "^3.0.3",
  1158. "sebastian/resource-operations": "^1.0",
  1159. "sebastian/version": "^2.0.1"
  1160. },
  1161. "conflict": {
  1162. "phpdocumentor/reflection-docblock": "3.0.2",
  1163. "phpunit/dbunit": "<3.0"
  1164. },
  1165. "require-dev": {
  1166. "ext-pdo": "*"
  1167. },
  1168. "suggest": {
  1169. "ext-xdebug": "*",
  1170. "phpunit/php-invoker": "^1.1"
  1171. },
  1172. "bin": [
  1173. "phpunit"
  1174. ],
  1175. "type": "library",
  1176. "extra": {
  1177. "branch-alias": {
  1178. "dev-master": "6.5.x-dev"
  1179. }
  1180. },
  1181. "autoload": {
  1182. "classmap": [
  1183. "src/"
  1184. ]
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "BSD-3-Clause"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Sebastian Bergmann",
  1193. "email": "sebastian@phpunit.de",
  1194. "role": "lead"
  1195. }
  1196. ],
  1197. "description": "The PHP Unit Testing framework.",
  1198. "homepage": "https://phpunit.de/",
  1199. "keywords": [
  1200. "phpunit",
  1201. "testing",
  1202. "xunit"
  1203. ],
  1204. "time": "2017-12-10T08:06:19+00:00"
  1205. },
  1206. {
  1207. "name": "phpunit/phpunit-mock-objects",
  1208. "version": "5.0.5",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1212. "reference": "283b9f4f670e3a6fd6c4ff95c51a952eb5c75933"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/283b9f4f670e3a6fd6c4ff95c51a952eb5c75933",
  1217. "reference": "283b9f4f670e3a6fd6c4ff95c51a952eb5c75933",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "doctrine/instantiator": "^1.0.5",
  1222. "php": "^7.0",
  1223. "phpunit/php-text-template": "^1.2.1",
  1224. "sebastian/exporter": "^3.1"
  1225. },
  1226. "conflict": {
  1227. "phpunit/phpunit": "<6.0"
  1228. },
  1229. "require-dev": {
  1230. "phpunit/phpunit": "^6.5"
  1231. },
  1232. "suggest": {
  1233. "ext-soap": "*"
  1234. },
  1235. "type": "library",
  1236. "extra": {
  1237. "branch-alias": {
  1238. "dev-master": "5.0.x-dev"
  1239. }
  1240. },
  1241. "autoload": {
  1242. "classmap": [
  1243. "src/"
  1244. ]
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "BSD-3-Clause"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Sebastian Bergmann",
  1253. "email": "sebastian@phpunit.de",
  1254. "role": "lead"
  1255. }
  1256. ],
  1257. "description": "Mock Object library for PHPUnit",
  1258. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1259. "keywords": [
  1260. "mock",
  1261. "xunit"
  1262. ],
  1263. "time": "2017-12-10T08:01:53+00:00"
  1264. },
  1265. {
  1266. "name": "pimple/pimple",
  1267. "version": "v3.2.2",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/silexphp/Pimple.git",
  1271. "reference": "4d45fb62d96418396ec58ba76e6f065bca16e10a"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/4d45fb62d96418396ec58ba76e6f065bca16e10a",
  1276. "reference": "4d45fb62d96418396ec58ba76e6f065bca16e10a",
  1277. "shasum": ""
  1278. },
  1279. "require": {
  1280. "php": ">=5.3.0",
  1281. "psr/container": "^1.0"
  1282. },
  1283. "require-dev": {
  1284. "symfony/phpunit-bridge": "^3.2"
  1285. },
  1286. "type": "library",
  1287. "extra": {
  1288. "branch-alias": {
  1289. "dev-master": "3.2.x-dev"
  1290. }
  1291. },
  1292. "autoload": {
  1293. "psr-0": {
  1294. "Pimple": "src/"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Fabien Potencier",
  1304. "email": "fabien@symfony.com"
  1305. }
  1306. ],
  1307. "description": "Pimple, a simple Dependency Injection Container",
  1308. "homepage": "http://pimple.sensiolabs.org",
  1309. "keywords": [
  1310. "container",
  1311. "dependency injection"
  1312. ],
  1313. "time": "2017-07-23T07:32:15+00:00"
  1314. },
  1315. {
  1316. "name": "psr/cache",
  1317. "version": "1.0.1",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/php-fig/cache.git",
  1321. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1326. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "php": ">=5.3.0"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "branch-alias": {
  1335. "dev-master": "1.0.x-dev"
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Psr\\Cache\\": "src/"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "PHP-FIG",
  1350. "homepage": "http://www.php-fig.org/"
  1351. }
  1352. ],
  1353. "description": "Common interface for caching libraries",
  1354. "keywords": [
  1355. "cache",
  1356. "psr",
  1357. "psr-6"
  1358. ],
  1359. "time": "2016-08-06T20:24:11+00:00"
  1360. },
  1361. {
  1362. "name": "psr/container",
  1363. "version": "1.0.0",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/php-fig/container.git",
  1367. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1372. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1373. "shasum": ""
  1374. },
  1375. "require": {
  1376. "php": ">=5.3.0"
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "branch-alias": {
  1381. "dev-master": "1.0.x-dev"
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-4": {
  1386. "Psr\\Container\\": "src/"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "PHP-FIG",
  1396. "homepage": "http://www.php-fig.org/"
  1397. }
  1398. ],
  1399. "description": "Common Container Interface (PHP FIG PSR-11)",
  1400. "homepage": "https://github.com/php-fig/container",
  1401. "keywords": [
  1402. "PSR-11",
  1403. "container",
  1404. "container-interface",
  1405. "container-interop",
  1406. "psr"
  1407. ],
  1408. "time": "2017-02-14T16:28:37+00:00"
  1409. },
  1410. {
  1411. "name": "psr/log",
  1412. "version": "1.0.2",
  1413. "source": {
  1414. "type": "git",
  1415. "url": "https://github.com/php-fig/log.git",
  1416. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1417. },
  1418. "dist": {
  1419. "type": "zip",
  1420. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1421. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1422. "shasum": ""
  1423. },
  1424. "require": {
  1425. "php": ">=5.3.0"
  1426. },
  1427. "type": "library",
  1428. "extra": {
  1429. "branch-alias": {
  1430. "dev-master": "1.0.x-dev"
  1431. }
  1432. },
  1433. "autoload": {
  1434. "psr-4": {
  1435. "Psr\\Log\\": "Psr/Log/"
  1436. }
  1437. },
  1438. "notification-url": "https://packagist.org/downloads/",
  1439. "license": [
  1440. "MIT"
  1441. ],
  1442. "authors": [
  1443. {
  1444. "name": "PHP-FIG",
  1445. "homepage": "http://www.php-fig.org/"
  1446. }
  1447. ],
  1448. "description": "Common interface for logging libraries",
  1449. "homepage": "https://github.com/php-fig/log",
  1450. "keywords": [
  1451. "log",
  1452. "psr",
  1453. "psr-3"
  1454. ],
  1455. "time": "2016-10-10T12:19:37+00:00"
  1456. },
  1457. {
  1458. "name": "psr/simple-cache",
  1459. "version": "1.0.0",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/php-fig/simple-cache.git",
  1463. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
  1468. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "php": ">=5.3.0"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "branch-alias": {
  1477. "dev-master": "1.0.x-dev"
  1478. }
  1479. },
  1480. "autoload": {
  1481. "psr-4": {
  1482. "Psr\\SimpleCache\\": "src/"
  1483. }
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "MIT"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "PHP-FIG",
  1492. "homepage": "http://www.php-fig.org/"
  1493. }
  1494. ],
  1495. "description": "Common interfaces for simple caching",
  1496. "keywords": [
  1497. "cache",
  1498. "caching",
  1499. "psr",
  1500. "psr-16",
  1501. "simple-cache"
  1502. ],
  1503. "time": "2017-01-02T13:31:39+00:00"
  1504. },
  1505. {
  1506. "name": "sebastian/code-unit-reverse-lookup",
  1507. "version": "1.0.1",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1511. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1516. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "php": "^5.6 || ^7.0"
  1521. },
  1522. "require-dev": {
  1523. "phpunit/phpunit": "^5.7 || ^6.0"
  1524. },
  1525. "type": "library",
  1526. "extra": {
  1527. "branch-alias": {
  1528. "dev-master": "1.0.x-dev"
  1529. }
  1530. },
  1531. "autoload": {
  1532. "classmap": [
  1533. "src/"
  1534. ]
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "BSD-3-Clause"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Sebastian Bergmann",
  1543. "email": "sebastian@phpunit.de"
  1544. }
  1545. ],
  1546. "description": "Looks up which function or method a line of code belongs to",
  1547. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1548. "time": "2017-03-04T06:30:41+00:00"
  1549. },
  1550. {
  1551. "name": "sebastian/comparator",
  1552. "version": "2.1.0",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/sebastianbergmann/comparator.git",
  1556. "reference": "1174d9018191e93cb9d719edec01257fc05f8158"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1174d9018191e93cb9d719edec01257fc05f8158",
  1561. "reference": "1174d9018191e93cb9d719edec01257fc05f8158",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "php": "^7.0",
  1566. "sebastian/diff": "^2.0",
  1567. "sebastian/exporter": "^3.1"
  1568. },
  1569. "require-dev": {
  1570. "phpunit/phpunit": "^6.4"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "2.1.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "classmap": [
  1580. "src/"
  1581. ]
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "BSD-3-Clause"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Jeff Welch",
  1590. "email": "whatthejeff@gmail.com"
  1591. },
  1592. {
  1593. "name": "Volker Dusch",
  1594. "email": "github@wallbash.com"
  1595. },
  1596. {
  1597. "name": "Bernhard Schussek",
  1598. "email": "bschussek@2bepublished.at"
  1599. },
  1600. {
  1601. "name": "Sebastian Bergmann",
  1602. "email": "sebastian@phpunit.de"
  1603. }
  1604. ],
  1605. "description": "Provides the functionality to compare PHP values for equality",
  1606. "homepage": "https://github.com/sebastianbergmann/comparator",
  1607. "keywords": [
  1608. "comparator",
  1609. "compare",
  1610. "equality"
  1611. ],
  1612. "time": "2017-11-03T07:16:52+00:00"
  1613. },
  1614. {
  1615. "name": "sebastian/diff",
  1616. "version": "2.0.1",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/sebastianbergmann/diff.git",
  1620. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1625. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1626. "shasum": ""
  1627. },
  1628. "require": {
  1629. "php": "^7.0"
  1630. },
  1631. "require-dev": {
  1632. "phpunit/phpunit": "^6.2"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "2.0-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "classmap": [
  1642. "src/"
  1643. ]
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "BSD-3-Clause"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Kore Nordmann",
  1652. "email": "mail@kore-nordmann.de"
  1653. },
  1654. {
  1655. "name": "Sebastian Bergmann",
  1656. "email": "sebastian@phpunit.de"
  1657. }
  1658. ],
  1659. "description": "Diff implementation",
  1660. "homepage": "https://github.com/sebastianbergmann/diff",
  1661. "keywords": [
  1662. "diff"
  1663. ],
  1664. "time": "2017-08-03T08:09:46+00:00"
  1665. },
  1666. {
  1667. "name": "sebastian/environment",
  1668. "version": "3.1.0",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/sebastianbergmann/environment.git",
  1672. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1677. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "php": "^7.0"
  1682. },
  1683. "require-dev": {
  1684. "phpunit/phpunit": "^6.1"
  1685. },
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-master": "3.1.x-dev"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "classmap": [
  1694. "src/"
  1695. ]
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "BSD-3-Clause"
  1700. ],
  1701. "authors": [
  1702. {
  1703. "name": "Sebastian Bergmann",
  1704. "email": "sebastian@phpunit.de"
  1705. }
  1706. ],
  1707. "description": "Provides functionality to handle HHVM/PHP environments",
  1708. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1709. "keywords": [
  1710. "Xdebug",
  1711. "environment",
  1712. "hhvm"
  1713. ],
  1714. "time": "2017-07-01T08:51:00+00:00"
  1715. },
  1716. {
  1717. "name": "sebastian/exporter",
  1718. "version": "3.1.0",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/sebastianbergmann/exporter.git",
  1722. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  1727. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "php": "^7.0",
  1732. "sebastian/recursion-context": "^3.0"
  1733. },
  1734. "require-dev": {
  1735. "ext-mbstring": "*",
  1736. "phpunit/phpunit": "^6.0"
  1737. },
  1738. "type": "library",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-master": "3.1.x-dev"
  1742. }
  1743. },
  1744. "autoload": {
  1745. "classmap": [
  1746. "src/"
  1747. ]
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "BSD-3-Clause"
  1752. ],
  1753. "authors": [
  1754. {
  1755. "name": "Jeff Welch",
  1756. "email": "whatthejeff@gmail.com"
  1757. },
  1758. {
  1759. "name": "Volker Dusch",
  1760. "email": "github@wallbash.com"
  1761. },
  1762. {
  1763. "name": "Bernhard Schussek",
  1764. "email": "bschussek@2bepublished.at"
  1765. },
  1766. {
  1767. "name": "Sebastian Bergmann",
  1768. "email": "sebastian@phpunit.de"
  1769. },
  1770. {
  1771. "name": "Adam Harvey",
  1772. "email": "aharvey@php.net"
  1773. }
  1774. ],
  1775. "description": "Provides the functionality to export PHP variables for visualization",
  1776. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1777. "keywords": [
  1778. "export",
  1779. "exporter"
  1780. ],
  1781. "time": "2017-04-03T13:19:02+00:00"
  1782. },
  1783. {
  1784. "name": "sebastian/global-state",
  1785. "version": "2.0.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/sebastianbergmann/global-state.git",
  1789. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1794. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "php": "^7.0"
  1799. },
  1800. "require-dev": {
  1801. "phpunit/phpunit": "^6.0"
  1802. },
  1803. "suggest": {
  1804. "ext-uopz": "*"
  1805. },
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "2.0-dev"
  1810. }
  1811. },
  1812. "autoload": {
  1813. "classmap": [
  1814. "src/"
  1815. ]
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "BSD-3-Clause"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Sebastian Bergmann",
  1824. "email": "sebastian@phpunit.de"
  1825. }
  1826. ],
  1827. "description": "Snapshotting of global state",
  1828. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1829. "keywords": [
  1830. "global state"
  1831. ],
  1832. "time": "2017-04-27T15:39:26+00:00"
  1833. },
  1834. {
  1835. "name": "sebastian/object-enumerator",
  1836. "version": "3.0.3",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1840. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1845. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1846. "shasum": ""
  1847. },
  1848. "require": {
  1849. "php": "^7.0",
  1850. "sebastian/object-reflector": "^1.1.1",
  1851. "sebastian/recursion-context": "^3.0"
  1852. },
  1853. "require-dev": {
  1854. "phpunit/phpunit": "^6.0"
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-master": "3.0.x-dev"
  1860. }
  1861. },
  1862. "autoload": {
  1863. "classmap": [
  1864. "src/"
  1865. ]
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "BSD-3-Clause"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "Sebastian Bergmann",
  1874. "email": "sebastian@phpunit.de"
  1875. }
  1876. ],
  1877. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1878. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1879. "time": "2017-08-03T12:35:26+00:00"
  1880. },
  1881. {
  1882. "name": "sebastian/object-reflector",
  1883. "version": "1.1.1",
  1884. "source": {
  1885. "type": "git",
  1886. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1887. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  1888. },
  1889. "dist": {
  1890. "type": "zip",
  1891. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  1892. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  1893. "shasum": ""
  1894. },
  1895. "require": {
  1896. "php": "^7.0"
  1897. },
  1898. "require-dev": {
  1899. "phpunit/phpunit": "^6.0"
  1900. },
  1901. "type": "library",
  1902. "extra": {
  1903. "branch-alias": {
  1904. "dev-master": "1.1-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "classmap": [
  1909. "src/"
  1910. ]
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "BSD-3-Clause"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Sebastian Bergmann",
  1919. "email": "sebastian@phpunit.de"
  1920. }
  1921. ],
  1922. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1923. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1924. "time": "2017-03-29T09:07:27+00:00"
  1925. },
  1926. {
  1927. "name": "sebastian/recursion-context",
  1928. "version": "3.0.0",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1932. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1937. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1938. "shasum": ""
  1939. },
  1940. "require": {
  1941. "php": "^7.0"
  1942. },
  1943. "require-dev": {
  1944. "phpunit/phpunit": "^6.0"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "3.0.x-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "classmap": [
  1954. "src/"
  1955. ]
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "BSD-3-Clause"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Jeff Welch",
  1964. "email": "whatthejeff@gmail.com"
  1965. },
  1966. {
  1967. "name": "Sebastian Bergmann",
  1968. "email": "sebastian@phpunit.de"
  1969. },
  1970. {
  1971. "name": "Adam Harvey",
  1972. "email": "aharvey@php.net"
  1973. }
  1974. ],
  1975. "description": "Provides functionality to recursively process PHP variables",
  1976. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1977. "time": "2017-03-03T06:23:57+00:00"
  1978. },
  1979. {
  1980. "name": "sebastian/resource-operations",
  1981. "version": "1.0.0",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1985. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1990. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1991. "shasum": ""
  1992. },
  1993. "require": {
  1994. "php": ">=5.6.0"
  1995. },
  1996. "type": "library",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-master": "1.0.x-dev"
  2000. }
  2001. },
  2002. "autoload": {
  2003. "classmap": [
  2004. "src/"
  2005. ]
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "BSD-3-Clause"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Sebastian Bergmann",
  2014. "email": "sebastian@phpunit.de"
  2015. }
  2016. ],
  2017. "description": "Provides a list of PHP built-in functions that operate on resources",
  2018. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2019. "time": "2015-07-28T20:34:47+00:00"
  2020. },
  2021. {
  2022. "name": "sebastian/version",
  2023. "version": "2.0.1",
  2024. "source": {
  2025. "type": "git",
  2026. "url": "https://github.com/sebastianbergmann/version.git",
  2027. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2028. },
  2029. "dist": {
  2030. "type": "zip",
  2031. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2032. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2033. "shasum": ""
  2034. },
  2035. "require": {
  2036. "php": ">=5.6"
  2037. },
  2038. "type": "library",
  2039. "extra": {
  2040. "branch-alias": {
  2041. "dev-master": "2.0.x-dev"
  2042. }
  2043. },
  2044. "autoload": {
  2045. "classmap": [
  2046. "src/"
  2047. ]
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "BSD-3-Clause"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "Sebastian Bergmann",
  2056. "email": "sebastian@phpunit.de",
  2057. "role": "lead"
  2058. }
  2059. ],
  2060. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2061. "homepage": "https://github.com/sebastianbergmann/version",
  2062. "time": "2016-10-03T07:35:21+00:00"
  2063. },
  2064. {
  2065. "name": "seld/cli-prompt",
  2066. "version": "1.0.3",
  2067. "source": {
  2068. "type": "git",
  2069. "url": "https://github.com/Seldaek/cli-prompt.git",
  2070. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  2071. },
  2072. "dist": {
  2073. "type": "zip",
  2074. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  2075. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  2076. "shasum": ""
  2077. },
  2078. "require": {
  2079. "php": ">=5.3"
  2080. },
  2081. "type": "library",
  2082. "extra": {
  2083. "branch-alias": {
  2084. "dev-master": "1.x-dev"
  2085. }
  2086. },
  2087. "autoload": {
  2088. "psr-4": {
  2089. "Seld\\CliPrompt\\": "src/"
  2090. }
  2091. },
  2092. "notification-url": "https://packagist.org/downloads/",
  2093. "license": [
  2094. "MIT"
  2095. ],
  2096. "authors": [
  2097. {
  2098. "name": "Jordi Boggiano",
  2099. "email": "j.boggiano@seld.be"
  2100. }
  2101. ],
  2102. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2103. "keywords": [
  2104. "cli",
  2105. "console",
  2106. "hidden",
  2107. "input",
  2108. "prompt"
  2109. ],
  2110. "time": "2017-03-18T11:32:45+00:00"
  2111. },
  2112. {
  2113. "name": "seld/jsonlint",
  2114. "version": "1.6.2",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/Seldaek/jsonlint.git",
  2118. "reference": "7a30649c67ee0d19faacfd9fa2cfb6cc032d9b19"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/7a30649c67ee0d19faacfd9fa2cfb6cc032d9b19",
  2123. "reference": "7a30649c67ee0d19faacfd9fa2cfb6cc032d9b19",
  2124. "shasum": ""
  2125. },
  2126. "require": {
  2127. "php": "^5.3 || ^7.0"
  2128. },
  2129. "require-dev": {
  2130. "phpunit/phpunit": "^4.5"
  2131. },
  2132. "bin": [
  2133. "bin/jsonlint"
  2134. ],
  2135. "type": "library",
  2136. "autoload": {
  2137. "psr-4": {
  2138. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Jordi Boggiano",
  2148. "email": "j.boggiano@seld.be",
  2149. "homepage": "http://seld.be"
  2150. }
  2151. ],
  2152. "description": "JSON Linter",
  2153. "keywords": [
  2154. "json",
  2155. "linter",
  2156. "parser",
  2157. "validator"
  2158. ],
  2159. "time": "2017-11-30T15:34:22+00:00"
  2160. },
  2161. {
  2162. "name": "seld/phar-utils",
  2163. "version": "1.0.1",
  2164. "source": {
  2165. "type": "git",
  2166. "url": "https://github.com/Seldaek/phar-utils.git",
  2167. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2168. },
  2169. "dist": {
  2170. "type": "zip",
  2171. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2172. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2173. "shasum": ""
  2174. },
  2175. "require": {
  2176. "php": ">=5.3"
  2177. },
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-master": "1.x-dev"
  2182. }
  2183. },
  2184. "autoload": {
  2185. "psr-4": {
  2186. "Seld\\PharUtils\\": "src/"
  2187. }
  2188. },
  2189. "notification-url": "https://packagist.org/downloads/",
  2190. "license": [
  2191. "MIT"
  2192. ],
  2193. "authors": [
  2194. {
  2195. "name": "Jordi Boggiano",
  2196. "email": "j.boggiano@seld.be"
  2197. }
  2198. ],
  2199. "description": "PHAR file format utilities, for when PHP phars you up",
  2200. "keywords": [
  2201. "phra"
  2202. ],
  2203. "time": "2015-10-13T18:44:15+00:00"
  2204. },
  2205. {
  2206. "name": "silex/silex",
  2207. "version": "v2.2.1",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/silexphp/Silex.git",
  2211. "reference": "a70863fdfe716b026dbc14280c49f209561ad6a6"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/silexphp/Silex/zipball/a70863fdfe716b026dbc14280c49f209561ad6a6",
  2216. "reference": "a70863fdfe716b026dbc14280c49f209561ad6a6",
  2217. "shasum": ""
  2218. },
  2219. "require": {
  2220. "php": ">=5.5.9",
  2221. "pimple/pimple": "~3.0",
  2222. "symfony/event-dispatcher": "~2.8|^3.0",
  2223. "symfony/http-foundation": "~2.8|^3.0",
  2224. "symfony/http-kernel": "~2.8|^3.0",
  2225. "symfony/routing": "~2.8|^3.0"
  2226. },
  2227. "conflict": {
  2228. "phpunit/phpunit": "<4.8.35 || >= 5.0, <5.4.3"
  2229. },
  2230. "replace": {
  2231. "silex/api": "self.version",
  2232. "silex/providers": "self.version"
  2233. },
  2234. "require-dev": {
  2235. "doctrine/dbal": "~2.2",
  2236. "monolog/monolog": "^1.4.1",
  2237. "swiftmailer/swiftmailer": "~5",
  2238. "symfony/asset": "~2.8|^3.0",
  2239. "symfony/browser-kit": "~2.8|^3.0",
  2240. "symfony/config": "~2.8|^3.0",
  2241. "symfony/css-selector": "~2.8|^3.0",
  2242. "symfony/debug": "~2.8|^3.0",
  2243. "symfony/doctrine-bridge": "~2.8|^3.0",
  2244. "symfony/dom-crawler": "~2.8|^3.0",
  2245. "symfony/expression-language": "~2.8|^3.0",
  2246. "symfony/finder": "~2.8|^3.0",
  2247. "symfony/form": "~2.8|^3.0",
  2248. "symfony/intl": "~2.8|^3.0",
  2249. "symfony/monolog-bridge": "~2.8|^3.0",
  2250. "symfony/options-resolver": "~2.8|^3.0",
  2251. "symfony/phpunit-bridge": "^3.2",
  2252. "symfony/process": "~2.8|^3.0",
  2253. "symfony/security": "~2.8|^3.0",
  2254. "symfony/serializer": "~2.8|^3.0",
  2255. "symfony/translation": "~2.8|^3.0",
  2256. "symfony/twig-bridge": "~2.8|^3.0",
  2257. "symfony/validator": "~2.8|^3.0",
  2258. "symfony/var-dumper": "~2.8|^3.0",
  2259. "symfony/web-link": "^3.3",
  2260. "twig/twig": "~1.28|~2.0"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "branch-alias": {
  2265. "dev-master": "2.2.x-dev"
  2266. }
  2267. },
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Silex\\": "src/Silex"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Fabien Potencier",
  2280. "email": "fabien@symfony.com"
  2281. },
  2282. {
  2283. "name": "Igor Wiedler",
  2284. "email": "igor@wiedler.ch"
  2285. }
  2286. ],
  2287. "description": "The PHP micro-framework based on the Symfony Components",
  2288. "homepage": "http://silex.sensiolabs.org",
  2289. "keywords": [
  2290. "microframework"
  2291. ],
  2292. "time": "2017-12-14T19:22:47+00:00"
  2293. },
  2294. {
  2295. "name": "silex/web-profiler",
  2296. "version": "v2.0.10",
  2297. "source": {
  2298. "type": "git",
  2299. "url": "https://github.com/silexphp/Silex-WebProfiler.git",
  2300. "reference": "9657191cee54ac2a4df9e388baf4e693a3285867"
  2301. },
  2302. "dist": {
  2303. "type": "zip",
  2304. "url": "https://api.github.com/repos/silexphp/Silex-WebProfiler/zipball/9657191cee54ac2a4df9e388baf4e693a3285867",
  2305. "reference": "9657191cee54ac2a4df9e388baf4e693a3285867",
  2306. "shasum": ""
  2307. },
  2308. "require": {
  2309. "silex/silex": "^2.0",
  2310. "symfony/stopwatch": "^2.8|^3.0",
  2311. "symfony/twig-bridge": "^2.8|^3.0",
  2312. "symfony/web-profiler-bundle": "^2.8|^3.0"
  2313. },
  2314. "conflict": {
  2315. "symfony/web-profiler-bundle": "3.1.0"
  2316. },
  2317. "require-dev": {
  2318. "symfony/browser-kit": "^2.8|^3.0",
  2319. "symfony/css-selector": "^2.8|^3.0",
  2320. "symfony/debug-bundle": "^2.8|^3.0",
  2321. "symfony/phpunit-bridge": "~3.2",
  2322. "symfony/security": "^2.8|^3.0",
  2323. "symfony/security-bundle": "^2.8|^3.0",
  2324. "symfony/translation": "^2.8|^3.0"
  2325. },
  2326. "type": "library",
  2327. "extra": {
  2328. "branch-alias": {
  2329. "dev-master": "2.0.x-dev"
  2330. }
  2331. },
  2332. "autoload": {
  2333. "psr-4": {
  2334. "Silex\\Provider\\": ""
  2335. }
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "Fabien Potencier",
  2344. "email": "fabien@symfony.com"
  2345. }
  2346. ],
  2347. "description": "A WebProfiler for Silex",
  2348. "homepage": "http://silex.sensiolabs.org/",
  2349. "time": "2017-12-11T23:38:10+00:00"
  2350. },
  2351. {
  2352. "name": "symfony/asset",
  2353. "version": "v3.4.1",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/symfony/asset.git",
  2357. "reference": "677a8328aa6b0d31542ff007273b0986c1c7ccea"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/symfony/asset/zipball/677a8328aa6b0d31542ff007273b0986c1c7ccea",
  2362. "reference": "677a8328aa6b0d31542ff007273b0986c1c7ccea",
  2363. "shasum": ""
  2364. },
  2365. "require": {
  2366. "php": "^5.5.9|>=7.0.8"
  2367. },
  2368. "require-dev": {
  2369. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  2370. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2371. },
  2372. "suggest": {
  2373. "symfony/http-foundation": ""
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "branch-alias": {
  2378. "dev-master": "3.4-dev"
  2379. }
  2380. },
  2381. "autoload": {
  2382. "psr-4": {
  2383. "Symfony\\Component\\Asset\\": ""
  2384. },
  2385. "exclude-from-classmap": [
  2386. "/Tests/"
  2387. ]
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Fabien Potencier",
  2396. "email": "fabien@symfony.com"
  2397. },
  2398. {
  2399. "name": "Symfony Community",
  2400. "homepage": "https://symfony.com/contributors"
  2401. }
  2402. ],
  2403. "description": "Symfony Asset Component",
  2404. "homepage": "https://symfony.com",
  2405. "time": "2017-10-24T14:12:06+00:00"
  2406. },
  2407. {
  2408. "name": "symfony/browser-kit",
  2409. "version": "v3.4.1",
  2410. "source": {
  2411. "type": "git",
  2412. "url": "https://github.com/symfony/browser-kit.git",
  2413. "reference": "179522b5f0b5e6d00bb60f38a4d6b29962e4b61b"
  2414. },
  2415. "dist": {
  2416. "type": "zip",
  2417. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/179522b5f0b5e6d00bb60f38a4d6b29962e4b61b",
  2418. "reference": "179522b5f0b5e6d00bb60f38a4d6b29962e4b61b",
  2419. "shasum": ""
  2420. },
  2421. "require": {
  2422. "php": "^5.5.9|>=7.0.8",
  2423. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  2424. },
  2425. "require-dev": {
  2426. "symfony/css-selector": "~2.8|~3.0|~4.0",
  2427. "symfony/process": "~2.8|~3.0|~4.0"
  2428. },
  2429. "suggest": {
  2430. "symfony/process": ""
  2431. },
  2432. "type": "library",
  2433. "extra": {
  2434. "branch-alias": {
  2435. "dev-master": "3.4-dev"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Symfony\\Component\\BrowserKit\\": ""
  2441. },
  2442. "exclude-from-classmap": [
  2443. "/Tests/"
  2444. ]
  2445. },
  2446. "notification-url": "https://packagist.org/downloads/",
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "Fabien Potencier",
  2453. "email": "fabien@symfony.com"
  2454. },
  2455. {
  2456. "name": "Symfony Community",
  2457. "homepage": "https://symfony.com/contributors"
  2458. }
  2459. ],
  2460. "description": "Symfony BrowserKit Component",
  2461. "homepage": "https://symfony.com",
  2462. "time": "2017-11-07T14:20:24+00:00"
  2463. },
  2464. {
  2465. "name": "symfony/cache",
  2466. "version": "v4.0.1",
  2467. "source": {
  2468. "type": "git",
  2469. "url": "https://github.com/symfony/cache.git",
  2470. "reference": "3691cb27e436c55af10ee06de30732623fa2f33e"
  2471. },
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://api.github.com/repos/symfony/cache/zipball/3691cb27e436c55af10ee06de30732623fa2f33e",
  2475. "reference": "3691cb27e436c55af10ee06de30732623fa2f33e",
  2476. "shasum": ""
  2477. },
  2478. "require": {
  2479. "php": "^7.1.3",
  2480. "psr/cache": "~1.0",
  2481. "psr/log": "~1.0",
  2482. "psr/simple-cache": "^1.0"
  2483. },
  2484. "conflict": {
  2485. "symfony/var-dumper": "<3.4"
  2486. },
  2487. "provide": {
  2488. "psr/cache-implementation": "1.0",
  2489. "psr/simple-cache-implementation": "1.0"
  2490. },
  2491. "require-dev": {
  2492. "cache/integration-tests": "dev-master",
  2493. "doctrine/cache": "~1.6",
  2494. "doctrine/dbal": "~2.4",
  2495. "predis/predis": "~1.0"
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "4.0-dev"
  2501. }
  2502. },
  2503. "autoload": {
  2504. "psr-4": {
  2505. "Symfony\\Component\\Cache\\": ""
  2506. },
  2507. "exclude-from-classmap": [
  2508. "/Tests/"
  2509. ]
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Nicolas Grekas",
  2518. "email": "p@tchwork.com"
  2519. },
  2520. {
  2521. "name": "Symfony Community",
  2522. "homepage": "https://symfony.com/contributors"
  2523. }
  2524. ],
  2525. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  2526. "homepage": "https://symfony.com",
  2527. "keywords": [
  2528. "caching",
  2529. "psr6"
  2530. ],
  2531. "time": "2017-11-20T21:12:12+00:00"
  2532. },
  2533. {
  2534. "name": "symfony/class-loader",
  2535. "version": "v3.4.1",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/symfony/class-loader.git",
  2539. "reference": "e8d36a7b5568d232f5c3f8ef92665836b9f1e038"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e8d36a7b5568d232f5c3f8ef92665836b9f1e038",
  2544. "reference": "e8d36a7b5568d232f5c3f8ef92665836b9f1e038",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "php": "^5.5.9|>=7.0.8"
  2549. },
  2550. "require-dev": {
  2551. "symfony/finder": "~2.8|~3.0|~4.0",
  2552. "symfony/polyfill-apcu": "~1.1"
  2553. },
  2554. "suggest": {
  2555. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  2556. },
  2557. "type": "library",
  2558. "extra": {
  2559. "branch-alias": {
  2560. "dev-master": "3.4-dev"
  2561. }
  2562. },
  2563. "autoload": {
  2564. "psr-4": {
  2565. "Symfony\\Component\\ClassLoader\\": ""
  2566. },
  2567. "exclude-from-classmap": [
  2568. "/Tests/"
  2569. ]
  2570. },
  2571. "notification-url": "https://packagist.org/downloads/",
  2572. "license": [
  2573. "MIT"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Fabien Potencier",
  2578. "email": "fabien@symfony.com"
  2579. },
  2580. {
  2581. "name": "Symfony Community",
  2582. "homepage": "https://symfony.com/contributors"
  2583. }
  2584. ],
  2585. "description": "Symfony ClassLoader Component",
  2586. "homepage": "https://symfony.com",
  2587. "time": "2017-11-05T16:10:10+00:00"
  2588. },
  2589. {
  2590. "name": "symfony/config",
  2591. "version": "v3.4.1",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/symfony/config.git",
  2595. "reference": "1de51a6c76359897ab32c309934b93d036bccb60"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/symfony/config/zipball/1de51a6c76359897ab32c309934b93d036bccb60",
  2600. "reference": "1de51a6c76359897ab32c309934b93d036bccb60",
  2601. "shasum": ""
  2602. },
  2603. "require": {
  2604. "php": "^5.5.9|>=7.0.8",
  2605. "symfony/filesystem": "~2.8|~3.0|~4.0"
  2606. },
  2607. "conflict": {
  2608. "symfony/dependency-injection": "<3.3",
  2609. "symfony/finder": "<3.3"
  2610. },
  2611. "require-dev": {
  2612. "symfony/dependency-injection": "~3.3|~4.0",
  2613. "symfony/finder": "~3.3|~4.0",
  2614. "symfony/yaml": "~3.0|~4.0"
  2615. },
  2616. "suggest": {
  2617. "symfony/yaml": "To use the yaml reference dumper"
  2618. },
  2619. "type": "library",
  2620. "extra": {
  2621. "branch-alias": {
  2622. "dev-master": "3.4-dev"
  2623. }
  2624. },
  2625. "autoload": {
  2626. "psr-4": {
  2627. "Symfony\\Component\\Config\\": ""
  2628. },
  2629. "exclude-from-classmap": [
  2630. "/Tests/"
  2631. ]
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Fabien Potencier",
  2640. "email": "fabien@symfony.com"
  2641. },
  2642. {
  2643. "name": "Symfony Community",
  2644. "homepage": "https://symfony.com/contributors"
  2645. }
  2646. ],
  2647. "description": "Symfony Config Component",
  2648. "homepage": "https://symfony.com",
  2649. "time": "2017-11-19T20:09:36+00:00"
  2650. },
  2651. {
  2652. "name": "symfony/console",
  2653. "version": "v3.4.1",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/symfony/console.git",
  2657. "reference": "2cdef78de8f54f68ff16a857e710e7302b47d4c7"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/symfony/console/zipball/2cdef78de8f54f68ff16a857e710e7302b47d4c7",
  2662. "reference": "2cdef78de8f54f68ff16a857e710e7302b47d4c7",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "php": "^5.5.9|>=7.0.8",
  2667. "symfony/debug": "~2.8|~3.0|~4.0",
  2668. "symfony/polyfill-mbstring": "~1.0"
  2669. },
  2670. "conflict": {
  2671. "symfony/dependency-injection": "<3.4",
  2672. "symfony/process": "<3.3"
  2673. },
  2674. "require-dev": {
  2675. "psr/log": "~1.0",
  2676. "symfony/config": "~3.3|~4.0",
  2677. "symfony/dependency-injection": "~3.4|~4.0",
  2678. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2679. "symfony/lock": "~3.4|~4.0",
  2680. "symfony/process": "~3.3|~4.0"
  2681. },
  2682. "suggest": {
  2683. "psr/log": "For using the console logger",
  2684. "symfony/event-dispatcher": "",
  2685. "symfony/lock": "",
  2686. "symfony/process": ""
  2687. },
  2688. "type": "library",
  2689. "extra": {
  2690. "branch-alias": {
  2691. "dev-master": "3.4-dev"
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Symfony\\Component\\Console\\": ""
  2697. },
  2698. "exclude-from-classmap": [
  2699. "/Tests/"
  2700. ]
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Fabien Potencier",
  2709. "email": "fabien@symfony.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "https://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Symfony Console Component",
  2717. "homepage": "https://symfony.com",
  2718. "time": "2017-12-02T18:20:11+00:00"
  2719. },
  2720. {
  2721. "name": "symfony/css-selector",
  2722. "version": "v3.4.1",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/symfony/css-selector.git",
  2726. "reference": "7134b93e90ea7e7881fcb2da006d21b4c5f31908"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7134b93e90ea7e7881fcb2da006d21b4c5f31908",
  2731. "reference": "7134b93e90ea7e7881fcb2da006d21b4c5f31908",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "php": "^5.5.9|>=7.0.8"
  2736. },
  2737. "type": "library",
  2738. "extra": {
  2739. "branch-alias": {
  2740. "dev-master": "3.4-dev"
  2741. }
  2742. },
  2743. "autoload": {
  2744. "psr-4": {
  2745. "Symfony\\Component\\CssSelector\\": ""
  2746. },
  2747. "exclude-from-classmap": [
  2748. "/Tests/"
  2749. ]
  2750. },
  2751. "notification-url": "https://packagist.org/downloads/",
  2752. "license": [
  2753. "MIT"
  2754. ],
  2755. "authors": [
  2756. {
  2757. "name": "Jean-François Simon",
  2758. "email": "jeanfrancois.simon@sensiolabs.com"
  2759. },
  2760. {
  2761. "name": "Fabien Potencier",
  2762. "email": "fabien@symfony.com"
  2763. },
  2764. {
  2765. "name": "Symfony Community",
  2766. "homepage": "https://symfony.com/contributors"
  2767. }
  2768. ],
  2769. "description": "Symfony CssSelector Component",
  2770. "homepage": "https://symfony.com",
  2771. "time": "2017-11-05T16:10:10+00:00"
  2772. },
  2773. {
  2774. "name": "symfony/debug",
  2775. "version": "v3.4.1",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/symfony/debug.git",
  2779. "reference": "fb2001e5d85f95d8b6ab94ae3be5d2672df128fd"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/symfony/debug/zipball/fb2001e5d85f95d8b6ab94ae3be5d2672df128fd",
  2784. "reference": "fb2001e5d85f95d8b6ab94ae3be5d2672df128fd",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "php": "^5.5.9|>=7.0.8",
  2789. "psr/log": "~1.0"
  2790. },
  2791. "conflict": {
  2792. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2793. },
  2794. "require-dev": {
  2795. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2796. },
  2797. "type": "library",
  2798. "extra": {
  2799. "branch-alias": {
  2800. "dev-master": "3.4-dev"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-4": {
  2805. "Symfony\\Component\\Debug\\": ""
  2806. },
  2807. "exclude-from-classmap": [
  2808. "/Tests/"
  2809. ]
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Fabien Potencier",
  2818. "email": "fabien@symfony.com"
  2819. },
  2820. {
  2821. "name": "Symfony Community",
  2822. "homepage": "https://symfony.com/contributors"
  2823. }
  2824. ],
  2825. "description": "Symfony Debug Component",
  2826. "homepage": "https://symfony.com",
  2827. "time": "2017-11-21T09:01:46+00:00"
  2828. },
  2829. {
  2830. "name": "symfony/dom-crawler",
  2831. "version": "v4.0.1",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/symfony/dom-crawler.git",
  2835. "reference": "d260a4e14ff4fb82eff98c88494396814962bf77"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d260a4e14ff4fb82eff98c88494396814962bf77",
  2840. "reference": "d260a4e14ff4fb82eff98c88494396814962bf77",
  2841. "shasum": ""
  2842. },
  2843. "require": {
  2844. "php": "^7.1.3",
  2845. "symfony/polyfill-mbstring": "~1.0"
  2846. },
  2847. "require-dev": {
  2848. "symfony/css-selector": "~3.4|~4.0"
  2849. },
  2850. "suggest": {
  2851. "symfony/css-selector": ""
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "4.0-dev"
  2857. }
  2858. },
  2859. "autoload": {
  2860. "psr-4": {
  2861. "Symfony\\Component\\DomCrawler\\": ""
  2862. },
  2863. "exclude-from-classmap": [
  2864. "/Tests/"
  2865. ]
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Fabien Potencier",
  2874. "email": "fabien@symfony.com"
  2875. },
  2876. {
  2877. "name": "Symfony Community",
  2878. "homepage": "https://symfony.com/contributors"
  2879. }
  2880. ],
  2881. "description": "Symfony DomCrawler Component",
  2882. "homepage": "https://symfony.com",
  2883. "time": "2017-11-15T14:17:34+00:00"
  2884. },
  2885. {
  2886. "name": "symfony/event-dispatcher",
  2887. "version": "v3.4.1",
  2888. "source": {
  2889. "type": "git",
  2890. "url": "https://github.com/symfony/event-dispatcher.git",
  2891. "reference": "ca20b8f9ef149f40ff656d52965f240d85f7a8e4"
  2892. },
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ca20b8f9ef149f40ff656d52965f240d85f7a8e4",
  2896. "reference": "ca20b8f9ef149f40ff656d52965f240d85f7a8e4",
  2897. "shasum": ""
  2898. },
  2899. "require": {
  2900. "php": "^5.5.9|>=7.0.8"
  2901. },
  2902. "conflict": {
  2903. "symfony/dependency-injection": "<3.3"
  2904. },
  2905. "require-dev": {
  2906. "psr/log": "~1.0",
  2907. "symfony/config": "~2.8|~3.0|~4.0",
  2908. "symfony/dependency-injection": "~3.3|~4.0",
  2909. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2910. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  2911. },
  2912. "suggest": {
  2913. "symfony/dependency-injection": "",
  2914. "symfony/http-kernel": ""
  2915. },
  2916. "type": "library",
  2917. "extra": {
  2918. "branch-alias": {
  2919. "dev-master": "3.4-dev"
  2920. }
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Symfony\\Component\\EventDispatcher\\": ""
  2925. },
  2926. "exclude-from-classmap": [
  2927. "/Tests/"
  2928. ]
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "Fabien Potencier",
  2937. "email": "fabien@symfony.com"
  2938. },
  2939. {
  2940. "name": "Symfony Community",
  2941. "homepage": "https://symfony.com/contributors"
  2942. }
  2943. ],
  2944. "description": "Symfony EventDispatcher Component",
  2945. "homepage": "https://symfony.com",
  2946. "time": "2017-11-09T14:14:31+00:00"
  2947. },
  2948. {
  2949. "name": "symfony/expression-language",
  2950. "version": "v3.4.1",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/symfony/expression-language.git",
  2954. "reference": "823b852c20432569c1fe8e20a76eaba88a526bef"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://api.github.com/repos/symfony/expression-language/zipball/823b852c20432569c1fe8e20a76eaba88a526bef",
  2959. "reference": "823b852c20432569c1fe8e20a76eaba88a526bef",
  2960. "shasum": ""
  2961. },
  2962. "require": {
  2963. "php": "^5.5.9|>=7.0.8",
  2964. "symfony/cache": "~3.1|~4.0"
  2965. },
  2966. "type": "library",
  2967. "extra": {
  2968. "branch-alias": {
  2969. "dev-master": "3.4-dev"
  2970. }
  2971. },
  2972. "autoload": {
  2973. "psr-4": {
  2974. "Symfony\\Component\\ExpressionLanguage\\": ""
  2975. },
  2976. "exclude-from-classmap": [
  2977. "/Tests/"
  2978. ]
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "MIT"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Fabien Potencier",
  2987. "email": "fabien@symfony.com"
  2988. },
  2989. {
  2990. "name": "Symfony Community",
  2991. "homepage": "https://symfony.com/contributors"
  2992. }
  2993. ],
  2994. "description": "Symfony ExpressionLanguage Component",
  2995. "homepage": "https://symfony.com",
  2996. "time": "2017-11-12T16:41:51+00:00"
  2997. },
  2998. {
  2999. "name": "symfony/filesystem",
  3000. "version": "v3.4.1",
  3001. "source": {
  3002. "type": "git",
  3003. "url": "https://github.com/symfony/filesystem.git",
  3004. "reference": "de56eee71e0a128d8c54ccc1909cdefd574bad0f"
  3005. },
  3006. "dist": {
  3007. "type": "zip",
  3008. "url": "https://api.github.com/repos/symfony/filesystem/zipball/de56eee71e0a128d8c54ccc1909cdefd574bad0f",
  3009. "reference": "de56eee71e0a128d8c54ccc1909cdefd574bad0f",
  3010. "shasum": ""
  3011. },
  3012. "require": {
  3013. "php": "^5.5.9|>=7.0.8"
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "3.4-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Symfony\\Component\\Filesystem\\": ""
  3024. },
  3025. "exclude-from-classmap": [
  3026. "/Tests/"
  3027. ]
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "MIT"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Fabien Potencier",
  3036. "email": "fabien@symfony.com"
  3037. },
  3038. {
  3039. "name": "Symfony Community",
  3040. "homepage": "https://symfony.com/contributors"
  3041. }
  3042. ],
  3043. "description": "Symfony Filesystem Component",
  3044. "homepage": "https://symfony.com",
  3045. "time": "2017-11-19T18:59:05+00:00"
  3046. },
  3047. {
  3048. "name": "symfony/finder",
  3049. "version": "v3.4.1",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/symfony/finder.git",
  3053. "reference": "dac8d7db537bac7ad8143eb11360a8c2231f251a"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/symfony/finder/zipball/dac8d7db537bac7ad8143eb11360a8c2231f251a",
  3058. "reference": "dac8d7db537bac7ad8143eb11360a8c2231f251a",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "php": "^5.5.9|>=7.0.8"
  3063. },
  3064. "type": "library",
  3065. "extra": {
  3066. "branch-alias": {
  3067. "dev-master": "3.4-dev"
  3068. }
  3069. },
  3070. "autoload": {
  3071. "psr-4": {
  3072. "Symfony\\Component\\Finder\\": ""
  3073. },
  3074. "exclude-from-classmap": [
  3075. "/Tests/"
  3076. ]
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "Fabien Potencier",
  3085. "email": "fabien@symfony.com"
  3086. },
  3087. {
  3088. "name": "Symfony Community",
  3089. "homepage": "https://symfony.com/contributors"
  3090. }
  3091. ],
  3092. "description": "Symfony Finder Component",
  3093. "homepage": "https://symfony.com",
  3094. "time": "2017-11-05T16:10:10+00:00"
  3095. },
  3096. {
  3097. "name": "symfony/form",
  3098. "version": "v3.4.1",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/symfony/form.git",
  3102. "reference": "23f95e189f084adefa69a7e3f0c94fec7f754f58"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/symfony/form/zipball/23f95e189f084adefa69a7e3f0c94fec7f754f58",
  3107. "reference": "23f95e189f084adefa69a7e3f0c94fec7f754f58",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "php": "^5.5.9|>=7.0.8",
  3112. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3113. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  3114. "symfony/options-resolver": "~3.4|~4.0",
  3115. "symfony/polyfill-mbstring": "~1.0",
  3116. "symfony/property-access": "~2.8|~3.0|~4.0"
  3117. },
  3118. "conflict": {
  3119. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3120. "symfony/dependency-injection": "<3.3",
  3121. "symfony/doctrine-bridge": "<2.7",
  3122. "symfony/framework-bundle": "<3.4",
  3123. "symfony/http-kernel": "<3.3.5",
  3124. "symfony/twig-bridge": "<3.4"
  3125. },
  3126. "require-dev": {
  3127. "doctrine/collections": "~1.0",
  3128. "symfony/config": "~2.7|~3.0|~4.0",
  3129. "symfony/console": "~3.4|~4.0",
  3130. "symfony/dependency-injection": "~3.3|~4.0",
  3131. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3132. "symfony/http-kernel": "^3.3.5|~4.0",
  3133. "symfony/security-csrf": "~2.8|~3.0|~4.0",
  3134. "symfony/translation": "~2.8|~3.0|~4.0",
  3135. "symfony/validator": "^3.2.5|~4.0",
  3136. "symfony/var-dumper": "~3.3.11|~3.4|~4.0"
  3137. },
  3138. "suggest": {
  3139. "symfony/framework-bundle": "For templating with PHP.",
  3140. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3141. "symfony/twig-bridge": "For templating with Twig.",
  3142. "symfony/validator": "For form validation."
  3143. },
  3144. "type": "library",
  3145. "extra": {
  3146. "branch-alias": {
  3147. "dev-master": "3.4-dev"
  3148. }
  3149. },
  3150. "autoload": {
  3151. "psr-4": {
  3152. "Symfony\\Component\\Form\\": ""
  3153. },
  3154. "exclude-from-classmap": [
  3155. "/Tests/"
  3156. ]
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "Fabien Potencier",
  3165. "email": "fabien@symfony.com"
  3166. },
  3167. {
  3168. "name": "Symfony Community",
  3169. "homepage": "https://symfony.com/contributors"
  3170. }
  3171. ],
  3172. "description": "Symfony Form Component",
  3173. "homepage": "https://symfony.com",
  3174. "time": "2017-12-03T21:15:09+00:00"
  3175. },
  3176. {
  3177. "name": "symfony/http-foundation",
  3178. "version": "v3.4.1",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://github.com/symfony/http-foundation.git",
  3182. "reference": "d9625c8abb907e0ca2d7506afd7a719a572c766f"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d9625c8abb907e0ca2d7506afd7a719a572c766f",
  3187. "reference": "d9625c8abb907e0ca2d7506afd7a719a572c766f",
  3188. "shasum": ""
  3189. },
  3190. "require": {
  3191. "php": "^5.5.9|>=7.0.8",
  3192. "symfony/polyfill-mbstring": "~1.1",
  3193. "symfony/polyfill-php70": "~1.6"
  3194. },
  3195. "require-dev": {
  3196. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3197. },
  3198. "type": "library",
  3199. "extra": {
  3200. "branch-alias": {
  3201. "dev-master": "3.4-dev"
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Symfony\\Component\\HttpFoundation\\": ""
  3207. },
  3208. "exclude-from-classmap": [
  3209. "/Tests/"
  3210. ]
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "authors": [
  3217. {
  3218. "name": "Fabien Potencier",
  3219. "email": "fabien@symfony.com"
  3220. },
  3221. {
  3222. "name": "Symfony Community",
  3223. "homepage": "https://symfony.com/contributors"
  3224. }
  3225. ],
  3226. "description": "Symfony HttpFoundation Component",
  3227. "homepage": "https://symfony.com",
  3228. "time": "2017-11-30T14:56:21+00:00"
  3229. },
  3230. {
  3231. "name": "symfony/http-kernel",
  3232. "version": "v3.4.1",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/symfony/http-kernel.git",
  3236. "reference": "b101bb29071163563d4c8b537b35845eaf909235"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b101bb29071163563d4c8b537b35845eaf909235",
  3241. "reference": "b101bb29071163563d4c8b537b35845eaf909235",
  3242. "shasum": ""
  3243. },
  3244. "require": {
  3245. "php": "^5.5.9|>=7.0.8",
  3246. "psr/log": "~1.0",
  3247. "symfony/debug": "~2.8|~3.0|~4.0",
  3248. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3249. "symfony/http-foundation": "^3.3.11|~4.0"
  3250. },
  3251. "conflict": {
  3252. "symfony/config": "<2.8",
  3253. "symfony/dependency-injection": "<3.4",
  3254. "symfony/var-dumper": "<3.3",
  3255. "twig/twig": "<1.34|<2.4,>=2"
  3256. },
  3257. "provide": {
  3258. "psr/log-implementation": "1.0"
  3259. },
  3260. "require-dev": {
  3261. "psr/cache": "~1.0",
  3262. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  3263. "symfony/class-loader": "~2.8|~3.0",
  3264. "symfony/config": "~2.8|~3.0|~4.0",
  3265. "symfony/console": "~2.8|~3.0|~4.0",
  3266. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3267. "symfony/dependency-injection": "~3.4|~4.0",
  3268. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  3269. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3270. "symfony/finder": "~2.8|~3.0|~4.0",
  3271. "symfony/process": "~2.8|~3.0|~4.0",
  3272. "symfony/routing": "~3.4|~4.0",
  3273. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  3274. "symfony/templating": "~2.8|~3.0|~4.0",
  3275. "symfony/translation": "~2.8|~3.0|~4.0",
  3276. "symfony/var-dumper": "~3.3|~4.0"
  3277. },
  3278. "suggest": {
  3279. "symfony/browser-kit": "",
  3280. "symfony/config": "",
  3281. "symfony/console": "",
  3282. "symfony/dependency-injection": "",
  3283. "symfony/finder": "",
  3284. "symfony/var-dumper": ""
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "branch-alias": {
  3289. "dev-master": "3.4-dev"
  3290. }
  3291. },
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Symfony\\Component\\HttpKernel\\": ""
  3295. },
  3296. "exclude-from-classmap": [
  3297. "/Tests/"
  3298. ]
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Fabien Potencier",
  3307. "email": "fabien@symfony.com"
  3308. },
  3309. {
  3310. "name": "Symfony Community",
  3311. "homepage": "https://symfony.com/contributors"
  3312. }
  3313. ],
  3314. "description": "Symfony HttpKernel Component",
  3315. "homepage": "https://symfony.com",
  3316. "time": "2017-12-04T23:05:00+00:00"
  3317. },
  3318. {
  3319. "name": "symfony/inflector",
  3320. "version": "v4.0.1",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/symfony/inflector.git",
  3324. "reference": "8740990f67ec9f89bfa116d11bad2990dd510ece"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/symfony/inflector/zipball/8740990f67ec9f89bfa116d11bad2990dd510ece",
  3329. "reference": "8740990f67ec9f89bfa116d11bad2990dd510ece",
  3330. "shasum": ""
  3331. },
  3332. "require": {
  3333. "php": "^7.1.3"
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "branch-alias": {
  3338. "dev-master": "4.0-dev"
  3339. }
  3340. },
  3341. "autoload": {
  3342. "psr-4": {
  3343. "Symfony\\Component\\Inflector\\": ""
  3344. },
  3345. "exclude-from-classmap": [
  3346. "/Tests/"
  3347. ]
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Bernhard Schussek",
  3356. "email": "bschussek@gmail.com"
  3357. },
  3358. {
  3359. "name": "Symfony Community",
  3360. "homepage": "https://symfony.com/contributors"
  3361. }
  3362. ],
  3363. "description": "Symfony Inflector Component",
  3364. "homepage": "https://symfony.com",
  3365. "keywords": [
  3366. "inflection",
  3367. "pluralize",
  3368. "singularize",
  3369. "string",
  3370. "symfony",
  3371. "words"
  3372. ],
  3373. "time": "2017-08-31T20:46:21+00:00"
  3374. },
  3375. {
  3376. "name": "symfony/intl",
  3377. "version": "v4.0.1",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/symfony/intl.git",
  3381. "reference": "6bf27029c01e1010de96ab224d2315b3a17e0522"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/symfony/intl/zipball/6bf27029c01e1010de96ab224d2315b3a17e0522",
  3386. "reference": "6bf27029c01e1010de96ab224d2315b3a17e0522",
  3387. "shasum": ""
  3388. },
  3389. "require": {
  3390. "php": "^7.1.3",
  3391. "symfony/polyfill-intl-icu": "~1.0"
  3392. },
  3393. "require-dev": {
  3394. "symfony/filesystem": "~3.4|~4.0"
  3395. },
  3396. "suggest": {
  3397. "ext-intl": "to use the component with locales other than \"en\""
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "4.0-dev"
  3403. }
  3404. },
  3405. "autoload": {
  3406. "psr-4": {
  3407. "Symfony\\Component\\Intl\\": ""
  3408. },
  3409. "classmap": [
  3410. "Resources/stubs"
  3411. ],
  3412. "exclude-from-classmap": [
  3413. "/Tests/"
  3414. ]
  3415. },
  3416. "notification-url": "https://packagist.org/downloads/",
  3417. "license": [
  3418. "MIT"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Bernhard Schussek",
  3423. "email": "bschussek@gmail.com"
  3424. },
  3425. {
  3426. "name": "Eriksen Costa",
  3427. "email": "eriksen.costa@infranology.com.br"
  3428. },
  3429. {
  3430. "name": "Igor Wiedler",
  3431. "email": "igor@wiedler.ch"
  3432. },
  3433. {
  3434. "name": "Symfony Community",
  3435. "homepage": "https://symfony.com/contributors"
  3436. }
  3437. ],
  3438. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  3439. "homepage": "https://symfony.com",
  3440. "keywords": [
  3441. "i18n",
  3442. "icu",
  3443. "internationalization",
  3444. "intl",
  3445. "l10n",
  3446. "localization"
  3447. ],
  3448. "time": "2017-12-01T20:03:44+00:00"
  3449. },
  3450. {
  3451. "name": "symfony/monolog-bridge",
  3452. "version": "v3.4.1",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/symfony/monolog-bridge.git",
  3456. "reference": "8809076867e0d8ccd4918f27d3513c9f6b237300"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/8809076867e0d8ccd4918f27d3513c9f6b237300",
  3461. "reference": "8809076867e0d8ccd4918f27d3513c9f6b237300",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "monolog/monolog": "~1.19",
  3466. "php": "^5.5.9|>=7.0.8",
  3467. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  3468. },
  3469. "conflict": {
  3470. "symfony/http-foundation": "<3.3"
  3471. },
  3472. "require-dev": {
  3473. "symfony/console": "~2.8|~3.0|~4.0",
  3474. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3475. "symfony/security-core": "~2.8|~3.0|~4.0",
  3476. "symfony/var-dumper": "~3.3|~4.0"
  3477. },
  3478. "suggest": {
  3479. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings. You need version ~2.3 of the console for it.",
  3480. "symfony/event-dispatcher": "Needed when using log messages in console commands.",
  3481. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel."
  3482. },
  3483. "type": "symfony-bridge",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "3.4-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-4": {
  3491. "Symfony\\Bridge\\Monolog\\": ""
  3492. },
  3493. "exclude-from-classmap": [
  3494. "/Tests/"
  3495. ]
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Fabien Potencier",
  3504. "email": "fabien@symfony.com"
  3505. },
  3506. {
  3507. "name": "Symfony Community",
  3508. "homepage": "https://symfony.com/contributors"
  3509. }
  3510. ],
  3511. "description": "Symfony Monolog Bridge",
  3512. "homepage": "https://symfony.com",
  3513. "time": "2017-10-31T15:19:40+00:00"
  3514. },
  3515. {
  3516. "name": "symfony/options-resolver",
  3517. "version": "v4.0.1",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://github.com/symfony/options-resolver.git",
  3521. "reference": "ef617a2867c7d889d4ecee3c29595698d87474a4"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/ef617a2867c7d889d4ecee3c29595698d87474a4",
  3526. "reference": "ef617a2867c7d889d4ecee3c29595698d87474a4",
  3527. "shasum": ""
  3528. },
  3529. "require": {
  3530. "php": "^7.1.3"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "branch-alias": {
  3535. "dev-master": "4.0-dev"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "psr-4": {
  3540. "Symfony\\Component\\OptionsResolver\\": ""
  3541. },
  3542. "exclude-from-classmap": [
  3543. "/Tests/"
  3544. ]
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "Fabien Potencier",
  3553. "email": "fabien@symfony.com"
  3554. },
  3555. {
  3556. "name": "Symfony Community",
  3557. "homepage": "https://symfony.com/contributors"
  3558. }
  3559. ],
  3560. "description": "Symfony OptionsResolver Component",
  3561. "homepage": "https://symfony.com",
  3562. "keywords": [
  3563. "config",
  3564. "configuration",
  3565. "options"
  3566. ],
  3567. "time": "2017-11-07T14:45:01+00:00"
  3568. },
  3569. {
  3570. "name": "symfony/polyfill-intl-icu",
  3571. "version": "v1.6.0",
  3572. "source": {
  3573. "type": "git",
  3574. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3575. "reference": "d2bb2ef00dd8605d6fbd4db53ed4af1395953497"
  3576. },
  3577. "dist": {
  3578. "type": "zip",
  3579. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d2bb2ef00dd8605d6fbd4db53ed4af1395953497",
  3580. "reference": "d2bb2ef00dd8605d6fbd4db53ed4af1395953497",
  3581. "shasum": ""
  3582. },
  3583. "require": {
  3584. "php": ">=5.3.3",
  3585. "symfony/intl": "~2.3|~3.0|~4.0"
  3586. },
  3587. "suggest": {
  3588. "ext-intl": "For best performance"
  3589. },
  3590. "type": "library",
  3591. "extra": {
  3592. "branch-alias": {
  3593. "dev-master": "1.6-dev"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "files": [
  3598. "bootstrap.php"
  3599. ]
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "MIT"
  3604. ],
  3605. "authors": [
  3606. {
  3607. "name": "Nicolas Grekas",
  3608. "email": "p@tchwork.com"
  3609. },
  3610. {
  3611. "name": "Symfony Community",
  3612. "homepage": "https://symfony.com/contributors"
  3613. }
  3614. ],
  3615. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3616. "homepage": "https://symfony.com",
  3617. "keywords": [
  3618. "compatibility",
  3619. "icu",
  3620. "intl",
  3621. "polyfill",
  3622. "portable",
  3623. "shim"
  3624. ],
  3625. "time": "2017-10-11T12:05:26+00:00"
  3626. },
  3627. {
  3628. "name": "symfony/polyfill-mbstring",
  3629. "version": "v1.6.0",
  3630. "source": {
  3631. "type": "git",
  3632. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3633. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  3634. },
  3635. "dist": {
  3636. "type": "zip",
  3637. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  3638. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  3639. "shasum": ""
  3640. },
  3641. "require": {
  3642. "php": ">=5.3.3"
  3643. },
  3644. "suggest": {
  3645. "ext-mbstring": "For best performance"
  3646. },
  3647. "type": "library",
  3648. "extra": {
  3649. "branch-alias": {
  3650. "dev-master": "1.6-dev"
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "Symfony\\Polyfill\\Mbstring\\": ""
  3656. },
  3657. "files": [
  3658. "bootstrap.php"
  3659. ]
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "Nicolas Grekas",
  3668. "email": "p@tchwork.com"
  3669. },
  3670. {
  3671. "name": "Symfony Community",
  3672. "homepage": "https://symfony.com/contributors"
  3673. }
  3674. ],
  3675. "description": "Symfony polyfill for the Mbstring extension",
  3676. "homepage": "https://symfony.com",
  3677. "keywords": [
  3678. "compatibility",
  3679. "mbstring",
  3680. "polyfill",
  3681. "portable",
  3682. "shim"
  3683. ],
  3684. "time": "2017-10-11T12:05:26+00:00"
  3685. },
  3686. {
  3687. "name": "symfony/polyfill-php56",
  3688. "version": "v1.6.0",
  3689. "source": {
  3690. "type": "git",
  3691. "url": "https://github.com/symfony/polyfill-php56.git",
  3692. "reference": "265fc96795492430762c29be291a371494ba3a5b"
  3693. },
  3694. "dist": {
  3695. "type": "zip",
  3696. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/265fc96795492430762c29be291a371494ba3a5b",
  3697. "reference": "265fc96795492430762c29be291a371494ba3a5b",
  3698. "shasum": ""
  3699. },
  3700. "require": {
  3701. "php": ">=5.3.3",
  3702. "symfony/polyfill-util": "~1.0"
  3703. },
  3704. "type": "library",
  3705. "extra": {
  3706. "branch-alias": {
  3707. "dev-master": "1.6-dev"
  3708. }
  3709. },
  3710. "autoload": {
  3711. "psr-4": {
  3712. "Symfony\\Polyfill\\Php56\\": ""
  3713. },
  3714. "files": [
  3715. "bootstrap.php"
  3716. ]
  3717. },
  3718. "notification-url": "https://packagist.org/downloads/",
  3719. "license": [
  3720. "MIT"
  3721. ],
  3722. "authors": [
  3723. {
  3724. "name": "Nicolas Grekas",
  3725. "email": "p@tchwork.com"
  3726. },
  3727. {
  3728. "name": "Symfony Community",
  3729. "homepage": "https://symfony.com/contributors"
  3730. }
  3731. ],
  3732. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3733. "homepage": "https://symfony.com",
  3734. "keywords": [
  3735. "compatibility",
  3736. "polyfill",
  3737. "portable",
  3738. "shim"
  3739. ],
  3740. "time": "2017-10-11T12:05:26+00:00"
  3741. },
  3742. {
  3743. "name": "symfony/polyfill-php70",
  3744. "version": "v1.6.0",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/symfony/polyfill-php70.git",
  3748. "reference": "0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff",
  3753. "reference": "0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff",
  3754. "shasum": ""
  3755. },
  3756. "require": {
  3757. "paragonie/random_compat": "~1.0|~2.0",
  3758. "php": ">=5.3.3"
  3759. },
  3760. "type": "library",
  3761. "extra": {
  3762. "branch-alias": {
  3763. "dev-master": "1.6-dev"
  3764. }
  3765. },
  3766. "autoload": {
  3767. "psr-4": {
  3768. "Symfony\\Polyfill\\Php70\\": ""
  3769. },
  3770. "files": [
  3771. "bootstrap.php"
  3772. ],
  3773. "classmap": [
  3774. "Resources/stubs"
  3775. ]
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Nicolas Grekas",
  3784. "email": "p@tchwork.com"
  3785. },
  3786. {
  3787. "name": "Symfony Community",
  3788. "homepage": "https://symfony.com/contributors"
  3789. }
  3790. ],
  3791. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3792. "homepage": "https://symfony.com",
  3793. "keywords": [
  3794. "compatibility",
  3795. "polyfill",
  3796. "portable",
  3797. "shim"
  3798. ],
  3799. "time": "2017-10-11T12:05:26+00:00"
  3800. },
  3801. {
  3802. "name": "symfony/polyfill-php72",
  3803. "version": "v1.6.0",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://github.com/symfony/polyfill-php72.git",
  3807. "reference": "6de4f4884b97abbbed9f0a84a95ff2ff77254254"
  3808. },
  3809. "dist": {
  3810. "type": "zip",
  3811. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/6de4f4884b97abbbed9f0a84a95ff2ff77254254",
  3812. "reference": "6de4f4884b97abbbed9f0a84a95ff2ff77254254",
  3813. "shasum": ""
  3814. },
  3815. "require": {
  3816. "php": ">=5.3.3"
  3817. },
  3818. "type": "library",
  3819. "extra": {
  3820. "branch-alias": {
  3821. "dev-master": "1.6-dev"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Symfony\\Polyfill\\Php72\\": ""
  3827. },
  3828. "files": [
  3829. "bootstrap.php"
  3830. ]
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "MIT"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Nicolas Grekas",
  3839. "email": "p@tchwork.com"
  3840. },
  3841. {
  3842. "name": "Symfony Community",
  3843. "homepage": "https://symfony.com/contributors"
  3844. }
  3845. ],
  3846. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3847. "homepage": "https://symfony.com",
  3848. "keywords": [
  3849. "compatibility",
  3850. "polyfill",
  3851. "portable",
  3852. "shim"
  3853. ],
  3854. "time": "2017-10-11T12:05:26+00:00"
  3855. },
  3856. {
  3857. "name": "symfony/polyfill-util",
  3858. "version": "v1.6.0",
  3859. "source": {
  3860. "type": "git",
  3861. "url": "https://github.com/symfony/polyfill-util.git",
  3862. "reference": "6e719200c8e540e0c0effeb31f96bdb344b94176"
  3863. },
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/6e719200c8e540e0c0effeb31f96bdb344b94176",
  3867. "reference": "6e719200c8e540e0c0effeb31f96bdb344b94176",
  3868. "shasum": ""
  3869. },
  3870. "require": {
  3871. "php": ">=5.3.3"
  3872. },
  3873. "type": "library",
  3874. "extra": {
  3875. "branch-alias": {
  3876. "dev-master": "1.6-dev"
  3877. }
  3878. },
  3879. "autoload": {
  3880. "psr-4": {
  3881. "Symfony\\Polyfill\\Util\\": ""
  3882. }
  3883. },
  3884. "notification-url": "https://packagist.org/downloads/",
  3885. "license": [
  3886. "MIT"
  3887. ],
  3888. "authors": [
  3889. {
  3890. "name": "Nicolas Grekas",
  3891. "email": "p@tchwork.com"
  3892. },
  3893. {
  3894. "name": "Symfony Community",
  3895. "homepage": "https://symfony.com/contributors"
  3896. }
  3897. ],
  3898. "description": "Symfony utilities for portability of PHP codes",
  3899. "homepage": "https://symfony.com",
  3900. "keywords": [
  3901. "compat",
  3902. "compatibility",
  3903. "polyfill",
  3904. "shim"
  3905. ],
  3906. "time": "2017-10-11T12:05:26+00:00"
  3907. },
  3908. {
  3909. "name": "symfony/process",
  3910. "version": "v3.4.1",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/symfony/process.git",
  3914. "reference": "db25e810fd5e124085e3777257d0cf4ae533d0ea"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/symfony/process/zipball/db25e810fd5e124085e3777257d0cf4ae533d0ea",
  3919. "reference": "db25e810fd5e124085e3777257d0cf4ae533d0ea",
  3920. "shasum": ""
  3921. },
  3922. "require": {
  3923. "php": "^5.5.9|>=7.0.8"
  3924. },
  3925. "type": "library",
  3926. "extra": {
  3927. "branch-alias": {
  3928. "dev-master": "3.4-dev"
  3929. }
  3930. },
  3931. "autoload": {
  3932. "psr-4": {
  3933. "Symfony\\Component\\Process\\": ""
  3934. },
  3935. "exclude-from-classmap": [
  3936. "/Tests/"
  3937. ]
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "MIT"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "Fabien Potencier",
  3946. "email": "fabien@symfony.com"
  3947. },
  3948. {
  3949. "name": "Symfony Community",
  3950. "homepage": "https://symfony.com/contributors"
  3951. }
  3952. ],
  3953. "description": "Symfony Process Component",
  3954. "homepage": "https://symfony.com",
  3955. "time": "2017-11-22T12:18:49+00:00"
  3956. },
  3957. {
  3958. "name": "symfony/property-access",
  3959. "version": "v4.0.1",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://github.com/symfony/property-access.git",
  3963. "reference": "220f386247615af26b23f81398f8e152e213af0c"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://api.github.com/repos/symfony/property-access/zipball/220f386247615af26b23f81398f8e152e213af0c",
  3968. "reference": "220f386247615af26b23f81398f8e152e213af0c",
  3969. "shasum": ""
  3970. },
  3971. "require": {
  3972. "php": "^7.1.3",
  3973. "symfony/inflector": "~3.4|~4.0"
  3974. },
  3975. "require-dev": {
  3976. "symfony/cache": "~3.4|~4.0"
  3977. },
  3978. "suggest": {
  3979. "psr/cache-implementation": "To cache access methods."
  3980. },
  3981. "type": "library",
  3982. "extra": {
  3983. "branch-alias": {
  3984. "dev-master": "4.0-dev"
  3985. }
  3986. },
  3987. "autoload": {
  3988. "psr-4": {
  3989. "Symfony\\Component\\PropertyAccess\\": ""
  3990. },
  3991. "exclude-from-classmap": [
  3992. "/Tests/"
  3993. ]
  3994. },
  3995. "notification-url": "https://packagist.org/downloads/",
  3996. "license": [
  3997. "MIT"
  3998. ],
  3999. "authors": [
  4000. {
  4001. "name": "Fabien Potencier",
  4002. "email": "fabien@symfony.com"
  4003. },
  4004. {
  4005. "name": "Symfony Community",
  4006. "homepage": "https://symfony.com/contributors"
  4007. }
  4008. ],
  4009. "description": "Symfony PropertyAccess Component",
  4010. "homepage": "https://symfony.com",
  4011. "keywords": [
  4012. "access",
  4013. "array",
  4014. "extraction",
  4015. "index",
  4016. "injection",
  4017. "object",
  4018. "property",
  4019. "property path",
  4020. "reflection"
  4021. ],
  4022. "time": "2017-11-19T18:43:46+00:00"
  4023. },
  4024. {
  4025. "name": "symfony/routing",
  4026. "version": "v3.4.1",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/symfony/routing.git",
  4030. "reference": "d768aa5b25d98188bae3fe4ce3eb2924c97aafac"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/symfony/routing/zipball/d768aa5b25d98188bae3fe4ce3eb2924c97aafac",
  4035. "reference": "d768aa5b25d98188bae3fe4ce3eb2924c97aafac",
  4036. "shasum": ""
  4037. },
  4038. "require": {
  4039. "php": "^5.5.9|>=7.0.8"
  4040. },
  4041. "conflict": {
  4042. "symfony/config": "<2.8",
  4043. "symfony/dependency-injection": "<3.3",
  4044. "symfony/yaml": "<3.4"
  4045. },
  4046. "require-dev": {
  4047. "doctrine/annotations": "~1.0",
  4048. "doctrine/common": "~2.2",
  4049. "psr/log": "~1.0",
  4050. "symfony/config": "~2.8|~3.0|~4.0",
  4051. "symfony/dependency-injection": "~3.3|~4.0",
  4052. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4053. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4054. "symfony/yaml": "~3.4|~4.0"
  4055. },
  4056. "suggest": {
  4057. "doctrine/annotations": "For using the annotation loader",
  4058. "symfony/config": "For using the all-in-one router or any loader",
  4059. "symfony/dependency-injection": "For loading routes from a service",
  4060. "symfony/expression-language": "For using expression matching",
  4061. "symfony/http-foundation": "For using a Symfony Request object",
  4062. "symfony/yaml": "For using the YAML loader"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-master": "3.4-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "psr-4": {
  4072. "Symfony\\Component\\Routing\\": ""
  4073. },
  4074. "exclude-from-classmap": [
  4075. "/Tests/"
  4076. ]
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Fabien Potencier",
  4085. "email": "fabien@symfony.com"
  4086. },
  4087. {
  4088. "name": "Symfony Community",
  4089. "homepage": "https://symfony.com/contributors"
  4090. }
  4091. ],
  4092. "description": "Symfony Routing Component",
  4093. "homepage": "https://symfony.com",
  4094. "keywords": [
  4095. "router",
  4096. "routing",
  4097. "uri",
  4098. "url"
  4099. ],
  4100. "time": "2017-11-24T14:13:49+00:00"
  4101. },
  4102. {
  4103. "name": "symfony/security",
  4104. "version": "v3.4.1",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/symfony/security.git",
  4108. "reference": "3e2df407f47c0f6fbfb73d3ea2fefe7ff9ab2ed5"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/symfony/security/zipball/3e2df407f47c0f6fbfb73d3ea2fefe7ff9ab2ed5",
  4113. "reference": "3e2df407f47c0f6fbfb73d3ea2fefe7ff9ab2ed5",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "php": "^5.5.9|>=7.0.8",
  4118. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4119. "symfony/http-foundation": "^2.8.31|~3.3.13|~3.4|~4.0",
  4120. "symfony/http-kernel": "~3.3|~4.0",
  4121. "symfony/polyfill-php56": "~1.0",
  4122. "symfony/polyfill-php70": "~1.0",
  4123. "symfony/polyfill-util": "~1.0",
  4124. "symfony/property-access": "~2.8|~3.0|~4.0"
  4125. },
  4126. "replace": {
  4127. "symfony/security-core": "self.version",
  4128. "symfony/security-csrf": "self.version",
  4129. "symfony/security-guard": "self.version",
  4130. "symfony/security-http": "self.version"
  4131. },
  4132. "require-dev": {
  4133. "psr/container": "^1.0",
  4134. "psr/log": "~1.0",
  4135. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4136. "symfony/finder": "~2.8|~3.0|~4.0",
  4137. "symfony/ldap": "~3.1|~4.0",
  4138. "symfony/polyfill-intl-icu": "~1.0",
  4139. "symfony/routing": "~2.8|~3.0|~4.0",
  4140. "symfony/validator": "^3.2.5|~4.0"
  4141. },
  4142. "suggest": {
  4143. "psr/container": "To instantiate the Security class",
  4144. "symfony/expression-language": "For using the expression voter",
  4145. "symfony/form": "",
  4146. "symfony/ldap": "For using the LDAP user and authentication providers",
  4147. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  4148. "symfony/validator": "For using the user password constraint"
  4149. },
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-master": "3.4-dev"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Symfony\\Component\\Security\\": ""
  4159. },
  4160. "exclude-from-classmap": [
  4161. "/Tests/"
  4162. ]
  4163. },
  4164. "notification-url": "https://packagist.org/downloads/",
  4165. "license": [
  4166. "MIT"
  4167. ],
  4168. "authors": [
  4169. {
  4170. "name": "Fabien Potencier",
  4171. "email": "fabien@symfony.com"
  4172. },
  4173. {
  4174. "name": "Symfony Community",
  4175. "homepage": "https://symfony.com/contributors"
  4176. }
  4177. ],
  4178. "description": "Symfony Security Component",
  4179. "homepage": "https://symfony.com",
  4180. "time": "2017-12-03T21:15:09+00:00"
  4181. },
  4182. {
  4183. "name": "symfony/stopwatch",
  4184. "version": "v3.4.1",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/symfony/stopwatch.git",
  4188. "reference": "52510fe1aefdc1c5d2076ac6030421d387e689d1"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/52510fe1aefdc1c5d2076ac6030421d387e689d1",
  4193. "reference": "52510fe1aefdc1c5d2076ac6030421d387e689d1",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "php": "^5.5.9|>=7.0.8"
  4198. },
  4199. "type": "library",
  4200. "extra": {
  4201. "branch-alias": {
  4202. "dev-master": "3.4-dev"
  4203. }
  4204. },
  4205. "autoload": {
  4206. "psr-4": {
  4207. "Symfony\\Component\\Stopwatch\\": ""
  4208. },
  4209. "exclude-from-classmap": [
  4210. "/Tests/"
  4211. ]
  4212. },
  4213. "notification-url": "https://packagist.org/downloads/",
  4214. "license": [
  4215. "MIT"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "Fabien Potencier",
  4220. "email": "fabien@symfony.com"
  4221. },
  4222. {
  4223. "name": "Symfony Community",
  4224. "homepage": "https://symfony.com/contributors"
  4225. }
  4226. ],
  4227. "description": "Symfony Stopwatch Component",
  4228. "homepage": "https://symfony.com",
  4229. "time": "2017-11-07T14:28:09+00:00"
  4230. },
  4231. {
  4232. "name": "symfony/translation",
  4233. "version": "v3.4.1",
  4234. "source": {
  4235. "type": "git",
  4236. "url": "https://github.com/symfony/translation.git",
  4237. "reference": "e05b0a5996ad7a35ba3a19ffad8b72c9daa64dfa"
  4238. },
  4239. "dist": {
  4240. "type": "zip",
  4241. "url": "https://api.github.com/repos/symfony/translation/zipball/e05b0a5996ad7a35ba3a19ffad8b72c9daa64dfa",
  4242. "reference": "e05b0a5996ad7a35ba3a19ffad8b72c9daa64dfa",
  4243. "shasum": ""
  4244. },
  4245. "require": {
  4246. "php": "^5.5.9|>=7.0.8",
  4247. "symfony/polyfill-mbstring": "~1.0"
  4248. },
  4249. "conflict": {
  4250. "symfony/config": "<2.8",
  4251. "symfony/dependency-injection": "<3.4",
  4252. "symfony/yaml": "<3.4"
  4253. },
  4254. "require-dev": {
  4255. "psr/log": "~1.0",
  4256. "symfony/config": "~2.8|~3.0|~4.0",
  4257. "symfony/dependency-injection": "~3.4|~4.0",
  4258. "symfony/finder": "~2.8|~3.0|~4.0",
  4259. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4260. "symfony/yaml": "~3.4|~4.0"
  4261. },
  4262. "suggest": {
  4263. "psr/log": "To use logging capability in translator",
  4264. "symfony/config": "",
  4265. "symfony/yaml": ""
  4266. },
  4267. "type": "library",
  4268. "extra": {
  4269. "branch-alias": {
  4270. "dev-master": "3.4-dev"
  4271. }
  4272. },
  4273. "autoload": {
  4274. "psr-4": {
  4275. "Symfony\\Component\\Translation\\": ""
  4276. },
  4277. "exclude-from-classmap": [
  4278. "/Tests/"
  4279. ]
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Fabien Potencier",
  4288. "email": "fabien@symfony.com"
  4289. },
  4290. {
  4291. "name": "Symfony Community",
  4292. "homepage": "https://symfony.com/contributors"
  4293. }
  4294. ],
  4295. "description": "Symfony Translation Component",
  4296. "homepage": "https://symfony.com",
  4297. "time": "2017-11-27T14:23:00+00:00"
  4298. },
  4299. {
  4300. "name": "symfony/twig-bridge",
  4301. "version": "v3.4.1",
  4302. "source": {
  4303. "type": "git",
  4304. "url": "https://github.com/symfony/twig-bridge.git",
  4305. "reference": "cc30b5622ac7ac50e31de5c904c840ba502df1aa"
  4306. },
  4307. "dist": {
  4308. "type": "zip",
  4309. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/cc30b5622ac7ac50e31de5c904c840ba502df1aa",
  4310. "reference": "cc30b5622ac7ac50e31de5c904c840ba502df1aa",
  4311. "shasum": ""
  4312. },
  4313. "require": {
  4314. "php": "^5.5.9|>=7.0.8",
  4315. "twig/twig": "^1.35|^2.4.4"
  4316. },
  4317. "conflict": {
  4318. "symfony/console": "<3.4",
  4319. "symfony/form": "<3.4"
  4320. },
  4321. "require-dev": {
  4322. "fig/link-util": "^1.0",
  4323. "symfony/asset": "~2.8|~3.0|~4.0",
  4324. "symfony/console": "~3.4|~4.0",
  4325. "symfony/dependency-injection": "~2.8|~3.0|~4.0",
  4326. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4327. "symfony/finder": "~2.8|~3.0|~4.0",
  4328. "symfony/form": "~3.4|~4.0",
  4329. "symfony/http-foundation": "^3.3.11|~4.0",
  4330. "symfony/http-kernel": "~3.2|~4.0",
  4331. "symfony/polyfill-intl-icu": "~1.0",
  4332. "symfony/routing": "~2.8|~3.0|~4.0",
  4333. "symfony/security": "~2.8|~3.0|~4.0",
  4334. "symfony/security-acl": "~2.8|~3.0",
  4335. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  4336. "symfony/templating": "~2.8|~3.0|~4.0",
  4337. "symfony/translation": "~2.8|~3.0|~4.0",
  4338. "symfony/var-dumper": "~2.8.10|~3.1.4|~3.2|~4.0",
  4339. "symfony/web-link": "~3.3|~4.0",
  4340. "symfony/yaml": "~2.8|~3.0|~4.0"
  4341. },
  4342. "suggest": {
  4343. "symfony/asset": "For using the AssetExtension",
  4344. "symfony/expression-language": "For using the ExpressionExtension",
  4345. "symfony/finder": "",
  4346. "symfony/form": "For using the FormExtension",
  4347. "symfony/http-kernel": "For using the HttpKernelExtension",
  4348. "symfony/routing": "For using the RoutingExtension",
  4349. "symfony/security": "For using the SecurityExtension",
  4350. "symfony/stopwatch": "For using the StopwatchExtension",
  4351. "symfony/templating": "For using the TwigEngine",
  4352. "symfony/translation": "For using the TranslationExtension",
  4353. "symfony/var-dumper": "For using the DumpExtension",
  4354. "symfony/web-link": "For using the WebLinkExtension",
  4355. "symfony/yaml": "For using the YamlExtension"
  4356. },
  4357. "type": "symfony-bridge",
  4358. "extra": {
  4359. "branch-alias": {
  4360. "dev-master": "3.4-dev"
  4361. }
  4362. },
  4363. "autoload": {
  4364. "psr-4": {
  4365. "Symfony\\Bridge\\Twig\\": ""
  4366. },
  4367. "exclude-from-classmap": [
  4368. "/Tests/"
  4369. ]
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Fabien Potencier",
  4378. "email": "fabien@symfony.com"
  4379. },
  4380. {
  4381. "name": "Symfony Community",
  4382. "homepage": "https://symfony.com/contributors"
  4383. }
  4384. ],
  4385. "description": "Symfony Twig Bridge",
  4386. "homepage": "https://symfony.com",
  4387. "time": "2017-12-04T19:58:42+00:00"
  4388. },
  4389. {
  4390. "name": "symfony/validator",
  4391. "version": "v3.4.1",
  4392. "source": {
  4393. "type": "git",
  4394. "url": "https://github.com/symfony/validator.git",
  4395. "reference": "1a46cfa4f80ddbd82a01d0980fcf646940cea5bb"
  4396. },
  4397. "dist": {
  4398. "type": "zip",
  4399. "url": "https://api.github.com/repos/symfony/validator/zipball/1a46cfa4f80ddbd82a01d0980fcf646940cea5bb",
  4400. "reference": "1a46cfa4f80ddbd82a01d0980fcf646940cea5bb",
  4401. "shasum": ""
  4402. },
  4403. "require": {
  4404. "php": "^5.5.9|>=7.0.8",
  4405. "symfony/polyfill-mbstring": "~1.0",
  4406. "symfony/translation": "~2.8|~3.0|~4.0"
  4407. },
  4408. "conflict": {
  4409. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4410. "symfony/dependency-injection": "<3.3",
  4411. "symfony/http-kernel": "<3.3.5",
  4412. "symfony/yaml": "<3.4"
  4413. },
  4414. "require-dev": {
  4415. "doctrine/annotations": "~1.0",
  4416. "doctrine/cache": "~1.0",
  4417. "egulias/email-validator": "^1.2.8|~2.0",
  4418. "symfony/cache": "~3.1|~4.0",
  4419. "symfony/config": "~2.8|~3.0|~4.0",
  4420. "symfony/dependency-injection": "~3.3|~4.0",
  4421. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4422. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4423. "symfony/http-kernel": "^3.3.5|~4.0",
  4424. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4425. "symfony/property-access": "~2.8|~3.0|~4.0",
  4426. "symfony/var-dumper": "~3.3|~4.0",
  4427. "symfony/yaml": "~3.4|~4.0"
  4428. },
  4429. "suggest": {
  4430. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4431. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4432. "egulias/email-validator": "Strict (RFC compliant) email validation",
  4433. "psr/cache-implementation": "For using the metadata cache.",
  4434. "symfony/config": "",
  4435. "symfony/expression-language": "For using the Expression validator",
  4436. "symfony/http-foundation": "",
  4437. "symfony/intl": "",
  4438. "symfony/property-access": "For accessing properties within comparison constraints",
  4439. "symfony/yaml": ""
  4440. },
  4441. "type": "library",
  4442. "extra": {
  4443. "branch-alias": {
  4444. "dev-master": "3.4-dev"
  4445. }
  4446. },
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Symfony\\Component\\Validator\\": ""
  4450. },
  4451. "exclude-from-classmap": [
  4452. "/Tests/"
  4453. ]
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "Fabien Potencier",
  4462. "email": "fabien@symfony.com"
  4463. },
  4464. {
  4465. "name": "Symfony Community",
  4466. "homepage": "https://symfony.com/contributors"
  4467. }
  4468. ],
  4469. "description": "Symfony Validator Component",
  4470. "homepage": "https://symfony.com",
  4471. "time": "2017-12-04T12:17:59+00:00"
  4472. },
  4473. {
  4474. "name": "symfony/var-dumper",
  4475. "version": "v4.0.1",
  4476. "source": {
  4477. "type": "git",
  4478. "url": "https://github.com/symfony/var-dumper.git",
  4479. "reference": "1a9d9c2f7229ff8e3d75adba75968b659dd5c0d0"
  4480. },
  4481. "dist": {
  4482. "type": "zip",
  4483. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1a9d9c2f7229ff8e3d75adba75968b659dd5c0d0",
  4484. "reference": "1a9d9c2f7229ff8e3d75adba75968b659dd5c0d0",
  4485. "shasum": ""
  4486. },
  4487. "require": {
  4488. "php": "^7.1.3",
  4489. "symfony/polyfill-mbstring": "~1.0",
  4490. "symfony/polyfill-php72": "~1.5"
  4491. },
  4492. "conflict": {
  4493. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4494. },
  4495. "require-dev": {
  4496. "ext-iconv": "*",
  4497. "twig/twig": "~1.34|~2.4"
  4498. },
  4499. "suggest": {
  4500. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4501. "ext-intl": "To show region name in time zone dump"
  4502. },
  4503. "type": "library",
  4504. "extra": {
  4505. "branch-alias": {
  4506. "dev-master": "4.0-dev"
  4507. }
  4508. },
  4509. "autoload": {
  4510. "files": [
  4511. "Resources/functions/dump.php"
  4512. ],
  4513. "psr-4": {
  4514. "Symfony\\Component\\VarDumper\\": ""
  4515. },
  4516. "exclude-from-classmap": [
  4517. "/Tests/"
  4518. ]
  4519. },
  4520. "notification-url": "https://packagist.org/downloads/",
  4521. "license": [
  4522. "MIT"
  4523. ],
  4524. "authors": [
  4525. {
  4526. "name": "Nicolas Grekas",
  4527. "email": "p@tchwork.com"
  4528. },
  4529. {
  4530. "name": "Symfony Community",
  4531. "homepage": "https://symfony.com/contributors"
  4532. }
  4533. ],
  4534. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4535. "homepage": "https://symfony.com",
  4536. "keywords": [
  4537. "debug",
  4538. "dump"
  4539. ],
  4540. "time": "2017-11-30T15:11:43+00:00"
  4541. },
  4542. {
  4543. "name": "symfony/web-profiler-bundle",
  4544. "version": "v3.4.1",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/symfony/web-profiler-bundle.git",
  4548. "reference": "5522b457d490687ad3eff8934bf8672d8bb6b9ae"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/5522b457d490687ad3eff8934bf8672d8bb6b9ae",
  4553. "reference": "5522b457d490687ad3eff8934bf8672d8bb6b9ae",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "php": "^5.5.9|>=7.0.8",
  4558. "symfony/http-kernel": "~3.3|~4.0",
  4559. "symfony/polyfill-php70": "~1.0",
  4560. "symfony/routing": "~2.8|~3.0|~4.0",
  4561. "symfony/twig-bridge": "~2.8|~3.0|~4.0",
  4562. "symfony/var-dumper": "~3.3|~4.0",
  4563. "twig/twig": "~1.34|~2.4"
  4564. },
  4565. "conflict": {
  4566. "symfony/config": "<3.4",
  4567. "symfony/dependency-injection": "<3.4",
  4568. "symfony/event-dispatcher": "<3.3.1",
  4569. "symfony/var-dumper": "<3.3"
  4570. },
  4571. "require-dev": {
  4572. "symfony/config": "~3.4|~4.0",
  4573. "symfony/console": "~2.8|~3.0|~4.0",
  4574. "symfony/dependency-injection": "~3.4|~4.0",
  4575. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  4576. },
  4577. "type": "symfony-bundle",
  4578. "extra": {
  4579. "branch-alias": {
  4580. "dev-master": "3.4-dev"
  4581. }
  4582. },
  4583. "autoload": {
  4584. "psr-4": {
  4585. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  4586. },
  4587. "exclude-from-classmap": [
  4588. "/Tests/"
  4589. ]
  4590. },
  4591. "notification-url": "https://packagist.org/downloads/",
  4592. "license": [
  4593. "MIT"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "Fabien Potencier",
  4598. "email": "fabien@symfony.com"
  4599. },
  4600. {
  4601. "name": "Symfony Community",
  4602. "homepage": "https://symfony.com/contributors"
  4603. }
  4604. ],
  4605. "description": "Symfony WebProfilerBundle",
  4606. "homepage": "https://symfony.com",
  4607. "time": "2017-12-04T18:37:00+00:00"
  4608. },
  4609. {
  4610. "name": "theseer/tokenizer",
  4611. "version": "1.1.0",
  4612. "source": {
  4613. "type": "git",
  4614. "url": "https://github.com/theseer/tokenizer.git",
  4615. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  4616. },
  4617. "dist": {
  4618. "type": "zip",
  4619. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4620. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4621. "shasum": ""
  4622. },
  4623. "require": {
  4624. "ext-dom": "*",
  4625. "ext-tokenizer": "*",
  4626. "ext-xmlwriter": "*",
  4627. "php": "^7.0"
  4628. },
  4629. "type": "library",
  4630. "autoload": {
  4631. "classmap": [
  4632. "src/"
  4633. ]
  4634. },
  4635. "notification-url": "https://packagist.org/downloads/",
  4636. "license": [
  4637. "BSD-3-Clause"
  4638. ],
  4639. "authors": [
  4640. {
  4641. "name": "Arne Blankerts",
  4642. "email": "arne@blankerts.de",
  4643. "role": "Developer"
  4644. }
  4645. ],
  4646. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4647. "time": "2017-04-07T12:08:54+00:00"
  4648. },
  4649. {
  4650. "name": "twig/twig",
  4651. "version": "v2.4.4",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://github.com/twigphp/Twig.git",
  4655. "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://api.github.com/repos/twigphp/Twig/zipball/eddb97148ad779f27e670e1e3f19fb323aedafeb",
  4660. "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb",
  4661. "shasum": ""
  4662. },
  4663. "require": {
  4664. "php": "^7.0",
  4665. "symfony/polyfill-mbstring": "~1.0"
  4666. },
  4667. "require-dev": {
  4668. "psr/container": "^1.0",
  4669. "symfony/debug": "~2.7",
  4670. "symfony/phpunit-bridge": "~3.3@dev"
  4671. },
  4672. "type": "library",
  4673. "extra": {
  4674. "branch-alias": {
  4675. "dev-master": "2.4-dev"
  4676. }
  4677. },
  4678. "autoload": {
  4679. "psr-0": {
  4680. "Twig_": "lib/"
  4681. },
  4682. "psr-4": {
  4683. "Twig\\": "src/"
  4684. }
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "BSD-3-Clause"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Fabien Potencier",
  4693. "email": "fabien@symfony.com",
  4694. "homepage": "http://fabien.potencier.org",
  4695. "role": "Lead Developer"
  4696. },
  4697. {
  4698. "name": "Armin Ronacher",
  4699. "email": "armin.ronacher@active-4.com",
  4700. "role": "Project Founder"
  4701. },
  4702. {
  4703. "name": "Twig Team",
  4704. "homepage": "http://twig.sensiolabs.org/contributors",
  4705. "role": "Contributors"
  4706. }
  4707. ],
  4708. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4709. "homepage": "http://twig.sensiolabs.org",
  4710. "keywords": [
  4711. "templating"
  4712. ],
  4713. "time": "2017-09-27T18:10:31+00:00"
  4714. },
  4715. {
  4716. "name": "webmozart/assert",
  4717. "version": "1.2.0",
  4718. "source": {
  4719. "type": "git",
  4720. "url": "https://github.com/webmozart/assert.git",
  4721. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  4722. },
  4723. "dist": {
  4724. "type": "zip",
  4725. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  4726. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  4727. "shasum": ""
  4728. },
  4729. "require": {
  4730. "php": "^5.3.3 || ^7.0"
  4731. },
  4732. "require-dev": {
  4733. "phpunit/phpunit": "^4.6",
  4734. "sebastian/version": "^1.0.1"
  4735. },
  4736. "type": "library",
  4737. "extra": {
  4738. "branch-alias": {
  4739. "dev-master": "1.3-dev"
  4740. }
  4741. },
  4742. "autoload": {
  4743. "psr-4": {
  4744. "Webmozart\\Assert\\": "src/"
  4745. }
  4746. },
  4747. "notification-url": "https://packagist.org/downloads/",
  4748. "license": [
  4749. "MIT"
  4750. ],
  4751. "authors": [
  4752. {
  4753. "name": "Bernhard Schussek",
  4754. "email": "bschussek@gmail.com"
  4755. }
  4756. ],
  4757. "description": "Assertions to validate method input/output with nice error messages.",
  4758. "keywords": [
  4759. "assert",
  4760. "check",
  4761. "validate"
  4762. ],
  4763. "time": "2016-11-23T20:04:58+00:00"
  4764. }
  4765. ],
  4766. "packages-dev": [],
  4767. "aliases": [],
  4768. "minimum-stability": "stable",
  4769. "stability-flags": [],
  4770. "prefer-stable": false,
  4771. "prefer-lowest": false,
  4772. "platform": {
  4773. "php": ">=7.0"
  4774. },
  4775. "platform-dev": []
  4776. }