composer.lock 179 KB

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