composer.lock 217 KB

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