composer.lock 378 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767
  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": "c7a9294a17af4e5a594abf834ee6fd1b",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  20. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2017-12-20T14:37:45+00:00"
  60. },
  61. {
  62. "name": "aws/aws-sdk-php",
  63. "version": "3.112.23",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/aws/aws-sdk-php.git",
  67. "reference": "11f8ebab922a8875f8a5b3927f946341eeae8ec2"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/11f8ebab922a8875f8a5b3927f946341eeae8ec2",
  72. "reference": "11f8ebab922a8875f8a5b3927f946341eeae8ec2",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "ext-json": "*",
  77. "ext-pcre": "*",
  78. "ext-simplexml": "*",
  79. "guzzlehttp/guzzle": "^5.3.3|^6.2.1",
  80. "guzzlehttp/promises": "~1.0",
  81. "guzzlehttp/psr7": "^1.4.1",
  82. "mtdowling/jmespath.php": "~2.2",
  83. "php": ">=5.5"
  84. },
  85. "require-dev": {
  86. "andrewsville/php-token-reflection": "^1.4",
  87. "aws/aws-php-sns-message-validator": "~1.0",
  88. "behat/behat": "~3.0",
  89. "doctrine/cache": "~1.4",
  90. "ext-dom": "*",
  91. "ext-openssl": "*",
  92. "ext-pcntl": "*",
  93. "ext-sockets": "*",
  94. "nette/neon": "^2.3",
  95. "phpunit/phpunit": "^4.8.35|^5.4.3",
  96. "psr/cache": "^1.0",
  97. "psr/simple-cache": "^1.0"
  98. },
  99. "suggest": {
  100. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  101. "doctrine/cache": "To use the DoctrineCacheAdapter",
  102. "ext-curl": "To send requests using cURL",
  103. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-master": "3.0-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Aws\\": "src/"
  115. },
  116. "files": [
  117. "src/functions.php"
  118. ]
  119. },
  120. "notification-url": "https://packagist.org/downloads/",
  121. "license": [
  122. "Apache-2.0"
  123. ],
  124. "authors": [
  125. {
  126. "name": "Amazon Web Services",
  127. "homepage": "http://aws.amazon.com"
  128. }
  129. ],
  130. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  131. "homepage": "http://aws.amazon.com/sdkforphp",
  132. "keywords": [
  133. "amazon",
  134. "aws",
  135. "cloud",
  136. "dynamodb",
  137. "ec2",
  138. "glacier",
  139. "s3",
  140. "sdk"
  141. ],
  142. "time": "2019-10-16T18:13:31+00:00"
  143. },
  144. {
  145. "name": "barryvdh/laravel-cors",
  146. "version": "v0.11.4",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/barryvdh/laravel-cors.git",
  150. "reference": "03492f1a3bc74a05de23f93b94ac7cc5c173eec9"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/03492f1a3bc74a05de23f93b94ac7cc5c173eec9",
  155. "reference": "03492f1a3bc74a05de23f93b94ac7cc5c173eec9",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "asm89/stack-cors": "^1.2",
  160. "illuminate/support": "^5.5|^6",
  161. "php": ">=7",
  162. "symfony/http-foundation": "^3.1|^4",
  163. "symfony/http-kernel": "^3.1|^4"
  164. },
  165. "require-dev": {
  166. "laravel/framework": "^5.5",
  167. "orchestra/testbench": "3.3.x|3.4.x|3.5.x|3.6.x|3.7.x",
  168. "phpunit/phpunit": "^4.8|^5.2|^7.0",
  169. "squizlabs/php_codesniffer": "^2.3"
  170. },
  171. "type": "library",
  172. "extra": {
  173. "branch-alias": {
  174. "dev-master": "0.11-dev"
  175. },
  176. "laravel": {
  177. "providers": [
  178. "Barryvdh\\Cors\\ServiceProvider"
  179. ]
  180. }
  181. },
  182. "autoload": {
  183. "psr-4": {
  184. "Barryvdh\\Cors\\": "src/"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "MIT"
  190. ],
  191. "authors": [
  192. {
  193. "name": "Barry vd. Heuvel",
  194. "email": "barryvdh@gmail.com"
  195. }
  196. ],
  197. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  198. "keywords": [
  199. "api",
  200. "cors",
  201. "crossdomain",
  202. "laravel"
  203. ],
  204. "time": "2019-08-28T11:27:11+00:00"
  205. },
  206. {
  207. "name": "beyondcode/laravel-self-diagnosis",
  208. "version": "1.3.2",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/beyondcode/laravel-self-diagnosis.git",
  212. "reference": "6792a2d8b29ab9080490dac145e310514dcf6224"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/beyondcode/laravel-self-diagnosis/zipball/6792a2d8b29ab9080490dac145e310514dcf6224",
  217. "reference": "6792a2d8b29ab9080490dac145e310514dcf6224",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "composer/semver": "^1.4",
  222. "geerlingguy/ping": "^1.1",
  223. "illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
  224. "php": "^7.1",
  225. "vlucas/phpdotenv": "~2.5|~3.3"
  226. },
  227. "require-dev": {
  228. "larapack/dd": "^1.0",
  229. "mockery/mockery": "^1.0",
  230. "orchestra/testbench": "~3.5|~3.8",
  231. "phpunit/phpunit": "^7.0",
  232. "predis/predis": "^1.1",
  233. "scrutinizer/ocular": "^1.5"
  234. },
  235. "type": "library",
  236. "extra": {
  237. "laravel": {
  238. "providers": [
  239. "BeyondCode\\SelfDiagnosis\\SelfDiagnosisServiceProvider"
  240. ]
  241. }
  242. },
  243. "autoload": {
  244. "psr-4": {
  245. "BeyondCode\\SelfDiagnosis\\": "src"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "authors": [
  253. {
  254. "name": "Marcel Pociot",
  255. "email": "marcel@beyondco.de",
  256. "homepage": "https://beyondcode.de",
  257. "role": "Developer"
  258. }
  259. ],
  260. "description": "Perform various self diagnosis tests on your Laravel application.",
  261. "homepage": "https://github.com/beyondcode/laravel-self-diagnosis",
  262. "keywords": [
  263. "beyondcode",
  264. "laravel-self-diagnosis"
  265. ],
  266. "time": "2019-09-03T15:01:16+00:00"
  267. },
  268. {
  269. "name": "cakephp/chronos",
  270. "version": "1.2.8",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/cakephp/chronos.git",
  274. "reference": "0292f06e8cc23fc82f0574889da2d8bf27b613c1"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/cakephp/chronos/zipball/0292f06e8cc23fc82f0574889da2d8bf27b613c1",
  279. "reference": "0292f06e8cc23fc82f0574889da2d8bf27b613c1",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.5.9|^7"
  284. },
  285. "require-dev": {
  286. "athletic/athletic": "~0.1",
  287. "cakephp/cakephp-codesniffer": "^3.0",
  288. "phpbench/phpbench": "@dev",
  289. "phpstan/phpstan": "^0.6.4",
  290. "phpunit/phpunit": "<6.0 || ^7.0"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "Cake\\Chronos\\": "src/"
  296. },
  297. "files": [
  298. "src/carbon_compat.php"
  299. ]
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "authors": [
  306. {
  307. "name": "Brian Nesbitt",
  308. "email": "brian@nesbot.com",
  309. "homepage": "http://nesbot.com"
  310. },
  311. {
  312. "name": "The CakePHP Team",
  313. "homepage": "http://cakephp.org"
  314. }
  315. ],
  316. "description": "A simple API extension for DateTime.",
  317. "homepage": "http://cakephp.org",
  318. "keywords": [
  319. "date",
  320. "datetime",
  321. "time"
  322. ],
  323. "time": "2019-06-17T15:19:18+00:00"
  324. },
  325. {
  326. "name": "composer/semver",
  327. "version": "1.5.0",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/composer/semver.git",
  331. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  336. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  337. "shasum": ""
  338. },
  339. "require": {
  340. "php": "^5.3.2 || ^7.0"
  341. },
  342. "require-dev": {
  343. "phpunit/phpunit": "^4.5 || ^5.0.5",
  344. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  345. },
  346. "type": "library",
  347. "extra": {
  348. "branch-alias": {
  349. "dev-master": "1.x-dev"
  350. }
  351. },
  352. "autoload": {
  353. "psr-4": {
  354. "Composer\\Semver\\": "src"
  355. }
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "MIT"
  360. ],
  361. "authors": [
  362. {
  363. "name": "Nils Adermann",
  364. "email": "naderman@naderman.de",
  365. "homepage": "http://www.naderman.de"
  366. },
  367. {
  368. "name": "Jordi Boggiano",
  369. "email": "j.boggiano@seld.be",
  370. "homepage": "http://seld.be"
  371. },
  372. {
  373. "name": "Rob Bast",
  374. "email": "rob.bast@gmail.com",
  375. "homepage": "http://robbast.nl"
  376. }
  377. ],
  378. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  379. "keywords": [
  380. "semantic",
  381. "semver",
  382. "validation",
  383. "versioning"
  384. ],
  385. "time": "2019-03-19T17:25:45+00:00"
  386. },
  387. {
  388. "name": "defuse/php-encryption",
  389. "version": "v2.2.1",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/defuse/php-encryption.git",
  393. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  398. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "ext-openssl": "*",
  403. "paragonie/random_compat": ">= 2",
  404. "php": ">=5.4.0"
  405. },
  406. "require-dev": {
  407. "nikic/php-parser": "^2.0|^3.0|^4.0",
  408. "phpunit/phpunit": "^4|^5"
  409. },
  410. "bin": [
  411. "bin/generate-defuse-key"
  412. ],
  413. "type": "library",
  414. "autoload": {
  415. "psr-4": {
  416. "Defuse\\Crypto\\": "src"
  417. }
  418. },
  419. "notification-url": "https://packagist.org/downloads/",
  420. "license": [
  421. "MIT"
  422. ],
  423. "authors": [
  424. {
  425. "name": "Taylor Hornby",
  426. "email": "taylor@defuse.ca",
  427. "homepage": "https://defuse.ca/"
  428. },
  429. {
  430. "name": "Scott Arciszewski",
  431. "email": "info@paragonie.com",
  432. "homepage": "https://paragonie.com"
  433. }
  434. ],
  435. "description": "Secure PHP Encryption Library",
  436. "keywords": [
  437. "aes",
  438. "authenticated encryption",
  439. "cipher",
  440. "crypto",
  441. "cryptography",
  442. "encrypt",
  443. "encryption",
  444. "openssl",
  445. "security",
  446. "symmetric key cryptography"
  447. ],
  448. "time": "2018-07-24T23:27:56+00:00"
  449. },
  450. {
  451. "name": "dnoegel/php-xdg-base-dir",
  452. "version": "0.1",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  456. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  461. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "php": ">=5.3.2"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "@stable"
  469. },
  470. "type": "project",
  471. "autoload": {
  472. "psr-4": {
  473. "XdgBaseDir\\": "src/"
  474. }
  475. },
  476. "notification-url": "https://packagist.org/downloads/",
  477. "license": [
  478. "MIT"
  479. ],
  480. "description": "implementation of xdg base directory specification for php",
  481. "time": "2014-10-24T07:27:01+00:00"
  482. },
  483. {
  484. "name": "doctrine/cache",
  485. "version": "v1.8.0",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/doctrine/cache.git",
  489. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  494. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  495. "shasum": ""
  496. },
  497. "require": {
  498. "php": "~7.1"
  499. },
  500. "conflict": {
  501. "doctrine/common": ">2.2,<2.4"
  502. },
  503. "require-dev": {
  504. "alcaeus/mongo-php-adapter": "^1.1",
  505. "doctrine/coding-standard": "^4.0",
  506. "mongodb/mongodb": "^1.1",
  507. "phpunit/phpunit": "^7.0",
  508. "predis/predis": "~1.0"
  509. },
  510. "suggest": {
  511. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-master": "1.8.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Roman Borschel",
  531. "email": "roman@code-factory.org"
  532. },
  533. {
  534. "name": "Benjamin Eberlei",
  535. "email": "kontakt@beberlei.de"
  536. },
  537. {
  538. "name": "Guilherme Blanco",
  539. "email": "guilhermeblanco@gmail.com"
  540. },
  541. {
  542. "name": "Jonathan Wage",
  543. "email": "jonwage@gmail.com"
  544. },
  545. {
  546. "name": "Johannes Schmitt",
  547. "email": "schmittjoh@gmail.com"
  548. }
  549. ],
  550. "description": "Caching library offering an object-oriented API for many cache backends",
  551. "homepage": "https://www.doctrine-project.org",
  552. "keywords": [
  553. "cache",
  554. "caching"
  555. ],
  556. "time": "2018-08-21T18:01:43+00:00"
  557. },
  558. {
  559. "name": "doctrine/dbal",
  560. "version": "v2.9.2",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/doctrine/dbal.git",
  564. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  569. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  570. "shasum": ""
  571. },
  572. "require": {
  573. "doctrine/cache": "^1.0",
  574. "doctrine/event-manager": "^1.0",
  575. "ext-pdo": "*",
  576. "php": "^7.1"
  577. },
  578. "require-dev": {
  579. "doctrine/coding-standard": "^5.0",
  580. "jetbrains/phpstorm-stubs": "^2018.1.2",
  581. "phpstan/phpstan": "^0.10.1",
  582. "phpunit/phpunit": "^7.4",
  583. "symfony/console": "^2.0.5|^3.0|^4.0",
  584. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  585. },
  586. "suggest": {
  587. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  588. },
  589. "bin": [
  590. "bin/doctrine-dbal"
  591. ],
  592. "type": "library",
  593. "extra": {
  594. "branch-alias": {
  595. "dev-master": "2.9.x-dev",
  596. "dev-develop": "3.0.x-dev"
  597. }
  598. },
  599. "autoload": {
  600. "psr-4": {
  601. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  602. }
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "MIT"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Roman Borschel",
  611. "email": "roman@code-factory.org"
  612. },
  613. {
  614. "name": "Benjamin Eberlei",
  615. "email": "kontakt@beberlei.de"
  616. },
  617. {
  618. "name": "Guilherme Blanco",
  619. "email": "guilhermeblanco@gmail.com"
  620. },
  621. {
  622. "name": "Jonathan Wage",
  623. "email": "jonwage@gmail.com"
  624. }
  625. ],
  626. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  627. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  628. "keywords": [
  629. "abstraction",
  630. "database",
  631. "dbal",
  632. "mysql",
  633. "persistence",
  634. "pgsql",
  635. "php",
  636. "queryobject"
  637. ],
  638. "time": "2018-12-31T03:27:51+00:00"
  639. },
  640. {
  641. "name": "doctrine/event-manager",
  642. "version": "v1.0.0",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/doctrine/event-manager.git",
  646. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  651. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^7.1"
  656. },
  657. "conflict": {
  658. "doctrine/common": "<2.9@dev"
  659. },
  660. "require-dev": {
  661. "doctrine/coding-standard": "^4.0",
  662. "phpunit/phpunit": "^7.0"
  663. },
  664. "type": "library",
  665. "extra": {
  666. "branch-alias": {
  667. "dev-master": "1.0.x-dev"
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Doctrine\\Common\\": "lib/Doctrine/Common"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Roman Borschel",
  682. "email": "roman@code-factory.org"
  683. },
  684. {
  685. "name": "Benjamin Eberlei",
  686. "email": "kontakt@beberlei.de"
  687. },
  688. {
  689. "name": "Guilherme Blanco",
  690. "email": "guilhermeblanco@gmail.com"
  691. },
  692. {
  693. "name": "Jonathan Wage",
  694. "email": "jonwage@gmail.com"
  695. },
  696. {
  697. "name": "Johannes Schmitt",
  698. "email": "schmittjoh@gmail.com"
  699. },
  700. {
  701. "name": "Marco Pivetta",
  702. "email": "ocramius@gmail.com"
  703. }
  704. ],
  705. "description": "Doctrine Event Manager component",
  706. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  707. "keywords": [
  708. "event",
  709. "eventdispatcher",
  710. "eventmanager"
  711. ],
  712. "time": "2018-06-11T11:59:03+00:00"
  713. },
  714. {
  715. "name": "doctrine/inflector",
  716. "version": "v1.3.0",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/doctrine/inflector.git",
  720. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  725. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": "^7.1"
  730. },
  731. "require-dev": {
  732. "phpunit/phpunit": "^6.2"
  733. },
  734. "type": "library",
  735. "extra": {
  736. "branch-alias": {
  737. "dev-master": "1.3.x-dev"
  738. }
  739. },
  740. "autoload": {
  741. "psr-4": {
  742. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  743. }
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Roman Borschel",
  752. "email": "roman@code-factory.org"
  753. },
  754. {
  755. "name": "Benjamin Eberlei",
  756. "email": "kontakt@beberlei.de"
  757. },
  758. {
  759. "name": "Guilherme Blanco",
  760. "email": "guilhermeblanco@gmail.com"
  761. },
  762. {
  763. "name": "Jonathan Wage",
  764. "email": "jonwage@gmail.com"
  765. },
  766. {
  767. "name": "Johannes Schmitt",
  768. "email": "schmittjoh@gmail.com"
  769. }
  770. ],
  771. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  772. "homepage": "http://www.doctrine-project.org",
  773. "keywords": [
  774. "inflection",
  775. "pluralize",
  776. "singularize",
  777. "string"
  778. ],
  779. "time": "2018-01-09T20:05:19+00:00"
  780. },
  781. {
  782. "name": "doctrine/lexer",
  783. "version": "1.1.0",
  784. "source": {
  785. "type": "git",
  786. "url": "https://github.com/doctrine/lexer.git",
  787. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea"
  788. },
  789. "dist": {
  790. "type": "zip",
  791. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea",
  792. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea",
  793. "shasum": ""
  794. },
  795. "require": {
  796. "php": "^7.2"
  797. },
  798. "require-dev": {
  799. "doctrine/coding-standard": "^6.0",
  800. "phpstan/phpstan": "^0.11.8",
  801. "phpunit/phpunit": "^8.2"
  802. },
  803. "type": "library",
  804. "extra": {
  805. "branch-alias": {
  806. "dev-master": "1.1.x-dev"
  807. }
  808. },
  809. "autoload": {
  810. "psr-4": {
  811. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  812. }
  813. },
  814. "notification-url": "https://packagist.org/downloads/",
  815. "license": [
  816. "MIT"
  817. ],
  818. "authors": [
  819. {
  820. "name": "Guilherme Blanco",
  821. "email": "guilhermeblanco@gmail.com"
  822. },
  823. {
  824. "name": "Roman Borschel",
  825. "email": "roman@code-factory.org"
  826. },
  827. {
  828. "name": "Johannes Schmitt",
  829. "email": "schmittjoh@gmail.com"
  830. }
  831. ],
  832. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  833. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  834. "keywords": [
  835. "annotations",
  836. "docblock",
  837. "lexer",
  838. "parser",
  839. "php"
  840. ],
  841. "time": "2019-07-30T19:33:28+00:00"
  842. },
  843. {
  844. "name": "dragonmantank/cron-expression",
  845. "version": "v2.3.0",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/dragonmantank/cron-expression.git",
  849. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  854. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  855. "shasum": ""
  856. },
  857. "require": {
  858. "php": "^7.0"
  859. },
  860. "require-dev": {
  861. "phpunit/phpunit": "^6.4|^7.0"
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "2.3-dev"
  867. }
  868. },
  869. "autoload": {
  870. "psr-4": {
  871. "Cron\\": "src/Cron/"
  872. }
  873. },
  874. "notification-url": "https://packagist.org/downloads/",
  875. "license": [
  876. "MIT"
  877. ],
  878. "authors": [
  879. {
  880. "name": "Michael Dowling",
  881. "email": "mtdowling@gmail.com",
  882. "homepage": "https://github.com/mtdowling"
  883. },
  884. {
  885. "name": "Chris Tankersley",
  886. "email": "chris@ctankersley.com",
  887. "homepage": "https://github.com/dragonmantank"
  888. }
  889. ],
  890. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  891. "keywords": [
  892. "cron",
  893. "schedule"
  894. ],
  895. "time": "2019-03-31T00:38:28+00:00"
  896. },
  897. {
  898. "name": "egulias/email-validator",
  899. "version": "2.1.11",
  900. "source": {
  901. "type": "git",
  902. "url": "https://github.com/egulias/EmailValidator.git",
  903. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  904. },
  905. "dist": {
  906. "type": "zip",
  907. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  908. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  909. "shasum": ""
  910. },
  911. "require": {
  912. "doctrine/lexer": "^1.0.1",
  913. "php": ">= 5.5"
  914. },
  915. "require-dev": {
  916. "dominicsayers/isemail": "dev-master",
  917. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  918. "satooshi/php-coveralls": "^1.0.1",
  919. "symfony/phpunit-bridge": "^4.4@dev"
  920. },
  921. "suggest": {
  922. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  923. },
  924. "type": "library",
  925. "extra": {
  926. "branch-alias": {
  927. "dev-master": "2.1.x-dev"
  928. }
  929. },
  930. "autoload": {
  931. "psr-4": {
  932. "Egulias\\EmailValidator\\": "EmailValidator"
  933. }
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Eduardo Gulias Davis"
  942. }
  943. ],
  944. "description": "A library for validating emails against several RFCs",
  945. "homepage": "https://github.com/egulias/EmailValidator",
  946. "keywords": [
  947. "email",
  948. "emailvalidation",
  949. "emailvalidator",
  950. "validation",
  951. "validator"
  952. ],
  953. "time": "2019-08-13T17:33:27+00:00"
  954. },
  955. {
  956. "name": "erusev/parsedown",
  957. "version": "1.7.3",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/erusev/parsedown.git",
  961. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  966. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "ext-mbstring": "*",
  971. "php": ">=5.3.0"
  972. },
  973. "require-dev": {
  974. "phpunit/phpunit": "^4.8.35"
  975. },
  976. "type": "library",
  977. "autoload": {
  978. "psr-0": {
  979. "Parsedown": ""
  980. }
  981. },
  982. "notification-url": "https://packagist.org/downloads/",
  983. "license": [
  984. "MIT"
  985. ],
  986. "authors": [
  987. {
  988. "name": "Emanuil Rusev",
  989. "email": "hello@erusev.com",
  990. "homepage": "http://erusev.com"
  991. }
  992. ],
  993. "description": "Parser for Markdown.",
  994. "homepage": "http://parsedown.org",
  995. "keywords": [
  996. "markdown",
  997. "parser"
  998. ],
  999. "time": "2019-03-17T18:48:37+00:00"
  1000. },
  1001. {
  1002. "name": "evenement/evenement",
  1003. "version": "v2.1.0",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/igorw/evenement.git",
  1007. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/igorw/evenement/zipball/6ba9a777870ab49f417e703229d53931ed40fd7a",
  1012. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": ">=5.4.0"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^6.0||^5.7||^4.8.35"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "2.0-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "psr-0": {
  1029. "Evenement": "src"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Igor Wiedler",
  1039. "email": "igor@wiedler.ch"
  1040. }
  1041. ],
  1042. "description": "Événement is a very simple event dispatching library for PHP",
  1043. "keywords": [
  1044. "event-dispatcher",
  1045. "event-emitter"
  1046. ],
  1047. "time": "2017-07-17T17:39:19+00:00"
  1048. },
  1049. {
  1050. "name": "ezyang/htmlpurifier",
  1051. "version": "v4.11.0",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/ezyang/htmlpurifier.git",
  1055. "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7",
  1060. "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7",
  1061. "shasum": ""
  1062. },
  1063. "require": {
  1064. "php": ">=5.2"
  1065. },
  1066. "require-dev": {
  1067. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1068. },
  1069. "type": "library",
  1070. "autoload": {
  1071. "psr-0": {
  1072. "HTMLPurifier": "library/"
  1073. },
  1074. "files": [
  1075. "library/HTMLPurifier.composer.php"
  1076. ]
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "LGPL-2.1-or-later"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Edward Z. Yang",
  1085. "email": "admin@htmlpurifier.org",
  1086. "homepage": "http://ezyang.com"
  1087. }
  1088. ],
  1089. "description": "Standards compliant HTML filter written in PHP",
  1090. "homepage": "http://htmlpurifier.org/",
  1091. "keywords": [
  1092. "html"
  1093. ],
  1094. "time": "2019-07-14T18:58:38+00:00"
  1095. },
  1096. {
  1097. "name": "fideloper/proxy",
  1098. "version": "4.2.1",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/fideloper/TrustedProxy.git",
  1102. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  1107. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  1108. "shasum": ""
  1109. },
  1110. "require": {
  1111. "illuminate/contracts": "^5.0|^6.0|^7.0",
  1112. "php": ">=5.4.0"
  1113. },
  1114. "require-dev": {
  1115. "illuminate/http": "^5.0|^6.0|^7.0",
  1116. "mockery/mockery": "^1.0",
  1117. "phpunit/phpunit": "^6.0"
  1118. },
  1119. "type": "library",
  1120. "extra": {
  1121. "laravel": {
  1122. "providers": [
  1123. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1124. ]
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Fideloper\\Proxy\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Chris Fidao",
  1139. "email": "fideloper@gmail.com"
  1140. }
  1141. ],
  1142. "description": "Set trusted proxies for Laravel",
  1143. "keywords": [
  1144. "load balancing",
  1145. "proxy",
  1146. "trusted proxy"
  1147. ],
  1148. "time": "2019-09-03T16:45:42+00:00"
  1149. },
  1150. {
  1151. "name": "firebase/php-jwt",
  1152. "version": "v5.0.0",
  1153. "source": {
  1154. "type": "git",
  1155. "url": "https://github.com/firebase/php-jwt.git",
  1156. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  1157. },
  1158. "dist": {
  1159. "type": "zip",
  1160. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1161. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1162. "shasum": ""
  1163. },
  1164. "require": {
  1165. "php": ">=5.3.0"
  1166. },
  1167. "require-dev": {
  1168. "phpunit/phpunit": " 4.8.35"
  1169. },
  1170. "type": "library",
  1171. "autoload": {
  1172. "psr-4": {
  1173. "Firebase\\JWT\\": "src"
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "BSD-3-Clause"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Neuman Vong",
  1183. "email": "neuman+pear@twilio.com",
  1184. "role": "Developer"
  1185. },
  1186. {
  1187. "name": "Anant Narayanan",
  1188. "email": "anant@php.net",
  1189. "role": "Developer"
  1190. }
  1191. ],
  1192. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1193. "homepage": "https://github.com/firebase/php-jwt",
  1194. "time": "2017-06-27T22:17:23+00:00"
  1195. },
  1196. {
  1197. "name": "geerlingguy/ping",
  1198. "version": "1.2.1",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/geerlingguy/Ping.git",
  1202. "reference": "e0206326e23c99e3e8820e24705f8ca517adff93"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/geerlingguy/Ping/zipball/e0206326e23c99e3e8820e24705f8ca517adff93",
  1207. "reference": "e0206326e23c99e3e8820e24705f8ca517adff93",
  1208. "shasum": ""
  1209. },
  1210. "type": "library",
  1211. "autoload": {
  1212. "classmap": [
  1213. "JJG/Ping.php"
  1214. ]
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Jeff Geerling",
  1223. "email": "jeff@jeffgeerling.com"
  1224. }
  1225. ],
  1226. "description": "A PHP class to ping hosts.",
  1227. "time": "2019-07-29T21:54:12+00:00"
  1228. },
  1229. {
  1230. "name": "guzzlehttp/guzzle",
  1231. "version": "6.3.3",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/guzzle/guzzle.git",
  1235. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1240. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "guzzlehttp/promises": "^1.0",
  1245. "guzzlehttp/psr7": "^1.4",
  1246. "php": ">=5.5"
  1247. },
  1248. "require-dev": {
  1249. "ext-curl": "*",
  1250. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1251. "psr/log": "^1.0"
  1252. },
  1253. "suggest": {
  1254. "psr/log": "Required for using the Log middleware"
  1255. },
  1256. "type": "library",
  1257. "extra": {
  1258. "branch-alias": {
  1259. "dev-master": "6.3-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "files": [
  1264. "src/functions_include.php"
  1265. ],
  1266. "psr-4": {
  1267. "GuzzleHttp\\": "src/"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Michael Dowling",
  1277. "email": "mtdowling@gmail.com",
  1278. "homepage": "https://github.com/mtdowling"
  1279. }
  1280. ],
  1281. "description": "Guzzle is a PHP HTTP client library",
  1282. "homepage": "http://guzzlephp.org/",
  1283. "keywords": [
  1284. "client",
  1285. "curl",
  1286. "framework",
  1287. "http",
  1288. "http client",
  1289. "rest",
  1290. "web service"
  1291. ],
  1292. "time": "2018-04-22T15:46:56+00:00"
  1293. },
  1294. {
  1295. "name": "guzzlehttp/promises",
  1296. "version": "v1.3.1",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/promises.git",
  1300. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1305. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "php": ">=5.5.0"
  1310. },
  1311. "require-dev": {
  1312. "phpunit/phpunit": "^4.0"
  1313. },
  1314. "type": "library",
  1315. "extra": {
  1316. "branch-alias": {
  1317. "dev-master": "1.4-dev"
  1318. }
  1319. },
  1320. "autoload": {
  1321. "psr-4": {
  1322. "GuzzleHttp\\Promise\\": "src/"
  1323. },
  1324. "files": [
  1325. "src/functions_include.php"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Michael Dowling",
  1335. "email": "mtdowling@gmail.com",
  1336. "homepage": "https://github.com/mtdowling"
  1337. }
  1338. ],
  1339. "description": "Guzzle promises library",
  1340. "keywords": [
  1341. "promise"
  1342. ],
  1343. "time": "2016-12-20T10:07:11+00:00"
  1344. },
  1345. {
  1346. "name": "guzzlehttp/psr7",
  1347. "version": "1.6.1",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/guzzle/psr7.git",
  1351. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  1356. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  1357. "shasum": ""
  1358. },
  1359. "require": {
  1360. "php": ">=5.4.0",
  1361. "psr/http-message": "~1.0",
  1362. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1363. },
  1364. "provide": {
  1365. "psr/http-message-implementation": "1.0"
  1366. },
  1367. "require-dev": {
  1368. "ext-zlib": "*",
  1369. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1370. },
  1371. "suggest": {
  1372. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1373. },
  1374. "type": "library",
  1375. "extra": {
  1376. "branch-alias": {
  1377. "dev-master": "1.6-dev"
  1378. }
  1379. },
  1380. "autoload": {
  1381. "psr-4": {
  1382. "GuzzleHttp\\Psr7\\": "src/"
  1383. },
  1384. "files": [
  1385. "src/functions_include.php"
  1386. ]
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Michael Dowling",
  1395. "email": "mtdowling@gmail.com",
  1396. "homepage": "https://github.com/mtdowling"
  1397. },
  1398. {
  1399. "name": "Tobias Schultze",
  1400. "homepage": "https://github.com/Tobion"
  1401. }
  1402. ],
  1403. "description": "PSR-7 message implementation that also provides common utility methods",
  1404. "keywords": [
  1405. "http",
  1406. "message",
  1407. "psr-7",
  1408. "request",
  1409. "response",
  1410. "stream",
  1411. "uri",
  1412. "url"
  1413. ],
  1414. "time": "2019-07-01T23:21:34+00:00"
  1415. },
  1416. {
  1417. "name": "intervention/image",
  1418. "version": "2.5.0",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/Intervention/image.git",
  1422. "reference": "39eaef720d082ecc54c64bf54541c55f10db546d"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/Intervention/image/zipball/39eaef720d082ecc54c64bf54541c55f10db546d",
  1427. "reference": "39eaef720d082ecc54c64bf54541c55f10db546d",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "ext-fileinfo": "*",
  1432. "guzzlehttp/psr7": "~1.1",
  1433. "php": ">=5.4.0"
  1434. },
  1435. "require-dev": {
  1436. "mockery/mockery": "~0.9.2",
  1437. "phpunit/phpunit": "^4.8 || ^5.7"
  1438. },
  1439. "suggest": {
  1440. "ext-gd": "to use GD library based image processing.",
  1441. "ext-imagick": "to use Imagick based image processing.",
  1442. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1443. },
  1444. "type": "library",
  1445. "extra": {
  1446. "branch-alias": {
  1447. "dev-master": "2.4-dev"
  1448. },
  1449. "laravel": {
  1450. "providers": [
  1451. "Intervention\\Image\\ImageServiceProvider"
  1452. ],
  1453. "aliases": {
  1454. "Image": "Intervention\\Image\\Facades\\Image"
  1455. }
  1456. }
  1457. },
  1458. "autoload": {
  1459. "psr-4": {
  1460. "Intervention\\Image\\": "src/Intervention/Image"
  1461. }
  1462. },
  1463. "notification-url": "https://packagist.org/downloads/",
  1464. "license": [
  1465. "MIT"
  1466. ],
  1467. "authors": [
  1468. {
  1469. "name": "Oliver Vogel",
  1470. "email": "oliver@olivervogel.com",
  1471. "homepage": "http://olivervogel.com/"
  1472. }
  1473. ],
  1474. "description": "Image handling and manipulation library with support for Laravel integration",
  1475. "homepage": "http://image.intervention.io/",
  1476. "keywords": [
  1477. "gd",
  1478. "image",
  1479. "imagick",
  1480. "laravel",
  1481. "thumbnail",
  1482. "watermark"
  1483. ],
  1484. "time": "2019-06-24T14:06:31+00:00"
  1485. },
  1486. {
  1487. "name": "jakub-onderka/php-console-color",
  1488. "version": "v0.2",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1492. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1497. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": ">=5.4.0"
  1502. },
  1503. "require-dev": {
  1504. "jakub-onderka/php-code-style": "1.0",
  1505. "jakub-onderka/php-parallel-lint": "1.0",
  1506. "jakub-onderka/php-var-dump-check": "0.*",
  1507. "phpunit/phpunit": "~4.3",
  1508. "squizlabs/php_codesniffer": "1.*"
  1509. },
  1510. "type": "library",
  1511. "autoload": {
  1512. "psr-4": {
  1513. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "BSD-2-Clause"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "Jakub Onderka",
  1523. "email": "jakub.onderka@gmail.com"
  1524. }
  1525. ],
  1526. "time": "2018-09-29T17:23:10+00:00"
  1527. },
  1528. {
  1529. "name": "jakub-onderka/php-console-highlighter",
  1530. "version": "v0.4",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1534. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1539. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "ext-tokenizer": "*",
  1544. "jakub-onderka/php-console-color": "~0.2",
  1545. "php": ">=5.4.0"
  1546. },
  1547. "require-dev": {
  1548. "jakub-onderka/php-code-style": "~1.0",
  1549. "jakub-onderka/php-parallel-lint": "~1.0",
  1550. "jakub-onderka/php-var-dump-check": "~0.1",
  1551. "phpunit/phpunit": "~4.0",
  1552. "squizlabs/php_codesniffer": "~1.5"
  1553. },
  1554. "type": "library",
  1555. "autoload": {
  1556. "psr-4": {
  1557. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1558. }
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "MIT"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Jakub Onderka",
  1567. "email": "acci@acci.cz",
  1568. "homepage": "http://www.acci.cz/"
  1569. }
  1570. ],
  1571. "description": "Highlight PHP code in terminal",
  1572. "time": "2018-09-29T18:48:56+00:00"
  1573. },
  1574. {
  1575. "name": "jaybizzle/crawler-detect",
  1576. "version": "v1.2.86",
  1577. "source": {
  1578. "type": "git",
  1579. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1580. "reference": "1835311c4f458b2f59bbfec05ebfc64ac382b6ee"
  1581. },
  1582. "dist": {
  1583. "type": "zip",
  1584. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/1835311c4f458b2f59bbfec05ebfc64ac382b6ee",
  1585. "reference": "1835311c4f458b2f59bbfec05ebfc64ac382b6ee",
  1586. "shasum": ""
  1587. },
  1588. "require": {
  1589. "php": ">=5.3.0"
  1590. },
  1591. "require-dev": {
  1592. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1593. "satooshi/php-coveralls": "1.*"
  1594. },
  1595. "type": "library",
  1596. "autoload": {
  1597. "psr-4": {
  1598. "Jaybizzle\\CrawlerDetect\\": "src/"
  1599. }
  1600. },
  1601. "notification-url": "https://packagist.org/downloads/",
  1602. "license": [
  1603. "MIT"
  1604. ],
  1605. "authors": [
  1606. {
  1607. "name": "Mark Beech",
  1608. "email": "m@rkbee.ch",
  1609. "role": "Developer"
  1610. }
  1611. ],
  1612. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1613. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1614. "keywords": [
  1615. "crawler",
  1616. "crawler detect",
  1617. "crawler detector",
  1618. "crawlerdetect",
  1619. "php crawler detect"
  1620. ],
  1621. "time": "2019-10-15T20:54:57+00:00"
  1622. },
  1623. {
  1624. "name": "jenssegers/agent",
  1625. "version": "v2.6.3",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/jenssegers/agent.git",
  1629. "reference": "bcb895395e460478e101f41cdab139c48dc721ce"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/jenssegers/agent/zipball/bcb895395e460478e101f41cdab139c48dc721ce",
  1634. "reference": "bcb895395e460478e101f41cdab139c48dc721ce",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "jaybizzle/crawler-detect": "^1.2",
  1639. "mobiledetect/mobiledetectlib": "^2.7.6",
  1640. "php": ">=5.6"
  1641. },
  1642. "require-dev": {
  1643. "php-coveralls/php-coveralls": "^2.1",
  1644. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1645. },
  1646. "suggest": {
  1647. "illuminate/support": "^4.0|^5.0"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "3.0-dev"
  1653. },
  1654. "laravel": {
  1655. "providers": [
  1656. "Jenssegers\\Agent\\AgentServiceProvider"
  1657. ],
  1658. "aliases": {
  1659. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1660. }
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "Jenssegers\\Agent\\": "src/"
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Jens Segers",
  1675. "homepage": "https://jenssegers.com"
  1676. }
  1677. ],
  1678. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1679. "homepage": "https://github.com/jenssegers/agent",
  1680. "keywords": [
  1681. "Agent",
  1682. "browser",
  1683. "desktop",
  1684. "laravel",
  1685. "mobile",
  1686. "platform",
  1687. "user agent",
  1688. "useragent"
  1689. ],
  1690. "time": "2019-01-19T21:32:55+00:00"
  1691. },
  1692. {
  1693. "name": "laravel/framework",
  1694. "version": "v6.3.0",
  1695. "source": {
  1696. "type": "git",
  1697. "url": "https://github.com/laravel/framework.git",
  1698. "reference": "80914c430fb5e49f492812d704ba6aeec03d80a2"
  1699. },
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://api.github.com/repos/laravel/framework/zipball/80914c430fb5e49f492812d704ba6aeec03d80a2",
  1703. "reference": "80914c430fb5e49f492812d704ba6aeec03d80a2",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "doctrine/inflector": "^1.1",
  1708. "dragonmantank/cron-expression": "^2.0",
  1709. "egulias/email-validator": "^2.1.10",
  1710. "erusev/parsedown": "^1.7",
  1711. "ext-json": "*",
  1712. "ext-mbstring": "*",
  1713. "ext-openssl": "*",
  1714. "league/flysystem": "^1.0.8",
  1715. "monolog/monolog": "^1.12|^2.0",
  1716. "nesbot/carbon": "^2.0",
  1717. "opis/closure": "^3.1",
  1718. "php": "^7.2",
  1719. "psr/container": "^1.0",
  1720. "psr/simple-cache": "^1.0",
  1721. "ramsey/uuid": "^3.7",
  1722. "swiftmailer/swiftmailer": "^6.0",
  1723. "symfony/console": "^4.3.4",
  1724. "symfony/debug": "^4.3.4",
  1725. "symfony/finder": "^4.3.4",
  1726. "symfony/http-foundation": "^4.3.4",
  1727. "symfony/http-kernel": "^4.3.4",
  1728. "symfony/process": "^4.3.4",
  1729. "symfony/routing": "^4.3.4",
  1730. "symfony/var-dumper": "^4.3.4",
  1731. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1732. "vlucas/phpdotenv": "^3.3"
  1733. },
  1734. "conflict": {
  1735. "tightenco/collect": "<5.5.33"
  1736. },
  1737. "replace": {
  1738. "illuminate/auth": "self.version",
  1739. "illuminate/broadcasting": "self.version",
  1740. "illuminate/bus": "self.version",
  1741. "illuminate/cache": "self.version",
  1742. "illuminate/config": "self.version",
  1743. "illuminate/console": "self.version",
  1744. "illuminate/container": "self.version",
  1745. "illuminate/contracts": "self.version",
  1746. "illuminate/cookie": "self.version",
  1747. "illuminate/database": "self.version",
  1748. "illuminate/encryption": "self.version",
  1749. "illuminate/events": "self.version",
  1750. "illuminate/filesystem": "self.version",
  1751. "illuminate/hashing": "self.version",
  1752. "illuminate/http": "self.version",
  1753. "illuminate/log": "self.version",
  1754. "illuminate/mail": "self.version",
  1755. "illuminate/notifications": "self.version",
  1756. "illuminate/pagination": "self.version",
  1757. "illuminate/pipeline": "self.version",
  1758. "illuminate/queue": "self.version",
  1759. "illuminate/redis": "self.version",
  1760. "illuminate/routing": "self.version",
  1761. "illuminate/session": "self.version",
  1762. "illuminate/support": "self.version",
  1763. "illuminate/translation": "self.version",
  1764. "illuminate/validation": "self.version",
  1765. "illuminate/view": "self.version"
  1766. },
  1767. "require-dev": {
  1768. "aws/aws-sdk-php": "^3.0",
  1769. "doctrine/dbal": "^2.6",
  1770. "filp/whoops": "^2.4",
  1771. "guzzlehttp/guzzle": "^6.3",
  1772. "league/flysystem-cached-adapter": "^1.0",
  1773. "mockery/mockery": "^1.2.3",
  1774. "moontoast/math": "^1.1",
  1775. "orchestra/testbench-core": "^4.0",
  1776. "pda/pheanstalk": "^4.0",
  1777. "phpunit/phpunit": "^8.3",
  1778. "predis/predis": "^1.1.1",
  1779. "symfony/cache": "^4.3",
  1780. "true/punycode": "^2.1"
  1781. },
  1782. "suggest": {
  1783. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1784. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1785. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1786. "ext-memcached": "Required to use the memcache cache driver.",
  1787. "ext-pcntl": "Required to use all features of the queue worker.",
  1788. "ext-posix": "Required to use all features of the queue worker.",
  1789. "ext-redis": "Required to use the Redis cache and queue drivers.",
  1790. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1791. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1792. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.0).",
  1793. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1794. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1795. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1796. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1797. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1798. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1799. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)",
  1800. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1801. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  1802. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  1803. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1804. },
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "6.x-dev"
  1809. }
  1810. },
  1811. "autoload": {
  1812. "files": [
  1813. "src/Illuminate/Foundation/helpers.php",
  1814. "src/Illuminate/Support/helpers.php"
  1815. ],
  1816. "psr-4": {
  1817. "Illuminate\\": "src/Illuminate/"
  1818. }
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Taylor Otwell",
  1827. "email": "taylor@laravel.com"
  1828. }
  1829. ],
  1830. "description": "The Laravel Framework.",
  1831. "homepage": "https://laravel.com",
  1832. "keywords": [
  1833. "framework",
  1834. "laravel"
  1835. ],
  1836. "time": "2019-10-15T13:38:24+00:00"
  1837. },
  1838. {
  1839. "name": "laravel/helpers",
  1840. "version": "v1.1.1",
  1841. "source": {
  1842. "type": "git",
  1843. "url": "https://github.com/laravel/helpers.git",
  1844. "reference": "b8eae9ddd461e89d0296f74fd069c413bf83b6fa"
  1845. },
  1846. "dist": {
  1847. "type": "zip",
  1848. "url": "https://api.github.com/repos/laravel/helpers/zipball/b8eae9ddd461e89d0296f74fd069c413bf83b6fa",
  1849. "reference": "b8eae9ddd461e89d0296f74fd069c413bf83b6fa",
  1850. "shasum": ""
  1851. },
  1852. "require": {
  1853. "illuminate/support": "~5.8.0|^6.0",
  1854. "php": ">=7.1.3"
  1855. },
  1856. "require-dev": {
  1857. "phpunit/phpunit": "^7.0"
  1858. },
  1859. "type": "library",
  1860. "extra": {
  1861. "branch-alias": {
  1862. "dev-master": "1.0-dev"
  1863. }
  1864. },
  1865. "autoload": {
  1866. "files": [
  1867. "src/helpers.php"
  1868. ]
  1869. },
  1870. "notification-url": "https://packagist.org/downloads/",
  1871. "license": [
  1872. "MIT"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Taylor Otwell",
  1877. "email": "taylor@laravel.com"
  1878. },
  1879. {
  1880. "name": "Dries Vints",
  1881. "email": "dries.vints@gmail.com"
  1882. }
  1883. ],
  1884. "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
  1885. "keywords": [
  1886. "helpers",
  1887. "laravel"
  1888. ],
  1889. "time": "2019-07-30T15:25:31+00:00"
  1890. },
  1891. {
  1892. "name": "laravel/horizon",
  1893. "version": "v3.4.1",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/laravel/horizon.git",
  1897. "reference": "6279319c0cc35aa9a87490f58ac59e4ca78d4112"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/laravel/horizon/zipball/6279319c0cc35aa9a87490f58ac59e4ca78d4112",
  1902. "reference": "6279319c0cc35aa9a87490f58ac59e4ca78d4112",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "cakephp/chronos": "^1.0",
  1907. "ext-json": "*",
  1908. "ext-pcntl": "*",
  1909. "ext-posix": "*",
  1910. "illuminate/contracts": "~5.7.0|~5.8.0|^6.0|^7.0",
  1911. "illuminate/queue": "~5.7.0|~5.8.0|^6.0|^7.0",
  1912. "illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0",
  1913. "php": ">=7.1.0",
  1914. "predis/predis": "^1.1",
  1915. "ramsey/uuid": "^3.5",
  1916. "symfony/debug": "^4.2",
  1917. "symfony/process": "^4.2"
  1918. },
  1919. "require-dev": {
  1920. "mockery/mockery": "^1.0",
  1921. "orchestra/testbench": "^3.7|^4.0|^5.0",
  1922. "phpunit/phpunit": "^7.0|^8.0"
  1923. },
  1924. "type": "library",
  1925. "extra": {
  1926. "branch-alias": {
  1927. "dev-master": "3.0-dev"
  1928. },
  1929. "laravel": {
  1930. "providers": [
  1931. "Laravel\\Horizon\\HorizonServiceProvider"
  1932. ],
  1933. "aliases": {
  1934. "Horizon": "Laravel\\Horizon\\Horizon"
  1935. }
  1936. }
  1937. },
  1938. "autoload": {
  1939. "psr-4": {
  1940. "Laravel\\Horizon\\": "src/"
  1941. }
  1942. },
  1943. "notification-url": "https://packagist.org/downloads/",
  1944. "license": [
  1945. "MIT"
  1946. ],
  1947. "authors": [
  1948. {
  1949. "name": "Taylor Otwell",
  1950. "email": "taylor@laravel.com"
  1951. }
  1952. ],
  1953. "description": "Dashboard and code-driven configuration for Laravel queues.",
  1954. "keywords": [
  1955. "laravel",
  1956. "queue"
  1957. ],
  1958. "time": "2019-10-08T16:18:52+00:00"
  1959. },
  1960. {
  1961. "name": "laravel/passport",
  1962. "version": "v7.5.1",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/laravel/passport.git",
  1966. "reference": "d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/laravel/passport/zipball/d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08",
  1971. "reference": "d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08",
  1972. "shasum": ""
  1973. },
  1974. "require": {
  1975. "ext-json": "*",
  1976. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  1977. "guzzlehttp/guzzle": "~6.0",
  1978. "illuminate/auth": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1979. "illuminate/console": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1980. "illuminate/container": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1981. "illuminate/contracts": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1982. "illuminate/cookie": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1983. "illuminate/database": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1984. "illuminate/encryption": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1985. "illuminate/http": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1986. "illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1987. "league/oauth2-server": "^7.0",
  1988. "php": ">=7.1",
  1989. "phpseclib/phpseclib": "^2.0",
  1990. "symfony/psr-http-message-bridge": "~1.0",
  1991. "zendframework/zend-diactoros": "~1.0|~2.0"
  1992. },
  1993. "require-dev": {
  1994. "mockery/mockery": "^1.0",
  1995. "phpunit/phpunit": "^7.4|^8.0"
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "7.0-dev"
  2001. },
  2002. "laravel": {
  2003. "providers": [
  2004. "Laravel\\Passport\\PassportServiceProvider"
  2005. ]
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Laravel\\Passport\\": "src/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Taylor Otwell",
  2020. "email": "taylor@laravel.com"
  2021. }
  2022. ],
  2023. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  2024. "keywords": [
  2025. "laravel",
  2026. "oauth",
  2027. "passport"
  2028. ],
  2029. "time": "2019-10-08T16:45:24+00:00"
  2030. },
  2031. {
  2032. "name": "laravel/tinker",
  2033. "version": "v1.0.10",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://github.com/laravel/tinker.git",
  2037. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2042. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "illuminate/console": "~5.1|^6.0",
  2047. "illuminate/contracts": "~5.1|^6.0",
  2048. "illuminate/support": "~5.1|^6.0",
  2049. "php": ">=5.5.9",
  2050. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2051. "symfony/var-dumper": "~3.0|~4.0"
  2052. },
  2053. "require-dev": {
  2054. "phpunit/phpunit": "~4.0|~5.0"
  2055. },
  2056. "suggest": {
  2057. "illuminate/database": "The Illuminate Database package (~5.1)."
  2058. },
  2059. "type": "library",
  2060. "extra": {
  2061. "branch-alias": {
  2062. "dev-master": "1.0-dev"
  2063. },
  2064. "laravel": {
  2065. "providers": [
  2066. "Laravel\\Tinker\\TinkerServiceProvider"
  2067. ]
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Laravel\\Tinker\\": "src/"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Taylor Otwell",
  2082. "email": "taylor@laravel.com"
  2083. }
  2084. ],
  2085. "description": "Powerful REPL for the Laravel framework.",
  2086. "keywords": [
  2087. "REPL",
  2088. "Tinker",
  2089. "laravel",
  2090. "psysh"
  2091. ],
  2092. "time": "2019-08-07T15:10:45+00:00"
  2093. },
  2094. {
  2095. "name": "lcobucci/jwt",
  2096. "version": "3.3.1",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/lcobucci/jwt.git",
  2100. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2105. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "ext-mbstring": "*",
  2110. "ext-openssl": "*",
  2111. "php": "^5.6 || ^7.0"
  2112. },
  2113. "require-dev": {
  2114. "mikey179/vfsstream": "~1.5",
  2115. "phpmd/phpmd": "~2.2",
  2116. "phpunit/php-invoker": "~1.1",
  2117. "phpunit/phpunit": "^5.7 || ^7.3",
  2118. "squizlabs/php_codesniffer": "~2.3"
  2119. },
  2120. "type": "library",
  2121. "extra": {
  2122. "branch-alias": {
  2123. "dev-master": "3.1-dev"
  2124. }
  2125. },
  2126. "autoload": {
  2127. "psr-4": {
  2128. "Lcobucci\\JWT\\": "src"
  2129. }
  2130. },
  2131. "notification-url": "https://packagist.org/downloads/",
  2132. "license": [
  2133. "BSD-3-Clause"
  2134. ],
  2135. "authors": [
  2136. {
  2137. "name": "Luís Otávio Cobucci Oblonczyk",
  2138. "email": "lcobucci@gmail.com",
  2139. "role": "Developer"
  2140. }
  2141. ],
  2142. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2143. "keywords": [
  2144. "JWS",
  2145. "jwt"
  2146. ],
  2147. "time": "2019-05-24T18:30:49+00:00"
  2148. },
  2149. {
  2150. "name": "league/event",
  2151. "version": "2.2.0",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/thephpleague/event.git",
  2155. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2160. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2161. "shasum": ""
  2162. },
  2163. "require": {
  2164. "php": ">=5.4.0"
  2165. },
  2166. "require-dev": {
  2167. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2168. "phpspec/phpspec": "^2.2"
  2169. },
  2170. "type": "library",
  2171. "extra": {
  2172. "branch-alias": {
  2173. "dev-master": "2.2-dev"
  2174. }
  2175. },
  2176. "autoload": {
  2177. "psr-4": {
  2178. "League\\Event\\": "src/"
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "Frank de Jonge",
  2188. "email": "info@frenky.net"
  2189. }
  2190. ],
  2191. "description": "Event package",
  2192. "keywords": [
  2193. "emitter",
  2194. "event",
  2195. "listener"
  2196. ],
  2197. "time": "2018-11-26T11:52:41+00:00"
  2198. },
  2199. {
  2200. "name": "league/flysystem",
  2201. "version": "1.0.57",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/thephpleague/flysystem.git",
  2205. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  2210. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  2211. "shasum": ""
  2212. },
  2213. "require": {
  2214. "ext-fileinfo": "*",
  2215. "php": ">=5.5.9"
  2216. },
  2217. "conflict": {
  2218. "league/flysystem-sftp": "<1.0.6"
  2219. },
  2220. "require-dev": {
  2221. "phpspec/phpspec": "^3.4",
  2222. "phpunit/phpunit": "^5.7.10"
  2223. },
  2224. "suggest": {
  2225. "ext-fileinfo": "Required for MimeType",
  2226. "ext-ftp": "Allows you to use FTP server storage",
  2227. "ext-openssl": "Allows you to use FTPS server storage",
  2228. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2229. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2230. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2231. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2232. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2233. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2234. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2235. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2236. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2237. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2238. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2239. },
  2240. "type": "library",
  2241. "extra": {
  2242. "branch-alias": {
  2243. "dev-master": "1.1-dev"
  2244. }
  2245. },
  2246. "autoload": {
  2247. "psr-4": {
  2248. "League\\Flysystem\\": "src/"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Frank de Jonge",
  2258. "email": "info@frenky.net"
  2259. }
  2260. ],
  2261. "description": "Filesystem abstraction: Many filesystems, one API.",
  2262. "keywords": [
  2263. "Cloud Files",
  2264. "WebDAV",
  2265. "abstraction",
  2266. "aws",
  2267. "cloud",
  2268. "copy.com",
  2269. "dropbox",
  2270. "file systems",
  2271. "files",
  2272. "filesystem",
  2273. "filesystems",
  2274. "ftp",
  2275. "rackspace",
  2276. "remote",
  2277. "s3",
  2278. "sftp",
  2279. "storage"
  2280. ],
  2281. "time": "2019-10-16T21:01:05+00:00"
  2282. },
  2283. {
  2284. "name": "league/flysystem-aws-s3-v3",
  2285. "version": "1.0.23",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2289. "reference": "15b0cdeab7240bf8e8bffa85ae5275bbc3692bf4"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/15b0cdeab7240bf8e8bffa85ae5275bbc3692bf4",
  2294. "reference": "15b0cdeab7240bf8e8bffa85ae5275bbc3692bf4",
  2295. "shasum": ""
  2296. },
  2297. "require": {
  2298. "aws/aws-sdk-php": "^3.0.0",
  2299. "league/flysystem": "^1.0.40",
  2300. "php": ">=5.5.0"
  2301. },
  2302. "require-dev": {
  2303. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2304. "phpspec/phpspec": "^2.0.0"
  2305. },
  2306. "type": "library",
  2307. "extra": {
  2308. "branch-alias": {
  2309. "dev-master": "1.0-dev"
  2310. }
  2311. },
  2312. "autoload": {
  2313. "psr-4": {
  2314. "League\\Flysystem\\AwsS3v3\\": "src/"
  2315. }
  2316. },
  2317. "notification-url": "https://packagist.org/downloads/",
  2318. "license": [
  2319. "MIT"
  2320. ],
  2321. "authors": [
  2322. {
  2323. "name": "Frank de Jonge",
  2324. "email": "info@frenky.net"
  2325. }
  2326. ],
  2327. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  2328. "time": "2019-06-05T17:18:29+00:00"
  2329. },
  2330. {
  2331. "name": "league/flysystem-cached-adapter",
  2332. "version": "1.0.9",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2336. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  2341. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  2342. "shasum": ""
  2343. },
  2344. "require": {
  2345. "league/flysystem": "~1.0",
  2346. "psr/cache": "^1.0.0"
  2347. },
  2348. "require-dev": {
  2349. "mockery/mockery": "~0.9",
  2350. "phpspec/phpspec": "^3.4",
  2351. "phpunit/phpunit": "^5.7",
  2352. "predis/predis": "~1.0",
  2353. "tedivm/stash": "~0.12"
  2354. },
  2355. "suggest": {
  2356. "ext-phpredis": "Pure C implemented extension for PHP"
  2357. },
  2358. "type": "library",
  2359. "autoload": {
  2360. "psr-4": {
  2361. "League\\Flysystem\\Cached\\": "src/"
  2362. }
  2363. },
  2364. "notification-url": "https://packagist.org/downloads/",
  2365. "license": [
  2366. "MIT"
  2367. ],
  2368. "authors": [
  2369. {
  2370. "name": "frankdejonge",
  2371. "email": "info@frenky.net"
  2372. }
  2373. ],
  2374. "description": "An adapter decorator to enable meta-data caching.",
  2375. "time": "2018-07-09T20:51:04+00:00"
  2376. },
  2377. {
  2378. "name": "league/iso3166",
  2379. "version": "2.1.3",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/thephpleague/iso3166.git",
  2383. "reference": "5283b39654ea1da15e8ceb981bac4644776c2431"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/thephpleague/iso3166/zipball/5283b39654ea1da15e8ceb981bac4644776c2431",
  2388. "reference": "5283b39654ea1da15e8ceb981bac4644776c2431",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "php": "^7.0"
  2393. },
  2394. "require-dev": {
  2395. "friendsofphp/php-cs-fixer": "^2.12",
  2396. "phpunit/phpunit": "^5.7.11 || ^6.0 || ^7.0"
  2397. },
  2398. "type": "library",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-master": "3.x-dev"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "psr-4": {
  2406. "League\\ISO3166\\": "src"
  2407. }
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "MIT"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "Rob Bast",
  2416. "email": "rob.bast@gmail.com"
  2417. }
  2418. ],
  2419. "description": "ISO 3166-1 PHP Library",
  2420. "homepage": "https://github.com/thephpleague/iso3166",
  2421. "keywords": [
  2422. "3166",
  2423. "3166-1",
  2424. "ISO 3166",
  2425. "countries",
  2426. "iso",
  2427. "library"
  2428. ],
  2429. "time": "2019-09-25T11:18:25+00:00"
  2430. },
  2431. {
  2432. "name": "league/oauth2-server",
  2433. "version": "7.4.0",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/thephpleague/oauth2-server.git",
  2437. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  2442. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "defuse/php-encryption": "^2.1",
  2447. "ext-openssl": "*",
  2448. "lcobucci/jwt": "^3.2.2",
  2449. "league/event": "^2.1",
  2450. "php": ">=7.0.0",
  2451. "psr/http-message": "^1.0.1"
  2452. },
  2453. "replace": {
  2454. "league/oauth2server": "*",
  2455. "lncd/oauth2": "*"
  2456. },
  2457. "require-dev": {
  2458. "phpstan/phpstan": "^0.9.2",
  2459. "phpstan/phpstan-phpunit": "^0.9.4",
  2460. "phpstan/phpstan-strict-rules": "^0.9.0",
  2461. "phpunit/phpunit": "^6.3 || ^7.0",
  2462. "roave/security-advisories": "dev-master",
  2463. "zendframework/zend-diactoros": "^1.3.2"
  2464. },
  2465. "type": "library",
  2466. "autoload": {
  2467. "psr-4": {
  2468. "League\\OAuth2\\Server\\": "src/"
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Alex Bilbie",
  2478. "email": "hello@alexbilbie.com",
  2479. "homepage": "http://www.alexbilbie.com",
  2480. "role": "Developer"
  2481. },
  2482. {
  2483. "name": "Andy Millington",
  2484. "email": "andrew@noexceptions.io",
  2485. "homepage": "https://www.noexceptions.io",
  2486. "role": "Developer"
  2487. }
  2488. ],
  2489. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  2490. "homepage": "https://oauth2.thephpleague.com/",
  2491. "keywords": [
  2492. "Authentication",
  2493. "api",
  2494. "auth",
  2495. "authorisation",
  2496. "authorization",
  2497. "oauth",
  2498. "oauth 2",
  2499. "oauth 2.0",
  2500. "oauth2",
  2501. "protect",
  2502. "resource",
  2503. "secure",
  2504. "server"
  2505. ],
  2506. "time": "2019-05-05T09:22:01+00:00"
  2507. },
  2508. {
  2509. "name": "mobiledetect/mobiledetectlib",
  2510. "version": "2.8.34",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2514. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2519. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2520. "shasum": ""
  2521. },
  2522. "require": {
  2523. "php": ">=5.0.0"
  2524. },
  2525. "require-dev": {
  2526. "phpunit/phpunit": "~4.8.35||~5.7"
  2527. },
  2528. "type": "library",
  2529. "autoload": {
  2530. "classmap": [
  2531. "Mobile_Detect.php"
  2532. ],
  2533. "psr-0": {
  2534. "Detection": "namespaced/"
  2535. }
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "MIT"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Serban Ghita",
  2544. "email": "serbanghita@gmail.com",
  2545. "homepage": "http://mobiledetect.net",
  2546. "role": "Developer"
  2547. }
  2548. ],
  2549. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2550. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2551. "keywords": [
  2552. "detect mobile devices",
  2553. "mobile",
  2554. "mobile detect",
  2555. "mobile detector",
  2556. "php mobile detect"
  2557. ],
  2558. "time": "2019-09-18T18:44:20+00:00"
  2559. },
  2560. {
  2561. "name": "monolog/monolog",
  2562. "version": "2.0.0",
  2563. "source": {
  2564. "type": "git",
  2565. "url": "https://github.com/Seldaek/monolog.git",
  2566. "reference": "68545165e19249013afd1d6f7485aecff07a2d22"
  2567. },
  2568. "dist": {
  2569. "type": "zip",
  2570. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/68545165e19249013afd1d6f7485aecff07a2d22",
  2571. "reference": "68545165e19249013afd1d6f7485aecff07a2d22",
  2572. "shasum": ""
  2573. },
  2574. "require": {
  2575. "php": "^7.2",
  2576. "psr/log": "^1.0.1"
  2577. },
  2578. "provide": {
  2579. "psr/log-implementation": "1.0.0"
  2580. },
  2581. "require-dev": {
  2582. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2583. "doctrine/couchdb": "~1.0@dev",
  2584. "elasticsearch/elasticsearch": "^6.0",
  2585. "graylog2/gelf-php": "^1.4.2",
  2586. "jakub-onderka/php-parallel-lint": "^0.9",
  2587. "php-amqplib/php-amqplib": "~2.4",
  2588. "php-console/php-console": "^3.1.3",
  2589. "phpspec/prophecy": "^1.6.1",
  2590. "phpunit/phpunit": "^8.3",
  2591. "predis/predis": "^1.1",
  2592. "rollbar/rollbar": "^1.3",
  2593. "ruflin/elastica": ">=0.90 <3.0",
  2594. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2595. },
  2596. "suggest": {
  2597. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2598. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2599. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2600. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2601. "ext-mbstring": "Allow to work properly with unicode symbols",
  2602. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2603. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2604. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2605. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2606. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2607. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2608. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2609. },
  2610. "type": "library",
  2611. "extra": {
  2612. "branch-alias": {
  2613. "dev-master": "2.x-dev"
  2614. }
  2615. },
  2616. "autoload": {
  2617. "psr-4": {
  2618. "Monolog\\": "src/Monolog"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Jordi Boggiano",
  2628. "email": "j.boggiano@seld.be",
  2629. "homepage": "http://seld.be"
  2630. }
  2631. ],
  2632. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2633. "homepage": "http://github.com/Seldaek/monolog",
  2634. "keywords": [
  2635. "log",
  2636. "logging",
  2637. "psr-3"
  2638. ],
  2639. "time": "2019-08-30T09:56:44+00:00"
  2640. },
  2641. {
  2642. "name": "moontoast/math",
  2643. "version": "1.1.2",
  2644. "source": {
  2645. "type": "git",
  2646. "url": "https://github.com/ramsey/moontoast-math.git",
  2647. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79"
  2648. },
  2649. "dist": {
  2650. "type": "zip",
  2651. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  2652. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  2653. "shasum": ""
  2654. },
  2655. "require": {
  2656. "ext-bcmath": "*",
  2657. "php": ">=5.3.3"
  2658. },
  2659. "require-dev": {
  2660. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2661. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  2662. "satooshi/php-coveralls": "^0.6.1",
  2663. "squizlabs/php_codesniffer": "^2.3"
  2664. },
  2665. "type": "library",
  2666. "autoload": {
  2667. "psr-4": {
  2668. "Moontoast\\Math\\": "src/Moontoast/Math/"
  2669. }
  2670. },
  2671. "notification-url": "https://packagist.org/downloads/",
  2672. "license": [
  2673. "Apache-2.0"
  2674. ],
  2675. "authors": [
  2676. {
  2677. "name": "Ben Ramsey",
  2678. "email": "ben@benramsey.com",
  2679. "homepage": "https://benramsey.com"
  2680. }
  2681. ],
  2682. "description": "A mathematics library, providing functionality for large numbers",
  2683. "homepage": "https://github.com/ramsey/moontoast-math",
  2684. "keywords": [
  2685. "bcmath",
  2686. "math"
  2687. ],
  2688. "time": "2017-02-16T16:54:46+00:00"
  2689. },
  2690. {
  2691. "name": "mtdowling/jmespath.php",
  2692. "version": "2.4.0",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/jmespath/jmespath.php.git",
  2696. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  2701. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  2702. "shasum": ""
  2703. },
  2704. "require": {
  2705. "php": ">=5.4.0"
  2706. },
  2707. "require-dev": {
  2708. "phpunit/phpunit": "~4.0"
  2709. },
  2710. "bin": [
  2711. "bin/jp.php"
  2712. ],
  2713. "type": "library",
  2714. "extra": {
  2715. "branch-alias": {
  2716. "dev-master": "2.0-dev"
  2717. }
  2718. },
  2719. "autoload": {
  2720. "psr-4": {
  2721. "JmesPath\\": "src/"
  2722. },
  2723. "files": [
  2724. "src/JmesPath.php"
  2725. ]
  2726. },
  2727. "notification-url": "https://packagist.org/downloads/",
  2728. "license": [
  2729. "MIT"
  2730. ],
  2731. "authors": [
  2732. {
  2733. "name": "Michael Dowling",
  2734. "email": "mtdowling@gmail.com",
  2735. "homepage": "https://github.com/mtdowling"
  2736. }
  2737. ],
  2738. "description": "Declaratively specify how to extract elements from a JSON document",
  2739. "keywords": [
  2740. "json",
  2741. "jsonpath"
  2742. ],
  2743. "time": "2016-12-03T22:08:25+00:00"
  2744. },
  2745. {
  2746. "name": "nesbot/carbon",
  2747. "version": "2.25.2",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/briannesbitt/Carbon.git",
  2751. "reference": "443fe5f1498147e0fbc792142b5dc43e2e8a533f"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/443fe5f1498147e0fbc792142b5dc43e2e8a533f",
  2756. "reference": "443fe5f1498147e0fbc792142b5dc43e2e8a533f",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "ext-json": "*",
  2761. "php": "^7.1.8 || ^8.0",
  2762. "symfony/translation": "^3.4 || ^4.0"
  2763. },
  2764. "require-dev": {
  2765. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2766. "kylekatarnls/multi-tester": "^1.1",
  2767. "phpmd/phpmd": "dev-php-7.1-compatibility",
  2768. "phpstan/phpstan": "^0.11",
  2769. "phpunit/phpunit": "^7.5 || ^8.0",
  2770. "squizlabs/php_codesniffer": "^3.4"
  2771. },
  2772. "bin": [
  2773. "bin/carbon"
  2774. ],
  2775. "type": "library",
  2776. "extra": {
  2777. "laravel": {
  2778. "providers": [
  2779. "Carbon\\Laravel\\ServiceProvider"
  2780. ]
  2781. }
  2782. },
  2783. "autoload": {
  2784. "psr-4": {
  2785. "Carbon\\": "src/Carbon/"
  2786. }
  2787. },
  2788. "notification-url": "https://packagist.org/downloads/",
  2789. "license": [
  2790. "MIT"
  2791. ],
  2792. "authors": [
  2793. {
  2794. "name": "Brian Nesbitt",
  2795. "email": "brian@nesbot.com",
  2796. "homepage": "http://nesbot.com"
  2797. },
  2798. {
  2799. "name": "kylekatarnls",
  2800. "homepage": "http://github.com/kylekatarnls"
  2801. }
  2802. ],
  2803. "description": "An API extension for DateTime that supports 281 different languages.",
  2804. "homepage": "http://carbon.nesbot.com",
  2805. "keywords": [
  2806. "date",
  2807. "datetime",
  2808. "time"
  2809. ],
  2810. "time": "2019-10-14T14:18:59+00:00"
  2811. },
  2812. {
  2813. "name": "neutron/temporary-filesystem",
  2814. "version": "2.3.0",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  2818. "reference": "694aa3885f653dd429584e825ffbab79441d285f"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/694aa3885f653dd429584e825ffbab79441d285f",
  2823. "reference": "694aa3885f653dd429584e825ffbab79441d285f",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "php": "^5.6 || ^7.0",
  2828. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0"
  2829. },
  2830. "require-dev": {
  2831. "phpunit/phpunit": "^5.0"
  2832. },
  2833. "type": "library",
  2834. "autoload": {
  2835. "psr-0": {
  2836. "Neutron": "src"
  2837. }
  2838. },
  2839. "notification-url": "https://packagist.org/downloads/",
  2840. "license": [
  2841. "MIT"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "Romain Neutron",
  2846. "email": "imprec@gmail.com"
  2847. }
  2848. ],
  2849. "description": "Symfony filesystem extension to handle temporary files",
  2850. "time": "2018-02-07T21:11:57+00:00"
  2851. },
  2852. {
  2853. "name": "nikic/php-parser",
  2854. "version": "v4.2.4",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://github.com/nikic/PHP-Parser.git",
  2858. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  2863. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  2864. "shasum": ""
  2865. },
  2866. "require": {
  2867. "ext-tokenizer": "*",
  2868. "php": ">=7.0"
  2869. },
  2870. "require-dev": {
  2871. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  2872. },
  2873. "bin": [
  2874. "bin/php-parse"
  2875. ],
  2876. "type": "library",
  2877. "extra": {
  2878. "branch-alias": {
  2879. "dev-master": "4.2-dev"
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "PhpParser\\": "lib/PhpParser"
  2885. }
  2886. },
  2887. "notification-url": "https://packagist.org/downloads/",
  2888. "license": [
  2889. "BSD-3-Clause"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Nikita Popov"
  2894. }
  2895. ],
  2896. "description": "A PHP parser written in PHP",
  2897. "keywords": [
  2898. "parser",
  2899. "php"
  2900. ],
  2901. "time": "2019-09-01T07:51:21+00:00"
  2902. },
  2903. {
  2904. "name": "opis/closure",
  2905. "version": "3.4.0",
  2906. "source": {
  2907. "type": "git",
  2908. "url": "https://github.com/opis/closure.git",
  2909. "reference": "60a97fff133b1669a5b1776aa8ab06db3f3962b7"
  2910. },
  2911. "dist": {
  2912. "type": "zip",
  2913. "url": "https://api.github.com/repos/opis/closure/zipball/60a97fff133b1669a5b1776aa8ab06db3f3962b7",
  2914. "reference": "60a97fff133b1669a5b1776aa8ab06db3f3962b7",
  2915. "shasum": ""
  2916. },
  2917. "require": {
  2918. "php": "^5.4 || ^7.0"
  2919. },
  2920. "require-dev": {
  2921. "jeremeamia/superclosure": "^2.0",
  2922. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2923. },
  2924. "type": "library",
  2925. "extra": {
  2926. "branch-alias": {
  2927. "dev-master": "3.3.x-dev"
  2928. }
  2929. },
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Opis\\Closure\\": "src/"
  2933. },
  2934. "files": [
  2935. "functions.php"
  2936. ]
  2937. },
  2938. "notification-url": "https://packagist.org/downloads/",
  2939. "license": [
  2940. "MIT"
  2941. ],
  2942. "authors": [
  2943. {
  2944. "name": "Marius Sarca",
  2945. "email": "marius.sarca@gmail.com"
  2946. },
  2947. {
  2948. "name": "Sorin Sarca",
  2949. "email": "sarca_sorin@hotmail.com"
  2950. }
  2951. ],
  2952. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2953. "homepage": "https://opis.io/closure",
  2954. "keywords": [
  2955. "anonymous functions",
  2956. "closure",
  2957. "function",
  2958. "serializable",
  2959. "serialization",
  2960. "serialize"
  2961. ],
  2962. "time": "2019-09-02T21:07:33+00:00"
  2963. },
  2964. {
  2965. "name": "paragonie/constant_time_encoding",
  2966. "version": "v2.2.3",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2970. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2975. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "php": "^7"
  2980. },
  2981. "require-dev": {
  2982. "phpunit/phpunit": "^6|^7",
  2983. "vimeo/psalm": "^1|^2"
  2984. },
  2985. "type": "library",
  2986. "autoload": {
  2987. "psr-4": {
  2988. "ParagonIE\\ConstantTime\\": "src/"
  2989. }
  2990. },
  2991. "notification-url": "https://packagist.org/downloads/",
  2992. "license": [
  2993. "MIT"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "Paragon Initiative Enterprises",
  2998. "email": "security@paragonie.com",
  2999. "homepage": "https://paragonie.com",
  3000. "role": "Maintainer"
  3001. },
  3002. {
  3003. "name": "Steve 'Sc00bz' Thomas",
  3004. "email": "steve@tobtu.com",
  3005. "homepage": "https://www.tobtu.com",
  3006. "role": "Original Developer"
  3007. }
  3008. ],
  3009. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3010. "keywords": [
  3011. "base16",
  3012. "base32",
  3013. "base32_decode",
  3014. "base32_encode",
  3015. "base64",
  3016. "base64_decode",
  3017. "base64_encode",
  3018. "bin2hex",
  3019. "encoding",
  3020. "hex",
  3021. "hex2bin",
  3022. "rfc4648"
  3023. ],
  3024. "time": "2019-01-03T20:26:31+00:00"
  3025. },
  3026. {
  3027. "name": "paragonie/random_compat",
  3028. "version": "v2.0.18",
  3029. "source": {
  3030. "type": "git",
  3031. "url": "https://github.com/paragonie/random_compat.git",
  3032. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  3033. },
  3034. "dist": {
  3035. "type": "zip",
  3036. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  3037. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  3038. "shasum": ""
  3039. },
  3040. "require": {
  3041. "php": ">=5.2.0"
  3042. },
  3043. "require-dev": {
  3044. "phpunit/phpunit": "4.*|5.*"
  3045. },
  3046. "suggest": {
  3047. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3048. },
  3049. "type": "library",
  3050. "autoload": {
  3051. "files": [
  3052. "lib/random.php"
  3053. ]
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "Paragon Initiative Enterprises",
  3062. "email": "security@paragonie.com",
  3063. "homepage": "https://paragonie.com"
  3064. }
  3065. ],
  3066. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3067. "keywords": [
  3068. "csprng",
  3069. "polyfill",
  3070. "pseudorandom",
  3071. "random"
  3072. ],
  3073. "time": "2019-01-03T20:59:08+00:00"
  3074. },
  3075. {
  3076. "name": "pbmedia/binary-driver",
  3077. "version": "3.0.1",
  3078. "source": {
  3079. "type": "git",
  3080. "url": "https://github.com/pascalbaljetmedia/BinaryDriver.git",
  3081. "reference": "4a2cfa078d1a573a13b581583788bdff7083abb2"
  3082. },
  3083. "dist": {
  3084. "type": "zip",
  3085. "url": "https://api.github.com/repos/pascalbaljetmedia/BinaryDriver/zipball/4a2cfa078d1a573a13b581583788bdff7083abb2",
  3086. "reference": "4a2cfa078d1a573a13b581583788bdff7083abb2",
  3087. "shasum": ""
  3088. },
  3089. "require": {
  3090. "evenement/evenement": "^2.0|^1.0",
  3091. "monolog/monolog": "^1.3|^2.0",
  3092. "php": ">=5.5",
  3093. "psr/log": "^1.0",
  3094. "symfony/process": "^4.0"
  3095. },
  3096. "require-dev": {
  3097. "phpunit/phpunit": "^4.0|^5.0"
  3098. },
  3099. "type": "library",
  3100. "autoload": {
  3101. "psr-0": {
  3102. "Alchemy": "src"
  3103. }
  3104. },
  3105. "notification-url": "https://packagist.org/downloads/",
  3106. "license": [
  3107. "MIT"
  3108. ],
  3109. "authors": [
  3110. {
  3111. "name": "Nicolas Le Goff",
  3112. "email": "legoff.n@gmail.com"
  3113. },
  3114. {
  3115. "name": "Romain Neutron",
  3116. "email": "imprec@gmail.com",
  3117. "homepage": "http://www.lickmychip.com/"
  3118. },
  3119. {
  3120. "name": "Phraseanet Team",
  3121. "email": "info@alchemy.fr",
  3122. "homepage": "http://www.phraseanet.com/"
  3123. }
  3124. ],
  3125. "description": "A set of tools to build binary drivers",
  3126. "keywords": [
  3127. "binary",
  3128. "driver"
  3129. ],
  3130. "time": "2019-09-12T13:57:59+00:00"
  3131. },
  3132. {
  3133. "name": "pbmedia/laravel-ffmpeg",
  3134. "version": "5.0.1",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/pascalbaljetmedia/laravel-ffmpeg.git",
  3138. "reference": "9f2677fe4d9eb6b5b27f75fd233dc730d82ab089"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/pascalbaljetmedia/laravel-ffmpeg/zipball/9f2677fe4d9eb6b5b27f75fd233dc730d82ab089",
  3143. "reference": "9f2677fe4d9eb6b5b27f75fd233dc730d82ab089",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "illuminate/config": "^6.0",
  3148. "illuminate/filesystem": "^6.0",
  3149. "illuminate/log": "^6.0",
  3150. "illuminate/support": "^6.0",
  3151. "league/flysystem": "^1.0.8",
  3152. "pbmedia/php-ffmpeg": "^0.14.1",
  3153. "php": "^7.2",
  3154. "symfony/process": "^4.3.4"
  3155. },
  3156. "require-dev": {
  3157. "mockery/mockery": "^1.2.3",
  3158. "phpunit/phpunit": "^8.3",
  3159. "twistor/flysystem-http": "^0.2.0"
  3160. },
  3161. "type": "library",
  3162. "extra": {
  3163. "laravel": {
  3164. "providers": [
  3165. "Pbmedia\\LaravelFFMpeg\\FFMpegServiceProvider"
  3166. ],
  3167. "aliases": {
  3168. "FFMpeg": "Pbmedia\\LaravelFFMpeg\\FFMpegFacade"
  3169. }
  3170. }
  3171. },
  3172. "autoload": {
  3173. "psr-4": {
  3174. "Pbmedia\\LaravelFFMpeg\\": "src"
  3175. }
  3176. },
  3177. "notification-url": "https://packagist.org/downloads/",
  3178. "license": [
  3179. "MIT"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "Pascal Baljet",
  3184. "email": "pascal@pascalbaljetmedia.com",
  3185. "homepage": "http://www.pascalbaljetmedia.com",
  3186. "role": "Developer"
  3187. }
  3188. ],
  3189. "description": "FFMpeg for Laravel",
  3190. "homepage": "https://github.com/pbmedia/laravel-ffmpeg",
  3191. "keywords": [
  3192. "laravel-ffmpeg",
  3193. "pbmedia"
  3194. ],
  3195. "time": "2019-09-12T14:14:49+00:00"
  3196. },
  3197. {
  3198. "name": "pbmedia/php-ffmpeg",
  3199. "version": "0.14.1",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/pascalbaljetmedia/PHP-FFMpeg.git",
  3203. "reference": "735a1ea471210420004afc21f8bbcf495c088260"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/pascalbaljetmedia/PHP-FFMpeg/zipball/735a1ea471210420004afc21f8bbcf495c088260",
  3208. "reference": "735a1ea471210420004afc21f8bbcf495c088260",
  3209. "shasum": ""
  3210. },
  3211. "require": {
  3212. "doctrine/cache": "^1.0",
  3213. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  3214. "neutron/temporary-filesystem": "^2.1.1",
  3215. "pbmedia/binary-driver": "^3.0.1",
  3216. "php": "^5.6 || ^7.0"
  3217. },
  3218. "require-dev": {
  3219. "phpunit/phpunit": "^4.8.36",
  3220. "sami/sami": "~1.0",
  3221. "silex/silex": "~1.0"
  3222. },
  3223. "suggest": {
  3224. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  3225. },
  3226. "type": "library",
  3227. "extra": {
  3228. "branch-alias": {
  3229. "dev-master": "0.7-dev"
  3230. }
  3231. },
  3232. "autoload": {
  3233. "psr-0": {
  3234. "FFMpeg": "src"
  3235. }
  3236. },
  3237. "notification-url": "https://packagist.org/downloads/",
  3238. "license": [
  3239. "MIT"
  3240. ],
  3241. "authors": [
  3242. {
  3243. "name": "Romain Neutron",
  3244. "email": "imprec@gmail.com",
  3245. "homepage": "http://www.lickmychip.com/"
  3246. },
  3247. {
  3248. "name": "Phraseanet Team",
  3249. "email": "info@alchemy.fr",
  3250. "homepage": "http://www.phraseanet.com/"
  3251. },
  3252. {
  3253. "name": "Patrik Karisch",
  3254. "email": "patrik@karisch.guru",
  3255. "homepage": "http://www.karisch.guru"
  3256. },
  3257. {
  3258. "name": "Romain Biard",
  3259. "email": "romain.biard@gmail.com",
  3260. "homepage": "https://www.strime.io/"
  3261. },
  3262. {
  3263. "name": "Jens Hausdorf",
  3264. "email": "hello@jens-hausdorf.de",
  3265. "homepage": "https://jens-hausdorf.de"
  3266. }
  3267. ],
  3268. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  3269. "keywords": [
  3270. "audio",
  3271. "audio processing",
  3272. "avconv",
  3273. "avprobe",
  3274. "ffmpeg",
  3275. "ffprobe",
  3276. "video",
  3277. "video processing"
  3278. ],
  3279. "time": "2019-09-12T14:06:49+00:00"
  3280. },
  3281. {
  3282. "name": "phpoption/phpoption",
  3283. "version": "1.5.0",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/schmittjoh/php-option.git",
  3287. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  3292. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "php": ">=5.3.0"
  3297. },
  3298. "require-dev": {
  3299. "phpunit/phpunit": "4.7.*"
  3300. },
  3301. "type": "library",
  3302. "extra": {
  3303. "branch-alias": {
  3304. "dev-master": "1.3-dev"
  3305. }
  3306. },
  3307. "autoload": {
  3308. "psr-0": {
  3309. "PhpOption\\": "src/"
  3310. }
  3311. },
  3312. "notification-url": "https://packagist.org/downloads/",
  3313. "license": [
  3314. "Apache2"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "Johannes M. Schmitt",
  3319. "email": "schmittjoh@gmail.com"
  3320. }
  3321. ],
  3322. "description": "Option Type for PHP",
  3323. "keywords": [
  3324. "language",
  3325. "option",
  3326. "php",
  3327. "type"
  3328. ],
  3329. "time": "2015-07-25T16:39:46+00:00"
  3330. },
  3331. {
  3332. "name": "phpseclib/phpseclib",
  3333. "version": "2.0.23",
  3334. "source": {
  3335. "type": "git",
  3336. "url": "https://github.com/phpseclib/phpseclib.git",
  3337. "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099"
  3338. },
  3339. "dist": {
  3340. "type": "zip",
  3341. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c78eb5058d5bb1a183133c36d4ba5b6675dfa099",
  3342. "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099",
  3343. "shasum": ""
  3344. },
  3345. "require": {
  3346. "php": ">=5.3.3"
  3347. },
  3348. "require-dev": {
  3349. "phing/phing": "~2.7",
  3350. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  3351. "sami/sami": "~2.0",
  3352. "squizlabs/php_codesniffer": "~2.0"
  3353. },
  3354. "suggest": {
  3355. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3356. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3357. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3358. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3359. },
  3360. "type": "library",
  3361. "autoload": {
  3362. "files": [
  3363. "phpseclib/bootstrap.php"
  3364. ],
  3365. "psr-4": {
  3366. "phpseclib\\": "phpseclib/"
  3367. }
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "Jim Wigginton",
  3376. "email": "terrafrost@php.net",
  3377. "role": "Lead Developer"
  3378. },
  3379. {
  3380. "name": "Patrick Monnerat",
  3381. "email": "pm@datasphere.ch",
  3382. "role": "Developer"
  3383. },
  3384. {
  3385. "name": "Andreas Fischer",
  3386. "email": "bantu@phpbb.com",
  3387. "role": "Developer"
  3388. },
  3389. {
  3390. "name": "Hans-Jürgen Petrich",
  3391. "email": "petrich@tronic-media.com",
  3392. "role": "Developer"
  3393. },
  3394. {
  3395. "name": "Graham Campbell",
  3396. "email": "graham@alt-three.com",
  3397. "role": "Developer"
  3398. }
  3399. ],
  3400. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3401. "homepage": "http://phpseclib.sourceforge.net",
  3402. "keywords": [
  3403. "BigInteger",
  3404. "aes",
  3405. "asn.1",
  3406. "asn1",
  3407. "blowfish",
  3408. "crypto",
  3409. "cryptography",
  3410. "encryption",
  3411. "rsa",
  3412. "security",
  3413. "sftp",
  3414. "signature",
  3415. "signing",
  3416. "ssh",
  3417. "twofish",
  3418. "x.509",
  3419. "x509"
  3420. ],
  3421. "time": "2019-09-17T03:41:22+00:00"
  3422. },
  3423. {
  3424. "name": "pixelfed/bacon-qr-code",
  3425. "version": "3.1.0",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/pixelfed/BaconQrCode.git",
  3429. "reference": "912bb5dba5eea165e500abb8ed36e59971d6d724"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/pixelfed/BaconQrCode/zipball/912bb5dba5eea165e500abb8ed36e59971d6d724",
  3434. "reference": "912bb5dba5eea165e500abb8ed36e59971d6d724",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "ext-iconv": "*",
  3439. "php": "^7.1"
  3440. },
  3441. "suggest": {
  3442. "ext-imagick": "to generate QR code images"
  3443. },
  3444. "type": "library",
  3445. "autoload": {
  3446. "psr-4": {
  3447. "BaconQrCode\\": "src/"
  3448. }
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "BSD-2-Clause"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "Ben Scholzen 'DASPRiD'",
  3457. "email": "mail@dasprids.de",
  3458. "homepage": "http://www.dasprids.de",
  3459. "role": "Developer"
  3460. }
  3461. ],
  3462. "description": "BaconQrCode is a QR code generator for PHP.",
  3463. "homepage": "https://github.com/pixelfed/BaconQrCode",
  3464. "time": "2018-09-03T06:48:07+00:00"
  3465. },
  3466. {
  3467. "name": "pixelfed/fractal",
  3468. "version": "0.18.0",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/pixelfed/fractal.git",
  3472. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  3477. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  3478. "shasum": ""
  3479. },
  3480. "require": {
  3481. "php": ">=5.4"
  3482. },
  3483. "require-dev": {
  3484. "doctrine/orm": "^2.5",
  3485. "illuminate/contracts": "~5.0",
  3486. "mockery/mockery": "~0.9",
  3487. "pagerfanta/pagerfanta": "~1.0.0",
  3488. "phpunit/phpunit": "^4.8.35",
  3489. "squizlabs/php_codesniffer": "~1.5",
  3490. "zendframework/zend-paginator": "~2.3"
  3491. },
  3492. "suggest": {
  3493. "illuminate/pagination": "The Illuminate Pagination component.",
  3494. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3495. "zendframework/zend-paginator": "Zend Framework Paginator"
  3496. },
  3497. "type": "library",
  3498. "extra": {
  3499. "branch-alias": {
  3500. "dev-master": "0.13-dev"
  3501. }
  3502. },
  3503. "autoload": {
  3504. "psr-4": {
  3505. "League\\Fractal\\": "src"
  3506. }
  3507. },
  3508. "notification-url": "https://packagist.org/downloads/",
  3509. "license": [
  3510. "MIT"
  3511. ],
  3512. "authors": [
  3513. {
  3514. "name": "Phil Sturgeon",
  3515. "email": "me@philsturgeon.uk",
  3516. "homepage": "http://philsturgeon.uk/",
  3517. "role": "Developer"
  3518. }
  3519. ],
  3520. "description": "Handle the output of complex data structures ready for API output.",
  3521. "homepage": "http://fractal.thephpleague.com/",
  3522. "keywords": [
  3523. "api",
  3524. "json",
  3525. "league",
  3526. "rest"
  3527. ],
  3528. "time": "2018-07-01T02:30:24+00:00"
  3529. },
  3530. {
  3531. "name": "pixelfed/google2fa",
  3532. "version": "v4.0.0",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/pixelfed/google2fa.git",
  3536. "reference": "919ecec68074a27818451d8653029773a2391fe5"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/pixelfed/google2fa/zipball/919ecec68074a27818451d8653029773a2391fe5",
  3541. "reference": "919ecec68074a27818451d8653029773a2391fe5",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "paragonie/constant_time_encoding": "~1.0|~2.0",
  3546. "paragonie/random_compat": "~1.4|~2.0",
  3547. "php": ">=5.4",
  3548. "symfony/polyfill-php56": "~1.2"
  3549. },
  3550. "require-dev": {
  3551. "bacon/bacon-qr-code": "~1.0",
  3552. "phpunit/phpunit": "~4|~5|~6"
  3553. },
  3554. "suggest": {
  3555. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  3556. },
  3557. "type": "library",
  3558. "extra": {
  3559. "component": "package",
  3560. "branch-alias": {
  3561. "dev-master": "2.0-dev"
  3562. }
  3563. },
  3564. "autoload": {
  3565. "psr-4": {
  3566. "PragmaRX\\Google2FA\\": "src/",
  3567. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  3568. }
  3569. },
  3570. "notification-url": "https://packagist.org/downloads/",
  3571. "license": [
  3572. "MIT"
  3573. ],
  3574. "authors": [
  3575. {
  3576. "name": "Antonio Carlos Ribeiro",
  3577. "email": "acr@antoniocarlosribeiro.com",
  3578. "role": "Creator & Designer"
  3579. }
  3580. ],
  3581. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  3582. "keywords": [
  3583. "2fa",
  3584. "Authentication",
  3585. "Two Factor Authentication",
  3586. "google2fa",
  3587. "laravel"
  3588. ],
  3589. "time": "2018-07-05T03:38:31+00:00"
  3590. },
  3591. {
  3592. "name": "pixelfed/laravel-snowflake",
  3593. "version": "v2.0.0",
  3594. "source": {
  3595. "type": "git",
  3596. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  3597. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  3598. },
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  3602. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  3603. "shasum": ""
  3604. },
  3605. "require": {
  3606. "php": ">=7.0.0"
  3607. },
  3608. "require-dev": {
  3609. "orchestra/testbench": "~3.0",
  3610. "phpunit/phpunit": "~6.0"
  3611. },
  3612. "type": "library",
  3613. "extra": {
  3614. "laravel": {
  3615. "providers": [
  3616. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  3617. ]
  3618. }
  3619. },
  3620. "autoload": {
  3621. "psr-4": {
  3622. "Pixelfed\\Snowflake\\": "src/"
  3623. }
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "Koki Asai",
  3632. "email": "koki@asai.email"
  3633. },
  3634. {
  3635. "name": "Daniel Supernault",
  3636. "email": "hello@pixelfed.org"
  3637. }
  3638. ],
  3639. "description": "Snowflake for Laravel.",
  3640. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  3641. "keywords": [
  3642. "laravel",
  3643. "snowflake"
  3644. ],
  3645. "time": "2019-03-12T05:13:49+00:00"
  3646. },
  3647. {
  3648. "name": "pixelfed/zttp",
  3649. "version": "v0.4.1",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://github.com/pixelfed/zttp.git",
  3653. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/9a95a42716eb3e71a0a88411805737965bb77c05",
  3658. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05",
  3659. "shasum": ""
  3660. },
  3661. "require": {
  3662. "guzzlehttp/guzzle": "^6.0",
  3663. "php": ">=7.0",
  3664. "tightenco/collect": "^5.4"
  3665. },
  3666. "require-dev": {
  3667. "laravel/lumen-framework": "5.5.*",
  3668. "phpunit/phpunit": "^6.0"
  3669. },
  3670. "type": "library",
  3671. "autoload": {
  3672. "files": [
  3673. "src/Zttp.php"
  3674. ]
  3675. },
  3676. "notification-url": "https://packagist.org/downloads/",
  3677. "license": [
  3678. "MIT"
  3679. ],
  3680. "authors": [
  3681. {
  3682. "name": "Adam Wathan",
  3683. "email": "adam.wathan@gmail.com"
  3684. }
  3685. ],
  3686. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  3687. "keywords": [
  3688. "Guzzle",
  3689. "http"
  3690. ],
  3691. "time": "2018-07-30T05:04:42+00:00"
  3692. },
  3693. {
  3694. "name": "predis/predis",
  3695. "version": "v1.1.1",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://github.com/nrk/predis.git",
  3699. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3700. },
  3701. "dist": {
  3702. "type": "zip",
  3703. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3704. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3705. "shasum": ""
  3706. },
  3707. "require": {
  3708. "php": ">=5.3.9"
  3709. },
  3710. "require-dev": {
  3711. "phpunit/phpunit": "~4.8"
  3712. },
  3713. "suggest": {
  3714. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3715. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3716. },
  3717. "type": "library",
  3718. "autoload": {
  3719. "psr-4": {
  3720. "Predis\\": "src/"
  3721. }
  3722. },
  3723. "notification-url": "https://packagist.org/downloads/",
  3724. "license": [
  3725. "MIT"
  3726. ],
  3727. "authors": [
  3728. {
  3729. "name": "Daniele Alessandri",
  3730. "email": "suppakilla@gmail.com",
  3731. "homepage": "http://clorophilla.net"
  3732. }
  3733. ],
  3734. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3735. "homepage": "http://github.com/nrk/predis",
  3736. "keywords": [
  3737. "nosql",
  3738. "predis",
  3739. "redis"
  3740. ],
  3741. "time": "2016-06-16T16:22:20+00:00"
  3742. },
  3743. {
  3744. "name": "psr/cache",
  3745. "version": "1.0.1",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://github.com/php-fig/cache.git",
  3749. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3754. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3755. "shasum": ""
  3756. },
  3757. "require": {
  3758. "php": ">=5.3.0"
  3759. },
  3760. "type": "library",
  3761. "extra": {
  3762. "branch-alias": {
  3763. "dev-master": "1.0.x-dev"
  3764. }
  3765. },
  3766. "autoload": {
  3767. "psr-4": {
  3768. "Psr\\Cache\\": "src/"
  3769. }
  3770. },
  3771. "notification-url": "https://packagist.org/downloads/",
  3772. "license": [
  3773. "MIT"
  3774. ],
  3775. "authors": [
  3776. {
  3777. "name": "PHP-FIG",
  3778. "homepage": "http://www.php-fig.org/"
  3779. }
  3780. ],
  3781. "description": "Common interface for caching libraries",
  3782. "keywords": [
  3783. "cache",
  3784. "psr",
  3785. "psr-6"
  3786. ],
  3787. "time": "2016-08-06T20:24:11+00:00"
  3788. },
  3789. {
  3790. "name": "psr/container",
  3791. "version": "1.0.0",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://github.com/php-fig/container.git",
  3795. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3800. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3801. "shasum": ""
  3802. },
  3803. "require": {
  3804. "php": ">=5.3.0"
  3805. },
  3806. "type": "library",
  3807. "extra": {
  3808. "branch-alias": {
  3809. "dev-master": "1.0.x-dev"
  3810. }
  3811. },
  3812. "autoload": {
  3813. "psr-4": {
  3814. "Psr\\Container\\": "src/"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "MIT"
  3820. ],
  3821. "authors": [
  3822. {
  3823. "name": "PHP-FIG",
  3824. "homepage": "http://www.php-fig.org/"
  3825. }
  3826. ],
  3827. "description": "Common Container Interface (PHP FIG PSR-11)",
  3828. "homepage": "https://github.com/php-fig/container",
  3829. "keywords": [
  3830. "PSR-11",
  3831. "container",
  3832. "container-interface",
  3833. "container-interop",
  3834. "psr"
  3835. ],
  3836. "time": "2017-02-14T16:28:37+00:00"
  3837. },
  3838. {
  3839. "name": "psr/http-factory",
  3840. "version": "1.0.1",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/php-fig/http-factory.git",
  3844. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3849. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3850. "shasum": ""
  3851. },
  3852. "require": {
  3853. "php": ">=7.0.0",
  3854. "psr/http-message": "^1.0"
  3855. },
  3856. "type": "library",
  3857. "extra": {
  3858. "branch-alias": {
  3859. "dev-master": "1.0.x-dev"
  3860. }
  3861. },
  3862. "autoload": {
  3863. "psr-4": {
  3864. "Psr\\Http\\Message\\": "src/"
  3865. }
  3866. },
  3867. "notification-url": "https://packagist.org/downloads/",
  3868. "license": [
  3869. "MIT"
  3870. ],
  3871. "authors": [
  3872. {
  3873. "name": "PHP-FIG",
  3874. "homepage": "http://www.php-fig.org/"
  3875. }
  3876. ],
  3877. "description": "Common interfaces for PSR-7 HTTP message factories",
  3878. "keywords": [
  3879. "factory",
  3880. "http",
  3881. "message",
  3882. "psr",
  3883. "psr-17",
  3884. "psr-7",
  3885. "request",
  3886. "response"
  3887. ],
  3888. "time": "2019-04-30T12:38:16+00:00"
  3889. },
  3890. {
  3891. "name": "psr/http-message",
  3892. "version": "1.0.1",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/php-fig/http-message.git",
  3896. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3901. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3902. "shasum": ""
  3903. },
  3904. "require": {
  3905. "php": ">=5.3.0"
  3906. },
  3907. "type": "library",
  3908. "extra": {
  3909. "branch-alias": {
  3910. "dev-master": "1.0.x-dev"
  3911. }
  3912. },
  3913. "autoload": {
  3914. "psr-4": {
  3915. "Psr\\Http\\Message\\": "src/"
  3916. }
  3917. },
  3918. "notification-url": "https://packagist.org/downloads/",
  3919. "license": [
  3920. "MIT"
  3921. ],
  3922. "authors": [
  3923. {
  3924. "name": "PHP-FIG",
  3925. "homepage": "http://www.php-fig.org/"
  3926. }
  3927. ],
  3928. "description": "Common interface for HTTP messages",
  3929. "homepage": "https://github.com/php-fig/http-message",
  3930. "keywords": [
  3931. "http",
  3932. "http-message",
  3933. "psr",
  3934. "psr-7",
  3935. "request",
  3936. "response"
  3937. ],
  3938. "time": "2016-08-06T14:39:51+00:00"
  3939. },
  3940. {
  3941. "name": "psr/log",
  3942. "version": "1.1.0",
  3943. "source": {
  3944. "type": "git",
  3945. "url": "https://github.com/php-fig/log.git",
  3946. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3947. },
  3948. "dist": {
  3949. "type": "zip",
  3950. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3951. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3952. "shasum": ""
  3953. },
  3954. "require": {
  3955. "php": ">=5.3.0"
  3956. },
  3957. "type": "library",
  3958. "extra": {
  3959. "branch-alias": {
  3960. "dev-master": "1.0.x-dev"
  3961. }
  3962. },
  3963. "autoload": {
  3964. "psr-4": {
  3965. "Psr\\Log\\": "Psr/Log/"
  3966. }
  3967. },
  3968. "notification-url": "https://packagist.org/downloads/",
  3969. "license": [
  3970. "MIT"
  3971. ],
  3972. "authors": [
  3973. {
  3974. "name": "PHP-FIG",
  3975. "homepage": "http://www.php-fig.org/"
  3976. }
  3977. ],
  3978. "description": "Common interface for logging libraries",
  3979. "homepage": "https://github.com/php-fig/log",
  3980. "keywords": [
  3981. "log",
  3982. "psr",
  3983. "psr-3"
  3984. ],
  3985. "time": "2018-11-20T15:27:04+00:00"
  3986. },
  3987. {
  3988. "name": "psr/simple-cache",
  3989. "version": "1.0.1",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/php-fig/simple-cache.git",
  3993. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3998. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "php": ">=5.3.0"
  4003. },
  4004. "type": "library",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-master": "1.0.x-dev"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Psr\\SimpleCache\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "authors": [
  4020. {
  4021. "name": "PHP-FIG",
  4022. "homepage": "http://www.php-fig.org/"
  4023. }
  4024. ],
  4025. "description": "Common interfaces for simple caching",
  4026. "keywords": [
  4027. "cache",
  4028. "caching",
  4029. "psr",
  4030. "psr-16",
  4031. "simple-cache"
  4032. ],
  4033. "time": "2017-10-23T01:57:42+00:00"
  4034. },
  4035. {
  4036. "name": "psy/psysh",
  4037. "version": "v0.9.9",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://github.com/bobthecow/psysh.git",
  4041. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  4046. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  4047. "shasum": ""
  4048. },
  4049. "require": {
  4050. "dnoegel/php-xdg-base-dir": "0.1",
  4051. "ext-json": "*",
  4052. "ext-tokenizer": "*",
  4053. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  4054. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  4055. "php": ">=5.4.0",
  4056. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  4057. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  4058. },
  4059. "require-dev": {
  4060. "bamarni/composer-bin-plugin": "^1.2",
  4061. "hoa/console": "~2.15|~3.16",
  4062. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  4063. },
  4064. "suggest": {
  4065. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4066. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4067. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4068. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4069. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4070. },
  4071. "bin": [
  4072. "bin/psysh"
  4073. ],
  4074. "type": "library",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-develop": "0.9.x-dev"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "files": [
  4082. "src/functions.php"
  4083. ],
  4084. "psr-4": {
  4085. "Psy\\": "src/"
  4086. }
  4087. },
  4088. "notification-url": "https://packagist.org/downloads/",
  4089. "license": [
  4090. "MIT"
  4091. ],
  4092. "authors": [
  4093. {
  4094. "name": "Justin Hileman",
  4095. "email": "justin@justinhileman.info",
  4096. "homepage": "http://justinhileman.com"
  4097. }
  4098. ],
  4099. "description": "An interactive shell for modern PHP.",
  4100. "homepage": "http://psysh.org",
  4101. "keywords": [
  4102. "REPL",
  4103. "console",
  4104. "interactive",
  4105. "shell"
  4106. ],
  4107. "time": "2018-10-13T15:16:03+00:00"
  4108. },
  4109. {
  4110. "name": "ralouphie/getallheaders",
  4111. "version": "3.0.3",
  4112. "source": {
  4113. "type": "git",
  4114. "url": "https://github.com/ralouphie/getallheaders.git",
  4115. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4116. },
  4117. "dist": {
  4118. "type": "zip",
  4119. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4120. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4121. "shasum": ""
  4122. },
  4123. "require": {
  4124. "php": ">=5.6"
  4125. },
  4126. "require-dev": {
  4127. "php-coveralls/php-coveralls": "^2.1",
  4128. "phpunit/phpunit": "^5 || ^6.5"
  4129. },
  4130. "type": "library",
  4131. "autoload": {
  4132. "files": [
  4133. "src/getallheaders.php"
  4134. ]
  4135. },
  4136. "notification-url": "https://packagist.org/downloads/",
  4137. "license": [
  4138. "MIT"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "Ralph Khattar",
  4143. "email": "ralph.khattar@gmail.com"
  4144. }
  4145. ],
  4146. "description": "A polyfill for getallheaders.",
  4147. "time": "2019-03-08T08:55:37+00:00"
  4148. },
  4149. {
  4150. "name": "ramsey/uuid",
  4151. "version": "3.8.0",
  4152. "source": {
  4153. "type": "git",
  4154. "url": "https://github.com/ramsey/uuid.git",
  4155. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  4156. },
  4157. "dist": {
  4158. "type": "zip",
  4159. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  4160. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  4161. "shasum": ""
  4162. },
  4163. "require": {
  4164. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  4165. "php": "^5.4 || ^7.0",
  4166. "symfony/polyfill-ctype": "^1.8"
  4167. },
  4168. "replace": {
  4169. "rhumsaa/uuid": "self.version"
  4170. },
  4171. "require-dev": {
  4172. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  4173. "doctrine/annotations": "~1.2.0",
  4174. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  4175. "ircmaxell/random-lib": "^1.1",
  4176. "jakub-onderka/php-parallel-lint": "^0.9.0",
  4177. "mockery/mockery": "^0.9.9",
  4178. "moontoast/math": "^1.1",
  4179. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  4180. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  4181. "squizlabs/php_codesniffer": "^2.3"
  4182. },
  4183. "suggest": {
  4184. "ext-ctype": "Provides support for PHP Ctype functions",
  4185. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  4186. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4187. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4188. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4189. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4190. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4191. },
  4192. "type": "library",
  4193. "extra": {
  4194. "branch-alias": {
  4195. "dev-master": "3.x-dev"
  4196. }
  4197. },
  4198. "autoload": {
  4199. "psr-4": {
  4200. "Ramsey\\Uuid\\": "src/"
  4201. }
  4202. },
  4203. "notification-url": "https://packagist.org/downloads/",
  4204. "license": [
  4205. "MIT"
  4206. ],
  4207. "authors": [
  4208. {
  4209. "name": "Marijn Huizendveld",
  4210. "email": "marijn.huizendveld@gmail.com"
  4211. },
  4212. {
  4213. "name": "Thibaud Fabre",
  4214. "email": "thibaud@aztech.io"
  4215. },
  4216. {
  4217. "name": "Ben Ramsey",
  4218. "email": "ben@benramsey.com",
  4219. "homepage": "https://benramsey.com"
  4220. }
  4221. ],
  4222. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4223. "homepage": "https://github.com/ramsey/uuid",
  4224. "keywords": [
  4225. "guid",
  4226. "identifier",
  4227. "uuid"
  4228. ],
  4229. "time": "2018-07-19T23:38:55+00:00"
  4230. },
  4231. {
  4232. "name": "spatie/db-dumper",
  4233. "version": "2.14.3",
  4234. "source": {
  4235. "type": "git",
  4236. "url": "https://github.com/spatie/db-dumper.git",
  4237. "reference": "0ea605041373dce22cd0a387bca598050c7d033b"
  4238. },
  4239. "dist": {
  4240. "type": "zip",
  4241. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/0ea605041373dce22cd0a387bca598050c7d033b",
  4242. "reference": "0ea605041373dce22cd0a387bca598050c7d033b",
  4243. "shasum": ""
  4244. },
  4245. "require": {
  4246. "php": "^7.2",
  4247. "symfony/process": "^4.2"
  4248. },
  4249. "require-dev": {
  4250. "phpunit/phpunit": "^7.0|^8.0"
  4251. },
  4252. "type": "library",
  4253. "autoload": {
  4254. "psr-4": {
  4255. "Spatie\\DbDumper\\": "src"
  4256. }
  4257. },
  4258. "notification-url": "https://packagist.org/downloads/",
  4259. "license": [
  4260. "MIT"
  4261. ],
  4262. "authors": [
  4263. {
  4264. "name": "Freek Van der Herten",
  4265. "role": "Developer",
  4266. "email": "freek@spatie.be",
  4267. "homepage": "https://spatie.be"
  4268. }
  4269. ],
  4270. "description": "Dump databases",
  4271. "homepage": "https://github.com/spatie/db-dumper",
  4272. "keywords": [
  4273. "database",
  4274. "db-dumper",
  4275. "dump",
  4276. "mysqldump",
  4277. "spatie"
  4278. ],
  4279. "time": "2019-08-21T16:39:54+00:00"
  4280. },
  4281. {
  4282. "name": "spatie/image-optimizer",
  4283. "version": "1.2.0",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/spatie/image-optimizer.git",
  4287. "reference": "e7527edc984c98ab61db092742856fb15cf71e68"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/e7527edc984c98ab61db092742856fb15cf71e68",
  4292. "reference": "e7527edc984c98ab61db092742856fb15cf71e68",
  4293. "shasum": ""
  4294. },
  4295. "require": {
  4296. "ext-fileinfo": "*",
  4297. "php": "^7.2",
  4298. "psr/log": "^1.0",
  4299. "symfony/process": "^4.2"
  4300. },
  4301. "require-dev": {
  4302. "phpunit/phpunit": "^8.0",
  4303. "symfony/var-dumper": "^4.2"
  4304. },
  4305. "type": "library",
  4306. "autoload": {
  4307. "psr-4": {
  4308. "Spatie\\ImageOptimizer\\": "src"
  4309. }
  4310. },
  4311. "notification-url": "https://packagist.org/downloads/",
  4312. "license": [
  4313. "MIT"
  4314. ],
  4315. "authors": [
  4316. {
  4317. "name": "Freek Van der Herten",
  4318. "role": "Developer",
  4319. "email": "freek@spatie.be",
  4320. "homepage": "https://spatie.be"
  4321. }
  4322. ],
  4323. "description": "Easily optimize images using PHP",
  4324. "homepage": "https://github.com/spatie/image-optimizer",
  4325. "keywords": [
  4326. "image-optimizer",
  4327. "spatie"
  4328. ],
  4329. "time": "2019-08-28T14:33:06+00:00"
  4330. },
  4331. {
  4332. "name": "spatie/laravel-backup",
  4333. "version": "6.7.1",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/spatie/laravel-backup.git",
  4337. "reference": "f5b7078a3bfe983900c393fb51eeed4fc0b6b6d1"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/f5b7078a3bfe983900c393fb51eeed4fc0b6b6d1",
  4342. "reference": "f5b7078a3bfe983900c393fb51eeed4fc0b6b6d1",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "illuminate/console": "^5.8.15|^6.0",
  4347. "illuminate/contracts": "^5.8.15|^6.0",
  4348. "illuminate/events": "^5.8.15|^6.0",
  4349. "illuminate/filesystem": "^5.8.15|^6.0",
  4350. "illuminate/notifications": "^5.8.15|^6.0",
  4351. "illuminate/support": "^5.8.15|^6.0",
  4352. "league/flysystem": "^1.0.49",
  4353. "php": "^7.2",
  4354. "spatie/db-dumper": "^2.12",
  4355. "spatie/temporary-directory": "^1.1",
  4356. "symfony/finder": "^4.2"
  4357. },
  4358. "require-dev": {
  4359. "laravel/slack-notification-channel": "^1.0",
  4360. "league/flysystem-aws-s3-v3": "^1.0",
  4361. "mockery/mockery": "^1.0",
  4362. "orchestra/testbench": "3.8.*|4.*",
  4363. "phpunit/phpunit": "^8.0"
  4364. },
  4365. "suggest": {
  4366. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  4367. },
  4368. "type": "library",
  4369. "extra": {
  4370. "laravel": {
  4371. "providers": [
  4372. "Spatie\\Backup\\BackupServiceProvider"
  4373. ]
  4374. }
  4375. },
  4376. "autoload": {
  4377. "psr-4": {
  4378. "Spatie\\Backup\\": "src"
  4379. },
  4380. "files": [
  4381. "src/Helpers/functions.php"
  4382. ]
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "MIT"
  4387. ],
  4388. "authors": [
  4389. {
  4390. "name": "Freek Van der Herten",
  4391. "email": "freek@spatie.be",
  4392. "homepage": "https://spatie.be",
  4393. "role": "Developer"
  4394. }
  4395. ],
  4396. "description": "A Laravel package to backup your application",
  4397. "homepage": "https://github.com/spatie/laravel-backup",
  4398. "keywords": [
  4399. "backup",
  4400. "database",
  4401. "laravel-backup",
  4402. "spatie"
  4403. ],
  4404. "time": "2019-10-16T14:55:55+00:00"
  4405. },
  4406. {
  4407. "name": "spatie/laravel-image-optimizer",
  4408. "version": "1.5.0",
  4409. "source": {
  4410. "type": "git",
  4411. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  4412. "reference": "3106cd537c91159b8c8393d4773c7c807d34b0dd"
  4413. },
  4414. "dist": {
  4415. "type": "zip",
  4416. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/3106cd537c91159b8c8393d4773c7c807d34b0dd",
  4417. "reference": "3106cd537c91159b8c8393d4773c7c807d34b0dd",
  4418. "shasum": ""
  4419. },
  4420. "require": {
  4421. "laravel/framework": "~5.7.0|~5.8.0|^6.0",
  4422. "php": "^7.2",
  4423. "spatie/image-optimizer": "^1.2.0"
  4424. },
  4425. "require-dev": {
  4426. "orchestra/testbench": "~3.7.0|~3.8.0|^4.0",
  4427. "phpunit/phpunit": "^8.0"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "laravel": {
  4432. "providers": [
  4433. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  4434. ],
  4435. "aliases": {
  4436. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  4437. }
  4438. }
  4439. },
  4440. "autoload": {
  4441. "psr-4": {
  4442. "Spatie\\LaravelImageOptimizer\\": "src"
  4443. }
  4444. },
  4445. "notification-url": "https://packagist.org/downloads/",
  4446. "license": [
  4447. "MIT"
  4448. ],
  4449. "authors": [
  4450. {
  4451. "name": "Freek Van der Herten",
  4452. "email": "freek@spatie.be",
  4453. "homepage": "https://spatie.be",
  4454. "role": "Developer"
  4455. }
  4456. ],
  4457. "description": "Optimize images in your Laravel app",
  4458. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  4459. "keywords": [
  4460. "laravel-image-optimizer",
  4461. "spatie"
  4462. ],
  4463. "time": "2019-09-04T08:36:49+00:00"
  4464. },
  4465. {
  4466. "name": "spatie/temporary-directory",
  4467. "version": "1.2.1",
  4468. "source": {
  4469. "type": "git",
  4470. "url": "https://github.com/spatie/temporary-directory.git",
  4471. "reference": "3e51af9a8361f85cffc1fb2c52135f3e064758cc"
  4472. },
  4473. "dist": {
  4474. "type": "zip",
  4475. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/3e51af9a8361f85cffc1fb2c52135f3e064758cc",
  4476. "reference": "3e51af9a8361f85cffc1fb2c52135f3e064758cc",
  4477. "shasum": ""
  4478. },
  4479. "require": {
  4480. "php": "^7.2"
  4481. },
  4482. "require-dev": {
  4483. "phpunit/phpunit": "^8.0"
  4484. },
  4485. "type": "library",
  4486. "autoload": {
  4487. "psr-4": {
  4488. "Spatie\\TemporaryDirectory\\": "src"
  4489. }
  4490. },
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "MIT"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "Alex Vanderbist",
  4498. "email": "alex@spatie.be",
  4499. "homepage": "https://spatie.be",
  4500. "role": "Developer"
  4501. }
  4502. ],
  4503. "description": "Easily create, use and destroy temporary directories",
  4504. "homepage": "https://github.com/spatie/temporary-directory",
  4505. "keywords": [
  4506. "spatie",
  4507. "temporary-directory"
  4508. ],
  4509. "time": "2019-08-28T06:53:51+00:00"
  4510. },
  4511. {
  4512. "name": "stevebauman/purify",
  4513. "version": "v3.0.1",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/stevebauman/purify.git",
  4517. "reference": "75447eb67edbbf5528a32964e78f155d344b1d0e"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/stevebauman/purify/zipball/75447eb67edbbf5528a32964e78f155d344b1d0e",
  4522. "reference": "75447eb67edbbf5528a32964e78f155d344b1d0e",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "ezyang/htmlpurifier": "^4.9.0",
  4527. "illuminate/support": "~5.5|~6.0",
  4528. "php": ">=7.1"
  4529. },
  4530. "require-dev": {
  4531. "orchestra/testbench": "~3.7",
  4532. "phpunit/phpunit": "~7.0"
  4533. },
  4534. "type": "library",
  4535. "extra": {
  4536. "laravel": {
  4537. "providers": [
  4538. "Stevebauman\\Purify\\PurifyServiceProvider"
  4539. ],
  4540. "aliases": {
  4541. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  4542. }
  4543. }
  4544. },
  4545. "autoload": {
  4546. "psr-4": {
  4547. "Stevebauman\\Purify\\": "src/"
  4548. }
  4549. },
  4550. "notification-url": "https://packagist.org/downloads/",
  4551. "license": [
  4552. "MIT"
  4553. ],
  4554. "authors": [
  4555. {
  4556. "name": "Steve Bauman",
  4557. "email": "steven_bauman@outlook.com"
  4558. }
  4559. ],
  4560. "description": "An HTML Purifier / Sanitizer for Laravel",
  4561. "keywords": [
  4562. "Purifier",
  4563. "clean",
  4564. "cleaner",
  4565. "html",
  4566. "laravel",
  4567. "purification",
  4568. "purify"
  4569. ],
  4570. "time": "2019-10-16T19:02:29+00:00"
  4571. },
  4572. {
  4573. "name": "swiftmailer/swiftmailer",
  4574. "version": "v6.2.1",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4578. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  4583. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "egulias/email-validator": "~2.0",
  4588. "php": ">=7.0.0",
  4589. "symfony/polyfill-iconv": "^1.0",
  4590. "symfony/polyfill-intl-idn": "^1.10",
  4591. "symfony/polyfill-mbstring": "^1.0"
  4592. },
  4593. "require-dev": {
  4594. "mockery/mockery": "~0.9.1",
  4595. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4596. },
  4597. "suggest": {
  4598. "ext-intl": "Needed to support internationalized email addresses",
  4599. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4600. },
  4601. "type": "library",
  4602. "extra": {
  4603. "branch-alias": {
  4604. "dev-master": "6.2-dev"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "files": [
  4609. "lib/swift_required.php"
  4610. ]
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Chris Corbyn"
  4619. },
  4620. {
  4621. "name": "Fabien Potencier",
  4622. "email": "fabien@symfony.com"
  4623. }
  4624. ],
  4625. "description": "Swiftmailer, free feature-rich PHP mailer",
  4626. "homepage": "https://swiftmailer.symfony.com",
  4627. "keywords": [
  4628. "email",
  4629. "mail",
  4630. "mailer"
  4631. ],
  4632. "time": "2019-04-21T09:21:45+00:00"
  4633. },
  4634. {
  4635. "name": "symfony/console",
  4636. "version": "v4.3.5",
  4637. "source": {
  4638. "type": "git",
  4639. "url": "https://github.com/symfony/console.git",
  4640. "reference": "929ddf360d401b958f611d44e726094ab46a7369"
  4641. },
  4642. "dist": {
  4643. "type": "zip",
  4644. "url": "https://api.github.com/repos/symfony/console/zipball/929ddf360d401b958f611d44e726094ab46a7369",
  4645. "reference": "929ddf360d401b958f611d44e726094ab46a7369",
  4646. "shasum": ""
  4647. },
  4648. "require": {
  4649. "php": "^7.1.3",
  4650. "symfony/polyfill-mbstring": "~1.0",
  4651. "symfony/polyfill-php73": "^1.8",
  4652. "symfony/service-contracts": "^1.1"
  4653. },
  4654. "conflict": {
  4655. "symfony/dependency-injection": "<3.4",
  4656. "symfony/event-dispatcher": "<4.3",
  4657. "symfony/process": "<3.3"
  4658. },
  4659. "provide": {
  4660. "psr/log-implementation": "1.0"
  4661. },
  4662. "require-dev": {
  4663. "psr/log": "~1.0",
  4664. "symfony/config": "~3.4|~4.0",
  4665. "symfony/dependency-injection": "~3.4|~4.0",
  4666. "symfony/event-dispatcher": "^4.3",
  4667. "symfony/lock": "~3.4|~4.0",
  4668. "symfony/process": "~3.4|~4.0",
  4669. "symfony/var-dumper": "^4.3"
  4670. },
  4671. "suggest": {
  4672. "psr/log": "For using the console logger",
  4673. "symfony/event-dispatcher": "",
  4674. "symfony/lock": "",
  4675. "symfony/process": ""
  4676. },
  4677. "type": "library",
  4678. "extra": {
  4679. "branch-alias": {
  4680. "dev-master": "4.3-dev"
  4681. }
  4682. },
  4683. "autoload": {
  4684. "psr-4": {
  4685. "Symfony\\Component\\Console\\": ""
  4686. },
  4687. "exclude-from-classmap": [
  4688. "/Tests/"
  4689. ]
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Fabien Potencier",
  4698. "email": "fabien@symfony.com"
  4699. },
  4700. {
  4701. "name": "Symfony Community",
  4702. "homepage": "https://symfony.com/contributors"
  4703. }
  4704. ],
  4705. "description": "Symfony Console Component",
  4706. "homepage": "https://symfony.com",
  4707. "time": "2019-10-07T12:36:49+00:00"
  4708. },
  4709. {
  4710. "name": "symfony/css-selector",
  4711. "version": "v4.3.5",
  4712. "source": {
  4713. "type": "git",
  4714. "url": "https://github.com/symfony/css-selector.git",
  4715. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9"
  4716. },
  4717. "dist": {
  4718. "type": "zip",
  4719. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  4720. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  4721. "shasum": ""
  4722. },
  4723. "require": {
  4724. "php": "^7.1.3"
  4725. },
  4726. "type": "library",
  4727. "extra": {
  4728. "branch-alias": {
  4729. "dev-master": "4.3-dev"
  4730. }
  4731. },
  4732. "autoload": {
  4733. "psr-4": {
  4734. "Symfony\\Component\\CssSelector\\": ""
  4735. },
  4736. "exclude-from-classmap": [
  4737. "/Tests/"
  4738. ]
  4739. },
  4740. "notification-url": "https://packagist.org/downloads/",
  4741. "license": [
  4742. "MIT"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "Fabien Potencier",
  4747. "email": "fabien@symfony.com"
  4748. },
  4749. {
  4750. "name": "Jean-François Simon",
  4751. "email": "jeanfrancois.simon@sensiolabs.com"
  4752. },
  4753. {
  4754. "name": "Symfony Community",
  4755. "homepage": "https://symfony.com/contributors"
  4756. }
  4757. ],
  4758. "description": "Symfony CssSelector Component",
  4759. "homepage": "https://symfony.com",
  4760. "time": "2019-10-02T08:36:26+00:00"
  4761. },
  4762. {
  4763. "name": "symfony/debug",
  4764. "version": "v4.3.5",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://github.com/symfony/debug.git",
  4768. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://api.github.com/repos/symfony/debug/zipball/cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  4773. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  4774. "shasum": ""
  4775. },
  4776. "require": {
  4777. "php": "^7.1.3",
  4778. "psr/log": "~1.0"
  4779. },
  4780. "conflict": {
  4781. "symfony/http-kernel": "<3.4"
  4782. },
  4783. "require-dev": {
  4784. "symfony/http-kernel": "~3.4|~4.0"
  4785. },
  4786. "type": "library",
  4787. "extra": {
  4788. "branch-alias": {
  4789. "dev-master": "4.3-dev"
  4790. }
  4791. },
  4792. "autoload": {
  4793. "psr-4": {
  4794. "Symfony\\Component\\Debug\\": ""
  4795. },
  4796. "exclude-from-classmap": [
  4797. "/Tests/"
  4798. ]
  4799. },
  4800. "notification-url": "https://packagist.org/downloads/",
  4801. "license": [
  4802. "MIT"
  4803. ],
  4804. "authors": [
  4805. {
  4806. "name": "Fabien Potencier",
  4807. "email": "fabien@symfony.com"
  4808. },
  4809. {
  4810. "name": "Symfony Community",
  4811. "homepage": "https://symfony.com/contributors"
  4812. }
  4813. ],
  4814. "description": "Symfony Debug Component",
  4815. "homepage": "https://symfony.com",
  4816. "time": "2019-09-19T15:51:53+00:00"
  4817. },
  4818. {
  4819. "name": "symfony/event-dispatcher",
  4820. "version": "v4.3.5",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/symfony/event-dispatcher.git",
  4824. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6229f58993e5a157f6096fc7145c0717d0be8807",
  4829. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "php": "^7.1.3",
  4834. "symfony/event-dispatcher-contracts": "^1.1"
  4835. },
  4836. "conflict": {
  4837. "symfony/dependency-injection": "<3.4"
  4838. },
  4839. "provide": {
  4840. "psr/event-dispatcher-implementation": "1.0",
  4841. "symfony/event-dispatcher-implementation": "1.1"
  4842. },
  4843. "require-dev": {
  4844. "psr/log": "~1.0",
  4845. "symfony/config": "~3.4|~4.0",
  4846. "symfony/dependency-injection": "~3.4|~4.0",
  4847. "symfony/expression-language": "~3.4|~4.0",
  4848. "symfony/http-foundation": "^3.4|^4.0",
  4849. "symfony/service-contracts": "^1.1",
  4850. "symfony/stopwatch": "~3.4|~4.0"
  4851. },
  4852. "suggest": {
  4853. "symfony/dependency-injection": "",
  4854. "symfony/http-kernel": ""
  4855. },
  4856. "type": "library",
  4857. "extra": {
  4858. "branch-alias": {
  4859. "dev-master": "4.3-dev"
  4860. }
  4861. },
  4862. "autoload": {
  4863. "psr-4": {
  4864. "Symfony\\Component\\EventDispatcher\\": ""
  4865. },
  4866. "exclude-from-classmap": [
  4867. "/Tests/"
  4868. ]
  4869. },
  4870. "notification-url": "https://packagist.org/downloads/",
  4871. "license": [
  4872. "MIT"
  4873. ],
  4874. "authors": [
  4875. {
  4876. "name": "Fabien Potencier",
  4877. "email": "fabien@symfony.com"
  4878. },
  4879. {
  4880. "name": "Symfony Community",
  4881. "homepage": "https://symfony.com/contributors"
  4882. }
  4883. ],
  4884. "description": "Symfony EventDispatcher Component",
  4885. "homepage": "https://symfony.com",
  4886. "time": "2019-10-01T16:40:32+00:00"
  4887. },
  4888. {
  4889. "name": "symfony/event-dispatcher-contracts",
  4890. "version": "v1.1.7",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4894. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  4899. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "php": "^7.1.3"
  4904. },
  4905. "suggest": {
  4906. "psr/event-dispatcher": "",
  4907. "symfony/event-dispatcher-implementation": ""
  4908. },
  4909. "type": "library",
  4910. "extra": {
  4911. "branch-alias": {
  4912. "dev-master": "1.1-dev"
  4913. }
  4914. },
  4915. "autoload": {
  4916. "psr-4": {
  4917. "Symfony\\Contracts\\EventDispatcher\\": ""
  4918. }
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Nicolas Grekas",
  4927. "email": "p@tchwork.com"
  4928. },
  4929. {
  4930. "name": "Symfony Community",
  4931. "homepage": "https://symfony.com/contributors"
  4932. }
  4933. ],
  4934. "description": "Generic abstractions related to dispatching event",
  4935. "homepage": "https://symfony.com",
  4936. "keywords": [
  4937. "abstractions",
  4938. "contracts",
  4939. "decoupling",
  4940. "interfaces",
  4941. "interoperability",
  4942. "standards"
  4943. ],
  4944. "time": "2019-09-17T09:54:03+00:00"
  4945. },
  4946. {
  4947. "name": "symfony/filesystem",
  4948. "version": "v4.3.5",
  4949. "source": {
  4950. "type": "git",
  4951. "url": "https://github.com/symfony/filesystem.git",
  4952. "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263"
  4953. },
  4954. "dist": {
  4955. "type": "zip",
  4956. "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263",
  4957. "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263",
  4958. "shasum": ""
  4959. },
  4960. "require": {
  4961. "php": "^7.1.3",
  4962. "symfony/polyfill-ctype": "~1.8"
  4963. },
  4964. "type": "library",
  4965. "extra": {
  4966. "branch-alias": {
  4967. "dev-master": "4.3-dev"
  4968. }
  4969. },
  4970. "autoload": {
  4971. "psr-4": {
  4972. "Symfony\\Component\\Filesystem\\": ""
  4973. },
  4974. "exclude-from-classmap": [
  4975. "/Tests/"
  4976. ]
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Fabien Potencier",
  4985. "email": "fabien@symfony.com"
  4986. },
  4987. {
  4988. "name": "Symfony Community",
  4989. "homepage": "https://symfony.com/contributors"
  4990. }
  4991. ],
  4992. "description": "Symfony Filesystem Component",
  4993. "homepage": "https://symfony.com",
  4994. "time": "2019-08-20T14:07:54+00:00"
  4995. },
  4996. {
  4997. "name": "symfony/finder",
  4998. "version": "v4.3.5",
  4999. "source": {
  5000. "type": "git",
  5001. "url": "https://github.com/symfony/finder.git",
  5002. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1"
  5003. },
  5004. "dist": {
  5005. "type": "zip",
  5006. "url": "https://api.github.com/repos/symfony/finder/zipball/5e575faa95548d0586f6bedaeabec259714e44d1",
  5007. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1",
  5008. "shasum": ""
  5009. },
  5010. "require": {
  5011. "php": "^7.1.3"
  5012. },
  5013. "type": "library",
  5014. "extra": {
  5015. "branch-alias": {
  5016. "dev-master": "4.3-dev"
  5017. }
  5018. },
  5019. "autoload": {
  5020. "psr-4": {
  5021. "Symfony\\Component\\Finder\\": ""
  5022. },
  5023. "exclude-from-classmap": [
  5024. "/Tests/"
  5025. ]
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Fabien Potencier",
  5034. "email": "fabien@symfony.com"
  5035. },
  5036. {
  5037. "name": "Symfony Community",
  5038. "homepage": "https://symfony.com/contributors"
  5039. }
  5040. ],
  5041. "description": "Symfony Finder Component",
  5042. "homepage": "https://symfony.com",
  5043. "time": "2019-09-16T11:29:48+00:00"
  5044. },
  5045. {
  5046. "name": "symfony/http-foundation",
  5047. "version": "v4.3.5",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://github.com/symfony/http-foundation.git",
  5051. "reference": "76590ced16d4674780863471bae10452b79210a5"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/76590ced16d4674780863471bae10452b79210a5",
  5056. "reference": "76590ced16d4674780863471bae10452b79210a5",
  5057. "shasum": ""
  5058. },
  5059. "require": {
  5060. "php": "^7.1.3",
  5061. "symfony/mime": "^4.3",
  5062. "symfony/polyfill-mbstring": "~1.1"
  5063. },
  5064. "require-dev": {
  5065. "predis/predis": "~1.0",
  5066. "symfony/expression-language": "~3.4|~4.0"
  5067. },
  5068. "type": "library",
  5069. "extra": {
  5070. "branch-alias": {
  5071. "dev-master": "4.3-dev"
  5072. }
  5073. },
  5074. "autoload": {
  5075. "psr-4": {
  5076. "Symfony\\Component\\HttpFoundation\\": ""
  5077. },
  5078. "exclude-from-classmap": [
  5079. "/Tests/"
  5080. ]
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "Fabien Potencier",
  5089. "email": "fabien@symfony.com"
  5090. },
  5091. {
  5092. "name": "Symfony Community",
  5093. "homepage": "https://symfony.com/contributors"
  5094. }
  5095. ],
  5096. "description": "Symfony HttpFoundation Component",
  5097. "homepage": "https://symfony.com",
  5098. "time": "2019-10-04T19:48:13+00:00"
  5099. },
  5100. {
  5101. "name": "symfony/http-kernel",
  5102. "version": "v4.3.5",
  5103. "source": {
  5104. "type": "git",
  5105. "url": "https://github.com/symfony/http-kernel.git",
  5106. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991"
  5107. },
  5108. "dist": {
  5109. "type": "zip",
  5110. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5f08141850932e8019c01d8988bf3ed6367d2991",
  5111. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991",
  5112. "shasum": ""
  5113. },
  5114. "require": {
  5115. "php": "^7.1.3",
  5116. "psr/log": "~1.0",
  5117. "symfony/debug": "~3.4|~4.0",
  5118. "symfony/event-dispatcher": "^4.3",
  5119. "symfony/http-foundation": "^4.1.1",
  5120. "symfony/polyfill-ctype": "~1.8",
  5121. "symfony/polyfill-php73": "^1.9"
  5122. },
  5123. "conflict": {
  5124. "symfony/browser-kit": "<4.3",
  5125. "symfony/config": "<3.4",
  5126. "symfony/dependency-injection": "<4.3",
  5127. "symfony/translation": "<4.2",
  5128. "symfony/var-dumper": "<4.1.1",
  5129. "twig/twig": "<1.34|<2.4,>=2"
  5130. },
  5131. "provide": {
  5132. "psr/log-implementation": "1.0"
  5133. },
  5134. "require-dev": {
  5135. "psr/cache": "~1.0",
  5136. "symfony/browser-kit": "^4.3",
  5137. "symfony/config": "~3.4|~4.0",
  5138. "symfony/console": "~3.4|~4.0",
  5139. "symfony/css-selector": "~3.4|~4.0",
  5140. "symfony/dependency-injection": "^4.3",
  5141. "symfony/dom-crawler": "~3.4|~4.0",
  5142. "symfony/expression-language": "~3.4|~4.0",
  5143. "symfony/finder": "~3.4|~4.0",
  5144. "symfony/process": "~3.4|~4.0",
  5145. "symfony/routing": "~3.4|~4.0",
  5146. "symfony/stopwatch": "~3.4|~4.0",
  5147. "symfony/templating": "~3.4|~4.0",
  5148. "symfony/translation": "~4.2",
  5149. "symfony/translation-contracts": "^1.1",
  5150. "symfony/var-dumper": "^4.1.1",
  5151. "twig/twig": "^1.34|^2.4"
  5152. },
  5153. "suggest": {
  5154. "symfony/browser-kit": "",
  5155. "symfony/config": "",
  5156. "symfony/console": "",
  5157. "symfony/dependency-injection": "",
  5158. "symfony/var-dumper": ""
  5159. },
  5160. "type": "library",
  5161. "extra": {
  5162. "branch-alias": {
  5163. "dev-master": "4.3-dev"
  5164. }
  5165. },
  5166. "autoload": {
  5167. "psr-4": {
  5168. "Symfony\\Component\\HttpKernel\\": ""
  5169. },
  5170. "exclude-from-classmap": [
  5171. "/Tests/"
  5172. ]
  5173. },
  5174. "notification-url": "https://packagist.org/downloads/",
  5175. "license": [
  5176. "MIT"
  5177. ],
  5178. "authors": [
  5179. {
  5180. "name": "Fabien Potencier",
  5181. "email": "fabien@symfony.com"
  5182. },
  5183. {
  5184. "name": "Symfony Community",
  5185. "homepage": "https://symfony.com/contributors"
  5186. }
  5187. ],
  5188. "description": "Symfony HttpKernel Component",
  5189. "homepage": "https://symfony.com",
  5190. "time": "2019-10-07T15:06:41+00:00"
  5191. },
  5192. {
  5193. "name": "symfony/mime",
  5194. "version": "v4.3.5",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/symfony/mime.git",
  5198. "reference": "32f71570547b91879fdbd9cf50317d556ae86916"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/symfony/mime/zipball/32f71570547b91879fdbd9cf50317d556ae86916",
  5203. "reference": "32f71570547b91879fdbd9cf50317d556ae86916",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "php": "^7.1.3",
  5208. "symfony/polyfill-intl-idn": "^1.10",
  5209. "symfony/polyfill-mbstring": "^1.0"
  5210. },
  5211. "require-dev": {
  5212. "egulias/email-validator": "^2.1.10",
  5213. "symfony/dependency-injection": "~3.4|^4.1"
  5214. },
  5215. "type": "library",
  5216. "extra": {
  5217. "branch-alias": {
  5218. "dev-master": "4.3-dev"
  5219. }
  5220. },
  5221. "autoload": {
  5222. "psr-4": {
  5223. "Symfony\\Component\\Mime\\": ""
  5224. },
  5225. "exclude-from-classmap": [
  5226. "/Tests/"
  5227. ]
  5228. },
  5229. "notification-url": "https://packagist.org/downloads/",
  5230. "license": [
  5231. "MIT"
  5232. ],
  5233. "authors": [
  5234. {
  5235. "name": "Fabien Potencier",
  5236. "email": "fabien@symfony.com"
  5237. },
  5238. {
  5239. "name": "Symfony Community",
  5240. "homepage": "https://symfony.com/contributors"
  5241. }
  5242. ],
  5243. "description": "A library to manipulate MIME messages",
  5244. "homepage": "https://symfony.com",
  5245. "keywords": [
  5246. "mime",
  5247. "mime-type"
  5248. ],
  5249. "time": "2019-09-19T17:00:15+00:00"
  5250. },
  5251. {
  5252. "name": "symfony/polyfill-ctype",
  5253. "version": "v1.12.0",
  5254. "source": {
  5255. "type": "git",
  5256. "url": "https://github.com/symfony/polyfill-ctype.git",
  5257. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  5258. },
  5259. "dist": {
  5260. "type": "zip",
  5261. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  5262. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  5263. "shasum": ""
  5264. },
  5265. "require": {
  5266. "php": ">=5.3.3"
  5267. },
  5268. "suggest": {
  5269. "ext-ctype": "For best performance"
  5270. },
  5271. "type": "library",
  5272. "extra": {
  5273. "branch-alias": {
  5274. "dev-master": "1.12-dev"
  5275. }
  5276. },
  5277. "autoload": {
  5278. "psr-4": {
  5279. "Symfony\\Polyfill\\Ctype\\": ""
  5280. },
  5281. "files": [
  5282. "bootstrap.php"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "MIT"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Gert de Pagter",
  5292. "email": "BackEndTea@gmail.com"
  5293. },
  5294. {
  5295. "name": "Symfony Community",
  5296. "homepage": "https://symfony.com/contributors"
  5297. }
  5298. ],
  5299. "description": "Symfony polyfill for ctype functions",
  5300. "homepage": "https://symfony.com",
  5301. "keywords": [
  5302. "compatibility",
  5303. "ctype",
  5304. "polyfill",
  5305. "portable"
  5306. ],
  5307. "time": "2019-08-06T08:03:45+00:00"
  5308. },
  5309. {
  5310. "name": "symfony/polyfill-iconv",
  5311. "version": "v1.12.0",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/symfony/polyfill-iconv.git",
  5315. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  5320. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  5321. "shasum": ""
  5322. },
  5323. "require": {
  5324. "php": ">=5.3.3"
  5325. },
  5326. "suggest": {
  5327. "ext-iconv": "For best performance"
  5328. },
  5329. "type": "library",
  5330. "extra": {
  5331. "branch-alias": {
  5332. "dev-master": "1.12-dev"
  5333. }
  5334. },
  5335. "autoload": {
  5336. "psr-4": {
  5337. "Symfony\\Polyfill\\Iconv\\": ""
  5338. },
  5339. "files": [
  5340. "bootstrap.php"
  5341. ]
  5342. },
  5343. "notification-url": "https://packagist.org/downloads/",
  5344. "license": [
  5345. "MIT"
  5346. ],
  5347. "authors": [
  5348. {
  5349. "name": "Nicolas Grekas",
  5350. "email": "p@tchwork.com"
  5351. },
  5352. {
  5353. "name": "Symfony Community",
  5354. "homepage": "https://symfony.com/contributors"
  5355. }
  5356. ],
  5357. "description": "Symfony polyfill for the Iconv extension",
  5358. "homepage": "https://symfony.com",
  5359. "keywords": [
  5360. "compatibility",
  5361. "iconv",
  5362. "polyfill",
  5363. "portable",
  5364. "shim"
  5365. ],
  5366. "time": "2019-08-06T08:03:45+00:00"
  5367. },
  5368. {
  5369. "name": "symfony/polyfill-intl-idn",
  5370. "version": "v1.12.0",
  5371. "source": {
  5372. "type": "git",
  5373. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5374. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2"
  5375. },
  5376. "dist": {
  5377. "type": "zip",
  5378. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  5379. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  5380. "shasum": ""
  5381. },
  5382. "require": {
  5383. "php": ">=5.3.3",
  5384. "symfony/polyfill-mbstring": "^1.3",
  5385. "symfony/polyfill-php72": "^1.9"
  5386. },
  5387. "suggest": {
  5388. "ext-intl": "For best performance"
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "branch-alias": {
  5393. "dev-master": "1.12-dev"
  5394. }
  5395. },
  5396. "autoload": {
  5397. "psr-4": {
  5398. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5399. },
  5400. "files": [
  5401. "bootstrap.php"
  5402. ]
  5403. },
  5404. "notification-url": "https://packagist.org/downloads/",
  5405. "license": [
  5406. "MIT"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Laurent Bassin",
  5411. "email": "laurent@bassin.info"
  5412. },
  5413. {
  5414. "name": "Symfony Community",
  5415. "homepage": "https://symfony.com/contributors"
  5416. }
  5417. ],
  5418. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5419. "homepage": "https://symfony.com",
  5420. "keywords": [
  5421. "compatibility",
  5422. "idn",
  5423. "intl",
  5424. "polyfill",
  5425. "portable",
  5426. "shim"
  5427. ],
  5428. "time": "2019-08-06T08:03:45+00:00"
  5429. },
  5430. {
  5431. "name": "symfony/polyfill-mbstring",
  5432. "version": "v1.12.0",
  5433. "source": {
  5434. "type": "git",
  5435. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5436. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  5437. },
  5438. "dist": {
  5439. "type": "zip",
  5440. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  5441. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  5442. "shasum": ""
  5443. },
  5444. "require": {
  5445. "php": ">=5.3.3"
  5446. },
  5447. "suggest": {
  5448. "ext-mbstring": "For best performance"
  5449. },
  5450. "type": "library",
  5451. "extra": {
  5452. "branch-alias": {
  5453. "dev-master": "1.12-dev"
  5454. }
  5455. },
  5456. "autoload": {
  5457. "psr-4": {
  5458. "Symfony\\Polyfill\\Mbstring\\": ""
  5459. },
  5460. "files": [
  5461. "bootstrap.php"
  5462. ]
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "Nicolas Grekas",
  5471. "email": "p@tchwork.com"
  5472. },
  5473. {
  5474. "name": "Symfony Community",
  5475. "homepage": "https://symfony.com/contributors"
  5476. }
  5477. ],
  5478. "description": "Symfony polyfill for the Mbstring extension",
  5479. "homepage": "https://symfony.com",
  5480. "keywords": [
  5481. "compatibility",
  5482. "mbstring",
  5483. "polyfill",
  5484. "portable",
  5485. "shim"
  5486. ],
  5487. "time": "2019-08-06T08:03:45+00:00"
  5488. },
  5489. {
  5490. "name": "symfony/polyfill-php56",
  5491. "version": "v1.12.0",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/symfony/polyfill-php56.git",
  5495. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403",
  5500. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "php": ">=5.3.3",
  5505. "symfony/polyfill-util": "~1.0"
  5506. },
  5507. "type": "library",
  5508. "extra": {
  5509. "branch-alias": {
  5510. "dev-master": "1.12-dev"
  5511. }
  5512. },
  5513. "autoload": {
  5514. "psr-4": {
  5515. "Symfony\\Polyfill\\Php56\\": ""
  5516. },
  5517. "files": [
  5518. "bootstrap.php"
  5519. ]
  5520. },
  5521. "notification-url": "https://packagist.org/downloads/",
  5522. "license": [
  5523. "MIT"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "Nicolas Grekas",
  5528. "email": "p@tchwork.com"
  5529. },
  5530. {
  5531. "name": "Symfony Community",
  5532. "homepage": "https://symfony.com/contributors"
  5533. }
  5534. ],
  5535. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5536. "homepage": "https://symfony.com",
  5537. "keywords": [
  5538. "compatibility",
  5539. "polyfill",
  5540. "portable",
  5541. "shim"
  5542. ],
  5543. "time": "2019-08-06T08:03:45+00:00"
  5544. },
  5545. {
  5546. "name": "symfony/polyfill-php72",
  5547. "version": "v1.12.0",
  5548. "source": {
  5549. "type": "git",
  5550. "url": "https://github.com/symfony/polyfill-php72.git",
  5551. "reference": "04ce3335667451138df4307d6a9b61565560199e"
  5552. },
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e",
  5556. "reference": "04ce3335667451138df4307d6a9b61565560199e",
  5557. "shasum": ""
  5558. },
  5559. "require": {
  5560. "php": ">=5.3.3"
  5561. },
  5562. "type": "library",
  5563. "extra": {
  5564. "branch-alias": {
  5565. "dev-master": "1.12-dev"
  5566. }
  5567. },
  5568. "autoload": {
  5569. "psr-4": {
  5570. "Symfony\\Polyfill\\Php72\\": ""
  5571. },
  5572. "files": [
  5573. "bootstrap.php"
  5574. ]
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "Nicolas Grekas",
  5583. "email": "p@tchwork.com"
  5584. },
  5585. {
  5586. "name": "Symfony Community",
  5587. "homepage": "https://symfony.com/contributors"
  5588. }
  5589. ],
  5590. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5591. "homepage": "https://symfony.com",
  5592. "keywords": [
  5593. "compatibility",
  5594. "polyfill",
  5595. "portable",
  5596. "shim"
  5597. ],
  5598. "time": "2019-08-06T08:03:45+00:00"
  5599. },
  5600. {
  5601. "name": "symfony/polyfill-php73",
  5602. "version": "v1.12.0",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/symfony/polyfill-php73.git",
  5606. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188",
  5611. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188",
  5612. "shasum": ""
  5613. },
  5614. "require": {
  5615. "php": ">=5.3.3"
  5616. },
  5617. "type": "library",
  5618. "extra": {
  5619. "branch-alias": {
  5620. "dev-master": "1.12-dev"
  5621. }
  5622. },
  5623. "autoload": {
  5624. "psr-4": {
  5625. "Symfony\\Polyfill\\Php73\\": ""
  5626. },
  5627. "files": [
  5628. "bootstrap.php"
  5629. ],
  5630. "classmap": [
  5631. "Resources/stubs"
  5632. ]
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "Nicolas Grekas",
  5641. "email": "p@tchwork.com"
  5642. },
  5643. {
  5644. "name": "Symfony Community",
  5645. "homepage": "https://symfony.com/contributors"
  5646. }
  5647. ],
  5648. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5649. "homepage": "https://symfony.com",
  5650. "keywords": [
  5651. "compatibility",
  5652. "polyfill",
  5653. "portable",
  5654. "shim"
  5655. ],
  5656. "time": "2019-08-06T08:03:45+00:00"
  5657. },
  5658. {
  5659. "name": "symfony/polyfill-util",
  5660. "version": "v1.12.0",
  5661. "source": {
  5662. "type": "git",
  5663. "url": "https://github.com/symfony/polyfill-util.git",
  5664. "reference": "4317de1386717b4c22caed7725350a8887ab205c"
  5665. },
  5666. "dist": {
  5667. "type": "zip",
  5668. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c",
  5669. "reference": "4317de1386717b4c22caed7725350a8887ab205c",
  5670. "shasum": ""
  5671. },
  5672. "require": {
  5673. "php": ">=5.3.3"
  5674. },
  5675. "type": "library",
  5676. "extra": {
  5677. "branch-alias": {
  5678. "dev-master": "1.12-dev"
  5679. }
  5680. },
  5681. "autoload": {
  5682. "psr-4": {
  5683. "Symfony\\Polyfill\\Util\\": ""
  5684. }
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "MIT"
  5689. ],
  5690. "authors": [
  5691. {
  5692. "name": "Nicolas Grekas",
  5693. "email": "p@tchwork.com"
  5694. },
  5695. {
  5696. "name": "Symfony Community",
  5697. "homepage": "https://symfony.com/contributors"
  5698. }
  5699. ],
  5700. "description": "Symfony utilities for portability of PHP codes",
  5701. "homepage": "https://symfony.com",
  5702. "keywords": [
  5703. "compat",
  5704. "compatibility",
  5705. "polyfill",
  5706. "shim"
  5707. ],
  5708. "time": "2019-08-06T08:03:45+00:00"
  5709. },
  5710. {
  5711. "name": "symfony/process",
  5712. "version": "v4.3.5",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/symfony/process.git",
  5716. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/symfony/process/zipball/50556892f3cc47d4200bfd1075314139c4c9ff4b",
  5721. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b",
  5722. "shasum": ""
  5723. },
  5724. "require": {
  5725. "php": "^7.1.3"
  5726. },
  5727. "type": "library",
  5728. "extra": {
  5729. "branch-alias": {
  5730. "dev-master": "4.3-dev"
  5731. }
  5732. },
  5733. "autoload": {
  5734. "psr-4": {
  5735. "Symfony\\Component\\Process\\": ""
  5736. },
  5737. "exclude-from-classmap": [
  5738. "/Tests/"
  5739. ]
  5740. },
  5741. "notification-url": "https://packagist.org/downloads/",
  5742. "license": [
  5743. "MIT"
  5744. ],
  5745. "authors": [
  5746. {
  5747. "name": "Fabien Potencier",
  5748. "email": "fabien@symfony.com"
  5749. },
  5750. {
  5751. "name": "Symfony Community",
  5752. "homepage": "https://symfony.com/contributors"
  5753. }
  5754. ],
  5755. "description": "Symfony Process Component",
  5756. "homepage": "https://symfony.com",
  5757. "time": "2019-09-26T21:17:10+00:00"
  5758. },
  5759. {
  5760. "name": "symfony/psr-http-message-bridge",
  5761. "version": "v1.2.0",
  5762. "source": {
  5763. "type": "git",
  5764. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5765. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  5766. },
  5767. "dist": {
  5768. "type": "zip",
  5769. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  5770. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  5771. "shasum": ""
  5772. },
  5773. "require": {
  5774. "php": "^7.1",
  5775. "psr/http-message": "^1.0",
  5776. "symfony/http-foundation": "^3.4 || ^4.0"
  5777. },
  5778. "require-dev": {
  5779. "nyholm/psr7": "^1.1",
  5780. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  5781. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  5782. },
  5783. "suggest": {
  5784. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5785. },
  5786. "type": "symfony-bridge",
  5787. "extra": {
  5788. "branch-alias": {
  5789. "dev-master": "1.2-dev"
  5790. }
  5791. },
  5792. "autoload": {
  5793. "psr-4": {
  5794. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5795. },
  5796. "exclude-from-classmap": [
  5797. "/Tests/"
  5798. ]
  5799. },
  5800. "notification-url": "https://packagist.org/downloads/",
  5801. "license": [
  5802. "MIT"
  5803. ],
  5804. "authors": [
  5805. {
  5806. "name": "Symfony Community",
  5807. "homepage": "http://symfony.com/contributors"
  5808. },
  5809. {
  5810. "name": "Fabien Potencier",
  5811. "email": "fabien@symfony.com"
  5812. }
  5813. ],
  5814. "description": "PSR HTTP message bridge",
  5815. "homepage": "http://symfony.com",
  5816. "keywords": [
  5817. "http",
  5818. "http-message",
  5819. "psr-17",
  5820. "psr-7"
  5821. ],
  5822. "time": "2019-03-11T18:22:33+00:00"
  5823. },
  5824. {
  5825. "name": "symfony/routing",
  5826. "version": "v4.3.5",
  5827. "source": {
  5828. "type": "git",
  5829. "url": "https://github.com/symfony/routing.git",
  5830. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea"
  5831. },
  5832. "dist": {
  5833. "type": "zip",
  5834. "url": "https://api.github.com/repos/symfony/routing/zipball/3b174ef04fe66696524efad1e5f7a6c663d822ea",
  5835. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea",
  5836. "shasum": ""
  5837. },
  5838. "require": {
  5839. "php": "^7.1.3"
  5840. },
  5841. "conflict": {
  5842. "symfony/config": "<4.2",
  5843. "symfony/dependency-injection": "<3.4",
  5844. "symfony/yaml": "<3.4"
  5845. },
  5846. "require-dev": {
  5847. "doctrine/annotations": "~1.2",
  5848. "psr/log": "~1.0",
  5849. "symfony/config": "~4.2",
  5850. "symfony/dependency-injection": "~3.4|~4.0",
  5851. "symfony/expression-language": "~3.4|~4.0",
  5852. "symfony/http-foundation": "~3.4|~4.0",
  5853. "symfony/yaml": "~3.4|~4.0"
  5854. },
  5855. "suggest": {
  5856. "doctrine/annotations": "For using the annotation loader",
  5857. "symfony/config": "For using the all-in-one router or any loader",
  5858. "symfony/expression-language": "For using expression matching",
  5859. "symfony/http-foundation": "For using a Symfony Request object",
  5860. "symfony/yaml": "For using the YAML loader"
  5861. },
  5862. "type": "library",
  5863. "extra": {
  5864. "branch-alias": {
  5865. "dev-master": "4.3-dev"
  5866. }
  5867. },
  5868. "autoload": {
  5869. "psr-4": {
  5870. "Symfony\\Component\\Routing\\": ""
  5871. },
  5872. "exclude-from-classmap": [
  5873. "/Tests/"
  5874. ]
  5875. },
  5876. "notification-url": "https://packagist.org/downloads/",
  5877. "license": [
  5878. "MIT"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "Fabien Potencier",
  5883. "email": "fabien@symfony.com"
  5884. },
  5885. {
  5886. "name": "Symfony Community",
  5887. "homepage": "https://symfony.com/contributors"
  5888. }
  5889. ],
  5890. "description": "Symfony Routing Component",
  5891. "homepage": "https://symfony.com",
  5892. "keywords": [
  5893. "router",
  5894. "routing",
  5895. "uri",
  5896. "url"
  5897. ],
  5898. "time": "2019-10-04T20:57:10+00:00"
  5899. },
  5900. {
  5901. "name": "symfony/service-contracts",
  5902. "version": "v1.1.7",
  5903. "source": {
  5904. "type": "git",
  5905. "url": "https://github.com/symfony/service-contracts.git",
  5906. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0"
  5907. },
  5908. "dist": {
  5909. "type": "zip",
  5910. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  5911. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  5912. "shasum": ""
  5913. },
  5914. "require": {
  5915. "php": "^7.1.3",
  5916. "psr/container": "^1.0"
  5917. },
  5918. "suggest": {
  5919. "symfony/service-implementation": ""
  5920. },
  5921. "type": "library",
  5922. "extra": {
  5923. "branch-alias": {
  5924. "dev-master": "1.1-dev"
  5925. }
  5926. },
  5927. "autoload": {
  5928. "psr-4": {
  5929. "Symfony\\Contracts\\Service\\": ""
  5930. }
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "Nicolas Grekas",
  5939. "email": "p@tchwork.com"
  5940. },
  5941. {
  5942. "name": "Symfony Community",
  5943. "homepage": "https://symfony.com/contributors"
  5944. }
  5945. ],
  5946. "description": "Generic abstractions related to writing services",
  5947. "homepage": "https://symfony.com",
  5948. "keywords": [
  5949. "abstractions",
  5950. "contracts",
  5951. "decoupling",
  5952. "interfaces",
  5953. "interoperability",
  5954. "standards"
  5955. ],
  5956. "time": "2019-09-17T11:12:18+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/translation",
  5960. "version": "v4.3.5",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/translation.git",
  5964. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/translation/zipball/fe6193b066c457c144333c06aaa869a2d42a167f",
  5969. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": "^7.1.3",
  5974. "symfony/polyfill-mbstring": "~1.0",
  5975. "symfony/translation-contracts": "^1.1.6"
  5976. },
  5977. "conflict": {
  5978. "symfony/config": "<3.4",
  5979. "symfony/dependency-injection": "<3.4",
  5980. "symfony/yaml": "<3.4"
  5981. },
  5982. "provide": {
  5983. "symfony/translation-implementation": "1.0"
  5984. },
  5985. "require-dev": {
  5986. "psr/log": "~1.0",
  5987. "symfony/config": "~3.4|~4.0",
  5988. "symfony/console": "~3.4|~4.0",
  5989. "symfony/dependency-injection": "~3.4|~4.0",
  5990. "symfony/finder": "~2.8|~3.0|~4.0",
  5991. "symfony/http-kernel": "~3.4|~4.0",
  5992. "symfony/intl": "~3.4|~4.0",
  5993. "symfony/service-contracts": "^1.1.2",
  5994. "symfony/var-dumper": "~3.4|~4.0",
  5995. "symfony/yaml": "~3.4|~4.0"
  5996. },
  5997. "suggest": {
  5998. "psr/log-implementation": "To use logging capability in translator",
  5999. "symfony/config": "",
  6000. "symfony/yaml": ""
  6001. },
  6002. "type": "library",
  6003. "extra": {
  6004. "branch-alias": {
  6005. "dev-master": "4.3-dev"
  6006. }
  6007. },
  6008. "autoload": {
  6009. "psr-4": {
  6010. "Symfony\\Component\\Translation\\": ""
  6011. },
  6012. "exclude-from-classmap": [
  6013. "/Tests/"
  6014. ]
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Fabien Potencier",
  6023. "email": "fabien@symfony.com"
  6024. },
  6025. {
  6026. "name": "Symfony Community",
  6027. "homepage": "https://symfony.com/contributors"
  6028. }
  6029. ],
  6030. "description": "Symfony Translation Component",
  6031. "homepage": "https://symfony.com",
  6032. "time": "2019-09-27T14:37:39+00:00"
  6033. },
  6034. {
  6035. "name": "symfony/translation-contracts",
  6036. "version": "v1.1.7",
  6037. "source": {
  6038. "type": "git",
  6039. "url": "https://github.com/symfony/translation-contracts.git",
  6040. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6"
  6041. },
  6042. "dist": {
  6043. "type": "zip",
  6044. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/364518c132c95642e530d9b2d217acbc2ccac3e6",
  6045. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6",
  6046. "shasum": ""
  6047. },
  6048. "require": {
  6049. "php": "^7.1.3"
  6050. },
  6051. "suggest": {
  6052. "symfony/translation-implementation": ""
  6053. },
  6054. "type": "library",
  6055. "extra": {
  6056. "branch-alias": {
  6057. "dev-master": "1.1-dev"
  6058. }
  6059. },
  6060. "autoload": {
  6061. "psr-4": {
  6062. "Symfony\\Contracts\\Translation\\": ""
  6063. }
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Nicolas Grekas",
  6072. "email": "p@tchwork.com"
  6073. },
  6074. {
  6075. "name": "Symfony Community",
  6076. "homepage": "https://symfony.com/contributors"
  6077. }
  6078. ],
  6079. "description": "Generic abstractions related to translation",
  6080. "homepage": "https://symfony.com",
  6081. "keywords": [
  6082. "abstractions",
  6083. "contracts",
  6084. "decoupling",
  6085. "interfaces",
  6086. "interoperability",
  6087. "standards"
  6088. ],
  6089. "time": "2019-09-17T11:12:18+00:00"
  6090. },
  6091. {
  6092. "name": "symfony/var-dumper",
  6093. "version": "v4.3.5",
  6094. "source": {
  6095. "type": "git",
  6096. "url": "https://github.com/symfony/var-dumper.git",
  6097. "reference": "bde8957fc415fdc6964f33916a3755737744ff05"
  6098. },
  6099. "dist": {
  6100. "type": "zip",
  6101. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/bde8957fc415fdc6964f33916a3755737744ff05",
  6102. "reference": "bde8957fc415fdc6964f33916a3755737744ff05",
  6103. "shasum": ""
  6104. },
  6105. "require": {
  6106. "php": "^7.1.3",
  6107. "symfony/polyfill-mbstring": "~1.0",
  6108. "symfony/polyfill-php72": "~1.5"
  6109. },
  6110. "conflict": {
  6111. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6112. "symfony/console": "<3.4"
  6113. },
  6114. "require-dev": {
  6115. "ext-iconv": "*",
  6116. "symfony/console": "~3.4|~4.0",
  6117. "symfony/process": "~3.4|~4.0",
  6118. "twig/twig": "~1.34|~2.4"
  6119. },
  6120. "suggest": {
  6121. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6122. "ext-intl": "To show region name in time zone dump",
  6123. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6124. },
  6125. "bin": [
  6126. "Resources/bin/var-dump-server"
  6127. ],
  6128. "type": "library",
  6129. "extra": {
  6130. "branch-alias": {
  6131. "dev-master": "4.3-dev"
  6132. }
  6133. },
  6134. "autoload": {
  6135. "files": [
  6136. "Resources/functions/dump.php"
  6137. ],
  6138. "psr-4": {
  6139. "Symfony\\Component\\VarDumper\\": ""
  6140. },
  6141. "exclude-from-classmap": [
  6142. "/Tests/"
  6143. ]
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Nicolas Grekas",
  6152. "email": "p@tchwork.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "https://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6160. "homepage": "https://symfony.com",
  6161. "keywords": [
  6162. "debug",
  6163. "dump"
  6164. ],
  6165. "time": "2019-10-04T19:48:13+00:00"
  6166. },
  6167. {
  6168. "name": "tightenco/collect",
  6169. "version": "v5.8.35",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://github.com/tightenco/collect.git",
  6173. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://api.github.com/repos/tightenco/collect/zipball/c93a7039e6207ad533a09109838fe80933fcc72c",
  6178. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c",
  6179. "shasum": ""
  6180. },
  6181. "require": {
  6182. "php": "^7.1.3",
  6183. "symfony/var-dumper": ">=3.4 <5"
  6184. },
  6185. "require-dev": {
  6186. "mockery/mockery": "^1.0",
  6187. "nesbot/carbon": "^1.26.3",
  6188. "phpunit/phpunit": "^7.0"
  6189. },
  6190. "type": "library",
  6191. "autoload": {
  6192. "files": [
  6193. "src/Collect/Support/helpers.php",
  6194. "src/Collect/Support/alias.php"
  6195. ],
  6196. "psr-4": {
  6197. "Tightenco\\Collect\\": "src/Collect"
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "Taylor Otwell",
  6207. "email": "taylorotwell@gmail.com"
  6208. }
  6209. ],
  6210. "description": "Collect - Illuminate Collections as a separate package.",
  6211. "keywords": [
  6212. "collection",
  6213. "laravel"
  6214. ],
  6215. "time": "2019-09-17T18:57:01+00:00"
  6216. },
  6217. {
  6218. "name": "tijsverkoyen/css-to-inline-styles",
  6219. "version": "2.2.1",
  6220. "source": {
  6221. "type": "git",
  6222. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6223. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  6224. },
  6225. "dist": {
  6226. "type": "zip",
  6227. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  6228. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  6229. "shasum": ""
  6230. },
  6231. "require": {
  6232. "php": "^5.5 || ^7.0",
  6233. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  6234. },
  6235. "require-dev": {
  6236. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6237. },
  6238. "type": "library",
  6239. "extra": {
  6240. "branch-alias": {
  6241. "dev-master": "2.2.x-dev"
  6242. }
  6243. },
  6244. "autoload": {
  6245. "psr-4": {
  6246. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6247. }
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "BSD-3-Clause"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Tijs Verkoyen",
  6256. "email": "css_to_inline_styles@verkoyen.eu",
  6257. "role": "Developer"
  6258. }
  6259. ],
  6260. "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.",
  6261. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6262. "time": "2017-11-27T11:13:29+00:00"
  6263. },
  6264. {
  6265. "name": "vlucas/phpdotenv",
  6266. "version": "v3.6.0",
  6267. "source": {
  6268. "type": "git",
  6269. "url": "https://github.com/vlucas/phpdotenv.git",
  6270. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156"
  6271. },
  6272. "dist": {
  6273. "type": "zip",
  6274. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1bdf24f065975594f6a117f0f1f6cabf1333b156",
  6275. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156",
  6276. "shasum": ""
  6277. },
  6278. "require": {
  6279. "php": "^5.4 || ^7.0",
  6280. "phpoption/phpoption": "^1.5",
  6281. "symfony/polyfill-ctype": "^1.9"
  6282. },
  6283. "require-dev": {
  6284. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  6285. },
  6286. "type": "library",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "3.6-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Dotenv\\": "src/"
  6295. }
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "BSD-3-Clause"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "Graham Campbell",
  6304. "email": "graham@alt-three.com",
  6305. "homepage": "https://gjcampbell.co.uk/"
  6306. },
  6307. {
  6308. "name": "Vance Lucas",
  6309. "email": "vance@vancelucas.com",
  6310. "homepage": "https://vancelucas.com/"
  6311. }
  6312. ],
  6313. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6314. "keywords": [
  6315. "dotenv",
  6316. "env",
  6317. "environment"
  6318. ],
  6319. "time": "2019-09-10T21:37:39+00:00"
  6320. },
  6321. {
  6322. "name": "zendframework/zend-diactoros",
  6323. "version": "2.1.5",
  6324. "source": {
  6325. "type": "git",
  6326. "url": "https://github.com/zendframework/zend-diactoros.git",
  6327. "reference": "6dcf9e760a6b476f3e9d80abbc9ce9c4aa921f9c"
  6328. },
  6329. "dist": {
  6330. "type": "zip",
  6331. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/6dcf9e760a6b476f3e9d80abbc9ce9c4aa921f9c",
  6332. "reference": "6dcf9e760a6b476f3e9d80abbc9ce9c4aa921f9c",
  6333. "shasum": ""
  6334. },
  6335. "require": {
  6336. "php": "^7.1",
  6337. "psr/http-factory": "^1.0",
  6338. "psr/http-message": "^1.0"
  6339. },
  6340. "provide": {
  6341. "psr/http-factory-implementation": "1.0",
  6342. "psr/http-message-implementation": "1.0"
  6343. },
  6344. "require-dev": {
  6345. "ext-curl": "*",
  6346. "ext-dom": "*",
  6347. "ext-libxml": "*",
  6348. "http-interop/http-factory-tests": "^0.5.0",
  6349. "php-http/psr7-integration-tests": "dev-master",
  6350. "phpunit/phpunit": "^7.0.2",
  6351. "zendframework/zend-coding-standard": "~1.0.0"
  6352. },
  6353. "type": "library",
  6354. "extra": {
  6355. "branch-alias": {
  6356. "dev-master": "2.1.x-dev",
  6357. "dev-develop": "2.2.x-dev",
  6358. "dev-release-1.8": "1.8.x-dev"
  6359. }
  6360. },
  6361. "autoload": {
  6362. "files": [
  6363. "src/functions/create_uploaded_file.php",
  6364. "src/functions/marshal_headers_from_sapi.php",
  6365. "src/functions/marshal_method_from_sapi.php",
  6366. "src/functions/marshal_protocol_version_from_sapi.php",
  6367. "src/functions/marshal_uri_from_sapi.php",
  6368. "src/functions/normalize_server.php",
  6369. "src/functions/normalize_uploaded_files.php",
  6370. "src/functions/parse_cookie_header.php"
  6371. ],
  6372. "psr-4": {
  6373. "Zend\\Diactoros\\": "src/"
  6374. }
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "BSD-3-Clause"
  6379. ],
  6380. "description": "PSR HTTP Message implementations",
  6381. "keywords": [
  6382. "http",
  6383. "psr",
  6384. "psr-7"
  6385. ],
  6386. "time": "2019-10-10T17:38:20+00:00"
  6387. }
  6388. ],
  6389. "packages-dev": [
  6390. {
  6391. "name": "barryvdh/laravel-debugbar",
  6392. "version": "dev-master",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6396. "reference": "4fb3665d24bdcdb403035e81ec1c36cca505f778"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/4fb3665d24bdcdb403035e81ec1c36cca505f778",
  6401. "reference": "4fb3665d24bdcdb403035e81ec1c36cca505f778",
  6402. "shasum": ""
  6403. },
  6404. "require": {
  6405. "illuminate/routing": "^5.5|^6",
  6406. "illuminate/session": "^5.5|^6",
  6407. "illuminate/support": "^5.5|^6",
  6408. "maximebf/debugbar": "~1.15.0",
  6409. "php": ">=7.0",
  6410. "symfony/debug": "^3|^4",
  6411. "symfony/finder": "^3|^4"
  6412. },
  6413. "require-dev": {
  6414. "laravel/framework": "5.5.x"
  6415. },
  6416. "type": "library",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-master": "3.2-dev"
  6420. },
  6421. "laravel": {
  6422. "providers": [
  6423. "Barryvdh\\Debugbar\\ServiceProvider"
  6424. ],
  6425. "aliases": {
  6426. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6427. }
  6428. }
  6429. },
  6430. "autoload": {
  6431. "psr-4": {
  6432. "Barryvdh\\Debugbar\\": "src/"
  6433. },
  6434. "files": [
  6435. "src/helpers.php"
  6436. ]
  6437. },
  6438. "notification-url": "https://packagist.org/downloads/",
  6439. "license": [
  6440. "MIT"
  6441. ],
  6442. "authors": [
  6443. {
  6444. "name": "Barry vd. Heuvel",
  6445. "email": "barryvdh@gmail.com"
  6446. }
  6447. ],
  6448. "description": "PHP Debugbar integration for Laravel",
  6449. "keywords": [
  6450. "debug",
  6451. "debugbar",
  6452. "laravel",
  6453. "profiler",
  6454. "webprofiler"
  6455. ],
  6456. "time": "2019-09-24T14:55:23+00:00"
  6457. },
  6458. {
  6459. "name": "composer/ca-bundle",
  6460. "version": "1.2.4",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/composer/ca-bundle.git",
  6464. "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/10bb96592168a0f8e8f6dcde3532d9fa50b0b527",
  6469. "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527",
  6470. "shasum": ""
  6471. },
  6472. "require": {
  6473. "ext-openssl": "*",
  6474. "ext-pcre": "*",
  6475. "php": "^5.3.2 || ^7.0 || ^8.0"
  6476. },
  6477. "require-dev": {
  6478. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  6479. "psr/log": "^1.0",
  6480. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  6481. },
  6482. "type": "library",
  6483. "extra": {
  6484. "branch-alias": {
  6485. "dev-master": "1.x-dev"
  6486. }
  6487. },
  6488. "autoload": {
  6489. "psr-4": {
  6490. "Composer\\CaBundle\\": "src"
  6491. }
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "MIT"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Jordi Boggiano",
  6500. "email": "j.boggiano@seld.be",
  6501. "homepage": "http://seld.be"
  6502. }
  6503. ],
  6504. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  6505. "keywords": [
  6506. "cabundle",
  6507. "cacert",
  6508. "certificate",
  6509. "ssl",
  6510. "tls"
  6511. ],
  6512. "time": "2019-08-30T08:44:50+00:00"
  6513. },
  6514. {
  6515. "name": "composer/composer",
  6516. "version": "1.9.0",
  6517. "source": {
  6518. "type": "git",
  6519. "url": "https://github.com/composer/composer.git",
  6520. "reference": "314aa57fdcfc942065996f59fb73a8b3f74f3fa5"
  6521. },
  6522. "dist": {
  6523. "type": "zip",
  6524. "url": "https://api.github.com/repos/composer/composer/zipball/314aa57fdcfc942065996f59fb73a8b3f74f3fa5",
  6525. "reference": "314aa57fdcfc942065996f59fb73a8b3f74f3fa5",
  6526. "shasum": ""
  6527. },
  6528. "require": {
  6529. "composer/ca-bundle": "^1.0",
  6530. "composer/semver": "^1.0",
  6531. "composer/spdx-licenses": "^1.2",
  6532. "composer/xdebug-handler": "^1.1",
  6533. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  6534. "php": "^5.3.2 || ^7.0",
  6535. "psr/log": "^1.0",
  6536. "seld/jsonlint": "^1.4",
  6537. "seld/phar-utils": "^1.0",
  6538. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  6539. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  6540. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  6541. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  6542. },
  6543. "conflict": {
  6544. "symfony/console": "2.8.38"
  6545. },
  6546. "require-dev": {
  6547. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6548. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  6549. },
  6550. "suggest": {
  6551. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  6552. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  6553. "ext-zlib": "Allow gzip compression of HTTP requests"
  6554. },
  6555. "bin": [
  6556. "bin/composer"
  6557. ],
  6558. "type": "library",
  6559. "extra": {
  6560. "branch-alias": {
  6561. "dev-master": "1.9-dev"
  6562. }
  6563. },
  6564. "autoload": {
  6565. "psr-4": {
  6566. "Composer\\": "src/Composer"
  6567. }
  6568. },
  6569. "notification-url": "https://packagist.org/downloads/",
  6570. "license": [
  6571. "MIT"
  6572. ],
  6573. "authors": [
  6574. {
  6575. "name": "Nils Adermann",
  6576. "email": "naderman@naderman.de",
  6577. "homepage": "http://www.naderman.de"
  6578. },
  6579. {
  6580. "name": "Jordi Boggiano",
  6581. "email": "j.boggiano@seld.be",
  6582. "homepage": "http://seld.be"
  6583. }
  6584. ],
  6585. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  6586. "homepage": "https://getcomposer.org/",
  6587. "keywords": [
  6588. "autoload",
  6589. "dependency",
  6590. "package"
  6591. ],
  6592. "time": "2019-08-02T18:55:33+00:00"
  6593. },
  6594. {
  6595. "name": "composer/spdx-licenses",
  6596. "version": "1.5.2",
  6597. "source": {
  6598. "type": "git",
  6599. "url": "https://github.com/composer/spdx-licenses.git",
  6600. "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5"
  6601. },
  6602. "dist": {
  6603. "type": "zip",
  6604. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7ac1e6aec371357df067f8a688c3d6974df68fa5",
  6605. "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5",
  6606. "shasum": ""
  6607. },
  6608. "require": {
  6609. "php": "^5.3.2 || ^7.0 || ^8.0"
  6610. },
  6611. "require-dev": {
  6612. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  6613. },
  6614. "type": "library",
  6615. "extra": {
  6616. "branch-alias": {
  6617. "dev-master": "1.x-dev"
  6618. }
  6619. },
  6620. "autoload": {
  6621. "psr-4": {
  6622. "Composer\\Spdx\\": "src"
  6623. }
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Nils Adermann",
  6632. "email": "naderman@naderman.de",
  6633. "homepage": "http://www.naderman.de"
  6634. },
  6635. {
  6636. "name": "Jordi Boggiano",
  6637. "email": "j.boggiano@seld.be",
  6638. "homepage": "http://seld.be"
  6639. },
  6640. {
  6641. "name": "Rob Bast",
  6642. "email": "rob.bast@gmail.com",
  6643. "homepage": "http://robbast.nl"
  6644. }
  6645. ],
  6646. "description": "SPDX licenses list and validation library.",
  6647. "keywords": [
  6648. "license",
  6649. "spdx",
  6650. "validator"
  6651. ],
  6652. "time": "2019-07-29T10:31:59+00:00"
  6653. },
  6654. {
  6655. "name": "composer/xdebug-handler",
  6656. "version": "1.3.3",
  6657. "source": {
  6658. "type": "git",
  6659. "url": "https://github.com/composer/xdebug-handler.git",
  6660. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f"
  6661. },
  6662. "dist": {
  6663. "type": "zip",
  6664. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/46867cbf8ca9fb8d60c506895449eb799db1184f",
  6665. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f",
  6666. "shasum": ""
  6667. },
  6668. "require": {
  6669. "php": "^5.3.2 || ^7.0",
  6670. "psr/log": "^1.0"
  6671. },
  6672. "require-dev": {
  6673. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  6674. },
  6675. "type": "library",
  6676. "autoload": {
  6677. "psr-4": {
  6678. "Composer\\XdebugHandler\\": "src"
  6679. }
  6680. },
  6681. "notification-url": "https://packagist.org/downloads/",
  6682. "license": [
  6683. "MIT"
  6684. ],
  6685. "authors": [
  6686. {
  6687. "name": "John Stevenson",
  6688. "email": "john-stevenson@blueyonder.co.uk"
  6689. }
  6690. ],
  6691. "description": "Restarts a process without xdebug.",
  6692. "keywords": [
  6693. "Xdebug",
  6694. "performance"
  6695. ],
  6696. "time": "2019-05-27T17:52:04+00:00"
  6697. },
  6698. {
  6699. "name": "doctrine/annotations",
  6700. "version": "v1.8.0",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/doctrine/annotations.git",
  6704. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc",
  6709. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "doctrine/lexer": "1.*",
  6714. "php": "^7.1"
  6715. },
  6716. "require-dev": {
  6717. "doctrine/cache": "1.*",
  6718. "phpunit/phpunit": "^7.5"
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "branch-alias": {
  6723. "dev-master": "1.7.x-dev"
  6724. }
  6725. },
  6726. "autoload": {
  6727. "psr-4": {
  6728. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  6729. }
  6730. },
  6731. "notification-url": "https://packagist.org/downloads/",
  6732. "license": [
  6733. "MIT"
  6734. ],
  6735. "authors": [
  6736. {
  6737. "name": "Guilherme Blanco",
  6738. "email": "guilhermeblanco@gmail.com"
  6739. },
  6740. {
  6741. "name": "Roman Borschel",
  6742. "email": "roman@code-factory.org"
  6743. },
  6744. {
  6745. "name": "Benjamin Eberlei",
  6746. "email": "kontakt@beberlei.de"
  6747. },
  6748. {
  6749. "name": "Jonathan Wage",
  6750. "email": "jonwage@gmail.com"
  6751. },
  6752. {
  6753. "name": "Johannes Schmitt",
  6754. "email": "schmittjoh@gmail.com"
  6755. }
  6756. ],
  6757. "description": "Docblock Annotations Parser",
  6758. "homepage": "http://www.doctrine-project.org",
  6759. "keywords": [
  6760. "annotations",
  6761. "docblock",
  6762. "parser"
  6763. ],
  6764. "time": "2019-10-01T18:55:10+00:00"
  6765. },
  6766. {
  6767. "name": "doctrine/instantiator",
  6768. "version": "1.2.0",
  6769. "source": {
  6770. "type": "git",
  6771. "url": "https://github.com/doctrine/instantiator.git",
  6772. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  6773. },
  6774. "dist": {
  6775. "type": "zip",
  6776. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  6777. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  6778. "shasum": ""
  6779. },
  6780. "require": {
  6781. "php": "^7.1"
  6782. },
  6783. "require-dev": {
  6784. "doctrine/coding-standard": "^6.0",
  6785. "ext-pdo": "*",
  6786. "ext-phar": "*",
  6787. "phpbench/phpbench": "^0.13",
  6788. "phpstan/phpstan-phpunit": "^0.11",
  6789. "phpstan/phpstan-shim": "^0.11",
  6790. "phpunit/phpunit": "^7.0"
  6791. },
  6792. "type": "library",
  6793. "extra": {
  6794. "branch-alias": {
  6795. "dev-master": "1.2.x-dev"
  6796. }
  6797. },
  6798. "autoload": {
  6799. "psr-4": {
  6800. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6801. }
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "MIT"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "Marco Pivetta",
  6810. "email": "ocramius@gmail.com",
  6811. "homepage": "http://ocramius.github.com/"
  6812. }
  6813. ],
  6814. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6815. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6816. "keywords": [
  6817. "constructor",
  6818. "instantiate"
  6819. ],
  6820. "time": "2019-03-17T17:37:11+00:00"
  6821. },
  6822. {
  6823. "name": "facade/flare-client-php",
  6824. "version": "1.1.1",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/facade/flare-client-php.git",
  6828. "reference": "608c2be3157b09f1868ca97ea4ddf3434ee83d63"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/608c2be3157b09f1868ca97ea4ddf3434ee83d63",
  6833. "reference": "608c2be3157b09f1868ca97ea4ddf3434ee83d63",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "facade/ignition-contracts": "~1.0",
  6838. "illuminate/pipeline": "~5.5|~5.6|~5.7|~5.8|^6.0",
  6839. "php": "^7.1",
  6840. "symfony/http-foundation": "~3.3|~4.1",
  6841. "symfony/var-dumper": "^3.4|^4.0"
  6842. },
  6843. "require-dev": {
  6844. "larapack/dd": "^1.1",
  6845. "phpunit/phpunit": "^7.5.16",
  6846. "spatie/phpunit-snapshot-assertions": "^2.0"
  6847. },
  6848. "type": "library",
  6849. "extra": {
  6850. "branch-alias": {
  6851. "dev-master": "1.0-dev"
  6852. }
  6853. },
  6854. "autoload": {
  6855. "psr-4": {
  6856. "Facade\\FlareClient\\": "src"
  6857. },
  6858. "files": [
  6859. "src/helpers.php"
  6860. ]
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "MIT"
  6865. ],
  6866. "description": "Send PHP errors to Flare",
  6867. "homepage": "https://github.com/facade/flare-client-php",
  6868. "keywords": [
  6869. "exception",
  6870. "facade",
  6871. "flare",
  6872. "reporting"
  6873. ],
  6874. "time": "2019-10-07T19:15:46+00:00"
  6875. },
  6876. {
  6877. "name": "facade/ignition",
  6878. "version": "1.11.2",
  6879. "source": {
  6880. "type": "git",
  6881. "url": "https://github.com/facade/ignition.git",
  6882. "reference": "862cbc2dfffa1fa28b47822a116e5b2e03b421db"
  6883. },
  6884. "dist": {
  6885. "type": "zip",
  6886. "url": "https://api.github.com/repos/facade/ignition/zipball/862cbc2dfffa1fa28b47822a116e5b2e03b421db",
  6887. "reference": "862cbc2dfffa1fa28b47822a116e5b2e03b421db",
  6888. "shasum": ""
  6889. },
  6890. "require": {
  6891. "ext-json": "*",
  6892. "ext-mbstring": "*",
  6893. "facade/flare-client-php": "^1.1",
  6894. "facade/ignition-contracts": "^1.0",
  6895. "filp/whoops": "^2.4",
  6896. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  6897. "monolog/monolog": "^1.12 || ^2.0",
  6898. "php": "^7.1",
  6899. "scrivo/highlight.php": "^9.15",
  6900. "symfony/console": "^3.4 || ^4.0",
  6901. "symfony/var-dumper": "^3.4 || ^4.0"
  6902. },
  6903. "require-dev": {
  6904. "friendsofphp/php-cs-fixer": "^2.14",
  6905. "mockery/mockery": "^1.2",
  6906. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  6907. },
  6908. "suggest": {
  6909. "laravel/telescope": "^2.0"
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-master": "1.0-dev"
  6915. },
  6916. "laravel": {
  6917. "providers": [
  6918. "Facade\\Ignition\\IgnitionServiceProvider"
  6919. ],
  6920. "aliases": {
  6921. "Flare": "Facade\\Ignition\\Facades\\Flare"
  6922. }
  6923. }
  6924. },
  6925. "autoload": {
  6926. "psr-4": {
  6927. "Facade\\Ignition\\": "src"
  6928. },
  6929. "files": [
  6930. "src/helpers.php"
  6931. ]
  6932. },
  6933. "notification-url": "https://packagist.org/downloads/",
  6934. "license": [
  6935. "MIT"
  6936. ],
  6937. "description": "A beautiful error page for Laravel applications.",
  6938. "homepage": "https://github.com/facade/ignition",
  6939. "keywords": [
  6940. "error",
  6941. "flare",
  6942. "laravel",
  6943. "page"
  6944. ],
  6945. "time": "2019-10-13T10:42:06+00:00"
  6946. },
  6947. {
  6948. "name": "facade/ignition-contracts",
  6949. "version": "1.0.0",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/facade/ignition-contracts.git",
  6953. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  6958. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  6959. "shasum": ""
  6960. },
  6961. "require": {
  6962. "php": "^7.1"
  6963. },
  6964. "type": "library",
  6965. "autoload": {
  6966. "psr-4": {
  6967. "Facade\\IgnitionContracts\\": "src"
  6968. }
  6969. },
  6970. "notification-url": "https://packagist.org/downloads/",
  6971. "license": [
  6972. "MIT"
  6973. ],
  6974. "authors": [
  6975. {
  6976. "name": "Freek Van der Herten",
  6977. "email": "freek@spatie.be",
  6978. "homepage": "https://flareapp.io",
  6979. "role": "Developer"
  6980. }
  6981. ],
  6982. "description": "Solution contracts for Ignition",
  6983. "homepage": "https://github.com/facade/ignition-contracts",
  6984. "keywords": [
  6985. "contracts",
  6986. "flare",
  6987. "ignition"
  6988. ],
  6989. "time": "2019-08-30T14:06:08+00:00"
  6990. },
  6991. {
  6992. "name": "filp/whoops",
  6993. "version": "2.5.0",
  6994. "source": {
  6995. "type": "git",
  6996. "url": "https://github.com/filp/whoops.git",
  6997. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96"
  6998. },
  6999. "dist": {
  7000. "type": "zip",
  7001. "url": "https://api.github.com/repos/filp/whoops/zipball/cde50e6720a39fdacb240159d3eea6865d51fd96",
  7002. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96",
  7003. "shasum": ""
  7004. },
  7005. "require": {
  7006. "php": "^5.5.9 || ^7.0",
  7007. "psr/log": "^1.0.1"
  7008. },
  7009. "require-dev": {
  7010. "mockery/mockery": "^0.9 || ^1.0",
  7011. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7012. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  7013. },
  7014. "suggest": {
  7015. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7016. "whoops/soap": "Formats errors as SOAP responses"
  7017. },
  7018. "type": "library",
  7019. "extra": {
  7020. "branch-alias": {
  7021. "dev-master": "2.2-dev"
  7022. }
  7023. },
  7024. "autoload": {
  7025. "psr-4": {
  7026. "Whoops\\": "src/Whoops/"
  7027. }
  7028. },
  7029. "notification-url": "https://packagist.org/downloads/",
  7030. "license": [
  7031. "MIT"
  7032. ],
  7033. "authors": [
  7034. {
  7035. "name": "Filipe Dobreira",
  7036. "role": "Developer",
  7037. "homepage": "https://github.com/filp"
  7038. }
  7039. ],
  7040. "description": "php error handling for cool kids",
  7041. "homepage": "https://filp.github.io/whoops/",
  7042. "keywords": [
  7043. "error",
  7044. "exception",
  7045. "handling",
  7046. "library",
  7047. "throwable",
  7048. "whoops"
  7049. ],
  7050. "time": "2019-08-07T09:00:00+00:00"
  7051. },
  7052. {
  7053. "name": "friendsofphp/php-cs-fixer",
  7054. "version": "v2.15.3",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  7058. "reference": "705490b0f282f21017d73561e9498d2b622ee34c"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/705490b0f282f21017d73561e9498d2b622ee34c",
  7063. "reference": "705490b0f282f21017d73561e9498d2b622ee34c",
  7064. "shasum": ""
  7065. },
  7066. "require": {
  7067. "composer/semver": "^1.4",
  7068. "composer/xdebug-handler": "^1.2",
  7069. "doctrine/annotations": "^1.2",
  7070. "ext-json": "*",
  7071. "ext-tokenizer": "*",
  7072. "php": "^5.6 || ^7.0",
  7073. "php-cs-fixer/diff": "^1.3",
  7074. "symfony/console": "^3.4.17 || ^4.1.6",
  7075. "symfony/event-dispatcher": "^3.0 || ^4.0",
  7076. "symfony/filesystem": "^3.0 || ^4.0",
  7077. "symfony/finder": "^3.0 || ^4.0",
  7078. "symfony/options-resolver": "^3.0 || ^4.0",
  7079. "symfony/polyfill-php70": "^1.0",
  7080. "symfony/polyfill-php72": "^1.4",
  7081. "symfony/process": "^3.0 || ^4.0",
  7082. "symfony/stopwatch": "^3.0 || ^4.0"
  7083. },
  7084. "require-dev": {
  7085. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  7086. "justinrainbow/json-schema": "^5.0",
  7087. "keradus/cli-executor": "^1.2",
  7088. "mikey179/vfsstream": "^1.6",
  7089. "php-coveralls/php-coveralls": "^2.1",
  7090. "php-cs-fixer/accessible-object": "^1.0",
  7091. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
  7092. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1",
  7093. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
  7094. "phpunitgoodpractices/traits": "^1.8",
  7095. "symfony/phpunit-bridge": "^4.3",
  7096. "symfony/yaml": "^3.0 || ^4.0"
  7097. },
  7098. "suggest": {
  7099. "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
  7100. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  7101. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  7102. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  7103. },
  7104. "bin": [
  7105. "php-cs-fixer"
  7106. ],
  7107. "type": "application",
  7108. "autoload": {
  7109. "psr-4": {
  7110. "PhpCsFixer\\": "src/"
  7111. },
  7112. "classmap": [
  7113. "tests/Test/AbstractFixerTestCase.php",
  7114. "tests/Test/AbstractIntegrationCaseFactory.php",
  7115. "tests/Test/AbstractIntegrationTestCase.php",
  7116. "tests/Test/Assert/AssertTokensTrait.php",
  7117. "tests/Test/IntegrationCase.php",
  7118. "tests/Test/IntegrationCaseFactory.php",
  7119. "tests/Test/IntegrationCaseFactoryInterface.php",
  7120. "tests/Test/InternalIntegrationCaseFactory.php",
  7121. "tests/TestCase.php"
  7122. ]
  7123. },
  7124. "notification-url": "https://packagist.org/downloads/",
  7125. "license": [
  7126. "MIT"
  7127. ],
  7128. "authors": [
  7129. {
  7130. "name": "Fabien Potencier",
  7131. "email": "fabien@symfony.com"
  7132. },
  7133. {
  7134. "name": "Dariusz Rumiński",
  7135. "email": "dariusz.ruminski@gmail.com"
  7136. }
  7137. ],
  7138. "description": "A tool to automatically fix PHP code style",
  7139. "time": "2019-08-31T12:51:54+00:00"
  7140. },
  7141. {
  7142. "name": "fzaninotto/faker",
  7143. "version": "v1.8.0",
  7144. "source": {
  7145. "type": "git",
  7146. "url": "https://github.com/fzaninotto/Faker.git",
  7147. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  7148. },
  7149. "dist": {
  7150. "type": "zip",
  7151. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  7152. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  7153. "shasum": ""
  7154. },
  7155. "require": {
  7156. "php": "^5.3.3 || ^7.0"
  7157. },
  7158. "require-dev": {
  7159. "ext-intl": "*",
  7160. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7161. "squizlabs/php_codesniffer": "^1.5"
  7162. },
  7163. "type": "library",
  7164. "extra": {
  7165. "branch-alias": {
  7166. "dev-master": "1.8-dev"
  7167. }
  7168. },
  7169. "autoload": {
  7170. "psr-4": {
  7171. "Faker\\": "src/Faker/"
  7172. }
  7173. },
  7174. "notification-url": "https://packagist.org/downloads/",
  7175. "license": [
  7176. "MIT"
  7177. ],
  7178. "authors": [
  7179. {
  7180. "name": "François Zaninotto"
  7181. }
  7182. ],
  7183. "description": "Faker is a PHP library that generates fake data for you.",
  7184. "keywords": [
  7185. "data",
  7186. "faker",
  7187. "fixtures"
  7188. ],
  7189. "time": "2018-07-12T10:23:15+00:00"
  7190. },
  7191. {
  7192. "name": "hamcrest/hamcrest-php",
  7193. "version": "v2.0.0",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7197. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  7202. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": "^5.3|^7.0"
  7207. },
  7208. "replace": {
  7209. "cordoval/hamcrest-php": "*",
  7210. "davedevelopment/hamcrest-php": "*",
  7211. "kodova/hamcrest-php": "*"
  7212. },
  7213. "require-dev": {
  7214. "phpunit/php-file-iterator": "1.3.3",
  7215. "phpunit/phpunit": "~4.0",
  7216. "satooshi/php-coveralls": "^1.0"
  7217. },
  7218. "type": "library",
  7219. "extra": {
  7220. "branch-alias": {
  7221. "dev-master": "2.0-dev"
  7222. }
  7223. },
  7224. "autoload": {
  7225. "classmap": [
  7226. "hamcrest"
  7227. ]
  7228. },
  7229. "notification-url": "https://packagist.org/downloads/",
  7230. "license": [
  7231. "BSD"
  7232. ],
  7233. "description": "This is the PHP port of Hamcrest Matchers",
  7234. "keywords": [
  7235. "test"
  7236. ],
  7237. "time": "2016-01-20T08:20:44+00:00"
  7238. },
  7239. {
  7240. "name": "jean85/pretty-package-versions",
  7241. "version": "1.2",
  7242. "source": {
  7243. "type": "git",
  7244. "url": "https://github.com/Jean85/pretty-package-versions.git",
  7245. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48"
  7246. },
  7247. "dist": {
  7248. "type": "zip",
  7249. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  7250. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  7251. "shasum": ""
  7252. },
  7253. "require": {
  7254. "ocramius/package-versions": "^1.2.0",
  7255. "php": "^7.0"
  7256. },
  7257. "require-dev": {
  7258. "phpunit/phpunit": "^6.0"
  7259. },
  7260. "type": "library",
  7261. "extra": {
  7262. "branch-alias": {
  7263. "dev-master": "1.x-dev"
  7264. }
  7265. },
  7266. "autoload": {
  7267. "psr-4": {
  7268. "Jean85\\": "src/"
  7269. }
  7270. },
  7271. "notification-url": "https://packagist.org/downloads/",
  7272. "license": [
  7273. "MIT"
  7274. ],
  7275. "authors": [
  7276. {
  7277. "name": "Alessandro Lai",
  7278. "email": "alessandro.lai85@gmail.com"
  7279. }
  7280. ],
  7281. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  7282. "keywords": [
  7283. "composer",
  7284. "package",
  7285. "release",
  7286. "versions"
  7287. ],
  7288. "time": "2018-06-13T13:22:40+00:00"
  7289. },
  7290. {
  7291. "name": "justinrainbow/json-schema",
  7292. "version": "5.2.9",
  7293. "source": {
  7294. "type": "git",
  7295. "url": "https://github.com/justinrainbow/json-schema.git",
  7296. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  7297. },
  7298. "dist": {
  7299. "type": "zip",
  7300. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  7301. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  7302. "shasum": ""
  7303. },
  7304. "require": {
  7305. "php": ">=5.3.3"
  7306. },
  7307. "require-dev": {
  7308. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7309. "json-schema/json-schema-test-suite": "1.2.0",
  7310. "phpunit/phpunit": "^4.8.35"
  7311. },
  7312. "bin": [
  7313. "bin/validate-json"
  7314. ],
  7315. "type": "library",
  7316. "extra": {
  7317. "branch-alias": {
  7318. "dev-master": "5.0.x-dev"
  7319. }
  7320. },
  7321. "autoload": {
  7322. "psr-4": {
  7323. "JsonSchema\\": "src/JsonSchema/"
  7324. }
  7325. },
  7326. "notification-url": "https://packagist.org/downloads/",
  7327. "license": [
  7328. "MIT"
  7329. ],
  7330. "authors": [
  7331. {
  7332. "name": "Bruno Prieto Reis",
  7333. "email": "bruno.p.reis@gmail.com"
  7334. },
  7335. {
  7336. "name": "Justin Rainbow",
  7337. "email": "justin.rainbow@gmail.com"
  7338. },
  7339. {
  7340. "name": "Igor Wiedler",
  7341. "email": "igor@wiedler.ch"
  7342. },
  7343. {
  7344. "name": "Robert Schönthal",
  7345. "email": "seroscho@googlemail.com"
  7346. }
  7347. ],
  7348. "description": "A library to validate a json schema.",
  7349. "homepage": "https://github.com/justinrainbow/json-schema",
  7350. "keywords": [
  7351. "json",
  7352. "schema"
  7353. ],
  7354. "time": "2019-09-25T14:49:45+00:00"
  7355. },
  7356. {
  7357. "name": "league/container",
  7358. "version": "3.3.0",
  7359. "source": {
  7360. "type": "git",
  7361. "url": "https://github.com/thephpleague/container.git",
  7362. "reference": "235cc528636833fbf0d771ad0e2410d345e1096e"
  7363. },
  7364. "dist": {
  7365. "type": "zip",
  7366. "url": "https://api.github.com/repos/thephpleague/container/zipball/235cc528636833fbf0d771ad0e2410d345e1096e",
  7367. "reference": "235cc528636833fbf0d771ad0e2410d345e1096e",
  7368. "shasum": ""
  7369. },
  7370. "require": {
  7371. "php": "^7.0",
  7372. "psr/container": "^1.0"
  7373. },
  7374. "provide": {
  7375. "psr/container-implementation": "^1.0"
  7376. },
  7377. "replace": {
  7378. "orno/di": "~2.0"
  7379. },
  7380. "require-dev": {
  7381. "phpunit/phpunit": "^6.0",
  7382. "squizlabs/php_codesniffer": "^3.3"
  7383. },
  7384. "type": "library",
  7385. "extra": {
  7386. "branch-alias": {
  7387. "dev-3.x": "3.x-dev",
  7388. "dev-2.x": "2.x-dev",
  7389. "dev-1.x": "1.x-dev"
  7390. }
  7391. },
  7392. "autoload": {
  7393. "psr-4": {
  7394. "League\\Container\\": "src"
  7395. }
  7396. },
  7397. "notification-url": "https://packagist.org/downloads/",
  7398. "license": [
  7399. "MIT"
  7400. ],
  7401. "authors": [
  7402. {
  7403. "name": "Phil Bennett",
  7404. "email": "philipobenito@gmail.com",
  7405. "homepage": "http://www.philipobenito.com",
  7406. "role": "Developer"
  7407. }
  7408. ],
  7409. "description": "A fast and intuitive dependency injection container.",
  7410. "homepage": "https://github.com/thephpleague/container",
  7411. "keywords": [
  7412. "container",
  7413. "dependency",
  7414. "di",
  7415. "injection",
  7416. "league",
  7417. "provider",
  7418. "service"
  7419. ],
  7420. "time": "2019-06-30T10:51:38+00:00"
  7421. },
  7422. {
  7423. "name": "maximebf/debugbar",
  7424. "version": "v1.15.1",
  7425. "source": {
  7426. "type": "git",
  7427. "url": "https://github.com/maximebf/php-debugbar.git",
  7428. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e"
  7429. },
  7430. "dist": {
  7431. "type": "zip",
  7432. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  7433. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  7434. "shasum": ""
  7435. },
  7436. "require": {
  7437. "php": ">=5.6",
  7438. "psr/log": "^1.0",
  7439. "symfony/var-dumper": "^2.6|^3|^4"
  7440. },
  7441. "require-dev": {
  7442. "phpunit/phpunit": "^5"
  7443. },
  7444. "suggest": {
  7445. "kriswallsmith/assetic": "The best way to manage assets",
  7446. "monolog/monolog": "Log using Monolog",
  7447. "predis/predis": "Redis storage"
  7448. },
  7449. "type": "library",
  7450. "extra": {
  7451. "branch-alias": {
  7452. "dev-master": "1.15-dev"
  7453. }
  7454. },
  7455. "autoload": {
  7456. "psr-4": {
  7457. "DebugBar\\": "src/DebugBar/"
  7458. }
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Maxime Bouroumeau-Fuseau",
  7467. "email": "maxime.bouroumeau@gmail.com",
  7468. "homepage": "http://maximebf.com"
  7469. },
  7470. {
  7471. "name": "Barry vd. Heuvel",
  7472. "email": "barryvdh@gmail.com"
  7473. }
  7474. ],
  7475. "description": "Debug bar in the browser for php application",
  7476. "homepage": "https://github.com/maximebf/php-debugbar",
  7477. "keywords": [
  7478. "debug",
  7479. "debugbar"
  7480. ],
  7481. "time": "2019-09-24T14:55:42+00:00"
  7482. },
  7483. {
  7484. "name": "mockery/mockery",
  7485. "version": "1.2.4",
  7486. "source": {
  7487. "type": "git",
  7488. "url": "https://github.com/mockery/mockery.git",
  7489. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405"
  7490. },
  7491. "dist": {
  7492. "type": "zip",
  7493. "url": "https://api.github.com/repos/mockery/mockery/zipball/b3453f75fd23d9fd41685f2148f4abeacabc6405",
  7494. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405",
  7495. "shasum": ""
  7496. },
  7497. "require": {
  7498. "hamcrest/hamcrest-php": "~2.0",
  7499. "lib-pcre": ">=7.0",
  7500. "php": ">=5.6.0"
  7501. },
  7502. "require-dev": {
  7503. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  7504. },
  7505. "type": "library",
  7506. "extra": {
  7507. "branch-alias": {
  7508. "dev-master": "1.2.x-dev"
  7509. }
  7510. },
  7511. "autoload": {
  7512. "psr-0": {
  7513. "Mockery": "library/"
  7514. }
  7515. },
  7516. "notification-url": "https://packagist.org/downloads/",
  7517. "license": [
  7518. "BSD-3-Clause"
  7519. ],
  7520. "authors": [
  7521. {
  7522. "name": "Pádraic Brady",
  7523. "email": "padraic.brady@gmail.com",
  7524. "homepage": "http://blog.astrumfutura.com"
  7525. },
  7526. {
  7527. "name": "Dave Marshall",
  7528. "email": "dave.marshall@atstsolutions.co.uk",
  7529. "homepage": "http://davedevelopment.co.uk"
  7530. }
  7531. ],
  7532. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7533. "homepage": "https://github.com/mockery/mockery",
  7534. "keywords": [
  7535. "BDD",
  7536. "TDD",
  7537. "library",
  7538. "mock",
  7539. "mock objects",
  7540. "mockery",
  7541. "stub",
  7542. "test",
  7543. "test double",
  7544. "testing"
  7545. ],
  7546. "time": "2019-09-30T08:30:27+00:00"
  7547. },
  7548. {
  7549. "name": "myclabs/deep-copy",
  7550. "version": "1.9.3",
  7551. "source": {
  7552. "type": "git",
  7553. "url": "https://github.com/myclabs/DeepCopy.git",
  7554. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea"
  7555. },
  7556. "dist": {
  7557. "type": "zip",
  7558. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea",
  7559. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea",
  7560. "shasum": ""
  7561. },
  7562. "require": {
  7563. "php": "^7.1"
  7564. },
  7565. "replace": {
  7566. "myclabs/deep-copy": "self.version"
  7567. },
  7568. "require-dev": {
  7569. "doctrine/collections": "^1.0",
  7570. "doctrine/common": "^2.6",
  7571. "phpunit/phpunit": "^7.1"
  7572. },
  7573. "type": "library",
  7574. "autoload": {
  7575. "psr-4": {
  7576. "DeepCopy\\": "src/DeepCopy/"
  7577. },
  7578. "files": [
  7579. "src/DeepCopy/deep_copy.php"
  7580. ]
  7581. },
  7582. "notification-url": "https://packagist.org/downloads/",
  7583. "license": [
  7584. "MIT"
  7585. ],
  7586. "description": "Create deep copies (clones) of your objects",
  7587. "keywords": [
  7588. "clone",
  7589. "copy",
  7590. "duplicate",
  7591. "object",
  7592. "object graph"
  7593. ],
  7594. "time": "2019-08-09T12:45:53+00:00"
  7595. },
  7596. {
  7597. "name": "nette/finder",
  7598. "version": "v2.5.1",
  7599. "source": {
  7600. "type": "git",
  7601. "url": "https://github.com/nette/finder.git",
  7602. "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe"
  7603. },
  7604. "dist": {
  7605. "type": "zip",
  7606. "url": "https://api.github.com/repos/nette/finder/zipball/14164e1ddd69e9c5f627ff82a10874b3f5bba5fe",
  7607. "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe",
  7608. "shasum": ""
  7609. },
  7610. "require": {
  7611. "nette/utils": "^2.4 || ~3.0.0",
  7612. "php": ">=7.1"
  7613. },
  7614. "conflict": {
  7615. "nette/nette": "<2.2"
  7616. },
  7617. "require-dev": {
  7618. "nette/tester": "^2.0",
  7619. "tracy/tracy": "^2.3"
  7620. },
  7621. "type": "library",
  7622. "extra": {
  7623. "branch-alias": {
  7624. "dev-master": "2.5-dev"
  7625. }
  7626. },
  7627. "autoload": {
  7628. "classmap": [
  7629. "src/"
  7630. ]
  7631. },
  7632. "notification-url": "https://packagist.org/downloads/",
  7633. "license": [
  7634. "BSD-3-Clause",
  7635. "GPL-2.0",
  7636. "GPL-3.0"
  7637. ],
  7638. "authors": [
  7639. {
  7640. "name": "David Grudl",
  7641. "homepage": "https://davidgrudl.com"
  7642. },
  7643. {
  7644. "name": "Nette Community",
  7645. "homepage": "https://nette.org/contributors"
  7646. }
  7647. ],
  7648. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  7649. "homepage": "https://nette.org",
  7650. "keywords": [
  7651. "filesystem",
  7652. "glob",
  7653. "iterator",
  7654. "nette"
  7655. ],
  7656. "time": "2019-07-11T18:02:17+00:00"
  7657. },
  7658. {
  7659. "name": "nette/robot-loader",
  7660. "version": "v3.2.0",
  7661. "source": {
  7662. "type": "git",
  7663. "url": "https://github.com/nette/robot-loader.git",
  7664. "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c"
  7665. },
  7666. "dist": {
  7667. "type": "zip",
  7668. "url": "https://api.github.com/repos/nette/robot-loader/zipball/0712a0e39ae7956d6a94c0ab6ad41aa842544b5c",
  7669. "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c",
  7670. "shasum": ""
  7671. },
  7672. "require": {
  7673. "ext-tokenizer": "*",
  7674. "nette/finder": "^2.5",
  7675. "nette/utils": "^3.0",
  7676. "php": ">=7.1"
  7677. },
  7678. "require-dev": {
  7679. "nette/tester": "^2.0",
  7680. "tracy/tracy": "^2.3"
  7681. },
  7682. "type": "library",
  7683. "extra": {
  7684. "branch-alias": {
  7685. "dev-master": "3.2-dev"
  7686. }
  7687. },
  7688. "autoload": {
  7689. "classmap": [
  7690. "src/"
  7691. ]
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "BSD-3-Clause",
  7696. "GPL-2.0",
  7697. "GPL-3.0"
  7698. ],
  7699. "authors": [
  7700. {
  7701. "name": "David Grudl",
  7702. "homepage": "https://davidgrudl.com"
  7703. },
  7704. {
  7705. "name": "Nette Community",
  7706. "homepage": "https://nette.org/contributors"
  7707. }
  7708. ],
  7709. "description": "? Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  7710. "homepage": "https://nette.org",
  7711. "keywords": [
  7712. "autoload",
  7713. "class",
  7714. "interface",
  7715. "nette",
  7716. "trait"
  7717. ],
  7718. "time": "2019-03-08T21:57:24+00:00"
  7719. },
  7720. {
  7721. "name": "nette/utils",
  7722. "version": "v3.0.1",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/nette/utils.git",
  7726. "reference": "bd961f49b211997202bda1d0fbc410905be370d4"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/nette/utils/zipball/bd961f49b211997202bda1d0fbc410905be370d4",
  7731. "reference": "bd961f49b211997202bda1d0fbc410905be370d4",
  7732. "shasum": ""
  7733. },
  7734. "require": {
  7735. "php": ">=7.1"
  7736. },
  7737. "require-dev": {
  7738. "nette/tester": "~2.0",
  7739. "tracy/tracy": "^2.3"
  7740. },
  7741. "suggest": {
  7742. "ext-gd": "to use Image",
  7743. "ext-iconv": "to use Strings::webalize() and toAscii()",
  7744. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  7745. "ext-json": "to use Nette\\Utils\\Json",
  7746. "ext-mbstring": "to use Strings::lower() etc...",
  7747. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  7748. },
  7749. "type": "library",
  7750. "extra": {
  7751. "branch-alias": {
  7752. "dev-master": "3.0-dev"
  7753. }
  7754. },
  7755. "autoload": {
  7756. "classmap": [
  7757. "src/"
  7758. ]
  7759. },
  7760. "notification-url": "https://packagist.org/downloads/",
  7761. "license": [
  7762. "BSD-3-Clause",
  7763. "GPL-2.0",
  7764. "GPL-3.0"
  7765. ],
  7766. "authors": [
  7767. {
  7768. "name": "David Grudl",
  7769. "homepage": "https://davidgrudl.com"
  7770. },
  7771. {
  7772. "name": "Nette Community",
  7773. "homepage": "https://nette.org/contributors"
  7774. }
  7775. ],
  7776. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  7777. "homepage": "https://nette.org",
  7778. "keywords": [
  7779. "array",
  7780. "core",
  7781. "datetime",
  7782. "images",
  7783. "json",
  7784. "nette",
  7785. "paginator",
  7786. "password",
  7787. "slugify",
  7788. "string",
  7789. "unicode",
  7790. "utf-8",
  7791. "utility",
  7792. "validation"
  7793. ],
  7794. "time": "2019-03-22T01:00:30+00:00"
  7795. },
  7796. {
  7797. "name": "nunomaduro/collision",
  7798. "version": "v3.0.1",
  7799. "source": {
  7800. "type": "git",
  7801. "url": "https://github.com/nunomaduro/collision.git",
  7802. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  7803. },
  7804. "dist": {
  7805. "type": "zip",
  7806. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  7807. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  7808. "shasum": ""
  7809. },
  7810. "require": {
  7811. "filp/whoops": "^2.1.4",
  7812. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7813. "php": "^7.1",
  7814. "symfony/console": "~2.8|~3.3|~4.0"
  7815. },
  7816. "require-dev": {
  7817. "laravel/framework": "5.8.*",
  7818. "nunomaduro/larastan": "^0.3.0",
  7819. "phpstan/phpstan": "^0.11",
  7820. "phpunit/phpunit": "~8.0"
  7821. },
  7822. "type": "library",
  7823. "extra": {
  7824. "laravel": {
  7825. "providers": [
  7826. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7827. ]
  7828. }
  7829. },
  7830. "autoload": {
  7831. "psr-4": {
  7832. "NunoMaduro\\Collision\\": "src/"
  7833. }
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "MIT"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Nuno Maduro",
  7842. "email": "enunomaduro@gmail.com"
  7843. }
  7844. ],
  7845. "description": "Cli error handling for console/command-line PHP applications.",
  7846. "keywords": [
  7847. "artisan",
  7848. "cli",
  7849. "command-line",
  7850. "console",
  7851. "error",
  7852. "handling",
  7853. "laravel",
  7854. "laravel-zero",
  7855. "php",
  7856. "symfony"
  7857. ],
  7858. "time": "2019-03-07T21:35:13+00:00"
  7859. },
  7860. {
  7861. "name": "nunomaduro/phpinsights",
  7862. "version": "v1.9.0",
  7863. "source": {
  7864. "type": "git",
  7865. "url": "https://github.com/nunomaduro/phpinsights.git",
  7866. "reference": "7453929847df79aeaacddc2753186aa6b16cbdb4"
  7867. },
  7868. "dist": {
  7869. "type": "zip",
  7870. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/7453929847df79aeaacddc2753186aa6b16cbdb4",
  7871. "reference": "7453929847df79aeaacddc2753186aa6b16cbdb4",
  7872. "shasum": ""
  7873. },
  7874. "require": {
  7875. "composer/composer": "^1.7",
  7876. "ext-iconv": "*",
  7877. "ext-json": "*",
  7878. "league/container": "^3.2",
  7879. "object-calisthenics/phpcs-calisthenics-rules": "^3.5",
  7880. "php": "^7.2",
  7881. "phploc/phploc": "^5.0",
  7882. "sensiolabs/security-checker": "^6.0",
  7883. "symfony/console": "^4.2",
  7884. "symfony/finder": "^4.2",
  7885. "symplify/coding-standard": "^6.0.4",
  7886. "symplify/easy-coding-standard": "^6.0.4",
  7887. "symplify/package-builder": "^6.0.4"
  7888. },
  7889. "require-dev": {
  7890. "illuminate/console": "^5.8",
  7891. "illuminate/support": "^5.8",
  7892. "localheinz/phpstan-rules": "^0.10.0",
  7893. "mockery/mockery": "^1.0",
  7894. "phpstan/phpstan": "^0.11.5",
  7895. "phpstan/phpstan-strict-rules": "^0.11",
  7896. "phpunit/phpunit": "^8.0",
  7897. "roave/no-floaters": "^1.1",
  7898. "symfony/var-dumper": "^4.2",
  7899. "thecodingmachine/phpstan-strict-rules": "^0.11.0"
  7900. },
  7901. "bin": [
  7902. "bin/phpinsights"
  7903. ],
  7904. "type": "library",
  7905. "extra": {
  7906. "laravel": {
  7907. "providers": [
  7908. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7909. ]
  7910. }
  7911. },
  7912. "autoload": {
  7913. "psr-4": {
  7914. "NunoMaduro\\PhpInsights\\": "src"
  7915. }
  7916. },
  7917. "notification-url": "https://packagist.org/downloads/",
  7918. "license": [
  7919. "MIT"
  7920. ],
  7921. "authors": [
  7922. {
  7923. "name": "Nuno Maduro",
  7924. "email": "enunomaduro@gmail.com"
  7925. }
  7926. ],
  7927. "description": "Instant PHP quality checks from your console.",
  7928. "keywords": [
  7929. "Insights",
  7930. "code",
  7931. "console",
  7932. "php",
  7933. "quality",
  7934. "source"
  7935. ],
  7936. "time": "2019-08-20T14:41:42+00:00"
  7937. },
  7938. {
  7939. "name": "object-calisthenics/phpcs-calisthenics-rules",
  7940. "version": "v3.5.1",
  7941. "source": {
  7942. "type": "git",
  7943. "url": "https://github.com/object-calisthenics/phpcs-calisthenics-rules.git",
  7944. "reference": "e4599d8c2a4a916007f57043de13bca910f8954d"
  7945. },
  7946. "dist": {
  7947. "type": "zip",
  7948. "url": "https://api.github.com/repos/object-calisthenics/phpcs-calisthenics-rules/zipball/e4599d8c2a4a916007f57043de13bca910f8954d",
  7949. "reference": "e4599d8c2a4a916007f57043de13bca910f8954d",
  7950. "shasum": ""
  7951. },
  7952. "require": {
  7953. "nette/utils": "^2.5|^3.0",
  7954. "php": "^7.1",
  7955. "slevomat/coding-standard": "^5.0",
  7956. "squizlabs/php_codesniffer": "^3.4"
  7957. },
  7958. "require-dev": {
  7959. "phpstan/phpstan": "^0.11.4",
  7960. "phpunit/phpunit": "^7.5|^8.0",
  7961. "symplify/changelog-linker": "^5.4",
  7962. "symplify/coding-standard": "^5.4",
  7963. "symplify/easy-coding-standard-tester": "^5.4",
  7964. "tracy/tracy": "^2.5"
  7965. },
  7966. "type": "phpcodesniffer-standard",
  7967. "extra": {
  7968. "branch-alias": {
  7969. "dev-master": "3.4-dev"
  7970. }
  7971. },
  7972. "autoload": {
  7973. "psr-4": {
  7974. "ObjectCalisthenics\\": "src/ObjectCalisthenics"
  7975. }
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "description": "PHP CodeSniffer Object Calisthenics rules/sniffs",
  7982. "time": "2019-05-15T17:09:16+00:00"
  7983. },
  7984. {
  7985. "name": "ocramius/package-versions",
  7986. "version": "1.5.1",
  7987. "source": {
  7988. "type": "git",
  7989. "url": "https://github.com/Ocramius/PackageVersions.git",
  7990. "reference": "1d32342b8c1eb27353c8887c366147b4c2da673c"
  7991. },
  7992. "dist": {
  7993. "type": "zip",
  7994. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/1d32342b8c1eb27353c8887c366147b4c2da673c",
  7995. "reference": "1d32342b8c1eb27353c8887c366147b4c2da673c",
  7996. "shasum": ""
  7997. },
  7998. "require": {
  7999. "composer-plugin-api": "^1.0.0",
  8000. "php": "^7.3.0"
  8001. },
  8002. "require-dev": {
  8003. "composer/composer": "^1.8.6",
  8004. "doctrine/coding-standard": "^6.0.0",
  8005. "ext-zip": "*",
  8006. "infection/infection": "^0.13.4",
  8007. "phpunit/phpunit": "^8.2.5",
  8008. "vimeo/psalm": "^3.4.9"
  8009. },
  8010. "type": "composer-plugin",
  8011. "extra": {
  8012. "class": "PackageVersions\\Installer",
  8013. "branch-alias": {
  8014. "dev-master": "1.6.x-dev"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "psr-4": {
  8019. "PackageVersions\\": "src/PackageVersions"
  8020. }
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "MIT"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Marco Pivetta",
  8029. "email": "ocramius@gmail.com"
  8030. }
  8031. ],
  8032. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  8033. "time": "2019-07-17T15:49:50+00:00"
  8034. },
  8035. {
  8036. "name": "phar-io/manifest",
  8037. "version": "1.0.3",
  8038. "source": {
  8039. "type": "git",
  8040. "url": "https://github.com/phar-io/manifest.git",
  8041. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8042. },
  8043. "dist": {
  8044. "type": "zip",
  8045. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8046. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8047. "shasum": ""
  8048. },
  8049. "require": {
  8050. "ext-dom": "*",
  8051. "ext-phar": "*",
  8052. "phar-io/version": "^2.0",
  8053. "php": "^5.6 || ^7.0"
  8054. },
  8055. "type": "library",
  8056. "extra": {
  8057. "branch-alias": {
  8058. "dev-master": "1.0.x-dev"
  8059. }
  8060. },
  8061. "autoload": {
  8062. "classmap": [
  8063. "src/"
  8064. ]
  8065. },
  8066. "notification-url": "https://packagist.org/downloads/",
  8067. "license": [
  8068. "BSD-3-Clause"
  8069. ],
  8070. "authors": [
  8071. {
  8072. "name": "Arne Blankerts",
  8073. "email": "arne@blankerts.de",
  8074. "role": "Developer"
  8075. },
  8076. {
  8077. "name": "Sebastian Heuer",
  8078. "email": "sebastian@phpeople.de",
  8079. "role": "Developer"
  8080. },
  8081. {
  8082. "name": "Sebastian Bergmann",
  8083. "email": "sebastian@phpunit.de",
  8084. "role": "Developer"
  8085. }
  8086. ],
  8087. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8088. "time": "2018-07-08T19:23:20+00:00"
  8089. },
  8090. {
  8091. "name": "phar-io/version",
  8092. "version": "2.0.1",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/phar-io/version.git",
  8096. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8101. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": "^5.6 || ^7.0"
  8106. },
  8107. "type": "library",
  8108. "autoload": {
  8109. "classmap": [
  8110. "src/"
  8111. ]
  8112. },
  8113. "notification-url": "https://packagist.org/downloads/",
  8114. "license": [
  8115. "BSD-3-Clause"
  8116. ],
  8117. "authors": [
  8118. {
  8119. "name": "Arne Blankerts",
  8120. "email": "arne@blankerts.de",
  8121. "role": "Developer"
  8122. },
  8123. {
  8124. "name": "Sebastian Heuer",
  8125. "email": "sebastian@phpeople.de",
  8126. "role": "Developer"
  8127. },
  8128. {
  8129. "name": "Sebastian Bergmann",
  8130. "email": "sebastian@phpunit.de",
  8131. "role": "Developer"
  8132. }
  8133. ],
  8134. "description": "Library for handling version information and constraints",
  8135. "time": "2018-07-08T19:19:57+00:00"
  8136. },
  8137. {
  8138. "name": "php-cs-fixer/diff",
  8139. "version": "v1.3.0",
  8140. "source": {
  8141. "type": "git",
  8142. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  8143. "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
  8144. },
  8145. "dist": {
  8146. "type": "zip",
  8147. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
  8148. "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
  8149. "shasum": ""
  8150. },
  8151. "require": {
  8152. "php": "^5.6 || ^7.0"
  8153. },
  8154. "require-dev": {
  8155. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  8156. "symfony/process": "^3.3"
  8157. },
  8158. "type": "library",
  8159. "autoload": {
  8160. "classmap": [
  8161. "src/"
  8162. ]
  8163. },
  8164. "notification-url": "https://packagist.org/downloads/",
  8165. "license": [
  8166. "BSD-3-Clause"
  8167. ],
  8168. "authors": [
  8169. {
  8170. "name": "Kore Nordmann",
  8171. "email": "mail@kore-nordmann.de"
  8172. },
  8173. {
  8174. "name": "Sebastian Bergmann",
  8175. "email": "sebastian@phpunit.de"
  8176. },
  8177. {
  8178. "name": "SpacePossum"
  8179. }
  8180. ],
  8181. "description": "sebastian/diff v2 backport support for PHP5.6",
  8182. "homepage": "https://github.com/PHP-CS-Fixer",
  8183. "keywords": [
  8184. "diff"
  8185. ],
  8186. "time": "2018-02-15T16:58:55+00:00"
  8187. },
  8188. {
  8189. "name": "phpdocumentor/reflection-common",
  8190. "version": "2.0.0",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8194. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  8199. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "php": ">=7.1"
  8204. },
  8205. "require-dev": {
  8206. "phpunit/phpunit": "~6"
  8207. },
  8208. "type": "library",
  8209. "extra": {
  8210. "branch-alias": {
  8211. "dev-master": "2.x-dev"
  8212. }
  8213. },
  8214. "autoload": {
  8215. "psr-4": {
  8216. "phpDocumentor\\Reflection\\": "src/"
  8217. }
  8218. },
  8219. "notification-url": "https://packagist.org/downloads/",
  8220. "license": [
  8221. "MIT"
  8222. ],
  8223. "authors": [
  8224. {
  8225. "name": "Jaap van Otterdijk",
  8226. "email": "opensource@ijaap.nl"
  8227. }
  8228. ],
  8229. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8230. "homepage": "http://www.phpdoc.org",
  8231. "keywords": [
  8232. "FQSEN",
  8233. "phpDocumentor",
  8234. "phpdoc",
  8235. "reflection",
  8236. "static analysis"
  8237. ],
  8238. "time": "2018-08-07T13:53:10+00:00"
  8239. },
  8240. {
  8241. "name": "phpdocumentor/reflection-docblock",
  8242. "version": "4.3.2",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8246. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  8251. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  8252. "shasum": ""
  8253. },
  8254. "require": {
  8255. "php": "^7.0",
  8256. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  8257. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  8258. "webmozart/assert": "^1.0"
  8259. },
  8260. "require-dev": {
  8261. "doctrine/instantiator": "^1.0.5",
  8262. "mockery/mockery": "^1.0",
  8263. "phpunit/phpunit": "^6.4"
  8264. },
  8265. "type": "library",
  8266. "extra": {
  8267. "branch-alias": {
  8268. "dev-master": "4.x-dev"
  8269. }
  8270. },
  8271. "autoload": {
  8272. "psr-4": {
  8273. "phpDocumentor\\Reflection\\": [
  8274. "src/"
  8275. ]
  8276. }
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "MIT"
  8281. ],
  8282. "authors": [
  8283. {
  8284. "name": "Mike van Riel",
  8285. "email": "me@mikevanriel.com"
  8286. }
  8287. ],
  8288. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8289. "time": "2019-09-12T14:27:41+00:00"
  8290. },
  8291. {
  8292. "name": "phpdocumentor/type-resolver",
  8293. "version": "1.0.1",
  8294. "source": {
  8295. "type": "git",
  8296. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8297. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  8298. },
  8299. "dist": {
  8300. "type": "zip",
  8301. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  8302. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  8303. "shasum": ""
  8304. },
  8305. "require": {
  8306. "php": "^7.1",
  8307. "phpdocumentor/reflection-common": "^2.0"
  8308. },
  8309. "require-dev": {
  8310. "ext-tokenizer": "^7.1",
  8311. "mockery/mockery": "~1",
  8312. "phpunit/phpunit": "^7.0"
  8313. },
  8314. "type": "library",
  8315. "extra": {
  8316. "branch-alias": {
  8317. "dev-master": "1.x-dev"
  8318. }
  8319. },
  8320. "autoload": {
  8321. "psr-4": {
  8322. "phpDocumentor\\Reflection\\": "src"
  8323. }
  8324. },
  8325. "notification-url": "https://packagist.org/downloads/",
  8326. "license": [
  8327. "MIT"
  8328. ],
  8329. "authors": [
  8330. {
  8331. "name": "Mike van Riel",
  8332. "email": "me@mikevanriel.com"
  8333. }
  8334. ],
  8335. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8336. "time": "2019-08-22T18:11:29+00:00"
  8337. },
  8338. {
  8339. "name": "phploc/phploc",
  8340. "version": "5.0.0",
  8341. "source": {
  8342. "type": "git",
  8343. "url": "https://github.com/sebastianbergmann/phploc.git",
  8344. "reference": "5b714ccb7cb8ca29ccf9caf6eb1aed0131d3a884"
  8345. },
  8346. "dist": {
  8347. "type": "zip",
  8348. "url": "https://api.github.com/repos/sebastianbergmann/phploc/zipball/5b714ccb7cb8ca29ccf9caf6eb1aed0131d3a884",
  8349. "reference": "5b714ccb7cb8ca29ccf9caf6eb1aed0131d3a884",
  8350. "shasum": ""
  8351. },
  8352. "require": {
  8353. "php": "^7.2",
  8354. "sebastian/finder-facade": "^1.1",
  8355. "sebastian/version": "^2.0",
  8356. "symfony/console": "^4.0"
  8357. },
  8358. "bin": [
  8359. "phploc"
  8360. ],
  8361. "type": "library",
  8362. "extra": {
  8363. "branch-alias": {
  8364. "dev-master": "5.0-dev"
  8365. }
  8366. },
  8367. "autoload": {
  8368. "classmap": [
  8369. "src/"
  8370. ]
  8371. },
  8372. "notification-url": "https://packagist.org/downloads/",
  8373. "license": [
  8374. "BSD-3-Clause"
  8375. ],
  8376. "authors": [
  8377. {
  8378. "name": "Sebastian Bergmann",
  8379. "email": "sebastian@phpunit.de",
  8380. "role": "lead"
  8381. }
  8382. ],
  8383. "description": "A tool for quickly measuring the size of a PHP project.",
  8384. "homepage": "https://github.com/sebastianbergmann/phploc",
  8385. "time": "2019-03-16T10:41:19+00:00"
  8386. },
  8387. {
  8388. "name": "phpspec/prophecy",
  8389. "version": "1.9.0",
  8390. "source": {
  8391. "type": "git",
  8392. "url": "https://github.com/phpspec/prophecy.git",
  8393. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  8394. },
  8395. "dist": {
  8396. "type": "zip",
  8397. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  8398. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  8399. "shasum": ""
  8400. },
  8401. "require": {
  8402. "doctrine/instantiator": "^1.0.2",
  8403. "php": "^5.3|^7.0",
  8404. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  8405. "sebastian/comparator": "^1.1|^2.0|^3.0",
  8406. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  8407. },
  8408. "require-dev": {
  8409. "phpspec/phpspec": "^2.5|^3.2",
  8410. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "branch-alias": {
  8415. "dev-master": "1.8.x-dev"
  8416. }
  8417. },
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Prophecy\\": "src/Prophecy"
  8421. }
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "MIT"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Konstantin Kudryashov",
  8430. "email": "ever.zet@gmail.com",
  8431. "homepage": "http://everzet.com"
  8432. },
  8433. {
  8434. "name": "Marcello Duarte",
  8435. "email": "marcello.duarte@gmail.com"
  8436. }
  8437. ],
  8438. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8439. "homepage": "https://github.com/phpspec/prophecy",
  8440. "keywords": [
  8441. "Double",
  8442. "Dummy",
  8443. "fake",
  8444. "mock",
  8445. "spy",
  8446. "stub"
  8447. ],
  8448. "time": "2019-10-03T11:07:50+00:00"
  8449. },
  8450. {
  8451. "name": "phpstan/phpdoc-parser",
  8452. "version": "0.3.5",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/phpstan/phpdoc-parser.git",
  8456. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  8461. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  8462. "shasum": ""
  8463. },
  8464. "require": {
  8465. "php": "~7.1"
  8466. },
  8467. "require-dev": {
  8468. "consistence/coding-standard": "^3.5",
  8469. "jakub-onderka/php-parallel-lint": "^0.9.2",
  8470. "phing/phing": "^2.16.0",
  8471. "phpstan/phpstan": "^0.10",
  8472. "phpunit/phpunit": "^6.3",
  8473. "slevomat/coding-standard": "^4.7.2",
  8474. "squizlabs/php_codesniffer": "^3.3.2",
  8475. "symfony/process": "^3.4 || ^4.0"
  8476. },
  8477. "type": "library",
  8478. "extra": {
  8479. "branch-alias": {
  8480. "dev-master": "0.3-dev"
  8481. }
  8482. },
  8483. "autoload": {
  8484. "psr-4": {
  8485. "PHPStan\\PhpDocParser\\": [
  8486. "src/"
  8487. ]
  8488. }
  8489. },
  8490. "notification-url": "https://packagist.org/downloads/",
  8491. "license": [
  8492. "MIT"
  8493. ],
  8494. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  8495. "time": "2019-06-07T19:13:52+00:00"
  8496. },
  8497. {
  8498. "name": "phpunit/php-code-coverage",
  8499. "version": "7.0.8",
  8500. "source": {
  8501. "type": "git",
  8502. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8503. "reference": "aa0d179a13284c7420fc281fc32750e6cc7c9e2f"
  8504. },
  8505. "dist": {
  8506. "type": "zip",
  8507. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa0d179a13284c7420fc281fc32750e6cc7c9e2f",
  8508. "reference": "aa0d179a13284c7420fc281fc32750e6cc7c9e2f",
  8509. "shasum": ""
  8510. },
  8511. "require": {
  8512. "ext-dom": "*",
  8513. "ext-xmlwriter": "*",
  8514. "php": "^7.2",
  8515. "phpunit/php-file-iterator": "^2.0.2",
  8516. "phpunit/php-text-template": "^1.2.1",
  8517. "phpunit/php-token-stream": "^3.1.1",
  8518. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8519. "sebastian/environment": "^4.2.2",
  8520. "sebastian/version": "^2.0.1",
  8521. "theseer/tokenizer": "^1.1.3"
  8522. },
  8523. "require-dev": {
  8524. "phpunit/phpunit": "^8.2.2"
  8525. },
  8526. "suggest": {
  8527. "ext-xdebug": "^2.7.2"
  8528. },
  8529. "type": "library",
  8530. "extra": {
  8531. "branch-alias": {
  8532. "dev-master": "7.0-dev"
  8533. }
  8534. },
  8535. "autoload": {
  8536. "classmap": [
  8537. "src/"
  8538. ]
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "BSD-3-Clause"
  8543. ],
  8544. "authors": [
  8545. {
  8546. "name": "Sebastian Bergmann",
  8547. "email": "sebastian@phpunit.de",
  8548. "role": "lead"
  8549. }
  8550. ],
  8551. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8552. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8553. "keywords": [
  8554. "coverage",
  8555. "testing",
  8556. "xunit"
  8557. ],
  8558. "time": "2019-09-17T06:24:36+00:00"
  8559. },
  8560. {
  8561. "name": "phpunit/php-file-iterator",
  8562. "version": "2.0.2",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8566. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  8571. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": "^7.1"
  8576. },
  8577. "require-dev": {
  8578. "phpunit/phpunit": "^7.1"
  8579. },
  8580. "type": "library",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-master": "2.0.x-dev"
  8584. }
  8585. },
  8586. "autoload": {
  8587. "classmap": [
  8588. "src/"
  8589. ]
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "BSD-3-Clause"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Sebastian Bergmann",
  8598. "email": "sebastian@phpunit.de",
  8599. "role": "lead"
  8600. }
  8601. ],
  8602. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8603. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8604. "keywords": [
  8605. "filesystem",
  8606. "iterator"
  8607. ],
  8608. "time": "2018-09-13T20:33:42+00:00"
  8609. },
  8610. {
  8611. "name": "phpunit/php-text-template",
  8612. "version": "1.2.1",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8616. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8621. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": ">=5.3.3"
  8626. },
  8627. "type": "library",
  8628. "autoload": {
  8629. "classmap": [
  8630. "src/"
  8631. ]
  8632. },
  8633. "notification-url": "https://packagist.org/downloads/",
  8634. "license": [
  8635. "BSD-3-Clause"
  8636. ],
  8637. "authors": [
  8638. {
  8639. "name": "Sebastian Bergmann",
  8640. "email": "sebastian@phpunit.de",
  8641. "role": "lead"
  8642. }
  8643. ],
  8644. "description": "Simple template engine.",
  8645. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8646. "keywords": [
  8647. "template"
  8648. ],
  8649. "time": "2015-06-21T13:50:34+00:00"
  8650. },
  8651. {
  8652. "name": "phpunit/php-timer",
  8653. "version": "2.1.2",
  8654. "source": {
  8655. "type": "git",
  8656. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8657. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  8658. },
  8659. "dist": {
  8660. "type": "zip",
  8661. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  8662. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  8663. "shasum": ""
  8664. },
  8665. "require": {
  8666. "php": "^7.1"
  8667. },
  8668. "require-dev": {
  8669. "phpunit/phpunit": "^7.0"
  8670. },
  8671. "type": "library",
  8672. "extra": {
  8673. "branch-alias": {
  8674. "dev-master": "2.1-dev"
  8675. }
  8676. },
  8677. "autoload": {
  8678. "classmap": [
  8679. "src/"
  8680. ]
  8681. },
  8682. "notification-url": "https://packagist.org/downloads/",
  8683. "license": [
  8684. "BSD-3-Clause"
  8685. ],
  8686. "authors": [
  8687. {
  8688. "name": "Sebastian Bergmann",
  8689. "email": "sebastian@phpunit.de",
  8690. "role": "lead"
  8691. }
  8692. ],
  8693. "description": "Utility class for timing",
  8694. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8695. "keywords": [
  8696. "timer"
  8697. ],
  8698. "time": "2019-06-07T04:22:29+00:00"
  8699. },
  8700. {
  8701. "name": "phpunit/php-token-stream",
  8702. "version": "3.1.1",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8706. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  8711. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  8712. "shasum": ""
  8713. },
  8714. "require": {
  8715. "ext-tokenizer": "*",
  8716. "php": "^7.1"
  8717. },
  8718. "require-dev": {
  8719. "phpunit/phpunit": "^7.0"
  8720. },
  8721. "type": "library",
  8722. "extra": {
  8723. "branch-alias": {
  8724. "dev-master": "3.1-dev"
  8725. }
  8726. },
  8727. "autoload": {
  8728. "classmap": [
  8729. "src/"
  8730. ]
  8731. },
  8732. "notification-url": "https://packagist.org/downloads/",
  8733. "license": [
  8734. "BSD-3-Clause"
  8735. ],
  8736. "authors": [
  8737. {
  8738. "name": "Sebastian Bergmann",
  8739. "email": "sebastian@phpunit.de"
  8740. }
  8741. ],
  8742. "description": "Wrapper around PHP's tokenizer extension.",
  8743. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8744. "keywords": [
  8745. "tokenizer"
  8746. ],
  8747. "time": "2019-09-17T06:23:10+00:00"
  8748. },
  8749. {
  8750. "name": "phpunit/phpunit",
  8751. "version": "8.4.1",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8755. "reference": "366a4a0f2b971fd43b7c351d621e8dd7d7131869"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/366a4a0f2b971fd43b7c351d621e8dd7d7131869",
  8760. "reference": "366a4a0f2b971fd43b7c351d621e8dd7d7131869",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "doctrine/instantiator": "^1.2.0",
  8765. "ext-dom": "*",
  8766. "ext-json": "*",
  8767. "ext-libxml": "*",
  8768. "ext-mbstring": "*",
  8769. "ext-xml": "*",
  8770. "ext-xmlwriter": "*",
  8771. "myclabs/deep-copy": "^1.9.1",
  8772. "phar-io/manifest": "^1.0.3",
  8773. "phar-io/version": "^2.0.1",
  8774. "php": "^7.2",
  8775. "phpspec/prophecy": "^1.8.1",
  8776. "phpunit/php-code-coverage": "^7.0.7",
  8777. "phpunit/php-file-iterator": "^2.0.2",
  8778. "phpunit/php-text-template": "^1.2.1",
  8779. "phpunit/php-timer": "^2.1.2",
  8780. "sebastian/comparator": "^3.0.2",
  8781. "sebastian/diff": "^3.0.2",
  8782. "sebastian/environment": "^4.2.2",
  8783. "sebastian/exporter": "^3.1.1",
  8784. "sebastian/global-state": "^3.0.0",
  8785. "sebastian/object-enumerator": "^3.0.3",
  8786. "sebastian/resource-operations": "^2.0.1",
  8787. "sebastian/type": "^1.1.3",
  8788. "sebastian/version": "^2.0.1"
  8789. },
  8790. "require-dev": {
  8791. "ext-pdo": "*"
  8792. },
  8793. "suggest": {
  8794. "ext-soap": "*",
  8795. "ext-xdebug": "*",
  8796. "phpunit/php-invoker": "^2.0.0"
  8797. },
  8798. "bin": [
  8799. "phpunit"
  8800. ],
  8801. "type": "library",
  8802. "extra": {
  8803. "branch-alias": {
  8804. "dev-master": "8.4-dev"
  8805. }
  8806. },
  8807. "autoload": {
  8808. "classmap": [
  8809. "src/"
  8810. ]
  8811. },
  8812. "notification-url": "https://packagist.org/downloads/",
  8813. "license": [
  8814. "BSD-3-Clause"
  8815. ],
  8816. "authors": [
  8817. {
  8818. "name": "Sebastian Bergmann",
  8819. "email": "sebastian@phpunit.de",
  8820. "role": "lead"
  8821. }
  8822. ],
  8823. "description": "The PHP Unit Testing framework.",
  8824. "homepage": "https://phpunit.de/",
  8825. "keywords": [
  8826. "phpunit",
  8827. "testing",
  8828. "xunit"
  8829. ],
  8830. "time": "2019-10-07T12:57:41+00:00"
  8831. },
  8832. {
  8833. "name": "scrivo/highlight.php",
  8834. "version": "v9.15.10.0",
  8835. "source": {
  8836. "type": "git",
  8837. "url": "https://github.com/scrivo/highlight.php.git",
  8838. "reference": "9ad3adb4456dc91196327498dbbce6aa1ba1239e"
  8839. },
  8840. "dist": {
  8841. "type": "zip",
  8842. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/9ad3adb4456dc91196327498dbbce6aa1ba1239e",
  8843. "reference": "9ad3adb4456dc91196327498dbbce6aa1ba1239e",
  8844. "shasum": ""
  8845. },
  8846. "require": {
  8847. "ext-json": "*",
  8848. "ext-mbstring": "*",
  8849. "php": ">=5.4"
  8850. },
  8851. "require-dev": {
  8852. "phpunit/phpunit": "^4.8|^5.7",
  8853. "symfony/finder": "^2.8"
  8854. },
  8855. "suggest": {
  8856. "ext-dom": "Needed to make use of the features in the utilities namespace"
  8857. },
  8858. "type": "library",
  8859. "autoload": {
  8860. "psr-0": {
  8861. "Highlight\\": "",
  8862. "HighlightUtilities\\": ""
  8863. },
  8864. "files": [
  8865. "HighlightUtilities/functions.php"
  8866. ]
  8867. },
  8868. "notification-url": "https://packagist.org/downloads/",
  8869. "license": [
  8870. "BSD-3-Clause"
  8871. ],
  8872. "authors": [
  8873. {
  8874. "name": "Geert Bergman",
  8875. "homepage": "http://www.scrivo.org/",
  8876. "role": "Project Author"
  8877. },
  8878. {
  8879. "name": "Vladimir Jimenez",
  8880. "homepage": "https://allejo.io",
  8881. "role": "Contributor"
  8882. },
  8883. {
  8884. "name": "Martin Folkers",
  8885. "homepage": "https://twobrain.io",
  8886. "role": "Contributor"
  8887. }
  8888. ],
  8889. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  8890. "keywords": [
  8891. "code",
  8892. "highlight",
  8893. "highlight.js",
  8894. "highlight.php",
  8895. "syntax"
  8896. ],
  8897. "time": "2019-08-27T04:27:48+00:00"
  8898. },
  8899. {
  8900. "name": "sebastian/code-unit-reverse-lookup",
  8901. "version": "1.0.1",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8905. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8910. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "php": "^5.6 || ^7.0"
  8915. },
  8916. "require-dev": {
  8917. "phpunit/phpunit": "^5.7 || ^6.0"
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "branch-alias": {
  8922. "dev-master": "1.0.x-dev"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "classmap": [
  8927. "src/"
  8928. ]
  8929. },
  8930. "notification-url": "https://packagist.org/downloads/",
  8931. "license": [
  8932. "BSD-3-Clause"
  8933. ],
  8934. "authors": [
  8935. {
  8936. "name": "Sebastian Bergmann",
  8937. "email": "sebastian@phpunit.de"
  8938. }
  8939. ],
  8940. "description": "Looks up which function or method a line of code belongs to",
  8941. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8942. "time": "2017-03-04T06:30:41+00:00"
  8943. },
  8944. {
  8945. "name": "sebastian/comparator",
  8946. "version": "3.0.2",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/sebastianbergmann/comparator.git",
  8950. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8955. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8956. "shasum": ""
  8957. },
  8958. "require": {
  8959. "php": "^7.1",
  8960. "sebastian/diff": "^3.0",
  8961. "sebastian/exporter": "^3.1"
  8962. },
  8963. "require-dev": {
  8964. "phpunit/phpunit": "^7.1"
  8965. },
  8966. "type": "library",
  8967. "extra": {
  8968. "branch-alias": {
  8969. "dev-master": "3.0-dev"
  8970. }
  8971. },
  8972. "autoload": {
  8973. "classmap": [
  8974. "src/"
  8975. ]
  8976. },
  8977. "notification-url": "https://packagist.org/downloads/",
  8978. "license": [
  8979. "BSD-3-Clause"
  8980. ],
  8981. "authors": [
  8982. {
  8983. "name": "Jeff Welch",
  8984. "email": "whatthejeff@gmail.com"
  8985. },
  8986. {
  8987. "name": "Volker Dusch",
  8988. "email": "github@wallbash.com"
  8989. },
  8990. {
  8991. "name": "Bernhard Schussek",
  8992. "email": "bschussek@2bepublished.at"
  8993. },
  8994. {
  8995. "name": "Sebastian Bergmann",
  8996. "email": "sebastian@phpunit.de"
  8997. }
  8998. ],
  8999. "description": "Provides the functionality to compare PHP values for equality",
  9000. "homepage": "https://github.com/sebastianbergmann/comparator",
  9001. "keywords": [
  9002. "comparator",
  9003. "compare",
  9004. "equality"
  9005. ],
  9006. "time": "2018-07-12T15:12:46+00:00"
  9007. },
  9008. {
  9009. "name": "sebastian/diff",
  9010. "version": "3.0.2",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/sebastianbergmann/diff.git",
  9014. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9019. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "php": "^7.1"
  9024. },
  9025. "require-dev": {
  9026. "phpunit/phpunit": "^7.5 || ^8.0",
  9027. "symfony/process": "^2 || ^3.3 || ^4"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-master": "3.0-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "classmap": [
  9037. "src/"
  9038. ]
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "BSD-3-Clause"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Kore Nordmann",
  9047. "email": "mail@kore-nordmann.de"
  9048. },
  9049. {
  9050. "name": "Sebastian Bergmann",
  9051. "email": "sebastian@phpunit.de"
  9052. }
  9053. ],
  9054. "description": "Diff implementation",
  9055. "homepage": "https://github.com/sebastianbergmann/diff",
  9056. "keywords": [
  9057. "diff",
  9058. "udiff",
  9059. "unidiff",
  9060. "unified diff"
  9061. ],
  9062. "time": "2019-02-04T06:01:07+00:00"
  9063. },
  9064. {
  9065. "name": "sebastian/environment",
  9066. "version": "4.2.2",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/sebastianbergmann/environment.git",
  9070. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  9075. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "php": "^7.1"
  9080. },
  9081. "require-dev": {
  9082. "phpunit/phpunit": "^7.5"
  9083. },
  9084. "suggest": {
  9085. "ext-posix": "*"
  9086. },
  9087. "type": "library",
  9088. "extra": {
  9089. "branch-alias": {
  9090. "dev-master": "4.2-dev"
  9091. }
  9092. },
  9093. "autoload": {
  9094. "classmap": [
  9095. "src/"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "BSD-3-Clause"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Sebastian Bergmann",
  9105. "email": "sebastian@phpunit.de"
  9106. }
  9107. ],
  9108. "description": "Provides functionality to handle HHVM/PHP environments",
  9109. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9110. "keywords": [
  9111. "Xdebug",
  9112. "environment",
  9113. "hhvm"
  9114. ],
  9115. "time": "2019-05-05T09:05:15+00:00"
  9116. },
  9117. {
  9118. "name": "sebastian/exporter",
  9119. "version": "3.1.2",
  9120. "source": {
  9121. "type": "git",
  9122. "url": "https://github.com/sebastianbergmann/exporter.git",
  9123. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9124. },
  9125. "dist": {
  9126. "type": "zip",
  9127. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9128. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9129. "shasum": ""
  9130. },
  9131. "require": {
  9132. "php": "^7.0",
  9133. "sebastian/recursion-context": "^3.0"
  9134. },
  9135. "require-dev": {
  9136. "ext-mbstring": "*",
  9137. "phpunit/phpunit": "^6.0"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "branch-alias": {
  9142. "dev-master": "3.1.x-dev"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "classmap": [
  9147. "src/"
  9148. ]
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "BSD-3-Clause"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Sebastian Bergmann",
  9157. "email": "sebastian@phpunit.de"
  9158. },
  9159. {
  9160. "name": "Jeff Welch",
  9161. "email": "whatthejeff@gmail.com"
  9162. },
  9163. {
  9164. "name": "Volker Dusch",
  9165. "email": "github@wallbash.com"
  9166. },
  9167. {
  9168. "name": "Adam Harvey",
  9169. "email": "aharvey@php.net"
  9170. },
  9171. {
  9172. "name": "Bernhard Schussek",
  9173. "email": "bschussek@gmail.com"
  9174. }
  9175. ],
  9176. "description": "Provides the functionality to export PHP variables for visualization",
  9177. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9178. "keywords": [
  9179. "export",
  9180. "exporter"
  9181. ],
  9182. "time": "2019-09-14T09:02:43+00:00"
  9183. },
  9184. {
  9185. "name": "sebastian/finder-facade",
  9186. "version": "1.2.2",
  9187. "source": {
  9188. "type": "git",
  9189. "url": "https://github.com/sebastianbergmann/finder-facade.git",
  9190. "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f"
  9191. },
  9192. "dist": {
  9193. "type": "zip",
  9194. "url": "https://api.github.com/repos/sebastianbergmann/finder-facade/zipball/4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f",
  9195. "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f",
  9196. "shasum": ""
  9197. },
  9198. "require": {
  9199. "symfony/finder": "~2.3|~3.0|~4.0",
  9200. "theseer/fdomdocument": "~1.3"
  9201. },
  9202. "type": "library",
  9203. "autoload": {
  9204. "classmap": [
  9205. "src/"
  9206. ]
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "BSD-3-Clause"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Sebastian Bergmann",
  9215. "email": "sebastian@phpunit.de",
  9216. "role": "lead"
  9217. }
  9218. ],
  9219. "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.",
  9220. "homepage": "https://github.com/sebastianbergmann/finder-facade",
  9221. "time": "2017-11-18T17:31:49+00:00"
  9222. },
  9223. {
  9224. "name": "sebastian/global-state",
  9225. "version": "3.0.0",
  9226. "source": {
  9227. "type": "git",
  9228. "url": "https://github.com/sebastianbergmann/global-state.git",
  9229. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  9230. },
  9231. "dist": {
  9232. "type": "zip",
  9233. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9234. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9235. "shasum": ""
  9236. },
  9237. "require": {
  9238. "php": "^7.2",
  9239. "sebastian/object-reflector": "^1.1.1",
  9240. "sebastian/recursion-context": "^3.0"
  9241. },
  9242. "require-dev": {
  9243. "ext-dom": "*",
  9244. "phpunit/phpunit": "^8.0"
  9245. },
  9246. "suggest": {
  9247. "ext-uopz": "*"
  9248. },
  9249. "type": "library",
  9250. "extra": {
  9251. "branch-alias": {
  9252. "dev-master": "3.0-dev"
  9253. }
  9254. },
  9255. "autoload": {
  9256. "classmap": [
  9257. "src/"
  9258. ]
  9259. },
  9260. "notification-url": "https://packagist.org/downloads/",
  9261. "license": [
  9262. "BSD-3-Clause"
  9263. ],
  9264. "authors": [
  9265. {
  9266. "name": "Sebastian Bergmann",
  9267. "email": "sebastian@phpunit.de"
  9268. }
  9269. ],
  9270. "description": "Snapshotting of global state",
  9271. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9272. "keywords": [
  9273. "global state"
  9274. ],
  9275. "time": "2019-02-01T05:30:01+00:00"
  9276. },
  9277. {
  9278. "name": "sebastian/object-enumerator",
  9279. "version": "3.0.3",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9283. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9288. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9289. "shasum": ""
  9290. },
  9291. "require": {
  9292. "php": "^7.0",
  9293. "sebastian/object-reflector": "^1.1.1",
  9294. "sebastian/recursion-context": "^3.0"
  9295. },
  9296. "require-dev": {
  9297. "phpunit/phpunit": "^6.0"
  9298. },
  9299. "type": "library",
  9300. "extra": {
  9301. "branch-alias": {
  9302. "dev-master": "3.0.x-dev"
  9303. }
  9304. },
  9305. "autoload": {
  9306. "classmap": [
  9307. "src/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "BSD-3-Clause"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Sebastian Bergmann",
  9317. "email": "sebastian@phpunit.de"
  9318. }
  9319. ],
  9320. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9321. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9322. "time": "2017-08-03T12:35:26+00:00"
  9323. },
  9324. {
  9325. "name": "sebastian/object-reflector",
  9326. "version": "1.1.1",
  9327. "source": {
  9328. "type": "git",
  9329. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9330. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9331. },
  9332. "dist": {
  9333. "type": "zip",
  9334. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9335. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9336. "shasum": ""
  9337. },
  9338. "require": {
  9339. "php": "^7.0"
  9340. },
  9341. "require-dev": {
  9342. "phpunit/phpunit": "^6.0"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-master": "1.1-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de"
  9363. }
  9364. ],
  9365. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9366. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9367. "time": "2017-03-29T09:07:27+00:00"
  9368. },
  9369. {
  9370. "name": "sebastian/recursion-context",
  9371. "version": "3.0.0",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9375. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9380. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": "^7.0"
  9385. },
  9386. "require-dev": {
  9387. "phpunit/phpunit": "^6.0"
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-master": "3.0.x-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "classmap": [
  9397. "src/"
  9398. ]
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "license": [
  9402. "BSD-3-Clause"
  9403. ],
  9404. "authors": [
  9405. {
  9406. "name": "Jeff Welch",
  9407. "email": "whatthejeff@gmail.com"
  9408. },
  9409. {
  9410. "name": "Sebastian Bergmann",
  9411. "email": "sebastian@phpunit.de"
  9412. },
  9413. {
  9414. "name": "Adam Harvey",
  9415. "email": "aharvey@php.net"
  9416. }
  9417. ],
  9418. "description": "Provides functionality to recursively process PHP variables",
  9419. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9420. "time": "2017-03-03T06:23:57+00:00"
  9421. },
  9422. {
  9423. "name": "sebastian/resource-operations",
  9424. "version": "2.0.1",
  9425. "source": {
  9426. "type": "git",
  9427. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9428. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9429. },
  9430. "dist": {
  9431. "type": "zip",
  9432. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9433. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9434. "shasum": ""
  9435. },
  9436. "require": {
  9437. "php": "^7.1"
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-master": "2.0-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "classmap": [
  9447. "src/"
  9448. ]
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "BSD-3-Clause"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "Sebastian Bergmann",
  9457. "email": "sebastian@phpunit.de"
  9458. }
  9459. ],
  9460. "description": "Provides a list of PHP built-in functions that operate on resources",
  9461. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9462. "time": "2018-10-04T04:07:39+00:00"
  9463. },
  9464. {
  9465. "name": "sebastian/type",
  9466. "version": "1.1.3",
  9467. "source": {
  9468. "type": "git",
  9469. "url": "https://github.com/sebastianbergmann/type.git",
  9470. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  9471. },
  9472. "dist": {
  9473. "type": "zip",
  9474. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9475. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9476. "shasum": ""
  9477. },
  9478. "require": {
  9479. "php": "^7.2"
  9480. },
  9481. "require-dev": {
  9482. "phpunit/phpunit": "^8.2"
  9483. },
  9484. "type": "library",
  9485. "extra": {
  9486. "branch-alias": {
  9487. "dev-master": "1.1-dev"
  9488. }
  9489. },
  9490. "autoload": {
  9491. "classmap": [
  9492. "src/"
  9493. ]
  9494. },
  9495. "notification-url": "https://packagist.org/downloads/",
  9496. "license": [
  9497. "BSD-3-Clause"
  9498. ],
  9499. "authors": [
  9500. {
  9501. "name": "Sebastian Bergmann",
  9502. "email": "sebastian@phpunit.de",
  9503. "role": "lead"
  9504. }
  9505. ],
  9506. "description": "Collection of value objects that represent the types of the PHP type system",
  9507. "homepage": "https://github.com/sebastianbergmann/type",
  9508. "time": "2019-07-02T08:10:15+00:00"
  9509. },
  9510. {
  9511. "name": "sebastian/version",
  9512. "version": "2.0.1",
  9513. "source": {
  9514. "type": "git",
  9515. "url": "https://github.com/sebastianbergmann/version.git",
  9516. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9517. },
  9518. "dist": {
  9519. "type": "zip",
  9520. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9521. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9522. "shasum": ""
  9523. },
  9524. "require": {
  9525. "php": ">=5.6"
  9526. },
  9527. "type": "library",
  9528. "extra": {
  9529. "branch-alias": {
  9530. "dev-master": "2.0.x-dev"
  9531. }
  9532. },
  9533. "autoload": {
  9534. "classmap": [
  9535. "src/"
  9536. ]
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "BSD-3-Clause"
  9541. ],
  9542. "authors": [
  9543. {
  9544. "name": "Sebastian Bergmann",
  9545. "email": "sebastian@phpunit.de",
  9546. "role": "lead"
  9547. }
  9548. ],
  9549. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9550. "homepage": "https://github.com/sebastianbergmann/version",
  9551. "time": "2016-10-03T07:35:21+00:00"
  9552. },
  9553. {
  9554. "name": "seld/jsonlint",
  9555. "version": "1.7.1",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/Seldaek/jsonlint.git",
  9559. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  9564. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  9565. "shasum": ""
  9566. },
  9567. "require": {
  9568. "php": "^5.3 || ^7.0"
  9569. },
  9570. "require-dev": {
  9571. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  9572. },
  9573. "bin": [
  9574. "bin/jsonlint"
  9575. ],
  9576. "type": "library",
  9577. "autoload": {
  9578. "psr-4": {
  9579. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  9580. }
  9581. },
  9582. "notification-url": "https://packagist.org/downloads/",
  9583. "license": [
  9584. "MIT"
  9585. ],
  9586. "authors": [
  9587. {
  9588. "name": "Jordi Boggiano",
  9589. "email": "j.boggiano@seld.be",
  9590. "homepage": "http://seld.be"
  9591. }
  9592. ],
  9593. "description": "JSON Linter",
  9594. "keywords": [
  9595. "json",
  9596. "linter",
  9597. "parser",
  9598. "validator"
  9599. ],
  9600. "time": "2018-01-24T12:46:19+00:00"
  9601. },
  9602. {
  9603. "name": "seld/phar-utils",
  9604. "version": "1.0.1",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/Seldaek/phar-utils.git",
  9608. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  9613. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  9614. "shasum": ""
  9615. },
  9616. "require": {
  9617. "php": ">=5.3"
  9618. },
  9619. "type": "library",
  9620. "extra": {
  9621. "branch-alias": {
  9622. "dev-master": "1.x-dev"
  9623. }
  9624. },
  9625. "autoload": {
  9626. "psr-4": {
  9627. "Seld\\PharUtils\\": "src/"
  9628. }
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "MIT"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Jordi Boggiano",
  9637. "email": "j.boggiano@seld.be"
  9638. }
  9639. ],
  9640. "description": "PHAR file format utilities, for when PHP phars you up",
  9641. "keywords": [
  9642. "phra"
  9643. ],
  9644. "time": "2015-10-13T18:44:15+00:00"
  9645. },
  9646. {
  9647. "name": "sensiolabs/security-checker",
  9648. "version": "v6.0.2",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/sensiolabs/security-checker.git",
  9652. "reference": "ce8d0552dcb8d3677ab9adb6d19a5837949bfec4"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/ce8d0552dcb8d3677ab9adb6d19a5837949bfec4",
  9657. "reference": "ce8d0552dcb8d3677ab9adb6d19a5837949bfec4",
  9658. "shasum": ""
  9659. },
  9660. "require": {
  9661. "php": ">=7.1.3",
  9662. "symfony/console": "^2.8|^3.4|^4.2",
  9663. "symfony/http-client": "^4.3",
  9664. "symfony/mime": "^4.3",
  9665. "symfony/polyfill-ctype": "^1.11"
  9666. },
  9667. "bin": [
  9668. "security-checker"
  9669. ],
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-master": "6.0-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "psr-4": {
  9678. "SensioLabs\\Security\\": "SensioLabs/Security"
  9679. }
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "MIT"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Fabien Potencier",
  9688. "email": "fabien.potencier@gmail.com"
  9689. }
  9690. ],
  9691. "description": "A security checker for your composer.lock",
  9692. "time": "2019-06-08T06:46:26+00:00"
  9693. },
  9694. {
  9695. "name": "slevomat/coding-standard",
  9696. "version": "5.0.4",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/slevomat/coding-standard.git",
  9700. "reference": "287ac3347c47918c0bf5e10335e36197ea10894c"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/287ac3347c47918c0bf5e10335e36197ea10894c",
  9705. "reference": "287ac3347c47918c0bf5e10335e36197ea10894c",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "php": "^7.1",
  9710. "phpstan/phpdoc-parser": "^0.3.1",
  9711. "squizlabs/php_codesniffer": "^3.4.1"
  9712. },
  9713. "require-dev": {
  9714. "jakub-onderka/php-parallel-lint": "1.0.0",
  9715. "phing/phing": "2.16.1",
  9716. "phpstan/phpstan": "0.11.4",
  9717. "phpstan/phpstan-phpunit": "0.11",
  9718. "phpstan/phpstan-strict-rules": "0.11",
  9719. "phpunit/phpunit": "8.0.5"
  9720. },
  9721. "type": "phpcodesniffer-standard",
  9722. "autoload": {
  9723. "psr-4": {
  9724. "SlevomatCodingStandard\\": "SlevomatCodingStandard"
  9725. }
  9726. },
  9727. "notification-url": "https://packagist.org/downloads/",
  9728. "license": [
  9729. "MIT"
  9730. ],
  9731. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  9732. "time": "2019-03-22T19:10:53+00:00"
  9733. },
  9734. {
  9735. "name": "squizlabs/php_codesniffer",
  9736. "version": "3.5.1",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  9740. "reference": "82cd0f854ceca17731d6d019c7098e3755c45060"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/82cd0f854ceca17731d6d019c7098e3755c45060",
  9745. "reference": "82cd0f854ceca17731d6d019c7098e3755c45060",
  9746. "shasum": ""
  9747. },
  9748. "require": {
  9749. "ext-simplexml": "*",
  9750. "ext-tokenizer": "*",
  9751. "ext-xmlwriter": "*",
  9752. "php": ">=5.4.0"
  9753. },
  9754. "require-dev": {
  9755. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  9756. },
  9757. "bin": [
  9758. "bin/phpcs",
  9759. "bin/phpcbf"
  9760. ],
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "3.x-dev"
  9765. }
  9766. },
  9767. "notification-url": "https://packagist.org/downloads/",
  9768. "license": [
  9769. "BSD-3-Clause"
  9770. ],
  9771. "authors": [
  9772. {
  9773. "name": "Greg Sherwood",
  9774. "role": "lead"
  9775. }
  9776. ],
  9777. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9778. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  9779. "keywords": [
  9780. "phpcs",
  9781. "standards"
  9782. ],
  9783. "time": "2019-10-16T21:14:26+00:00"
  9784. },
  9785. {
  9786. "name": "symfony/cache",
  9787. "version": "v4.3.5",
  9788. "source": {
  9789. "type": "git",
  9790. "url": "https://github.com/symfony/cache.git",
  9791. "reference": "40c62600ebad1ed2defbf7d35523d918a73ab330"
  9792. },
  9793. "dist": {
  9794. "type": "zip",
  9795. "url": "https://api.github.com/repos/symfony/cache/zipball/40c62600ebad1ed2defbf7d35523d918a73ab330",
  9796. "reference": "40c62600ebad1ed2defbf7d35523d918a73ab330",
  9797. "shasum": ""
  9798. },
  9799. "require": {
  9800. "php": "^7.1.3",
  9801. "psr/cache": "~1.0",
  9802. "psr/log": "~1.0",
  9803. "symfony/cache-contracts": "^1.1",
  9804. "symfony/service-contracts": "^1.1",
  9805. "symfony/var-exporter": "^4.2"
  9806. },
  9807. "conflict": {
  9808. "doctrine/dbal": "<2.5",
  9809. "symfony/dependency-injection": "<3.4",
  9810. "symfony/var-dumper": "<3.4"
  9811. },
  9812. "provide": {
  9813. "psr/cache-implementation": "1.0",
  9814. "psr/simple-cache-implementation": "1.0",
  9815. "symfony/cache-implementation": "1.0"
  9816. },
  9817. "require-dev": {
  9818. "cache/integration-tests": "dev-master",
  9819. "doctrine/cache": "~1.6",
  9820. "doctrine/dbal": "~2.5",
  9821. "predis/predis": "~1.1",
  9822. "psr/simple-cache": "^1.0",
  9823. "symfony/config": "~4.2",
  9824. "symfony/dependency-injection": "~3.4|~4.1",
  9825. "symfony/var-dumper": "^4.1.1"
  9826. },
  9827. "type": "library",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-master": "4.3-dev"
  9831. }
  9832. },
  9833. "autoload": {
  9834. "psr-4": {
  9835. "Symfony\\Component\\Cache\\": ""
  9836. },
  9837. "exclude-from-classmap": [
  9838. "/Tests/"
  9839. ]
  9840. },
  9841. "notification-url": "https://packagist.org/downloads/",
  9842. "license": [
  9843. "MIT"
  9844. ],
  9845. "authors": [
  9846. {
  9847. "name": "Nicolas Grekas",
  9848. "email": "p@tchwork.com"
  9849. },
  9850. {
  9851. "name": "Symfony Community",
  9852. "homepage": "https://symfony.com/contributors"
  9853. }
  9854. ],
  9855. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  9856. "homepage": "https://symfony.com",
  9857. "keywords": [
  9858. "caching",
  9859. "psr6"
  9860. ],
  9861. "time": "2019-10-04T10:57:53+00:00"
  9862. },
  9863. {
  9864. "name": "symfony/cache-contracts",
  9865. "version": "v1.1.7",
  9866. "source": {
  9867. "type": "git",
  9868. "url": "https://github.com/symfony/cache-contracts.git",
  9869. "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1"
  9870. },
  9871. "dist": {
  9872. "type": "zip",
  9873. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/af50d14ada9e4e82cfabfabdc502d144f89be0a1",
  9874. "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1",
  9875. "shasum": ""
  9876. },
  9877. "require": {
  9878. "php": "^7.1.3",
  9879. "psr/cache": "^1.0"
  9880. },
  9881. "suggest": {
  9882. "symfony/cache-implementation": ""
  9883. },
  9884. "type": "library",
  9885. "extra": {
  9886. "branch-alias": {
  9887. "dev-master": "1.1-dev"
  9888. }
  9889. },
  9890. "autoload": {
  9891. "psr-4": {
  9892. "Symfony\\Contracts\\Cache\\": ""
  9893. }
  9894. },
  9895. "notification-url": "https://packagist.org/downloads/",
  9896. "license": [
  9897. "MIT"
  9898. ],
  9899. "authors": [
  9900. {
  9901. "name": "Nicolas Grekas",
  9902. "email": "p@tchwork.com"
  9903. },
  9904. {
  9905. "name": "Symfony Community",
  9906. "homepage": "https://symfony.com/contributors"
  9907. }
  9908. ],
  9909. "description": "Generic abstractions related to caching",
  9910. "homepage": "https://symfony.com",
  9911. "keywords": [
  9912. "abstractions",
  9913. "contracts",
  9914. "decoupling",
  9915. "interfaces",
  9916. "interoperability",
  9917. "standards"
  9918. ],
  9919. "time": "2019-10-04T21:43:27+00:00"
  9920. },
  9921. {
  9922. "name": "symfony/config",
  9923. "version": "v4.3.5",
  9924. "source": {
  9925. "type": "git",
  9926. "url": "https://github.com/symfony/config.git",
  9927. "reference": "0acb26407a9e1a64a275142f0ae5e36436342720"
  9928. },
  9929. "dist": {
  9930. "type": "zip",
  9931. "url": "https://api.github.com/repos/symfony/config/zipball/0acb26407a9e1a64a275142f0ae5e36436342720",
  9932. "reference": "0acb26407a9e1a64a275142f0ae5e36436342720",
  9933. "shasum": ""
  9934. },
  9935. "require": {
  9936. "php": "^7.1.3",
  9937. "symfony/filesystem": "~3.4|~4.0",
  9938. "symfony/polyfill-ctype": "~1.8"
  9939. },
  9940. "conflict": {
  9941. "symfony/finder": "<3.4"
  9942. },
  9943. "require-dev": {
  9944. "symfony/dependency-injection": "~3.4|~4.0",
  9945. "symfony/event-dispatcher": "~3.4|~4.0",
  9946. "symfony/finder": "~3.4|~4.0",
  9947. "symfony/messenger": "~4.1",
  9948. "symfony/yaml": "~3.4|~4.0"
  9949. },
  9950. "suggest": {
  9951. "symfony/yaml": "To use the yaml reference dumper"
  9952. },
  9953. "type": "library",
  9954. "extra": {
  9955. "branch-alias": {
  9956. "dev-master": "4.3-dev"
  9957. }
  9958. },
  9959. "autoload": {
  9960. "psr-4": {
  9961. "Symfony\\Component\\Config\\": ""
  9962. },
  9963. "exclude-from-classmap": [
  9964. "/Tests/"
  9965. ]
  9966. },
  9967. "notification-url": "https://packagist.org/downloads/",
  9968. "license": [
  9969. "MIT"
  9970. ],
  9971. "authors": [
  9972. {
  9973. "name": "Fabien Potencier",
  9974. "email": "fabien@symfony.com"
  9975. },
  9976. {
  9977. "name": "Symfony Community",
  9978. "homepage": "https://symfony.com/contributors"
  9979. }
  9980. ],
  9981. "description": "Symfony Config Component",
  9982. "homepage": "https://symfony.com",
  9983. "time": "2019-09-19T15:51:53+00:00"
  9984. },
  9985. {
  9986. "name": "symfony/dependency-injection",
  9987. "version": "v4.3.5",
  9988. "source": {
  9989. "type": "git",
  9990. "url": "https://github.com/symfony/dependency-injection.git",
  9991. "reference": "e1e0762a814b957a1092bff75a550db49724d05b"
  9992. },
  9993. "dist": {
  9994. "type": "zip",
  9995. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e1e0762a814b957a1092bff75a550db49724d05b",
  9996. "reference": "e1e0762a814b957a1092bff75a550db49724d05b",
  9997. "shasum": ""
  9998. },
  9999. "require": {
  10000. "php": "^7.1.3",
  10001. "psr/container": "^1.0",
  10002. "symfony/service-contracts": "^1.1.6"
  10003. },
  10004. "conflict": {
  10005. "symfony/config": "<4.3",
  10006. "symfony/finder": "<3.4",
  10007. "symfony/proxy-manager-bridge": "<3.4",
  10008. "symfony/yaml": "<3.4"
  10009. },
  10010. "provide": {
  10011. "psr/container-implementation": "1.0",
  10012. "symfony/service-implementation": "1.0"
  10013. },
  10014. "require-dev": {
  10015. "symfony/config": "^4.3",
  10016. "symfony/expression-language": "~3.4|~4.0",
  10017. "symfony/yaml": "~3.4|~4.0"
  10018. },
  10019. "suggest": {
  10020. "symfony/config": "",
  10021. "symfony/expression-language": "For using expressions in service container configuration",
  10022. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10023. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10024. "symfony/yaml": ""
  10025. },
  10026. "type": "library",
  10027. "extra": {
  10028. "branch-alias": {
  10029. "dev-master": "4.3-dev"
  10030. }
  10031. },
  10032. "autoload": {
  10033. "psr-4": {
  10034. "Symfony\\Component\\DependencyInjection\\": ""
  10035. },
  10036. "exclude-from-classmap": [
  10037. "/Tests/"
  10038. ]
  10039. },
  10040. "notification-url": "https://packagist.org/downloads/",
  10041. "license": [
  10042. "MIT"
  10043. ],
  10044. "authors": [
  10045. {
  10046. "name": "Fabien Potencier",
  10047. "email": "fabien@symfony.com"
  10048. },
  10049. {
  10050. "name": "Symfony Community",
  10051. "homepage": "https://symfony.com/contributors"
  10052. }
  10053. ],
  10054. "description": "Symfony DependencyInjection Component",
  10055. "homepage": "https://symfony.com",
  10056. "time": "2019-10-02T12:58:58+00:00"
  10057. },
  10058. {
  10059. "name": "symfony/http-client",
  10060. "version": "v4.3.5",
  10061. "source": {
  10062. "type": "git",
  10063. "url": "https://github.com/symfony/http-client.git",
  10064. "reference": "69d438274718121e1166e7f65c290f891a4c8ddb"
  10065. },
  10066. "dist": {
  10067. "type": "zip",
  10068. "url": "https://api.github.com/repos/symfony/http-client/zipball/69d438274718121e1166e7f65c290f891a4c8ddb",
  10069. "reference": "69d438274718121e1166e7f65c290f891a4c8ddb",
  10070. "shasum": ""
  10071. },
  10072. "require": {
  10073. "php": "^7.1.3",
  10074. "psr/log": "^1.0",
  10075. "symfony/http-client-contracts": "^1.1.7",
  10076. "symfony/polyfill-php73": "^1.11"
  10077. },
  10078. "provide": {
  10079. "psr/http-client-implementation": "1.0",
  10080. "symfony/http-client-implementation": "1.1"
  10081. },
  10082. "require-dev": {
  10083. "nyholm/psr7": "^1.0",
  10084. "psr/http-client": "^1.0",
  10085. "symfony/http-kernel": "^4.3",
  10086. "symfony/process": "^4.2"
  10087. },
  10088. "type": "library",
  10089. "extra": {
  10090. "branch-alias": {
  10091. "dev-master": "4.3-dev"
  10092. }
  10093. },
  10094. "autoload": {
  10095. "psr-4": {
  10096. "Symfony\\Component\\HttpClient\\": ""
  10097. },
  10098. "exclude-from-classmap": [
  10099. "/Tests/"
  10100. ]
  10101. },
  10102. "notification-url": "https://packagist.org/downloads/",
  10103. "license": [
  10104. "MIT"
  10105. ],
  10106. "authors": [
  10107. {
  10108. "name": "Nicolas Grekas",
  10109. "email": "p@tchwork.com"
  10110. },
  10111. {
  10112. "name": "Symfony Community",
  10113. "homepage": "https://symfony.com/contributors"
  10114. }
  10115. ],
  10116. "description": "Symfony HttpClient component",
  10117. "homepage": "https://symfony.com",
  10118. "time": "2019-10-07T10:52:41+00:00"
  10119. },
  10120. {
  10121. "name": "symfony/http-client-contracts",
  10122. "version": "v1.1.7",
  10123. "source": {
  10124. "type": "git",
  10125. "url": "https://github.com/symfony/http-client-contracts.git",
  10126. "reference": "353b2a3e907e5c34cf8f74827a4b21eb745aab1d"
  10127. },
  10128. "dist": {
  10129. "type": "zip",
  10130. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/353b2a3e907e5c34cf8f74827a4b21eb745aab1d",
  10131. "reference": "353b2a3e907e5c34cf8f74827a4b21eb745aab1d",
  10132. "shasum": ""
  10133. },
  10134. "require": {
  10135. "php": "^7.1.3"
  10136. },
  10137. "suggest": {
  10138. "symfony/http-client-implementation": ""
  10139. },
  10140. "type": "library",
  10141. "extra": {
  10142. "branch-alias": {
  10143. "dev-master": "1.1-dev"
  10144. }
  10145. },
  10146. "autoload": {
  10147. "psr-4": {
  10148. "Symfony\\Contracts\\HttpClient\\": ""
  10149. }
  10150. },
  10151. "notification-url": "https://packagist.org/downloads/",
  10152. "license": [
  10153. "MIT"
  10154. ],
  10155. "authors": [
  10156. {
  10157. "name": "Nicolas Grekas",
  10158. "email": "p@tchwork.com"
  10159. },
  10160. {
  10161. "name": "Symfony Community",
  10162. "homepage": "https://symfony.com/contributors"
  10163. }
  10164. ],
  10165. "description": "Generic abstractions related to HTTP clients",
  10166. "homepage": "https://symfony.com",
  10167. "keywords": [
  10168. "abstractions",
  10169. "contracts",
  10170. "decoupling",
  10171. "interfaces",
  10172. "interoperability",
  10173. "standards"
  10174. ],
  10175. "time": "2019-09-26T22:09:58+00:00"
  10176. },
  10177. {
  10178. "name": "symfony/options-resolver",
  10179. "version": "v4.3.5",
  10180. "source": {
  10181. "type": "git",
  10182. "url": "https://github.com/symfony/options-resolver.git",
  10183. "reference": "81c2e120522a42f623233968244baebd6b36cb6a"
  10184. },
  10185. "dist": {
  10186. "type": "zip",
  10187. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/81c2e120522a42f623233968244baebd6b36cb6a",
  10188. "reference": "81c2e120522a42f623233968244baebd6b36cb6a",
  10189. "shasum": ""
  10190. },
  10191. "require": {
  10192. "php": "^7.1.3"
  10193. },
  10194. "type": "library",
  10195. "extra": {
  10196. "branch-alias": {
  10197. "dev-master": "4.3-dev"
  10198. }
  10199. },
  10200. "autoload": {
  10201. "psr-4": {
  10202. "Symfony\\Component\\OptionsResolver\\": ""
  10203. },
  10204. "exclude-from-classmap": [
  10205. "/Tests/"
  10206. ]
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "MIT"
  10211. ],
  10212. "authors": [
  10213. {
  10214. "name": "Fabien Potencier",
  10215. "email": "fabien@symfony.com"
  10216. },
  10217. {
  10218. "name": "Symfony Community",
  10219. "homepage": "https://symfony.com/contributors"
  10220. }
  10221. ],
  10222. "description": "Symfony OptionsResolver Component",
  10223. "homepage": "https://symfony.com",
  10224. "keywords": [
  10225. "config",
  10226. "configuration",
  10227. "options"
  10228. ],
  10229. "time": "2019-08-08T09:29:19+00:00"
  10230. },
  10231. {
  10232. "name": "symfony/polyfill-php70",
  10233. "version": "v1.12.0",
  10234. "source": {
  10235. "type": "git",
  10236. "url": "https://github.com/symfony/polyfill-php70.git",
  10237. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  10238. },
  10239. "dist": {
  10240. "type": "zip",
  10241. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  10242. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  10243. "shasum": ""
  10244. },
  10245. "require": {
  10246. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10247. "php": ">=5.3.3"
  10248. },
  10249. "type": "library",
  10250. "extra": {
  10251. "branch-alias": {
  10252. "dev-master": "1.12-dev"
  10253. }
  10254. },
  10255. "autoload": {
  10256. "psr-4": {
  10257. "Symfony\\Polyfill\\Php70\\": ""
  10258. },
  10259. "files": [
  10260. "bootstrap.php"
  10261. ],
  10262. "classmap": [
  10263. "Resources/stubs"
  10264. ]
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "MIT"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Nicolas Grekas",
  10273. "email": "p@tchwork.com"
  10274. },
  10275. {
  10276. "name": "Symfony Community",
  10277. "homepage": "https://symfony.com/contributors"
  10278. }
  10279. ],
  10280. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10281. "homepage": "https://symfony.com",
  10282. "keywords": [
  10283. "compatibility",
  10284. "polyfill",
  10285. "portable",
  10286. "shim"
  10287. ],
  10288. "time": "2019-08-06T08:03:45+00:00"
  10289. },
  10290. {
  10291. "name": "symfony/stopwatch",
  10292. "version": "v4.3.5",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/symfony/stopwatch.git",
  10296. "reference": "1e4ff456bd625be5032fac9be4294e60442e9b71"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/1e4ff456bd625be5032fac9be4294e60442e9b71",
  10301. "reference": "1e4ff456bd625be5032fac9be4294e60442e9b71",
  10302. "shasum": ""
  10303. },
  10304. "require": {
  10305. "php": "^7.1.3",
  10306. "symfony/service-contracts": "^1.0"
  10307. },
  10308. "type": "library",
  10309. "extra": {
  10310. "branch-alias": {
  10311. "dev-master": "4.3-dev"
  10312. }
  10313. },
  10314. "autoload": {
  10315. "psr-4": {
  10316. "Symfony\\Component\\Stopwatch\\": ""
  10317. },
  10318. "exclude-from-classmap": [
  10319. "/Tests/"
  10320. ]
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "MIT"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Fabien Potencier",
  10329. "email": "fabien@symfony.com"
  10330. },
  10331. {
  10332. "name": "Symfony Community",
  10333. "homepage": "https://symfony.com/contributors"
  10334. }
  10335. ],
  10336. "description": "Symfony Stopwatch Component",
  10337. "homepage": "https://symfony.com",
  10338. "time": "2019-08-07T11:52:19+00:00"
  10339. },
  10340. {
  10341. "name": "symfony/var-exporter",
  10342. "version": "v4.3.5",
  10343. "source": {
  10344. "type": "git",
  10345. "url": "https://github.com/symfony/var-exporter.git",
  10346. "reference": "d5b4e2d334c1d80e42876c7d489896cfd37562f2"
  10347. },
  10348. "dist": {
  10349. "type": "zip",
  10350. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/d5b4e2d334c1d80e42876c7d489896cfd37562f2",
  10351. "reference": "d5b4e2d334c1d80e42876c7d489896cfd37562f2",
  10352. "shasum": ""
  10353. },
  10354. "require": {
  10355. "php": "^7.1.3"
  10356. },
  10357. "require-dev": {
  10358. "symfony/var-dumper": "^4.1.1"
  10359. },
  10360. "type": "library",
  10361. "extra": {
  10362. "branch-alias": {
  10363. "dev-master": "4.3-dev"
  10364. }
  10365. },
  10366. "autoload": {
  10367. "psr-4": {
  10368. "Symfony\\Component\\VarExporter\\": ""
  10369. },
  10370. "exclude-from-classmap": [
  10371. "/Tests/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "MIT"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Nicolas Grekas",
  10381. "email": "p@tchwork.com"
  10382. },
  10383. {
  10384. "name": "Symfony Community",
  10385. "homepage": "https://symfony.com/contributors"
  10386. }
  10387. ],
  10388. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  10389. "homepage": "https://symfony.com",
  10390. "keywords": [
  10391. "clone",
  10392. "construct",
  10393. "export",
  10394. "hydrate",
  10395. "instantiate",
  10396. "serialize"
  10397. ],
  10398. "time": "2019-08-22T07:33:08+00:00"
  10399. },
  10400. {
  10401. "name": "symfony/yaml",
  10402. "version": "v4.3.5",
  10403. "source": {
  10404. "type": "git",
  10405. "url": "https://github.com/symfony/yaml.git",
  10406. "reference": "41e16350a2a1c7383c4735aa2f9fce74cf3d1178"
  10407. },
  10408. "dist": {
  10409. "type": "zip",
  10410. "url": "https://api.github.com/repos/symfony/yaml/zipball/41e16350a2a1c7383c4735aa2f9fce74cf3d1178",
  10411. "reference": "41e16350a2a1c7383c4735aa2f9fce74cf3d1178",
  10412. "shasum": ""
  10413. },
  10414. "require": {
  10415. "php": "^7.1.3",
  10416. "symfony/polyfill-ctype": "~1.8"
  10417. },
  10418. "conflict": {
  10419. "symfony/console": "<3.4"
  10420. },
  10421. "require-dev": {
  10422. "symfony/console": "~3.4|~4.0"
  10423. },
  10424. "suggest": {
  10425. "symfony/console": "For validating YAML files using the lint command"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-master": "4.3-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "psr-4": {
  10435. "Symfony\\Component\\Yaml\\": ""
  10436. },
  10437. "exclude-from-classmap": [
  10438. "/Tests/"
  10439. ]
  10440. },
  10441. "notification-url": "https://packagist.org/downloads/",
  10442. "license": [
  10443. "MIT"
  10444. ],
  10445. "authors": [
  10446. {
  10447. "name": "Fabien Potencier",
  10448. "email": "fabien@symfony.com"
  10449. },
  10450. {
  10451. "name": "Symfony Community",
  10452. "homepage": "https://symfony.com/contributors"
  10453. }
  10454. ],
  10455. "description": "Symfony Yaml Component",
  10456. "homepage": "https://symfony.com",
  10457. "time": "2019-09-11T15:41:19+00:00"
  10458. },
  10459. {
  10460. "name": "symplify/coding-standard",
  10461. "version": "v6.1.0",
  10462. "source": {
  10463. "type": "git",
  10464. "url": "https://github.com/Symplify/CodingStandard.git",
  10465. "reference": "d692701e2c74edd8c0cc7c35f47b8421b8b4885c"
  10466. },
  10467. "dist": {
  10468. "type": "zip",
  10469. "url": "https://api.github.com/repos/Symplify/CodingStandard/zipball/d692701e2c74edd8c0cc7c35f47b8421b8b4885c",
  10470. "reference": "d692701e2c74edd8c0cc7c35f47b8421b8b4885c",
  10471. "shasum": ""
  10472. },
  10473. "require": {
  10474. "friendsofphp/php-cs-fixer": "^2.15",
  10475. "nette/finder": "^2.4",
  10476. "nette/utils": "^2.5|^3.0",
  10477. "php": "^7.1",
  10478. "phpstan/phpdoc-parser": "^0.3.4",
  10479. "squizlabs/php_codesniffer": "^3.4",
  10480. "symplify/package-builder": "^6.1"
  10481. },
  10482. "require-dev": {
  10483. "nette/application": "^3.0",
  10484. "phpunit/phpunit": "^7.5|^8.0",
  10485. "symplify/easy-coding-standard-tester": "^6.1",
  10486. "symplify/package-builder": "^6.1"
  10487. },
  10488. "type": "library",
  10489. "extra": {
  10490. "branch-alias": {
  10491. "dev-master": "6.1-dev"
  10492. }
  10493. },
  10494. "autoload": {
  10495. "psr-4": {
  10496. "Symplify\\CodingStandard\\": "src",
  10497. "Symplify\\CodingStandard\\TokenRunner\\": "packages/TokenRunner/src"
  10498. }
  10499. },
  10500. "notification-url": "https://packagist.org/downloads/",
  10501. "license": [
  10502. "MIT"
  10503. ],
  10504. "description": "Set of Symplify rules for PHP_CodeSniffer and PHP CS Fixer.",
  10505. "time": "2019-09-18T08:01:34+00:00"
  10506. },
  10507. {
  10508. "name": "symplify/easy-coding-standard",
  10509. "version": "v6.1.0",
  10510. "source": {
  10511. "type": "git",
  10512. "url": "https://github.com/Symplify/EasyCodingStandard.git",
  10513. "reference": "94b8cf03af132d007d8a33c8dad5655cff6a74e8"
  10514. },
  10515. "dist": {
  10516. "type": "zip",
  10517. "url": "https://api.github.com/repos/Symplify/EasyCodingStandard/zipball/94b8cf03af132d007d8a33c8dad5655cff6a74e8",
  10518. "reference": "94b8cf03af132d007d8a33c8dad5655cff6a74e8",
  10519. "shasum": ""
  10520. },
  10521. "require": {
  10522. "composer/xdebug-handler": "^1.3",
  10523. "friendsofphp/php-cs-fixer": "^2.15",
  10524. "jean85/pretty-package-versions": "^1.2",
  10525. "nette/robot-loader": "^3.1.0",
  10526. "nette/utils": "^2.5|^3.0",
  10527. "ocramius/package-versions": "^1.3",
  10528. "php": "^7.1",
  10529. "psr/simple-cache": "^1.0",
  10530. "slevomat/coding-standard": "^5.0.1",
  10531. "squizlabs/php_codesniffer": "^3.4",
  10532. "symfony/cache": "^3.4|^4.3",
  10533. "symfony/config": "^3.4|^4.3",
  10534. "symfony/console": "^3.4|^4.3",
  10535. "symfony/dependency-injection": "^3.4.10|^4.2",
  10536. "symfony/finder": "^3.4|^4.3",
  10537. "symfony/http-kernel": "^3.4|^4.3",
  10538. "symfony/yaml": "^3.4|^4.3",
  10539. "symplify/coding-standard": "^6.1",
  10540. "symplify/package-builder": "^6.1"
  10541. },
  10542. "require-dev": {
  10543. "phpunit/phpunit": "^7.5|^8.0",
  10544. "symplify/easy-coding-standard-tester": "^6.1"
  10545. },
  10546. "bin": [
  10547. "bin/ecs"
  10548. ],
  10549. "type": "library",
  10550. "extra": {
  10551. "branch-alias": {
  10552. "dev-master": "6.1-dev"
  10553. }
  10554. },
  10555. "autoload": {
  10556. "psr-4": {
  10557. "Symplify\\EasyCodingStandard\\": "src",
  10558. "Symplify\\EasyCodingStandard\\ChangedFilesDetector\\": "packages/ChangedFilesDetector/src",
  10559. "Symplify\\EasyCodingStandard\\Configuration\\": "packages/Configuration/src",
  10560. "Symplify\\EasyCodingStandard\\FixerRunner\\": "packages/FixerRunner/src",
  10561. "Symplify\\EasyCodingStandard\\SniffRunner\\": "packages/SniffRunner/src"
  10562. }
  10563. },
  10564. "notification-url": "https://packagist.org/downloads/",
  10565. "license": [
  10566. "MIT"
  10567. ],
  10568. "description": "Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP_CodeSniffer.",
  10569. "time": "2019-09-14T22:46:23+00:00"
  10570. },
  10571. {
  10572. "name": "symplify/package-builder",
  10573. "version": "v6.1.0",
  10574. "source": {
  10575. "type": "git",
  10576. "url": "https://github.com/Symplify/PackageBuilder.git",
  10577. "reference": "fbdfe363a27070cfdfbc47d5f59e711ed08bb060"
  10578. },
  10579. "dist": {
  10580. "type": "zip",
  10581. "url": "https://api.github.com/repos/Symplify/PackageBuilder/zipball/fbdfe363a27070cfdfbc47d5f59e711ed08bb060",
  10582. "reference": "fbdfe363a27070cfdfbc47d5f59e711ed08bb060",
  10583. "shasum": ""
  10584. },
  10585. "require": {
  10586. "nette/finder": "^2.4",
  10587. "nette/utils": "^2.5|^3.0",
  10588. "php": "^7.1",
  10589. "symfony/config": "^3.4|^4.3",
  10590. "symfony/console": "^3.4|^4.3",
  10591. "symfony/debug": "^3.4|^4.3",
  10592. "symfony/dependency-injection": "^3.4.10|^4.2",
  10593. "symfony/finder": "^3.4|^4.3",
  10594. "symfony/http-kernel": "^3.4|^4.3",
  10595. "symfony/yaml": "^3.4|^4.3"
  10596. },
  10597. "require-dev": {
  10598. "phpunit/phpunit": "^7.5|^8.0"
  10599. },
  10600. "type": "library",
  10601. "extra": {
  10602. "branch-alias": {
  10603. "dev-master": "6.1-dev"
  10604. }
  10605. },
  10606. "autoload": {
  10607. "psr-4": {
  10608. "Symplify\\PackageBuilder\\": "src"
  10609. }
  10610. },
  10611. "notification-url": "https://packagist.org/downloads/",
  10612. "license": [
  10613. "MIT"
  10614. ],
  10615. "description": "Dependency Injection, Console and Kernel toolkit for Symplify packages.",
  10616. "time": "2019-09-17T20:48:03+00:00"
  10617. },
  10618. {
  10619. "name": "theseer/fdomdocument",
  10620. "version": "1.6.6",
  10621. "source": {
  10622. "type": "git",
  10623. "url": "https://github.com/theseer/fDOMDocument.git",
  10624. "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca"
  10625. },
  10626. "dist": {
  10627. "type": "zip",
  10628. "url": "https://api.github.com/repos/theseer/fDOMDocument/zipball/6e8203e40a32a9c770bcb62fe37e68b948da6dca",
  10629. "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca",
  10630. "shasum": ""
  10631. },
  10632. "require": {
  10633. "ext-dom": "*",
  10634. "lib-libxml": "*",
  10635. "php": ">=5.3.3"
  10636. },
  10637. "type": "library",
  10638. "autoload": {
  10639. "classmap": [
  10640. "src/"
  10641. ]
  10642. },
  10643. "notification-url": "https://packagist.org/downloads/",
  10644. "license": [
  10645. "BSD-3-Clause"
  10646. ],
  10647. "authors": [
  10648. {
  10649. "name": "Arne Blankerts",
  10650. "email": "arne@blankerts.de",
  10651. "role": "lead"
  10652. }
  10653. ],
  10654. "description": "The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.",
  10655. "homepage": "https://github.com/theseer/fDOMDocument",
  10656. "time": "2017-06-30T11:53:12+00:00"
  10657. },
  10658. {
  10659. "name": "theseer/tokenizer",
  10660. "version": "1.1.3",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/theseer/tokenizer.git",
  10664. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10669. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "ext-dom": "*",
  10674. "ext-tokenizer": "*",
  10675. "ext-xmlwriter": "*",
  10676. "php": "^7.0"
  10677. },
  10678. "type": "library",
  10679. "autoload": {
  10680. "classmap": [
  10681. "src/"
  10682. ]
  10683. },
  10684. "notification-url": "https://packagist.org/downloads/",
  10685. "license": [
  10686. "BSD-3-Clause"
  10687. ],
  10688. "authors": [
  10689. {
  10690. "name": "Arne Blankerts",
  10691. "email": "arne@blankerts.de",
  10692. "role": "Developer"
  10693. }
  10694. ],
  10695. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10696. "time": "2019-06-13T22:48:21+00:00"
  10697. },
  10698. {
  10699. "name": "webmozart/assert",
  10700. "version": "1.5.0",
  10701. "source": {
  10702. "type": "git",
  10703. "url": "https://github.com/webmozart/assert.git",
  10704. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  10705. },
  10706. "dist": {
  10707. "type": "zip",
  10708. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  10709. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  10710. "shasum": ""
  10711. },
  10712. "require": {
  10713. "php": "^5.3.3 || ^7.0",
  10714. "symfony/polyfill-ctype": "^1.8"
  10715. },
  10716. "require-dev": {
  10717. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10718. },
  10719. "type": "library",
  10720. "extra": {
  10721. "branch-alias": {
  10722. "dev-master": "1.3-dev"
  10723. }
  10724. },
  10725. "autoload": {
  10726. "psr-4": {
  10727. "Webmozart\\Assert\\": "src/"
  10728. }
  10729. },
  10730. "notification-url": "https://packagist.org/downloads/",
  10731. "license": [
  10732. "MIT"
  10733. ],
  10734. "authors": [
  10735. {
  10736. "name": "Bernhard Schussek",
  10737. "email": "bschussek@gmail.com"
  10738. }
  10739. ],
  10740. "description": "Assertions to validate method input/output with nice error messages.",
  10741. "keywords": [
  10742. "assert",
  10743. "check",
  10744. "validate"
  10745. ],
  10746. "time": "2019-08-24T08:43:50+00:00"
  10747. }
  10748. ],
  10749. "aliases": [],
  10750. "minimum-stability": "dev",
  10751. "stability-flags": {
  10752. "barryvdh/laravel-debugbar": 20
  10753. },
  10754. "prefer-stable": true,
  10755. "prefer-lowest": false,
  10756. "platform": {
  10757. "php": "^7.2",
  10758. "ext-bcmath": "*",
  10759. "ext-ctype": "*",
  10760. "ext-curl": "*",
  10761. "ext-intl": "*",
  10762. "ext-json": "*",
  10763. "ext-mbstring": "*",
  10764. "ext-openssl": "*"
  10765. },
  10766. "platform-dev": []
  10767. }