composer.lock 199 KB

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