composer.lock 141 KB

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