composer.lock 159 KB

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