composer.lock 295 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "0bdb20bfff419052d039a326d461ea55",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "1.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  20. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-iconv": "*",
  25. "php": "^5.4|^7.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8"
  29. },
  30. "suggest": {
  31. "ext-gd": "to generate QR code images"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "BaconQrCode": "src/"
  37. }
  38. },
  39. "notification-url": "https://repo.packagist.org/downloads/",
  40. "license": [
  41. "BSD-2-Clause"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Ben Scholzen 'DASPRiD'",
  46. "email": "mail@dasprids.de",
  47. "homepage": "http://www.dasprids.de",
  48. "role": "Developer"
  49. }
  50. ],
  51. "description": "BaconQrCode is a QR code generator for PHP.",
  52. "homepage": "https://github.com/Bacon/BaconQrCode",
  53. "time": "2017-10-17T09:59:25+00:00"
  54. },
  55. {
  56. "name": "cakephp/chronos",
  57. "version": "1.3.0",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/cakephp/chronos.git",
  61. "reference": "ba2bab98849e7bf29b02dd634ada49ab36472959"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/cakephp/chronos/zipball/ba2bab98849e7bf29b02dd634ada49ab36472959",
  66. "reference": "ba2bab98849e7bf29b02dd634ada49ab36472959",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "php": ">=5.6"
  71. },
  72. "require-dev": {
  73. "athletic/athletic": "~0.1",
  74. "cakephp/cakephp-codesniffer": "^3.0",
  75. "phpbench/phpbench": "@dev",
  76. "phpunit/phpunit": "<6.0 || ^7.0"
  77. },
  78. "type": "library",
  79. "autoload": {
  80. "psr-4": {
  81. "Cake\\Chronos\\": "src/"
  82. },
  83. "files": [
  84. "src/carbon_compat.php"
  85. ]
  86. },
  87. "notification-url": "https://packagist.org/downloads/",
  88. "license": [
  89. "MIT"
  90. ],
  91. "authors": [
  92. {
  93. "name": "Brian Nesbitt",
  94. "email": "brian@nesbot.com",
  95. "homepage": "http://nesbot.com"
  96. },
  97. {
  98. "name": "The CakePHP Team",
  99. "homepage": "http://cakephp.org"
  100. }
  101. ],
  102. "description": "A simple API extension for DateTime.",
  103. "homepage": "http://cakephp.org",
  104. "keywords": [
  105. "date",
  106. "datetime",
  107. "time"
  108. ],
  109. "time": "2019-11-30T02:33:19+00:00"
  110. },
  111. {
  112. "name": "chumper/zipper",
  113. "version": "v1.0.3",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/Chumper/Zipper.git",
  117. "reference": "d15207e010f8fe1bdd341376bd86d599c4166423"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/Chumper/Zipper/zipball/d15207e010f8fe1bdd341376bd86d599c4166423",
  122. "reference": "d15207e010f8fe1bdd341376bd86d599c4166423",
  123. "shasum": ""
  124. },
  125. "require": {
  126. "ext-zip": "*",
  127. "illuminate/filesystem": "^5.0",
  128. "illuminate/support": "^5.0",
  129. "php": ">=5.6.0"
  130. },
  131. "require-dev": {
  132. "mockery/mockery": "^0.9.4",
  133. "phpunit/phpunit": "^5.7"
  134. },
  135. "type": "library",
  136. "extra": {
  137. "laravel": {
  138. "providers": [
  139. "Chumper\\Zipper\\ZipperServiceProvider"
  140. ],
  141. "aliases": {
  142. "Zipper": "Chumper\\Zipper\\Zipper"
  143. }
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Chumper\\Zipper\\": "src/Chumper/Zipper"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "Apache2"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Nils Plaschke",
  158. "email": "github@nilsplaschke.de",
  159. "homepage": "http://nilsplaschke.de",
  160. "role": "Developer"
  161. }
  162. ],
  163. "description": "This is a little neat helper for the ZipArchive methods with handy functions",
  164. "homepage": "http://github.com/Chumper/zipper",
  165. "keywords": [
  166. "archive",
  167. "laravel",
  168. "zip"
  169. ],
  170. "abandoned": true,
  171. "time": "2020-02-25T11:57:40+00:00"
  172. },
  173. {
  174. "name": "dnoegel/php-xdg-base-dir",
  175. "version": "v0.1.1",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  179. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  184. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "php": ">=5.3.2"
  189. },
  190. "require-dev": {
  191. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "psr-4": {
  196. "XdgBaseDir\\": "src/"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "description": "implementation of xdg base directory specification for php",
  204. "time": "2019-12-04T15:06:13+00:00"
  205. },
  206. {
  207. "name": "doctrine/cache",
  208. "version": "1.10.2",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/doctrine/cache.git",
  212. "reference": "13e3381b25847283a91948d04640543941309727"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  217. "reference": "13e3381b25847283a91948d04640543941309727",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "php": "~7.1 || ^8.0"
  222. },
  223. "conflict": {
  224. "doctrine/common": ">2.2,<2.4"
  225. },
  226. "require-dev": {
  227. "alcaeus/mongo-php-adapter": "^1.1",
  228. "doctrine/coding-standard": "^6.0",
  229. "mongodb/mongodb": "^1.1",
  230. "phpunit/phpunit": "^7.0",
  231. "predis/predis": "~1.0"
  232. },
  233. "suggest": {
  234. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  235. },
  236. "type": "library",
  237. "extra": {
  238. "branch-alias": {
  239. "dev-master": "1.9.x-dev"
  240. }
  241. },
  242. "autoload": {
  243. "psr-4": {
  244. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  245. }
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "MIT"
  250. ],
  251. "authors": [
  252. {
  253. "name": "Guilherme Blanco",
  254. "email": "guilhermeblanco@gmail.com"
  255. },
  256. {
  257. "name": "Roman Borschel",
  258. "email": "roman@code-factory.org"
  259. },
  260. {
  261. "name": "Benjamin Eberlei",
  262. "email": "kontakt@beberlei.de"
  263. },
  264. {
  265. "name": "Jonathan Wage",
  266. "email": "jonwage@gmail.com"
  267. },
  268. {
  269. "name": "Johannes Schmitt",
  270. "email": "schmittjoh@gmail.com"
  271. }
  272. ],
  273. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  274. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  275. "keywords": [
  276. "abstraction",
  277. "apcu",
  278. "cache",
  279. "caching",
  280. "couchdb",
  281. "memcached",
  282. "php",
  283. "redis",
  284. "xcache"
  285. ],
  286. "time": "2020-07-07T18:54:01+00:00"
  287. },
  288. {
  289. "name": "doctrine/dbal",
  290. "version": "2.10.4",
  291. "source": {
  292. "type": "git",
  293. "url": "https://github.com/doctrine/dbal.git",
  294. "reference": "47433196b6390d14409a33885ee42b6208160643"
  295. },
  296. "dist": {
  297. "type": "zip",
  298. "url": "https://api.github.com/repos/doctrine/dbal/zipball/47433196b6390d14409a33885ee42b6208160643",
  299. "reference": "47433196b6390d14409a33885ee42b6208160643",
  300. "shasum": ""
  301. },
  302. "require": {
  303. "doctrine/cache": "^1.0",
  304. "doctrine/event-manager": "^1.0",
  305. "ext-pdo": "*",
  306. "php": "^7.2"
  307. },
  308. "require-dev": {
  309. "doctrine/coding-standard": "^8.1",
  310. "jetbrains/phpstorm-stubs": "^2019.1",
  311. "nikic/php-parser": "^4.4",
  312. "phpstan/phpstan": "^0.12.40",
  313. "phpunit/phpunit": "^8.5.5",
  314. "psalm/plugin-phpunit": "^0.10.0",
  315. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  316. "vimeo/psalm": "^3.14.2"
  317. },
  318. "suggest": {
  319. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  320. },
  321. "bin": [
  322. "bin/doctrine-dbal"
  323. ],
  324. "type": "library",
  325. "extra": {
  326. "branch-alias": {
  327. "dev-master": "2.10.x-dev",
  328. "dev-develop": "3.0.x-dev"
  329. }
  330. },
  331. "autoload": {
  332. "psr-4": {
  333. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "MIT"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Guilherme Blanco",
  343. "email": "guilhermeblanco@gmail.com"
  344. },
  345. {
  346. "name": "Roman Borschel",
  347. "email": "roman@code-factory.org"
  348. },
  349. {
  350. "name": "Benjamin Eberlei",
  351. "email": "kontakt@beberlei.de"
  352. },
  353. {
  354. "name": "Jonathan Wage",
  355. "email": "jonwage@gmail.com"
  356. }
  357. ],
  358. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  359. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  360. "keywords": [
  361. "abstraction",
  362. "database",
  363. "db2",
  364. "dbal",
  365. "mariadb",
  366. "mssql",
  367. "mysql",
  368. "oci8",
  369. "oracle",
  370. "pdo",
  371. "pgsql",
  372. "postgresql",
  373. "queryobject",
  374. "sasql",
  375. "sql",
  376. "sqlanywhere",
  377. "sqlite",
  378. "sqlserver",
  379. "sqlsrv"
  380. ],
  381. "time": "2020-09-12T21:20:41+00:00"
  382. },
  383. {
  384. "name": "doctrine/event-manager",
  385. "version": "1.1.1",
  386. "source": {
  387. "type": "git",
  388. "url": "https://github.com/doctrine/event-manager.git",
  389. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  390. },
  391. "dist": {
  392. "type": "zip",
  393. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  394. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  395. "shasum": ""
  396. },
  397. "require": {
  398. "php": "^7.1 || ^8.0"
  399. },
  400. "conflict": {
  401. "doctrine/common": "<2.9@dev"
  402. },
  403. "require-dev": {
  404. "doctrine/coding-standard": "^6.0",
  405. "phpunit/phpunit": "^7.0"
  406. },
  407. "type": "library",
  408. "extra": {
  409. "branch-alias": {
  410. "dev-master": "1.0.x-dev"
  411. }
  412. },
  413. "autoload": {
  414. "psr-4": {
  415. "Doctrine\\Common\\": "lib/Doctrine/Common"
  416. }
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "MIT"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Guilherme Blanco",
  425. "email": "guilhermeblanco@gmail.com"
  426. },
  427. {
  428. "name": "Roman Borschel",
  429. "email": "roman@code-factory.org"
  430. },
  431. {
  432. "name": "Benjamin Eberlei",
  433. "email": "kontakt@beberlei.de"
  434. },
  435. {
  436. "name": "Jonathan Wage",
  437. "email": "jonwage@gmail.com"
  438. },
  439. {
  440. "name": "Johannes Schmitt",
  441. "email": "schmittjoh@gmail.com"
  442. },
  443. {
  444. "name": "Marco Pivetta",
  445. "email": "ocramius@gmail.com"
  446. }
  447. ],
  448. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  449. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  450. "keywords": [
  451. "event",
  452. "event dispatcher",
  453. "event manager",
  454. "event system",
  455. "events"
  456. ],
  457. "time": "2020-05-29T18:28:51+00:00"
  458. },
  459. {
  460. "name": "doctrine/inflector",
  461. "version": "1.4.3",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/doctrine/inflector.git",
  465. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  470. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "php": "^7.2 || ^8.0"
  475. },
  476. "require-dev": {
  477. "doctrine/coding-standard": "^7.0",
  478. "phpstan/phpstan": "^0.11",
  479. "phpstan/phpstan-phpunit": "^0.11",
  480. "phpstan/phpstan-strict-rules": "^0.11",
  481. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-master": "2.0.x-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  492. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "MIT"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Guilherme Blanco",
  502. "email": "guilhermeblanco@gmail.com"
  503. },
  504. {
  505. "name": "Roman Borschel",
  506. "email": "roman@code-factory.org"
  507. },
  508. {
  509. "name": "Benjamin Eberlei",
  510. "email": "kontakt@beberlei.de"
  511. },
  512. {
  513. "name": "Jonathan Wage",
  514. "email": "jonwage@gmail.com"
  515. },
  516. {
  517. "name": "Johannes Schmitt",
  518. "email": "schmittjoh@gmail.com"
  519. }
  520. ],
  521. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  522. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  523. "keywords": [
  524. "inflection",
  525. "inflector",
  526. "lowercase",
  527. "manipulation",
  528. "php",
  529. "plural",
  530. "singular",
  531. "strings",
  532. "uppercase",
  533. "words"
  534. ],
  535. "time": "2020-05-29T07:19:59+00:00"
  536. },
  537. {
  538. "name": "doctrine/lexer",
  539. "version": "1.2.1",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/doctrine/lexer.git",
  543. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  548. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  549. "shasum": ""
  550. },
  551. "require": {
  552. "php": "^7.2 || ^8.0"
  553. },
  554. "require-dev": {
  555. "doctrine/coding-standard": "^6.0",
  556. "phpstan/phpstan": "^0.11.8",
  557. "phpunit/phpunit": "^8.2"
  558. },
  559. "type": "library",
  560. "extra": {
  561. "branch-alias": {
  562. "dev-master": "1.2.x-dev"
  563. }
  564. },
  565. "autoload": {
  566. "psr-4": {
  567. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  568. }
  569. },
  570. "notification-url": "https://packagist.org/downloads/",
  571. "license": [
  572. "MIT"
  573. ],
  574. "authors": [
  575. {
  576. "name": "Guilherme Blanco",
  577. "email": "guilhermeblanco@gmail.com"
  578. },
  579. {
  580. "name": "Roman Borschel",
  581. "email": "roman@code-factory.org"
  582. },
  583. {
  584. "name": "Johannes Schmitt",
  585. "email": "schmittjoh@gmail.com"
  586. }
  587. ],
  588. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  589. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  590. "keywords": [
  591. "annotations",
  592. "docblock",
  593. "lexer",
  594. "parser",
  595. "php"
  596. ],
  597. "time": "2020-05-25T17:44:05+00:00"
  598. },
  599. {
  600. "name": "easywechat-composer/easywechat-composer",
  601. "version": "1.4.0",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/mingyoung/easywechat-composer.git",
  605. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  610. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "composer-plugin-api": "^1.0 || ^2.0",
  615. "php": ">=7.0"
  616. },
  617. "require-dev": {
  618. "composer/composer": "^1.0 || ^2.0",
  619. "phpunit/phpunit": "^6.5 || ^7.0"
  620. },
  621. "type": "composer-plugin",
  622. "extra": {
  623. "class": "EasyWeChatComposer\\Plugin"
  624. },
  625. "autoload": {
  626. "psr-4": {
  627. "EasyWeChatComposer\\": "src/"
  628. }
  629. },
  630. "notification-url": "https://packagist.org/downloads/",
  631. "license": [
  632. "MIT"
  633. ],
  634. "authors": [
  635. {
  636. "name": "张铭阳",
  637. "email": "mingyoungcheung@gmail.com"
  638. }
  639. ],
  640. "description": "The composer plugin for EasyWeChat",
  641. "time": "2020-07-23T11:06:47+00:00"
  642. },
  643. {
  644. "name": "egulias/email-validator",
  645. "version": "2.1.24",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/egulias/EmailValidator.git",
  649. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  654. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "doctrine/lexer": "^1.0.1",
  659. "php": ">=5.5",
  660. "symfony/polyfill-intl-idn": "^1.10"
  661. },
  662. "require-dev": {
  663. "dominicsayers/isemail": "^3.0.7",
  664. "phpunit/phpunit": "^4.8.36|^7.5.15",
  665. "satooshi/php-coveralls": "^1.0.1"
  666. },
  667. "suggest": {
  668. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  669. },
  670. "type": "library",
  671. "extra": {
  672. "branch-alias": {
  673. "dev-master": "2.1.x-dev"
  674. }
  675. },
  676. "autoload": {
  677. "psr-4": {
  678. "Egulias\\EmailValidator\\": "src"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Eduardo Gulias Davis"
  688. }
  689. ],
  690. "description": "A library for validating emails against several RFCs",
  691. "homepage": "https://github.com/egulias/EmailValidator",
  692. "keywords": [
  693. "email",
  694. "emailvalidation",
  695. "emailvalidator",
  696. "validation",
  697. "validator"
  698. ],
  699. "time": "2020-11-14T15:56:27+00:00"
  700. },
  701. {
  702. "name": "elasticsearch/elasticsearch",
  703. "version": "v6.5.1",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/elastic/elasticsearch-php.git",
  707. "reference": "0c93d0e5b852634159d9f349b1848acde845400b"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/0c93d0e5b852634159d9f349b1848acde845400b",
  712. "reference": "0c93d0e5b852634159d9f349b1848acde845400b",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "ext-json": ">=1.3.7",
  717. "guzzlehttp/ringphp": "~1.0",
  718. "php": "^7.0",
  719. "psr/log": "~1.0"
  720. },
  721. "require-dev": {
  722. "cpliakas/git-wrapper": "~1.0",
  723. "doctrine/inflector": "^1.1",
  724. "mockery/mockery": "^1.2",
  725. "phpstan/phpstan-shim": "^0.9 || ^0.11",
  726. "phpunit/phpunit": "^5.7 || ^6.5",
  727. "squizlabs/php_codesniffer": "^3.4",
  728. "symfony/finder": "^2.8",
  729. "symfony/yaml": "^2.8"
  730. },
  731. "suggest": {
  732. "ext-curl": "*",
  733. "monolog/monolog": "Allows for client-level logging and tracing"
  734. },
  735. "type": "library",
  736. "autoload": {
  737. "psr-4": {
  738. "Elasticsearch\\": "src/Elasticsearch/"
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "Apache-2.0"
  744. ],
  745. "authors": [
  746. {
  747. "name": "Zachary Tong"
  748. },
  749. {
  750. "name": "Enrico Zimuel"
  751. }
  752. ],
  753. "description": "PHP Client for Elasticsearch",
  754. "keywords": [
  755. "client",
  756. "elasticsearch",
  757. "search"
  758. ],
  759. "time": "2019-07-19T13:34:35+00:00"
  760. },
  761. {
  762. "name": "erusev/parsedown",
  763. "version": "1.7.4",
  764. "source": {
  765. "type": "git",
  766. "url": "https://github.com/erusev/parsedown.git",
  767. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  768. },
  769. "dist": {
  770. "type": "zip",
  771. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  772. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  773. "shasum": ""
  774. },
  775. "require": {
  776. "ext-mbstring": "*",
  777. "php": ">=5.3.0"
  778. },
  779. "require-dev": {
  780. "phpunit/phpunit": "^4.8.35"
  781. },
  782. "type": "library",
  783. "autoload": {
  784. "psr-0": {
  785. "Parsedown": ""
  786. }
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "MIT"
  791. ],
  792. "authors": [
  793. {
  794. "name": "Emanuil Rusev",
  795. "email": "hello@erusev.com",
  796. "homepage": "http://erusev.com"
  797. }
  798. ],
  799. "description": "Parser for Markdown.",
  800. "homepage": "http://parsedown.org",
  801. "keywords": [
  802. "markdown",
  803. "parser"
  804. ],
  805. "time": "2019-12-30T22:54:17+00:00"
  806. },
  807. {
  808. "name": "fideloper/proxy",
  809. "version": "3.3.4",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/fideloper/TrustedProxy.git",
  813. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  818. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "illuminate/contracts": "~5.0",
  823. "php": ">=5.4.0"
  824. },
  825. "require-dev": {
  826. "illuminate/http": "~5.0",
  827. "mockery/mockery": "~0.9.3",
  828. "phpunit/phpunit": "^5.7"
  829. },
  830. "type": "library",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "3.3-dev"
  834. },
  835. "laravel": {
  836. "providers": [
  837. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  838. ]
  839. }
  840. },
  841. "autoload": {
  842. "psr-4": {
  843. "Fideloper\\Proxy\\": "src/"
  844. }
  845. },
  846. "notification-url": "https://repo.packagist.org/downloads/",
  847. "license": [
  848. "MIT"
  849. ],
  850. "authors": [
  851. {
  852. "name": "Chris Fidao",
  853. "email": "fideloper@gmail.com"
  854. }
  855. ],
  856. "description": "Set trusted proxies for Laravel",
  857. "keywords": [
  858. "load balancing",
  859. "proxy",
  860. "trusted proxy"
  861. ],
  862. "time": "2017-06-15T17:19:42+00:00"
  863. },
  864. {
  865. "name": "guzzlehttp/guzzle",
  866. "version": "6.5.5",
  867. "source": {
  868. "type": "git",
  869. "url": "https://github.com/guzzle/guzzle.git",
  870. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  871. },
  872. "dist": {
  873. "type": "zip",
  874. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  875. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  876. "shasum": ""
  877. },
  878. "require": {
  879. "ext-json": "*",
  880. "guzzlehttp/promises": "^1.0",
  881. "guzzlehttp/psr7": "^1.6.1",
  882. "php": ">=5.5",
  883. "symfony/polyfill-intl-idn": "^1.17.0"
  884. },
  885. "require-dev": {
  886. "ext-curl": "*",
  887. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  888. "psr/log": "^1.1"
  889. },
  890. "suggest": {
  891. "psr/log": "Required for using the Log middleware"
  892. },
  893. "type": "library",
  894. "extra": {
  895. "branch-alias": {
  896. "dev-master": "6.5-dev"
  897. }
  898. },
  899. "autoload": {
  900. "psr-4": {
  901. "GuzzleHttp\\": "src/"
  902. },
  903. "files": [
  904. "src/functions_include.php"
  905. ]
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Michael Dowling",
  914. "email": "mtdowling@gmail.com",
  915. "homepage": "https://github.com/mtdowling"
  916. }
  917. ],
  918. "description": "Guzzle is a PHP HTTP client library",
  919. "homepage": "http://guzzlephp.org/",
  920. "keywords": [
  921. "client",
  922. "curl",
  923. "framework",
  924. "http",
  925. "http client",
  926. "rest",
  927. "web service"
  928. ],
  929. "time": "2020-06-16T21:01:06+00:00"
  930. },
  931. {
  932. "name": "guzzlehttp/promises",
  933. "version": "1.4.0",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/guzzle/promises.git",
  937. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  942. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=5.5"
  947. },
  948. "require-dev": {
  949. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  950. },
  951. "type": "library",
  952. "extra": {
  953. "branch-alias": {
  954. "dev-master": "1.4-dev"
  955. }
  956. },
  957. "autoload": {
  958. "psr-4": {
  959. "GuzzleHttp\\Promise\\": "src/"
  960. },
  961. "files": [
  962. "src/functions_include.php"
  963. ]
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "Michael Dowling",
  972. "email": "mtdowling@gmail.com",
  973. "homepage": "https://github.com/mtdowling"
  974. }
  975. ],
  976. "description": "Guzzle promises library",
  977. "keywords": [
  978. "promise"
  979. ],
  980. "time": "2020-09-30T07:37:28+00:00"
  981. },
  982. {
  983. "name": "guzzlehttp/psr7",
  984. "version": "1.7.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/guzzle/psr7.git",
  988. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  993. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": ">=5.4.0",
  998. "psr/http-message": "~1.0",
  999. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1000. },
  1001. "provide": {
  1002. "psr/http-message-implementation": "1.0"
  1003. },
  1004. "require-dev": {
  1005. "ext-zlib": "*",
  1006. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1007. },
  1008. "suggest": {
  1009. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "1.7-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "GuzzleHttp\\Psr7\\": "src/"
  1020. },
  1021. "files": [
  1022. "src/functions_include.php"
  1023. ]
  1024. },
  1025. "notification-url": "https://packagist.org/downloads/",
  1026. "license": [
  1027. "MIT"
  1028. ],
  1029. "authors": [
  1030. {
  1031. "name": "Michael Dowling",
  1032. "email": "mtdowling@gmail.com",
  1033. "homepage": "https://github.com/mtdowling"
  1034. },
  1035. {
  1036. "name": "Tobias Schultze",
  1037. "homepage": "https://github.com/Tobion"
  1038. }
  1039. ],
  1040. "description": "PSR-7 message implementation that also provides common utility methods",
  1041. "keywords": [
  1042. "http",
  1043. "message",
  1044. "psr-7",
  1045. "request",
  1046. "response",
  1047. "stream",
  1048. "uri",
  1049. "url"
  1050. ],
  1051. "time": "2020-09-30T07:37:11+00:00"
  1052. },
  1053. {
  1054. "name": "guzzlehttp/ringphp",
  1055. "version": "1.1.1",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/guzzle/RingPHP.git",
  1059. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b",
  1064. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "guzzlehttp/streams": "~3.0",
  1069. "php": ">=5.4.0",
  1070. "react/promise": "~2.0"
  1071. },
  1072. "require-dev": {
  1073. "ext-curl": "*",
  1074. "phpunit/phpunit": "~4.0"
  1075. },
  1076. "suggest": {
  1077. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  1078. },
  1079. "type": "library",
  1080. "extra": {
  1081. "branch-alias": {
  1082. "dev-master": "1.1-dev"
  1083. }
  1084. },
  1085. "autoload": {
  1086. "psr-4": {
  1087. "GuzzleHttp\\Ring\\": "src/"
  1088. }
  1089. },
  1090. "notification-url": "https://repo.packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Michael Dowling",
  1097. "email": "mtdowling@gmail.com",
  1098. "homepage": "https://github.com/mtdowling"
  1099. }
  1100. ],
  1101. "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
  1102. "abandoned": true,
  1103. "time": "2018-07-31T13:22:33+00:00"
  1104. },
  1105. {
  1106. "name": "guzzlehttp/streams",
  1107. "version": "3.0.0",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/guzzle/streams.git",
  1111. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  1116. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "php": ">=5.4.0"
  1121. },
  1122. "require-dev": {
  1123. "phpunit/phpunit": "~4.0"
  1124. },
  1125. "type": "library",
  1126. "extra": {
  1127. "branch-alias": {
  1128. "dev-master": "3.0-dev"
  1129. }
  1130. },
  1131. "autoload": {
  1132. "psr-4": {
  1133. "GuzzleHttp\\Stream\\": "src/"
  1134. }
  1135. },
  1136. "notification-url": "https://repo.packagist.org/downloads/",
  1137. "license": [
  1138. "MIT"
  1139. ],
  1140. "authors": [
  1141. {
  1142. "name": "Michael Dowling",
  1143. "email": "mtdowling@gmail.com",
  1144. "homepage": "https://github.com/mtdowling"
  1145. }
  1146. ],
  1147. "description": "Provides a simple abstraction over streams of data",
  1148. "homepage": "http://guzzlephp.org/",
  1149. "keywords": [
  1150. "Guzzle",
  1151. "stream"
  1152. ],
  1153. "abandoned": true,
  1154. "time": "2014-10-12T19:18:40+00:00"
  1155. },
  1156. {
  1157. "name": "hashids/hashids",
  1158. "version": "4.1.0",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/vinkla/hashids.git",
  1162. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1167. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "ext-mbstring": "*",
  1172. "php": "^7.2 || ^8.0"
  1173. },
  1174. "require-dev": {
  1175. "phpunit/phpunit": "^8.0 || ^9.4",
  1176. "squizlabs/php_codesniffer": "^3.5"
  1177. },
  1178. "suggest": {
  1179. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1180. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "4.1-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Hashids\\": "src/"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Ivan Akimov",
  1200. "email": "ivan@barreleye.com"
  1201. },
  1202. {
  1203. "name": "Vincent Klaiber",
  1204. "email": "hello@doubledip.se"
  1205. }
  1206. ],
  1207. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1208. "homepage": "https://hashids.org/php",
  1209. "keywords": [
  1210. "bitly",
  1211. "decode",
  1212. "encode",
  1213. "hash",
  1214. "hashid",
  1215. "hashids",
  1216. "ids",
  1217. "obfuscate",
  1218. "youtube"
  1219. ],
  1220. "time": "2020-11-26T19:24:33+00:00"
  1221. },
  1222. {
  1223. "name": "hhxsv5/laravel-s",
  1224. "version": "v3.5.17",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/hhxsv5/laravel-s.git",
  1228. "reference": "61f9d90a151f0a4d7c51962b0e5decc859d90686"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/hhxsv5/laravel-s/zipball/61f9d90a151f0a4d7c51962b0e5decc859d90686",
  1233. "reference": "61f9d90a151f0a4d7c51962b0e5decc859d90686",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "ext-json": "*",
  1238. "ext-pcntl": "*",
  1239. "php": ">=5.5.9",
  1240. "swoole/ide-helper": "@dev",
  1241. "symfony/console": ">=2.7.0"
  1242. },
  1243. "suggest": {
  1244. "ext-inotify": "Inotify, used to reload all worker processes when your code is modified.",
  1245. "ext-swoole": "Event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP, require >= 1.7.19."
  1246. },
  1247. "bin": [
  1248. "bin/fswatch"
  1249. ],
  1250. "type": "library",
  1251. "extra": {
  1252. "laravel": {
  1253. "providers": [
  1254. "Hhxsv5\\LaravelS\\Illuminate\\LaravelSServiceProvider"
  1255. ]
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-4": {
  1260. "Hhxsv5\\LaravelS\\": "src"
  1261. }
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "Xie Biao",
  1270. "email": "hhxsv5@sina.com"
  1271. }
  1272. ],
  1273. "description": "🚀LaravelS is like a glue that is used to quickly integrate Swoole into Laravel or Lumen, and then give them better performance and more possibilities.",
  1274. "homepage": "https://github.com/hhxsv5/laravel-s",
  1275. "keywords": [
  1276. "async",
  1277. "coroutine",
  1278. "http",
  1279. "inotify",
  1280. "laravel",
  1281. "laravel-s",
  1282. "lumen",
  1283. "performance",
  1284. "process",
  1285. "server",
  1286. "swoole",
  1287. "task",
  1288. "tcp",
  1289. "timer",
  1290. "udp",
  1291. "websocket"
  1292. ],
  1293. "time": "2019-12-28T09:48:55+00:00"
  1294. },
  1295. {
  1296. "name": "intervention/image",
  1297. "version": "2.5.1",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/Intervention/image.git",
  1301. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1306. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "ext-fileinfo": "*",
  1311. "guzzlehttp/psr7": "~1.1",
  1312. "php": ">=5.4.0"
  1313. },
  1314. "require-dev": {
  1315. "mockery/mockery": "~0.9.2",
  1316. "phpunit/phpunit": "^4.8 || ^5.7"
  1317. },
  1318. "suggest": {
  1319. "ext-gd": "to use GD library based image processing.",
  1320. "ext-imagick": "to use Imagick based image processing.",
  1321. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1322. },
  1323. "type": "library",
  1324. "extra": {
  1325. "branch-alias": {
  1326. "dev-master": "2.4-dev"
  1327. },
  1328. "laravel": {
  1329. "providers": [
  1330. "Intervention\\Image\\ImageServiceProvider"
  1331. ],
  1332. "aliases": {
  1333. "Image": "Intervention\\Image\\Facades\\Image"
  1334. }
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Intervention\\Image\\": "src/Intervention/Image"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Oliver Vogel",
  1349. "email": "oliver@olivervogel.com",
  1350. "homepage": "http://olivervogel.com/"
  1351. }
  1352. ],
  1353. "description": "Image handling and manipulation library with support for Laravel integration",
  1354. "homepage": "http://image.intervention.io/",
  1355. "keywords": [
  1356. "gd",
  1357. "image",
  1358. "imagick",
  1359. "laravel",
  1360. "thumbnail",
  1361. "watermark"
  1362. ],
  1363. "time": "2019-11-02T09:15:47+00:00"
  1364. },
  1365. {
  1366. "name": "jakub-onderka/php-console-color",
  1367. "version": "v0.2",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1371. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1376. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "php": ">=5.4.0"
  1381. },
  1382. "require-dev": {
  1383. "jakub-onderka/php-code-style": "1.0",
  1384. "jakub-onderka/php-parallel-lint": "1.0",
  1385. "jakub-onderka/php-var-dump-check": "0.*",
  1386. "phpunit/phpunit": "~4.3",
  1387. "squizlabs/php_codesniffer": "1.*"
  1388. },
  1389. "type": "library",
  1390. "autoload": {
  1391. "psr-4": {
  1392. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1393. }
  1394. },
  1395. "notification-url": "https://packagist.org/downloads/",
  1396. "license": [
  1397. "BSD-2-Clause"
  1398. ],
  1399. "authors": [
  1400. {
  1401. "name": "Jakub Onderka",
  1402. "email": "jakub.onderka@gmail.com"
  1403. }
  1404. ],
  1405. "abandoned": "php-parallel-lint/php-console-color",
  1406. "time": "2018-09-29T17:23:10+00:00"
  1407. },
  1408. {
  1409. "name": "jakub-onderka/php-console-highlighter",
  1410. "version": "v0.4",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1414. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1419. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "ext-tokenizer": "*",
  1424. "jakub-onderka/php-console-color": "~0.2",
  1425. "php": ">=5.4.0"
  1426. },
  1427. "require-dev": {
  1428. "jakub-onderka/php-code-style": "~1.0",
  1429. "jakub-onderka/php-parallel-lint": "~1.0",
  1430. "jakub-onderka/php-var-dump-check": "~0.1",
  1431. "phpunit/phpunit": "~4.0",
  1432. "squizlabs/php_codesniffer": "~1.5"
  1433. },
  1434. "type": "library",
  1435. "autoload": {
  1436. "psr-4": {
  1437. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1438. }
  1439. },
  1440. "notification-url": "https://packagist.org/downloads/",
  1441. "license": [
  1442. "MIT"
  1443. ],
  1444. "authors": [
  1445. {
  1446. "name": "Jakub Onderka",
  1447. "email": "acci@acci.cz",
  1448. "homepage": "http://www.acci.cz/"
  1449. }
  1450. ],
  1451. "description": "Highlight PHP code in terminal",
  1452. "abandoned": "php-parallel-lint/php-console-highlighter",
  1453. "time": "2018-09-29T18:48:56+00:00"
  1454. },
  1455. {
  1456. "name": "kylekatarnls/update-helper",
  1457. "version": "1.2.1",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/kylekatarnls/update-helper.git",
  1461. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
  1466. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "composer-plugin-api": "^1.1.0 || ^2.0.0",
  1471. "php": ">=5.3.0"
  1472. },
  1473. "require-dev": {
  1474. "codeclimate/php-test-reporter": "dev-master",
  1475. "composer/composer": "2.0.x-dev || ^2.0.0-dev",
  1476. "phpunit/phpunit": ">=4.8.35 <6.0"
  1477. },
  1478. "type": "composer-plugin",
  1479. "extra": {
  1480. "class": "UpdateHelper\\ComposerPlugin"
  1481. },
  1482. "autoload": {
  1483. "psr-0": {
  1484. "UpdateHelper\\": "src/"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Kyle",
  1494. "email": "kylekatarnls@gmail.com"
  1495. }
  1496. ],
  1497. "description": "Update helper",
  1498. "time": "2020-04-07T20:44:10+00:00"
  1499. },
  1500. {
  1501. "name": "laravel-admin",
  1502. "version": "dev-develop",
  1503. "dist": {
  1504. "type": "path",
  1505. "url": "libs/repositories/laravel-admin",
  1506. "reference": "9ed4776eda9438e56c6d838d0c77345360c330af",
  1507. "shasum": null
  1508. },
  1509. "require": {
  1510. "doctrine/dbal": "2.*",
  1511. "laravel/framework": "~5.5",
  1512. "php": ">=7.0.0",
  1513. "symfony/dom-crawler": "~3.1|~4.0"
  1514. },
  1515. "require-dev": {
  1516. "fzaninotto/faker": "~1.4",
  1517. "intervention/image": "~2.3",
  1518. "laravel/browser-kit-testing": "^2.0",
  1519. "laravel/laravel": "~5.5",
  1520. "phpunit/phpunit": "~6.0",
  1521. "symfony/css-selector": "~3.1"
  1522. },
  1523. "suggest": {
  1524. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  1525. "spatie/eloquent-sortable": "Required to built orderable gird."
  1526. },
  1527. "type": "library",
  1528. "extra": {
  1529. "laravel": {
  1530. "providers": [
  1531. "Encore\\Admin\\AdminServiceProvider"
  1532. ],
  1533. "aliases": {
  1534. "Admin": "Encore\\Admin\\Facades\\Admin"
  1535. }
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Encore\\Admin\\": "src/"
  1541. },
  1542. "files": [
  1543. "src/helpers.php"
  1544. ]
  1545. },
  1546. "autoload-dev": {
  1547. "psr-4": {
  1548. "Tests\\Models\\": "tests/models",
  1549. "Tests\\Controllers\\": "tests/controllers"
  1550. },
  1551. "classmap": [
  1552. "tests/TestCase.php"
  1553. ]
  1554. },
  1555. "scripts": {
  1556. "test": [
  1557. "./vendor/bin/phpunit"
  1558. ]
  1559. },
  1560. "license": [
  1561. "MIT"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "zsong",
  1566. "email": "zosong@126.com"
  1567. }
  1568. ],
  1569. "description": "laravel admin",
  1570. "homepage": "https://github.com/z-song/laravel-admin",
  1571. "keywords": [
  1572. "admin",
  1573. "form",
  1574. "grid",
  1575. "laravel"
  1576. ]
  1577. },
  1578. {
  1579. "name": "laravel-admin-ex/helpers",
  1580. "version": "dev-develop",
  1581. "dist": {
  1582. "type": "path",
  1583. "url": "libs/repositories/laravel-admin-ext/helpers",
  1584. "reference": "fc1b89a23548934ab6a8f80c6c27b4defc610ef1",
  1585. "shasum": null
  1586. },
  1587. "require": {
  1588. "laravel-admin": "*",
  1589. "php": ">=7.0.0"
  1590. },
  1591. "require-dev": {
  1592. "phpunit/phpunit": "~6.0"
  1593. },
  1594. "type": "library",
  1595. "extra": {
  1596. "laravel": {
  1597. "providers": [
  1598. "Encore\\Admin\\Helpers\\HelpersServiceProvider"
  1599. ]
  1600. }
  1601. },
  1602. "autoload": {
  1603. "psr-4": {
  1604. "Encore\\Admin\\Helpers\\": "src/"
  1605. }
  1606. },
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "z-song",
  1613. "email": "zosong@126.com"
  1614. }
  1615. ],
  1616. "description": "Helpers extension for laravel-admin",
  1617. "homepage": "https://github.com/laravel-admin-extensions/helpers",
  1618. "keywords": [
  1619. "helpers",
  1620. "laravel-admin"
  1621. ]
  1622. },
  1623. {
  1624. "name": "laravel-admin-ex/scheduling",
  1625. "version": "dev-develop",
  1626. "dist": {
  1627. "type": "path",
  1628. "url": "libs/repositories/laravel-admin-ext/scheduling",
  1629. "reference": "7ff93fa49e16a2e1bad6a5ac5b19cab89070a605",
  1630. "shasum": null
  1631. },
  1632. "require": {
  1633. "laravel-admin": "*",
  1634. "laravel/framework": "~5.5",
  1635. "php": ">=7.0.0"
  1636. },
  1637. "require-dev": {
  1638. "laravel/laravel": "~5.5",
  1639. "phpunit/phpunit": "~6.0"
  1640. },
  1641. "type": "library",
  1642. "extra": {
  1643. "laravel": {
  1644. "providers": [
  1645. "Encore\\Admin\\Scheduling\\SchedulingServiceProvider"
  1646. ]
  1647. }
  1648. },
  1649. "autoload": {
  1650. "psr-4": {
  1651. "Encore\\Admin\\Scheduling\\": "src/"
  1652. }
  1653. },
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "z-song",
  1660. "email": "zosong@126.com"
  1661. }
  1662. ],
  1663. "description": "Task scheduling extension for laravel-admin",
  1664. "homepage": "https://github.com/laravel-admin-extensions/scheduling",
  1665. "keywords": [
  1666. "Scheduling",
  1667. "laravel-admin",
  1668. "task"
  1669. ]
  1670. },
  1671. {
  1672. "name": "laravel-admin-ex/ueditor",
  1673. "version": "dev-develop",
  1674. "dist": {
  1675. "type": "path",
  1676. "url": "libs/repositories/laravel-admin-ext/ueditor",
  1677. "reference": "096212ec5793c780aae468b6dfd6eb036a09c91a",
  1678. "shasum": null
  1679. },
  1680. "require": {
  1681. "laravel-admin": "*",
  1682. "overtrue/laravel-ueditor": "~1.0",
  1683. "php": ">=7.0.0"
  1684. },
  1685. "require-dev": {
  1686. "phpunit/phpunit": "~6.0"
  1687. },
  1688. "type": "library",
  1689. "extra": {
  1690. "laravel": {
  1691. "providers": [
  1692. "Codingyu\\Ueditor\\UeditorServiceProvider"
  1693. ]
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Codingyu\\Ueditor\\": "src/"
  1699. }
  1700. },
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "codingyu",
  1707. "email": "everceyu@gmail.com"
  1708. }
  1709. ],
  1710. "description": "UEditor extension for laravel-admin",
  1711. "homepage": "https://github.com/codingyu/UEditor",
  1712. "keywords": [
  1713. "extension",
  1714. "laravel-admin",
  1715. "ueditor"
  1716. ]
  1717. },
  1718. {
  1719. "name": "laravel/framework",
  1720. "version": "v5.5.50",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/laravel/framework.git",
  1724. "reference": "c62385a23c639742b3b74a4a78640da25e6b782b"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/laravel/framework/zipball/c62385a23c639742b3b74a4a78640da25e6b782b",
  1729. "reference": "c62385a23c639742b3b74a4a78640da25e6b782b",
  1730. "shasum": ""
  1731. },
  1732. "require": {
  1733. "doctrine/inflector": "~1.1",
  1734. "erusev/parsedown": "~1.7",
  1735. "ext-mbstring": "*",
  1736. "ext-openssl": "*",
  1737. "league/flysystem": "^1.0.8",
  1738. "monolog/monolog": "~1.12",
  1739. "mtdowling/cron-expression": "~1.0",
  1740. "nesbot/carbon": "^1.26.0",
  1741. "php": ">=7.0",
  1742. "psr/container": "~1.0",
  1743. "psr/simple-cache": "^1.0",
  1744. "ramsey/uuid": "~3.0",
  1745. "swiftmailer/swiftmailer": "~6.0",
  1746. "symfony/console": "~3.3",
  1747. "symfony/debug": "~3.3",
  1748. "symfony/finder": "~3.3",
  1749. "symfony/http-foundation": "~3.3",
  1750. "symfony/http-kernel": "~3.3",
  1751. "symfony/process": "~3.3",
  1752. "symfony/routing": "~3.3",
  1753. "symfony/var-dumper": "~3.3",
  1754. "tijsverkoyen/css-to-inline-styles": "~2.2",
  1755. "vlucas/phpdotenv": "~2.2"
  1756. },
  1757. "replace": {
  1758. "illuminate/auth": "self.version",
  1759. "illuminate/broadcasting": "self.version",
  1760. "illuminate/bus": "self.version",
  1761. "illuminate/cache": "self.version",
  1762. "illuminate/config": "self.version",
  1763. "illuminate/console": "self.version",
  1764. "illuminate/container": "self.version",
  1765. "illuminate/contracts": "self.version",
  1766. "illuminate/cookie": "self.version",
  1767. "illuminate/database": "self.version",
  1768. "illuminate/encryption": "self.version",
  1769. "illuminate/events": "self.version",
  1770. "illuminate/filesystem": "self.version",
  1771. "illuminate/hashing": "self.version",
  1772. "illuminate/http": "self.version",
  1773. "illuminate/log": "self.version",
  1774. "illuminate/mail": "self.version",
  1775. "illuminate/notifications": "self.version",
  1776. "illuminate/pagination": "self.version",
  1777. "illuminate/pipeline": "self.version",
  1778. "illuminate/queue": "self.version",
  1779. "illuminate/redis": "self.version",
  1780. "illuminate/routing": "self.version",
  1781. "illuminate/session": "self.version",
  1782. "illuminate/support": "self.version",
  1783. "illuminate/translation": "self.version",
  1784. "illuminate/validation": "self.version",
  1785. "illuminate/view": "self.version",
  1786. "tightenco/collect": "<5.5.33"
  1787. },
  1788. "require-dev": {
  1789. "aws/aws-sdk-php": "~3.0",
  1790. "doctrine/dbal": "~2.5",
  1791. "filp/whoops": "^2.1.4",
  1792. "mockery/mockery": "~1.0",
  1793. "orchestra/testbench-core": "3.5.*",
  1794. "pda/pheanstalk": "~3.0",
  1795. "phpunit/phpunit": "~6.0",
  1796. "predis/predis": "^1.1.1",
  1797. "symfony/css-selector": "~3.3",
  1798. "symfony/dom-crawler": "~3.3"
  1799. },
  1800. "suggest": {
  1801. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  1802. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  1803. "ext-pcntl": "Required to use all features of the queue worker.",
  1804. "ext-posix": "Required to use all features of the queue worker.",
  1805. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  1806. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  1807. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  1808. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  1809. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  1810. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  1811. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  1812. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  1813. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  1814. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  1815. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  1816. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  1817. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  1818. },
  1819. "type": "library",
  1820. "extra": {
  1821. "branch-alias": {
  1822. "dev-master": "5.5-dev"
  1823. }
  1824. },
  1825. "autoload": {
  1826. "files": [
  1827. "src/Illuminate/Foundation/helpers.php",
  1828. "src/Illuminate/Support/helpers.php"
  1829. ],
  1830. "psr-4": {
  1831. "Illuminate\\": "src/Illuminate/"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Taylor Otwell",
  1841. "email": "taylor@laravel.com"
  1842. }
  1843. ],
  1844. "description": "The Laravel Framework.",
  1845. "homepage": "https://laravel.com",
  1846. "keywords": [
  1847. "framework",
  1848. "laravel"
  1849. ],
  1850. "time": "2020-08-18T13:47:57+00:00"
  1851. },
  1852. {
  1853. "name": "laravel/horizon",
  1854. "version": "v1.4.3",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/laravel/horizon.git",
  1858. "reference": "b00da78d10158036cab2f45115ecc360f2014ed4"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/laravel/horizon/zipball/b00da78d10158036cab2f45115ecc360f2014ed4",
  1863. "reference": "b00da78d10158036cab2f45115ecc360f2014ed4",
  1864. "shasum": ""
  1865. },
  1866. "require": {
  1867. "cakephp/chronos": "^1.0",
  1868. "ext-pcntl": "*",
  1869. "ext-posix": "*",
  1870. "illuminate/contracts": "~5.5",
  1871. "illuminate/queue": "~5.5",
  1872. "illuminate/support": "~5.5",
  1873. "php": ">=7.1.0",
  1874. "predis/predis": "^1.1",
  1875. "ramsey/uuid": "^3.5",
  1876. "symfony/debug": "~3.3|~4.0"
  1877. },
  1878. "require-dev": {
  1879. "mockery/mockery": "~1.0",
  1880. "orchestra/database": "~3.5",
  1881. "orchestra/testbench": "~3.5",
  1882. "phpunit/phpunit": "~6.0"
  1883. },
  1884. "type": "library",
  1885. "extra": {
  1886. "branch-alias": {
  1887. "dev-master": "1.0-dev"
  1888. },
  1889. "laravel": {
  1890. "providers": [
  1891. "Laravel\\Horizon\\HorizonServiceProvider"
  1892. ],
  1893. "aliases": {
  1894. "Horizon": "Laravel\\Horizon\\Horizon"
  1895. }
  1896. }
  1897. },
  1898. "autoload": {
  1899. "psr-4": {
  1900. "Laravel\\Horizon\\": "src/"
  1901. }
  1902. },
  1903. "notification-url": "https://packagist.org/downloads/",
  1904. "license": [
  1905. "MIT"
  1906. ],
  1907. "authors": [
  1908. {
  1909. "name": "Taylor Otwell",
  1910. "email": "taylor@laravel.com"
  1911. }
  1912. ],
  1913. "description": "Dashboard and code-driven configuration for Laravel queues.",
  1914. "keywords": [
  1915. "laravel",
  1916. "queue"
  1917. ],
  1918. "time": "2018-11-01T14:03:51+00:00"
  1919. },
  1920. {
  1921. "name": "laravel/scout",
  1922. "version": "v6.1.3",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/laravel/scout.git",
  1926. "reference": "591a0419fe47b0c379be652c532cb4f669e63769"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/laravel/scout/zipball/591a0419fe47b0c379be652c532cb4f669e63769",
  1931. "reference": "591a0419fe47b0c379be652c532cb4f669e63769",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "illuminate/bus": "~5.4",
  1936. "illuminate/contracts": "~5.4",
  1937. "illuminate/database": "~5.4",
  1938. "illuminate/pagination": "~5.4",
  1939. "illuminate/queue": "~5.4",
  1940. "illuminate/support": "~5.4",
  1941. "php": ">=7.0"
  1942. },
  1943. "require-dev": {
  1944. "algolia/algoliasearch-client-php": "^1.10",
  1945. "mockery/mockery": "~1.0",
  1946. "phpunit/phpunit": "~6.0"
  1947. },
  1948. "suggest": {
  1949. "algolia/algoliasearch-client-php": "Required to use the Algolia engine (^1.10)."
  1950. },
  1951. "type": "library",
  1952. "extra": {
  1953. "branch-alias": {
  1954. "dev-master": "6.0-dev"
  1955. },
  1956. "laravel": {
  1957. "providers": [
  1958. "Laravel\\Scout\\ScoutServiceProvider"
  1959. ]
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "Laravel\\Scout\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://repo.packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Taylor Otwell",
  1974. "email": "taylor@laravel.com"
  1975. }
  1976. ],
  1977. "description": "Laravel Scout provides a driver based solution to searching your Eloquent models.",
  1978. "keywords": [
  1979. "algolia",
  1980. "laravel",
  1981. "search"
  1982. ],
  1983. "time": "2018-12-11T20:35:14+00:00"
  1984. },
  1985. {
  1986. "name": "laravel/tinker",
  1987. "version": "v1.0.10",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/laravel/tinker.git",
  1991. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1996. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1997. "shasum": ""
  1998. },
  1999. "require": {
  2000. "illuminate/console": "~5.1|^6.0",
  2001. "illuminate/contracts": "~5.1|^6.0",
  2002. "illuminate/support": "~5.1|^6.0",
  2003. "php": ">=5.5.9",
  2004. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2005. "symfony/var-dumper": "~3.0|~4.0"
  2006. },
  2007. "require-dev": {
  2008. "phpunit/phpunit": "~4.0|~5.0"
  2009. },
  2010. "suggest": {
  2011. "illuminate/database": "The Illuminate Database package (~5.1)."
  2012. },
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "1.0-dev"
  2017. },
  2018. "laravel": {
  2019. "providers": [
  2020. "Laravel\\Tinker\\TinkerServiceProvider"
  2021. ]
  2022. }
  2023. },
  2024. "autoload": {
  2025. "psr-4": {
  2026. "Laravel\\Tinker\\": "src/"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Taylor Otwell",
  2036. "email": "taylor@laravel.com"
  2037. }
  2038. ],
  2039. "description": "Powerful REPL for the Laravel framework.",
  2040. "keywords": [
  2041. "REPL",
  2042. "Tinker",
  2043. "laravel",
  2044. "psysh"
  2045. ],
  2046. "time": "2019-08-07T15:10:45+00:00"
  2047. },
  2048. {
  2049. "name": "league/flysystem",
  2050. "version": "1.1.3",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://github.com/thephpleague/flysystem.git",
  2054. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2059. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2060. "shasum": ""
  2061. },
  2062. "require": {
  2063. "ext-fileinfo": "*",
  2064. "league/mime-type-detection": "^1.3",
  2065. "php": "^7.2.5 || ^8.0"
  2066. },
  2067. "conflict": {
  2068. "league/flysystem-sftp": "<1.0.6"
  2069. },
  2070. "require-dev": {
  2071. "phpspec/prophecy": "^1.11.1",
  2072. "phpunit/phpunit": "^8.5.8"
  2073. },
  2074. "suggest": {
  2075. "ext-fileinfo": "Required for MimeType",
  2076. "ext-ftp": "Allows you to use FTP server storage",
  2077. "ext-openssl": "Allows you to use FTPS server storage",
  2078. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2079. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2080. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2081. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2082. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2083. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2084. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2085. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2086. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2087. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2088. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2089. },
  2090. "type": "library",
  2091. "extra": {
  2092. "branch-alias": {
  2093. "dev-master": "1.1-dev"
  2094. }
  2095. },
  2096. "autoload": {
  2097. "psr-4": {
  2098. "League\\Flysystem\\": "src/"
  2099. }
  2100. },
  2101. "notification-url": "https://packagist.org/downloads/",
  2102. "license": [
  2103. "MIT"
  2104. ],
  2105. "authors": [
  2106. {
  2107. "name": "Frank de Jonge",
  2108. "email": "info@frenky.net"
  2109. }
  2110. ],
  2111. "description": "Filesystem abstraction: Many filesystems, one API.",
  2112. "keywords": [
  2113. "Cloud Files",
  2114. "WebDAV",
  2115. "abstraction",
  2116. "aws",
  2117. "cloud",
  2118. "copy.com",
  2119. "dropbox",
  2120. "file systems",
  2121. "files",
  2122. "filesystem",
  2123. "filesystems",
  2124. "ftp",
  2125. "rackspace",
  2126. "remote",
  2127. "s3",
  2128. "sftp",
  2129. "storage"
  2130. ],
  2131. "time": "2020-08-23T07:39:11+00:00"
  2132. },
  2133. {
  2134. "name": "league/mime-type-detection",
  2135. "version": "1.5.1",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2139. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2144. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "ext-fileinfo": "*",
  2149. "php": "^7.2 || ^8.0"
  2150. },
  2151. "require-dev": {
  2152. "phpstan/phpstan": "^0.12.36",
  2153. "phpunit/phpunit": "^8.5.8"
  2154. },
  2155. "type": "library",
  2156. "autoload": {
  2157. "psr-4": {
  2158. "League\\MimeTypeDetection\\": "src"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "authors": [
  2166. {
  2167. "name": "Frank de Jonge",
  2168. "email": "info@frankdejonge.nl"
  2169. }
  2170. ],
  2171. "description": "Mime-type detection for Flysystem",
  2172. "time": "2020-10-18T11:50:25+00:00"
  2173. },
  2174. {
  2175. "name": "maatwebsite/excel",
  2176. "version": "3.1.25",
  2177. "source": {
  2178. "type": "git",
  2179. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2180. "reference": "a3e56f1a60e49f21798fd242a3b3d2f4051eeda7"
  2181. },
  2182. "dist": {
  2183. "type": "zip",
  2184. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/a3e56f1a60e49f21798fd242a3b3d2f4051eeda7",
  2185. "reference": "a3e56f1a60e49f21798fd242a3b3d2f4051eeda7",
  2186. "shasum": ""
  2187. },
  2188. "require": {
  2189. "ext-json": "*",
  2190. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  2191. "php": "^7.0",
  2192. "phpoffice/phpspreadsheet": "^1.14"
  2193. },
  2194. "require-dev": {
  2195. "orchestra/testbench": "^6.0",
  2196. "predis/predis": "^1.1"
  2197. },
  2198. "type": "library",
  2199. "extra": {
  2200. "laravel": {
  2201. "providers": [
  2202. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2203. ],
  2204. "aliases": {
  2205. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2206. }
  2207. }
  2208. },
  2209. "autoload": {
  2210. "psr-4": {
  2211. "Maatwebsite\\Excel\\": "src/"
  2212. }
  2213. },
  2214. "notification-url": "https://packagist.org/downloads/",
  2215. "license": [
  2216. "MIT"
  2217. ],
  2218. "authors": [
  2219. {
  2220. "name": "Patrick Brouwers",
  2221. "email": "patrick@maatwebsite.nl"
  2222. }
  2223. ],
  2224. "description": "Supercharged Excel exports and imports in Laravel",
  2225. "keywords": [
  2226. "PHPExcel",
  2227. "batch",
  2228. "csv",
  2229. "excel",
  2230. "export",
  2231. "import",
  2232. "laravel",
  2233. "php",
  2234. "phpspreadsheet"
  2235. ],
  2236. "time": "2020-11-13T10:37:36+00:00"
  2237. },
  2238. {
  2239. "name": "maennchen/zipstream-php",
  2240. "version": "2.1.0",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2244. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2249. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "myclabs/php-enum": "^1.5",
  2254. "php": ">= 7.1",
  2255. "psr/http-message": "^1.0",
  2256. "symfony/polyfill-mbstring": "^1.0"
  2257. },
  2258. "require-dev": {
  2259. "ext-zip": "*",
  2260. "guzzlehttp/guzzle": ">= 6.3",
  2261. "mikey179/vfsstream": "^1.6",
  2262. "phpunit/phpunit": ">= 7.5"
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "ZipStream\\": "src/"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Paul Duncan",
  2277. "email": "pabs@pablotron.org"
  2278. },
  2279. {
  2280. "name": "Jonatan Männchen",
  2281. "email": "jonatan@maennchen.ch"
  2282. },
  2283. {
  2284. "name": "Jesse Donat",
  2285. "email": "donatj@gmail.com"
  2286. },
  2287. {
  2288. "name": "András Kolesár",
  2289. "email": "kolesar@kolesar.hu"
  2290. }
  2291. ],
  2292. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2293. "keywords": [
  2294. "stream",
  2295. "zip"
  2296. ],
  2297. "time": "2020-05-30T13:11:16+00:00"
  2298. },
  2299. {
  2300. "name": "markbaker/complex",
  2301. "version": "2.0.0",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2305. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2310. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2311. "shasum": ""
  2312. },
  2313. "require": {
  2314. "php": "^7.2 || ^8.0"
  2315. },
  2316. "require-dev": {
  2317. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2318. "phpcompatibility/php-compatibility": "^9.0",
  2319. "phpdocumentor/phpdocumentor": "2.*",
  2320. "phploc/phploc": "^4.0",
  2321. "phpmd/phpmd": "2.*",
  2322. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2323. "sebastian/phpcpd": "^4.0",
  2324. "squizlabs/php_codesniffer": "^3.4"
  2325. },
  2326. "type": "library",
  2327. "autoload": {
  2328. "psr-4": {
  2329. "Complex\\": "classes/src/"
  2330. },
  2331. "files": [
  2332. "classes/src/functions/abs.php",
  2333. "classes/src/functions/acos.php",
  2334. "classes/src/functions/acosh.php",
  2335. "classes/src/functions/acot.php",
  2336. "classes/src/functions/acoth.php",
  2337. "classes/src/functions/acsc.php",
  2338. "classes/src/functions/acsch.php",
  2339. "classes/src/functions/argument.php",
  2340. "classes/src/functions/asec.php",
  2341. "classes/src/functions/asech.php",
  2342. "classes/src/functions/asin.php",
  2343. "classes/src/functions/asinh.php",
  2344. "classes/src/functions/atan.php",
  2345. "classes/src/functions/atanh.php",
  2346. "classes/src/functions/conjugate.php",
  2347. "classes/src/functions/cos.php",
  2348. "classes/src/functions/cosh.php",
  2349. "classes/src/functions/cot.php",
  2350. "classes/src/functions/coth.php",
  2351. "classes/src/functions/csc.php",
  2352. "classes/src/functions/csch.php",
  2353. "classes/src/functions/exp.php",
  2354. "classes/src/functions/inverse.php",
  2355. "classes/src/functions/ln.php",
  2356. "classes/src/functions/log2.php",
  2357. "classes/src/functions/log10.php",
  2358. "classes/src/functions/negative.php",
  2359. "classes/src/functions/pow.php",
  2360. "classes/src/functions/rho.php",
  2361. "classes/src/functions/sec.php",
  2362. "classes/src/functions/sech.php",
  2363. "classes/src/functions/sin.php",
  2364. "classes/src/functions/sinh.php",
  2365. "classes/src/functions/sqrt.php",
  2366. "classes/src/functions/tan.php",
  2367. "classes/src/functions/tanh.php",
  2368. "classes/src/functions/theta.php",
  2369. "classes/src/operations/add.php",
  2370. "classes/src/operations/subtract.php",
  2371. "classes/src/operations/multiply.php",
  2372. "classes/src/operations/divideby.php",
  2373. "classes/src/operations/divideinto.php"
  2374. ]
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "MIT"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Mark Baker",
  2383. "email": "mark@lange.demon.co.uk"
  2384. }
  2385. ],
  2386. "description": "PHP Class for working with complex numbers",
  2387. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2388. "keywords": [
  2389. "complex",
  2390. "mathematics"
  2391. ],
  2392. "time": "2020-08-26T10:42:07+00:00"
  2393. },
  2394. {
  2395. "name": "markbaker/matrix",
  2396. "version": "2.0.0",
  2397. "source": {
  2398. "type": "git",
  2399. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2400. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2401. },
  2402. "dist": {
  2403. "type": "zip",
  2404. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2405. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2406. "shasum": ""
  2407. },
  2408. "require": {
  2409. "php": "^7.2 || ^8.0"
  2410. },
  2411. "require-dev": {
  2412. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2413. "phpcompatibility/php-compatibility": "^9.0",
  2414. "phpdocumentor/phpdocumentor": "2.*",
  2415. "phploc/phploc": "^4.0",
  2416. "phpmd/phpmd": "2.*",
  2417. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2418. "sebastian/phpcpd": "^4.0",
  2419. "squizlabs/php_codesniffer": "^3.4"
  2420. },
  2421. "type": "library",
  2422. "autoload": {
  2423. "psr-4": {
  2424. "Matrix\\": "classes/src/"
  2425. },
  2426. "files": [
  2427. "classes/src/functions/adjoint.php",
  2428. "classes/src/functions/antidiagonal.php",
  2429. "classes/src/functions/cofactors.php",
  2430. "classes/src/functions/determinant.php",
  2431. "classes/src/functions/diagonal.php",
  2432. "classes/src/functions/identity.php",
  2433. "classes/src/functions/inverse.php",
  2434. "classes/src/functions/minors.php",
  2435. "classes/src/functions/trace.php",
  2436. "classes/src/functions/transpose.php",
  2437. "classes/src/operations/add.php",
  2438. "classes/src/operations/directsum.php",
  2439. "classes/src/operations/subtract.php",
  2440. "classes/src/operations/multiply.php",
  2441. "classes/src/operations/divideby.php",
  2442. "classes/src/operations/divideinto.php"
  2443. ]
  2444. },
  2445. "notification-url": "https://packagist.org/downloads/",
  2446. "license": [
  2447. "MIT"
  2448. ],
  2449. "authors": [
  2450. {
  2451. "name": "Mark Baker",
  2452. "email": "mark@demon-angel.eu"
  2453. }
  2454. ],
  2455. "description": "PHP Class for working with matrices",
  2456. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2457. "keywords": [
  2458. "mathematics",
  2459. "matrix",
  2460. "vector"
  2461. ],
  2462. "time": "2020-08-28T17:11:00+00:00"
  2463. },
  2464. {
  2465. "name": "monolog/monolog",
  2466. "version": "1.25.5",
  2467. "source": {
  2468. "type": "git",
  2469. "url": "https://github.com/Seldaek/monolog.git",
  2470. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0"
  2471. },
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0",
  2475. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0",
  2476. "shasum": ""
  2477. },
  2478. "require": {
  2479. "php": ">=5.3.0",
  2480. "psr/log": "~1.0"
  2481. },
  2482. "provide": {
  2483. "psr/log-implementation": "1.0.0"
  2484. },
  2485. "require-dev": {
  2486. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2487. "doctrine/couchdb": "~1.0@dev",
  2488. "graylog2/gelf-php": "~1.0",
  2489. "php-amqplib/php-amqplib": "~2.4",
  2490. "php-console/php-console": "^3.1.3",
  2491. "php-parallel-lint/php-parallel-lint": "^1.0",
  2492. "phpunit/phpunit": "~4.5",
  2493. "ruflin/elastica": ">=0.90 <3.0",
  2494. "sentry/sentry": "^0.13",
  2495. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2496. },
  2497. "suggest": {
  2498. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2499. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2500. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2501. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2502. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2503. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2504. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2505. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2506. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2507. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2508. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2509. },
  2510. "type": "library",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-master": "2.0.x-dev"
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-4": {
  2518. "Monolog\\": "src/Monolog"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Jordi Boggiano",
  2528. "email": "j.boggiano@seld.be",
  2529. "homepage": "http://seld.be"
  2530. }
  2531. ],
  2532. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2533. "homepage": "http://github.com/Seldaek/monolog",
  2534. "keywords": [
  2535. "log",
  2536. "logging",
  2537. "psr-3"
  2538. ],
  2539. "time": "2020-07-23T08:35:51+00:00"
  2540. },
  2541. {
  2542. "name": "mtdowling/cron-expression",
  2543. "version": "v1.2.3",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://github.com/mtdowling/cron-expression.git",
  2547. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6",
  2552. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
  2553. "shasum": ""
  2554. },
  2555. "require": {
  2556. "php": ">=5.3.2"
  2557. },
  2558. "require-dev": {
  2559. "phpunit/phpunit": "~4.0|~5.0"
  2560. },
  2561. "type": "library",
  2562. "autoload": {
  2563. "psr-4": {
  2564. "Cron\\": "src/Cron/"
  2565. }
  2566. },
  2567. "notification-url": "https://packagist.org/downloads/",
  2568. "license": [
  2569. "MIT"
  2570. ],
  2571. "authors": [
  2572. {
  2573. "name": "Michael Dowling",
  2574. "email": "mtdowling@gmail.com",
  2575. "homepage": "https://github.com/mtdowling"
  2576. }
  2577. ],
  2578. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2579. "keywords": [
  2580. "cron",
  2581. "schedule"
  2582. ],
  2583. "abandoned": "dragonmantank/cron-expression",
  2584. "time": "2019-12-28T04:23:06+00:00"
  2585. },
  2586. {
  2587. "name": "myclabs/php-enum",
  2588. "version": "1.7.7",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/myclabs/php-enum.git",
  2592. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2597. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "ext-json": "*",
  2602. "php": ">=7.1"
  2603. },
  2604. "require-dev": {
  2605. "phpunit/phpunit": "^7",
  2606. "squizlabs/php_codesniffer": "1.*",
  2607. "vimeo/psalm": "^3.8"
  2608. },
  2609. "type": "library",
  2610. "autoload": {
  2611. "psr-4": {
  2612. "MyCLabs\\Enum\\": "src/"
  2613. }
  2614. },
  2615. "notification-url": "https://packagist.org/downloads/",
  2616. "license": [
  2617. "MIT"
  2618. ],
  2619. "authors": [
  2620. {
  2621. "name": "PHP Enum contributors",
  2622. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2623. }
  2624. ],
  2625. "description": "PHP Enum implementation",
  2626. "homepage": "http://github.com/myclabs/php-enum",
  2627. "keywords": [
  2628. "enum"
  2629. ],
  2630. "time": "2020-11-14T18:14:52+00:00"
  2631. },
  2632. {
  2633. "name": "nesbot/carbon",
  2634. "version": "1.39.1",
  2635. "source": {
  2636. "type": "git",
  2637. "url": "https://github.com/briannesbitt/Carbon.git",
  2638. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
  2639. },
  2640. "dist": {
  2641. "type": "zip",
  2642. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
  2643. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
  2644. "shasum": ""
  2645. },
  2646. "require": {
  2647. "kylekatarnls/update-helper": "^1.1",
  2648. "php": ">=5.3.9",
  2649. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  2650. },
  2651. "require-dev": {
  2652. "composer/composer": "^1.2",
  2653. "friendsofphp/php-cs-fixer": "~2",
  2654. "phpunit/phpunit": "^4.8.35 || ^5.7"
  2655. },
  2656. "bin": [
  2657. "bin/upgrade-carbon"
  2658. ],
  2659. "type": "library",
  2660. "extra": {
  2661. "update-helper": "Carbon\\Upgrade",
  2662. "laravel": {
  2663. "providers": [
  2664. "Carbon\\Laravel\\ServiceProvider"
  2665. ]
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "": "src/"
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Brian Nesbitt",
  2680. "email": "brian@nesbot.com",
  2681. "homepage": "http://nesbot.com"
  2682. }
  2683. ],
  2684. "description": "A simple API extension for DateTime.",
  2685. "homepage": "http://carbon.nesbot.com",
  2686. "keywords": [
  2687. "date",
  2688. "datetime",
  2689. "time"
  2690. ],
  2691. "time": "2019-10-14T05:51:36+00:00"
  2692. },
  2693. {
  2694. "name": "nikic/php-parser",
  2695. "version": "v4.10.3",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/nikic/PHP-Parser.git",
  2699. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2704. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "ext-tokenizer": "*",
  2709. "php": ">=7.0"
  2710. },
  2711. "require-dev": {
  2712. "ircmaxell/php-yacc": "^0.0.7",
  2713. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2714. },
  2715. "bin": [
  2716. "bin/php-parse"
  2717. ],
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-master": "4.9-dev"
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "PhpParser\\": "lib/PhpParser"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "BSD-3-Clause"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "Nikita Popov"
  2736. }
  2737. ],
  2738. "description": "A PHP parser written in PHP",
  2739. "keywords": [
  2740. "parser",
  2741. "php"
  2742. ],
  2743. "time": "2020-12-03T17:45:45+00:00"
  2744. },
  2745. {
  2746. "name": "overtrue/laravel-ueditor",
  2747. "version": "1.2.10",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/overtrue/laravel-ueditor.git",
  2751. "reference": "f73f6399a21ab8c6635e492b7b5a28caaafa4127"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/overtrue/laravel-ueditor/zipball/f73f6399a21ab8c6635e492b7b5a28caaafa4127",
  2756. "reference": "f73f6399a21ab8c6635e492b7b5a28caaafa4127",
  2757. "shasum": ""
  2758. },
  2759. "require-dev": {
  2760. "fabpot/php-cs-fixer": "^1.10"
  2761. },
  2762. "suggest": {
  2763. "overtrue/laravel-filesystem-qiniu": "如果你想要使用七牛云存储,也许你需要安装它哦~"
  2764. },
  2765. "type": "library",
  2766. "extra": {
  2767. "laravel": {
  2768. "providers": [
  2769. "Overtrue\\LaravelUEditor\\UEditorServiceProvider"
  2770. ]
  2771. }
  2772. },
  2773. "autoload": {
  2774. "psr-4": {
  2775. "Overtrue\\LaravelUEditor\\": "src/"
  2776. }
  2777. },
  2778. "notification-url": "https://packagist.org/downloads/",
  2779. "license": [
  2780. "MIT"
  2781. ],
  2782. "authors": [
  2783. {
  2784. "name": "overtrue",
  2785. "email": "anzhengchao@gmail.com"
  2786. }
  2787. ],
  2788. "description": "UEditor integration for Laravel.",
  2789. "abandoned": true,
  2790. "time": "2018-12-22T07:40:09+00:00"
  2791. },
  2792. {
  2793. "name": "overtrue/socialite",
  2794. "version": "2.0.22",
  2795. "source": {
  2796. "type": "git",
  2797. "url": "https://github.com/overtrue/socialite.git",
  2798. "reference": "0ce3285293026a639de317a70b01eeef051e9962"
  2799. },
  2800. "dist": {
  2801. "type": "zip",
  2802. "url": "https://api.github.com/repos/overtrue/socialite/zipball/0ce3285293026a639de317a70b01eeef051e9962",
  2803. "reference": "0ce3285293026a639de317a70b01eeef051e9962",
  2804. "shasum": ""
  2805. },
  2806. "require": {
  2807. "ext-json": "*",
  2808. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  2809. "php": ">=5.6",
  2810. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  2811. },
  2812. "conflict": {
  2813. "socialiteproviders/weixin": "*"
  2814. },
  2815. "require-dev": {
  2816. "mockery/mockery": "~1.2",
  2817. "phpunit/phpunit": "~6"
  2818. },
  2819. "type": "library",
  2820. "autoload": {
  2821. "psr-4": {
  2822. "Overtrue\\Socialite\\": "src/"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "overtrue",
  2832. "email": "anzhengchao@gmail.com"
  2833. }
  2834. ],
  2835. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2836. "keywords": [
  2837. "login",
  2838. "oauth",
  2839. "qq",
  2840. "social",
  2841. "wechat",
  2842. "weibo"
  2843. ],
  2844. "time": "2020-11-12T23:23:15+00:00"
  2845. },
  2846. {
  2847. "name": "overtrue/wechat",
  2848. "version": "4.3.3",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://github.com/w7corp/easywechat.git",
  2852. "reference": "121607188e1cb1039a5ea0f49bcec011cb44dbdd"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/121607188e1cb1039a5ea0f49bcec011cb44dbdd",
  2857. "reference": "121607188e1cb1039a5ea0f49bcec011cb44dbdd",
  2858. "shasum": ""
  2859. },
  2860. "require": {
  2861. "easywechat-composer/easywechat-composer": "^1.1",
  2862. "ext-fileinfo": "*",
  2863. "ext-openssl": "*",
  2864. "ext-simplexml": "*",
  2865. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2866. "monolog/monolog": "^1.22 || ^2.0",
  2867. "overtrue/socialite": "~2.0",
  2868. "php": ">=7.2",
  2869. "pimple/pimple": "^3.0",
  2870. "psr/simple-cache": "^1.0",
  2871. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2872. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2873. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2874. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2875. },
  2876. "require-dev": {
  2877. "friendsofphp/php-cs-fixer": "^2.15",
  2878. "mikey179/vfsstream": "^1.6",
  2879. "mockery/mockery": "^1.2.3",
  2880. "phpstan/phpstan": "^0.12.0",
  2881. "phpunit/phpunit": "^7.5"
  2882. },
  2883. "type": "library",
  2884. "autoload": {
  2885. "psr-4": {
  2886. "EasyWeChat\\": "src/"
  2887. },
  2888. "files": [
  2889. "src/Kernel/Support/Helpers.php",
  2890. "src/Kernel/Helpers.php"
  2891. ]
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "overtrue",
  2900. "email": "anzhengchao@gmail.com"
  2901. }
  2902. ],
  2903. "description": "微信SDK",
  2904. "keywords": [
  2905. "easywechat",
  2906. "sdk",
  2907. "wechat",
  2908. "weixin",
  2909. "weixin-sdk"
  2910. ],
  2911. "time": "2020-12-07T08:20:11+00:00"
  2912. },
  2913. {
  2914. "name": "paragonie/random_compat",
  2915. "version": "v9.99.99",
  2916. "source": {
  2917. "type": "git",
  2918. "url": "https://github.com/paragonie/random_compat.git",
  2919. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2920. },
  2921. "dist": {
  2922. "type": "zip",
  2923. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2924. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2925. "shasum": ""
  2926. },
  2927. "require": {
  2928. "php": "^7"
  2929. },
  2930. "require-dev": {
  2931. "phpunit/phpunit": "4.*|5.*",
  2932. "vimeo/psalm": "^1"
  2933. },
  2934. "suggest": {
  2935. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2936. },
  2937. "type": "library",
  2938. "notification-url": "https://repo.packagist.org/downloads/",
  2939. "license": [
  2940. "MIT"
  2941. ],
  2942. "authors": [
  2943. {
  2944. "name": "Paragon Initiative Enterprises",
  2945. "email": "security@paragonie.com",
  2946. "homepage": "https://paragonie.com"
  2947. }
  2948. ],
  2949. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2950. "keywords": [
  2951. "csprng",
  2952. "polyfill",
  2953. "pseudorandom",
  2954. "random"
  2955. ],
  2956. "time": "2018-07-02T15:55:56+00:00"
  2957. },
  2958. {
  2959. "name": "phpoffice/phpspreadsheet",
  2960. "version": "1.15.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2964. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  2969. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "ext-ctype": "*",
  2974. "ext-dom": "*",
  2975. "ext-fileinfo": "*",
  2976. "ext-gd": "*",
  2977. "ext-iconv": "*",
  2978. "ext-libxml": "*",
  2979. "ext-mbstring": "*",
  2980. "ext-simplexml": "*",
  2981. "ext-xml": "*",
  2982. "ext-xmlreader": "*",
  2983. "ext-xmlwriter": "*",
  2984. "ext-zip": "*",
  2985. "ext-zlib": "*",
  2986. "maennchen/zipstream-php": "^2.1",
  2987. "markbaker/complex": "^1.5|^2.0",
  2988. "markbaker/matrix": "^1.2|^2.0",
  2989. "php": "^7.2|^8.0",
  2990. "psr/http-client": "^1.0",
  2991. "psr/http-factory": "^1.0",
  2992. "psr/simple-cache": "^1.0"
  2993. },
  2994. "require-dev": {
  2995. "dompdf/dompdf": "^0.8.5",
  2996. "friendsofphp/php-cs-fixer": "^2.16",
  2997. "jpgraph/jpgraph": "^4.0",
  2998. "mpdf/mpdf": "^8.0",
  2999. "phpcompatibility/php-compatibility": "^9.3",
  3000. "phpunit/phpunit": "^8.5|^9.3",
  3001. "squizlabs/php_codesniffer": "^3.5",
  3002. "tecnickcom/tcpdf": "^6.3"
  3003. },
  3004. "suggest": {
  3005. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3006. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3007. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3008. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3009. },
  3010. "type": "library",
  3011. "autoload": {
  3012. "psr-4": {
  3013. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3014. }
  3015. },
  3016. "notification-url": "https://packagist.org/downloads/",
  3017. "license": [
  3018. "MIT"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "Maarten Balliauw",
  3023. "homepage": "https://blog.maartenballiauw.be"
  3024. },
  3025. {
  3026. "name": "Mark Baker",
  3027. "homepage": "https://markbakeruk.net"
  3028. },
  3029. {
  3030. "name": "Franck Lefevre",
  3031. "homepage": "https://rootslabs.net"
  3032. },
  3033. {
  3034. "name": "Erik Tilt"
  3035. },
  3036. {
  3037. "name": "Adrien Crivelli"
  3038. }
  3039. ],
  3040. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3041. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3042. "keywords": [
  3043. "OpenXML",
  3044. "excel",
  3045. "gnumeric",
  3046. "ods",
  3047. "php",
  3048. "spreadsheet",
  3049. "xls",
  3050. "xlsx"
  3051. ],
  3052. "time": "2020-10-11T13:20:59+00:00"
  3053. },
  3054. {
  3055. "name": "pimple/pimple",
  3056. "version": "v3.3.1",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/silexphp/Pimple.git",
  3060. "reference": "21e45061c3429b1e06233475cc0e1f6fc774d5b0"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/21e45061c3429b1e06233475cc0e1f6fc774d5b0",
  3065. "reference": "21e45061c3429b1e06233475cc0e1f6fc774d5b0",
  3066. "shasum": ""
  3067. },
  3068. "require": {
  3069. "php": ">=7.2.5",
  3070. "psr/container": "^1.0"
  3071. },
  3072. "require-dev": {
  3073. "symfony/phpunit-bridge": "^5.0"
  3074. },
  3075. "type": "library",
  3076. "extra": {
  3077. "branch-alias": {
  3078. "dev-master": "3.3.x-dev"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-0": {
  3083. "Pimple": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "authors": [
  3091. {
  3092. "name": "Fabien Potencier",
  3093. "email": "fabien@symfony.com"
  3094. }
  3095. ],
  3096. "description": "Pimple, a simple Dependency Injection Container",
  3097. "homepage": "https://pimple.symfony.com",
  3098. "keywords": [
  3099. "container",
  3100. "dependency injection"
  3101. ],
  3102. "time": "2020-11-24T20:35:42+00:00"
  3103. },
  3104. {
  3105. "name": "predis/predis",
  3106. "version": "v1.1.6",
  3107. "source": {
  3108. "type": "git",
  3109. "url": "https://github.com/predis/predis.git",
  3110. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  3111. },
  3112. "dist": {
  3113. "type": "zip",
  3114. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  3115. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  3116. "shasum": ""
  3117. },
  3118. "require": {
  3119. "php": ">=5.3.9"
  3120. },
  3121. "require-dev": {
  3122. "cweagans/composer-patches": "^1.6",
  3123. "phpunit/phpunit": "~4.8"
  3124. },
  3125. "suggest": {
  3126. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3127. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3128. },
  3129. "type": "library",
  3130. "extra": {
  3131. "composer-exit-on-patch-failure": true,
  3132. "patches": {
  3133. "phpunit/phpunit-mock-objects": {
  3134. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  3135. },
  3136. "phpunit/phpunit": {
  3137. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  3138. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  3139. }
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Predis\\": "src/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Daniele Alessandri",
  3154. "email": "suppakilla@gmail.com",
  3155. "homepage": "http://clorophilla.net",
  3156. "role": "Creator & Maintainer"
  3157. },
  3158. {
  3159. "name": "Till Krüss",
  3160. "homepage": "https://till.im",
  3161. "role": "Maintainer"
  3162. }
  3163. ],
  3164. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3165. "homepage": "http://github.com/predis/predis",
  3166. "keywords": [
  3167. "nosql",
  3168. "predis",
  3169. "redis"
  3170. ],
  3171. "time": "2020-09-11T19:18:05+00:00"
  3172. },
  3173. {
  3174. "name": "prettus/l5-repository",
  3175. "version": "2.7.0",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/andersao/l5-repository.git",
  3179. "reference": "6098dbcb83e360800d7d8b830e33d628d2df86f4"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/6098dbcb83e360800d7d8b830e33d628d2df86f4",
  3184. "reference": "6098dbcb83e360800d7d8b830e33d628d2df86f4",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "illuminate/config": "~5.0|~6.0|~7.0|^8.0",
  3189. "illuminate/console": "~5.0|~6.0|~7.0|^8.0",
  3190. "illuminate/database": "~5.0|~6.0|~7.0|^8.0",
  3191. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0",
  3192. "illuminate/http": "~5.0|~6.0|~7.0|^8.0",
  3193. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0",
  3194. "illuminate/support": "~5.0|~6.0|~7.0|^8.0",
  3195. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0",
  3196. "prettus/laravel-validation": "~1.1|~1.2"
  3197. },
  3198. "suggest": {
  3199. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  3200. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  3201. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  3202. },
  3203. "type": "library",
  3204. "extra": {
  3205. "laravel": {
  3206. "providers": [
  3207. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  3208. ]
  3209. }
  3210. },
  3211. "autoload": {
  3212. "psr-4": {
  3213. "Prettus\\Repository\\": "src/Prettus/Repository/"
  3214. }
  3215. },
  3216. "notification-url": "https://packagist.org/downloads/",
  3217. "license": [
  3218. "MIT"
  3219. ],
  3220. "authors": [
  3221. {
  3222. "name": "Anderson Andrade",
  3223. "email": "contato@andersonandra.de",
  3224. "homepage": "http://andersonandra.de",
  3225. "role": "Developer"
  3226. }
  3227. ],
  3228. "description": "Laravel 5|6|7|8 - Repositories to the database layer",
  3229. "homepage": "http://andersao.github.io/l5-repository",
  3230. "keywords": [
  3231. "cache",
  3232. "eloquent",
  3233. "laravel",
  3234. "model",
  3235. "repository"
  3236. ],
  3237. "time": "2020-09-21T20:19:28+00:00"
  3238. },
  3239. {
  3240. "name": "prettus/laravel-validation",
  3241. "version": "1.3.0",
  3242. "source": {
  3243. "type": "git",
  3244. "url": "https://github.com/andersao/laravel-validator.git",
  3245. "reference": "cce3c273c9d44f77de031dc4dedd261ab936c497"
  3246. },
  3247. "dist": {
  3248. "type": "zip",
  3249. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/cce3c273c9d44f77de031dc4dedd261ab936c497",
  3250. "reference": "cce3c273c9d44f77de031dc4dedd261ab936c497",
  3251. "shasum": ""
  3252. },
  3253. "require": {
  3254. "illuminate/support": "~5.4|^6.0|^7.0|^8.0",
  3255. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0",
  3256. "php": ">=5.4.0"
  3257. },
  3258. "type": "library",
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Prettus\\Validator\\": "src/Prettus/Validator/"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "authors": [
  3266. {
  3267. "name": "Anderson Andrade",
  3268. "email": "contato@andersonandra.de",
  3269. "homepage": "http://andersonandra.de",
  3270. "role": "Developer"
  3271. }
  3272. ],
  3273. "description": "Laravel Validation Service",
  3274. "homepage": "http://andersao.github.io/laravel-validation",
  3275. "keywords": [
  3276. "laravel",
  3277. "service",
  3278. "validation"
  3279. ],
  3280. "time": "2020-09-21T20:20:45+00:00"
  3281. },
  3282. {
  3283. "name": "psr/cache",
  3284. "version": "1.0.1",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://github.com/php-fig/cache.git",
  3288. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3293. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3294. "shasum": ""
  3295. },
  3296. "require": {
  3297. "php": ">=5.3.0"
  3298. },
  3299. "type": "library",
  3300. "extra": {
  3301. "branch-alias": {
  3302. "dev-master": "1.0.x-dev"
  3303. }
  3304. },
  3305. "autoload": {
  3306. "psr-4": {
  3307. "Psr\\Cache\\": "src/"
  3308. }
  3309. },
  3310. "notification-url": "https://repo.packagist.org/downloads/",
  3311. "license": [
  3312. "MIT"
  3313. ],
  3314. "authors": [
  3315. {
  3316. "name": "PHP-FIG",
  3317. "homepage": "http://www.php-fig.org/"
  3318. }
  3319. ],
  3320. "description": "Common interface for caching libraries",
  3321. "keywords": [
  3322. "cache",
  3323. "psr",
  3324. "psr-6"
  3325. ],
  3326. "time": "2016-08-06T20:24:11+00:00"
  3327. },
  3328. {
  3329. "name": "psr/container",
  3330. "version": "1.0.0",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/php-fig/container.git",
  3334. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3339. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3340. "shasum": ""
  3341. },
  3342. "require": {
  3343. "php": ">=5.3.0"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-master": "1.0.x-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Psr\\Container\\": "src/"
  3354. }
  3355. },
  3356. "notification-url": "https://repo.packagist.org/downloads/",
  3357. "license": [
  3358. "MIT"
  3359. ],
  3360. "authors": [
  3361. {
  3362. "name": "PHP-FIG",
  3363. "homepage": "http://www.php-fig.org/"
  3364. }
  3365. ],
  3366. "description": "Common Container Interface (PHP FIG PSR-11)",
  3367. "homepage": "https://github.com/php-fig/container",
  3368. "keywords": [
  3369. "PSR-11",
  3370. "container",
  3371. "container-interface",
  3372. "container-interop",
  3373. "psr"
  3374. ],
  3375. "time": "2017-02-14T16:28:37+00:00"
  3376. },
  3377. {
  3378. "name": "psr/http-client",
  3379. "version": "1.0.1",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/php-fig/http-client.git",
  3383. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3388. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "php": "^7.0 || ^8.0",
  3393. "psr/http-message": "^1.0"
  3394. },
  3395. "type": "library",
  3396. "extra": {
  3397. "branch-alias": {
  3398. "dev-master": "1.0.x-dev"
  3399. }
  3400. },
  3401. "autoload": {
  3402. "psr-4": {
  3403. "Psr\\Http\\Client\\": "src/"
  3404. }
  3405. },
  3406. "notification-url": "https://packagist.org/downloads/",
  3407. "license": [
  3408. "MIT"
  3409. ],
  3410. "authors": [
  3411. {
  3412. "name": "PHP-FIG",
  3413. "homepage": "http://www.php-fig.org/"
  3414. }
  3415. ],
  3416. "description": "Common interface for HTTP clients",
  3417. "homepage": "https://github.com/php-fig/http-client",
  3418. "keywords": [
  3419. "http",
  3420. "http-client",
  3421. "psr",
  3422. "psr-18"
  3423. ],
  3424. "time": "2020-06-29T06:28:15+00:00"
  3425. },
  3426. {
  3427. "name": "psr/http-factory",
  3428. "version": "1.0.1",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/php-fig/http-factory.git",
  3432. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3437. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3438. "shasum": ""
  3439. },
  3440. "require": {
  3441. "php": ">=7.0.0",
  3442. "psr/http-message": "^1.0"
  3443. },
  3444. "type": "library",
  3445. "extra": {
  3446. "branch-alias": {
  3447. "dev-master": "1.0.x-dev"
  3448. }
  3449. },
  3450. "autoload": {
  3451. "psr-4": {
  3452. "Psr\\Http\\Message\\": "src/"
  3453. }
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "PHP-FIG",
  3462. "homepage": "http://www.php-fig.org/"
  3463. }
  3464. ],
  3465. "description": "Common interfaces for PSR-7 HTTP message factories",
  3466. "keywords": [
  3467. "factory",
  3468. "http",
  3469. "message",
  3470. "psr",
  3471. "psr-17",
  3472. "psr-7",
  3473. "request",
  3474. "response"
  3475. ],
  3476. "time": "2019-04-30T12:38:16+00:00"
  3477. },
  3478. {
  3479. "name": "psr/http-message",
  3480. "version": "1.0.1",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/php-fig/http-message.git",
  3484. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3489. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3490. "shasum": ""
  3491. },
  3492. "require": {
  3493. "php": ">=5.3.0"
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "branch-alias": {
  3498. "dev-master": "1.0.x-dev"
  3499. }
  3500. },
  3501. "autoload": {
  3502. "psr-4": {
  3503. "Psr\\Http\\Message\\": "src/"
  3504. }
  3505. },
  3506. "notification-url": "https://repo.packagist.org/downloads/",
  3507. "license": [
  3508. "MIT"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "PHP-FIG",
  3513. "homepage": "http://www.php-fig.org/"
  3514. }
  3515. ],
  3516. "description": "Common interface for HTTP messages",
  3517. "homepage": "https://github.com/php-fig/http-message",
  3518. "keywords": [
  3519. "http",
  3520. "http-message",
  3521. "psr",
  3522. "psr-7",
  3523. "request",
  3524. "response"
  3525. ],
  3526. "time": "2016-08-06T14:39:51+00:00"
  3527. },
  3528. {
  3529. "name": "psr/log",
  3530. "version": "1.1.3",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/php-fig/log.git",
  3534. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3539. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "php": ">=5.3.0"
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "branch-alias": {
  3548. "dev-master": "1.1.x-dev"
  3549. }
  3550. },
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Psr\\Log\\": "Psr/Log/"
  3554. }
  3555. },
  3556. "notification-url": "https://packagist.org/downloads/",
  3557. "license": [
  3558. "MIT"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "PHP-FIG",
  3563. "homepage": "http://www.php-fig.org/"
  3564. }
  3565. ],
  3566. "description": "Common interface for logging libraries",
  3567. "homepage": "https://github.com/php-fig/log",
  3568. "keywords": [
  3569. "log",
  3570. "psr",
  3571. "psr-3"
  3572. ],
  3573. "time": "2020-03-23T09:12:05+00:00"
  3574. },
  3575. {
  3576. "name": "psr/simple-cache",
  3577. "version": "1.0.1",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://github.com/php-fig/simple-cache.git",
  3581. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3586. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3587. "shasum": ""
  3588. },
  3589. "require": {
  3590. "php": ">=5.3.0"
  3591. },
  3592. "type": "library",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-master": "1.0.x-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-4": {
  3600. "Psr\\SimpleCache\\": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://repo.packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "PHP-FIG",
  3610. "homepage": "http://www.php-fig.org/"
  3611. }
  3612. ],
  3613. "description": "Common interfaces for simple caching",
  3614. "keywords": [
  3615. "cache",
  3616. "caching",
  3617. "psr",
  3618. "psr-16",
  3619. "simple-cache"
  3620. ],
  3621. "time": "2017-10-23T01:57:42+00:00"
  3622. },
  3623. {
  3624. "name": "psy/psysh",
  3625. "version": "v0.9.12",
  3626. "source": {
  3627. "type": "git",
  3628. "url": "https://github.com/bobthecow/psysh.git",
  3629. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  3630. },
  3631. "dist": {
  3632. "type": "zip",
  3633. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  3634. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  3635. "shasum": ""
  3636. },
  3637. "require": {
  3638. "dnoegel/php-xdg-base-dir": "0.1.*",
  3639. "ext-json": "*",
  3640. "ext-tokenizer": "*",
  3641. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3642. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3643. "php": ">=5.4.0",
  3644. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  3645. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  3646. },
  3647. "require-dev": {
  3648. "bamarni/composer-bin-plugin": "^1.2",
  3649. "hoa/console": "~2.15|~3.16",
  3650. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3651. },
  3652. "suggest": {
  3653. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3654. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3655. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3656. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3657. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3658. },
  3659. "bin": [
  3660. "bin/psysh"
  3661. ],
  3662. "type": "library",
  3663. "extra": {
  3664. "branch-alias": {
  3665. "dev-develop": "0.9.x-dev"
  3666. }
  3667. },
  3668. "autoload": {
  3669. "files": [
  3670. "src/functions.php"
  3671. ],
  3672. "psr-4": {
  3673. "Psy\\": "src/"
  3674. }
  3675. },
  3676. "notification-url": "https://packagist.org/downloads/",
  3677. "license": [
  3678. "MIT"
  3679. ],
  3680. "authors": [
  3681. {
  3682. "name": "Justin Hileman",
  3683. "email": "justin@justinhileman.info",
  3684. "homepage": "http://justinhileman.com"
  3685. }
  3686. ],
  3687. "description": "An interactive shell for modern PHP.",
  3688. "homepage": "http://psysh.org",
  3689. "keywords": [
  3690. "REPL",
  3691. "console",
  3692. "interactive",
  3693. "shell"
  3694. ],
  3695. "time": "2019-12-06T14:19:43+00:00"
  3696. },
  3697. {
  3698. "name": "ralouphie/getallheaders",
  3699. "version": "3.0.3",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/ralouphie/getallheaders.git",
  3703. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3708. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3709. "shasum": ""
  3710. },
  3711. "require": {
  3712. "php": ">=5.6"
  3713. },
  3714. "require-dev": {
  3715. "php-coveralls/php-coveralls": "^2.1",
  3716. "phpunit/phpunit": "^5 || ^6.5"
  3717. },
  3718. "type": "library",
  3719. "autoload": {
  3720. "files": [
  3721. "src/getallheaders.php"
  3722. ]
  3723. },
  3724. "notification-url": "https://packagist.org/downloads/",
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "Ralph Khattar",
  3731. "email": "ralph.khattar@gmail.com"
  3732. }
  3733. ],
  3734. "description": "A polyfill for getallheaders.",
  3735. "time": "2019-03-08T08:55:37+00:00"
  3736. },
  3737. {
  3738. "name": "ramsey/uuid",
  3739. "version": "3.9.3",
  3740. "source": {
  3741. "type": "git",
  3742. "url": "https://github.com/ramsey/uuid.git",
  3743. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  3744. },
  3745. "dist": {
  3746. "type": "zip",
  3747. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  3748. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  3749. "shasum": ""
  3750. },
  3751. "require": {
  3752. "ext-json": "*",
  3753. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  3754. "php": "^5.4 | ^7 | ^8",
  3755. "symfony/polyfill-ctype": "^1.8"
  3756. },
  3757. "replace": {
  3758. "rhumsaa/uuid": "self.version"
  3759. },
  3760. "require-dev": {
  3761. "codeception/aspect-mock": "^1 | ^2",
  3762. "doctrine/annotations": "^1.2",
  3763. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  3764. "jakub-onderka/php-parallel-lint": "^1",
  3765. "mockery/mockery": "^0.9.11 | ^1",
  3766. "moontoast/math": "^1.1",
  3767. "paragonie/random-lib": "^2",
  3768. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  3769. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  3770. "squizlabs/php_codesniffer": "^3.5"
  3771. },
  3772. "suggest": {
  3773. "ext-ctype": "Provides support for PHP Ctype functions",
  3774. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3775. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  3776. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3777. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3778. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3779. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3780. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3781. },
  3782. "type": "library",
  3783. "extra": {
  3784. "branch-alias": {
  3785. "dev-master": "3.x-dev"
  3786. }
  3787. },
  3788. "autoload": {
  3789. "psr-4": {
  3790. "Ramsey\\Uuid\\": "src/"
  3791. },
  3792. "files": [
  3793. "src/functions.php"
  3794. ]
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "MIT"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "Ben Ramsey",
  3803. "email": "ben@benramsey.com",
  3804. "homepage": "https://benramsey.com"
  3805. },
  3806. {
  3807. "name": "Marijn Huizendveld",
  3808. "email": "marijn.huizendveld@gmail.com"
  3809. },
  3810. {
  3811. "name": "Thibaud Fabre",
  3812. "email": "thibaud@aztech.io"
  3813. }
  3814. ],
  3815. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3816. "homepage": "https://github.com/ramsey/uuid",
  3817. "keywords": [
  3818. "guid",
  3819. "identifier",
  3820. "uuid"
  3821. ],
  3822. "time": "2020-02-21T04:36:14+00:00"
  3823. },
  3824. {
  3825. "name": "react/promise",
  3826. "version": "v2.8.0",
  3827. "source": {
  3828. "type": "git",
  3829. "url": "https://github.com/reactphp/promise.git",
  3830. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  3831. },
  3832. "dist": {
  3833. "type": "zip",
  3834. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  3835. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  3836. "shasum": ""
  3837. },
  3838. "require": {
  3839. "php": ">=5.4.0"
  3840. },
  3841. "require-dev": {
  3842. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  3843. },
  3844. "type": "library",
  3845. "autoload": {
  3846. "psr-4": {
  3847. "React\\Promise\\": "src/"
  3848. },
  3849. "files": [
  3850. "src/functions_include.php"
  3851. ]
  3852. },
  3853. "notification-url": "https://packagist.org/downloads/",
  3854. "license": [
  3855. "MIT"
  3856. ],
  3857. "authors": [
  3858. {
  3859. "name": "Jan Sorgalla",
  3860. "email": "jsorgalla@gmail.com"
  3861. }
  3862. ],
  3863. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  3864. "keywords": [
  3865. "promise",
  3866. "promises"
  3867. ],
  3868. "time": "2020-05-12T15:16:56+00:00"
  3869. },
  3870. {
  3871. "name": "simplesoftwareio/simple-qrcode",
  3872. "version": "2.0.0",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  3876. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/90b2282dd29be1e52565e9832dc23af41610ea07",
  3881. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "bacon/bacon-qr-code": "1.0.*",
  3886. "ext-gd": "*",
  3887. "illuminate/support": ">=5.0.0",
  3888. "php": ">=7.0"
  3889. },
  3890. "require-dev": {
  3891. "mockery/mockery": "0.9.*",
  3892. "phpunit/phpunit": "~6"
  3893. },
  3894. "type": "library",
  3895. "extra": {
  3896. "laravel": {
  3897. "providers": [
  3898. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  3899. ],
  3900. "aliases": {
  3901. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  3902. }
  3903. }
  3904. },
  3905. "autoload": {
  3906. "psr-0": {
  3907. "SimpleSoftwareIO\\QrCode\\": "src"
  3908. }
  3909. },
  3910. "notification-url": "https://repo.packagist.org/downloads/",
  3911. "license": [
  3912. "MIT"
  3913. ],
  3914. "authors": [
  3915. {
  3916. "name": "Simple Software LLC",
  3917. "email": "support@simplesoftware.io"
  3918. }
  3919. ],
  3920. "description": "Simple QrCode is a QR code generator made for Laravel.",
  3921. "homepage": "http://www.simplesoftware.io",
  3922. "keywords": [
  3923. "Simple",
  3924. "generator",
  3925. "laravel",
  3926. "qrcode",
  3927. "wrapper"
  3928. ],
  3929. "time": "2017-11-26T15:27:12+00:00"
  3930. },
  3931. {
  3932. "name": "swiftmailer/swiftmailer",
  3933. "version": "v6.2.4",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3937. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  3942. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "egulias/email-validator": "^2.0",
  3947. "php": ">=7.0.0",
  3948. "symfony/polyfill-iconv": "^1.0",
  3949. "symfony/polyfill-intl-idn": "^1.10",
  3950. "symfony/polyfill-mbstring": "^1.0"
  3951. },
  3952. "require-dev": {
  3953. "mockery/mockery": "^1.0",
  3954. "symfony/phpunit-bridge": "^4.4|^5.0"
  3955. },
  3956. "suggest": {
  3957. "ext-intl": "Needed to support internationalized email addresses"
  3958. },
  3959. "type": "library",
  3960. "extra": {
  3961. "branch-alias": {
  3962. "dev-master": "6.2-dev"
  3963. }
  3964. },
  3965. "autoload": {
  3966. "files": [
  3967. "lib/swift_required.php"
  3968. ]
  3969. },
  3970. "notification-url": "https://packagist.org/downloads/",
  3971. "license": [
  3972. "MIT"
  3973. ],
  3974. "authors": [
  3975. {
  3976. "name": "Chris Corbyn"
  3977. },
  3978. {
  3979. "name": "Fabien Potencier",
  3980. "email": "fabien@symfony.com"
  3981. }
  3982. ],
  3983. "description": "Swiftmailer, free feature-rich PHP mailer",
  3984. "homepage": "https://swiftmailer.symfony.com",
  3985. "keywords": [
  3986. "email",
  3987. "mail",
  3988. "mailer"
  3989. ],
  3990. "time": "2020-12-08T18:02:06+00:00"
  3991. },
  3992. {
  3993. "name": "swoole/ide-helper",
  3994. "version": "4.5.9",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/swoole/ide-helper.git",
  3998. "reference": "4ad5772f9db6a6a0fe41068905a0272dcfa5f4d5"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/4ad5772f9db6a6a0fe41068905a0272dcfa5f4d5",
  4003. "reference": "4ad5772f9db6a6a0fe41068905a0272dcfa5f4d5",
  4004. "shasum": ""
  4005. },
  4006. "require-dev": {
  4007. "guzzlehttp/guzzle": "~6.5.0",
  4008. "laminas/laminas-code": "~3.4.0",
  4009. "squizlabs/php_codesniffer": "~3.5.0",
  4010. "symfony/filesystem": "~4.0"
  4011. },
  4012. "type": "library",
  4013. "notification-url": "https://packagist.org/downloads/",
  4014. "license": [
  4015. "Apache-2.0"
  4016. ],
  4017. "authors": [
  4018. {
  4019. "name": "Team Swoole",
  4020. "email": "team@swoole.com"
  4021. }
  4022. ],
  4023. "description": "IDE help files for Swoole.",
  4024. "time": "2020-12-01T00:31:09+00:00"
  4025. },
  4026. {
  4027. "name": "symfony/cache",
  4028. "version": "v4.3.11",
  4029. "source": {
  4030. "type": "git",
  4031. "url": "https://github.com/symfony/cache.git",
  4032. "reference": "8794ccf68ac341fc19311919d2287f7557bfccba"
  4033. },
  4034. "dist": {
  4035. "type": "zip",
  4036. "url": "https://api.github.com/repos/symfony/cache/zipball/8794ccf68ac341fc19311919d2287f7557bfccba",
  4037. "reference": "8794ccf68ac341fc19311919d2287f7557bfccba",
  4038. "shasum": ""
  4039. },
  4040. "require": {
  4041. "php": "^7.1.3",
  4042. "psr/cache": "~1.0",
  4043. "psr/log": "~1.0",
  4044. "symfony/cache-contracts": "^1.1",
  4045. "symfony/service-contracts": "^1.1",
  4046. "symfony/var-exporter": "^4.2"
  4047. },
  4048. "conflict": {
  4049. "doctrine/dbal": "<2.5",
  4050. "symfony/dependency-injection": "<3.4",
  4051. "symfony/var-dumper": "<3.4"
  4052. },
  4053. "provide": {
  4054. "psr/cache-implementation": "1.0",
  4055. "psr/simple-cache-implementation": "1.0",
  4056. "symfony/cache-implementation": "1.0"
  4057. },
  4058. "require-dev": {
  4059. "cache/integration-tests": "dev-master",
  4060. "doctrine/cache": "~1.6",
  4061. "doctrine/dbal": "~2.5",
  4062. "predis/predis": "~1.1",
  4063. "psr/simple-cache": "^1.0",
  4064. "symfony/config": "~4.2",
  4065. "symfony/dependency-injection": "~3.4|~4.1",
  4066. "symfony/var-dumper": "^4.1.1"
  4067. },
  4068. "type": "library",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-master": "4.3-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "Symfony\\Component\\Cache\\": ""
  4077. },
  4078. "exclude-from-classmap": [
  4079. "/Tests/"
  4080. ]
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "MIT"
  4085. ],
  4086. "authors": [
  4087. {
  4088. "name": "Nicolas Grekas",
  4089. "email": "p@tchwork.com"
  4090. },
  4091. {
  4092. "name": "Symfony Community",
  4093. "homepage": "https://symfony.com/contributors"
  4094. }
  4095. ],
  4096. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  4097. "homepage": "https://symfony.com",
  4098. "keywords": [
  4099. "caching",
  4100. "psr6"
  4101. ],
  4102. "time": "2020-01-27T09:15:09+00:00"
  4103. },
  4104. {
  4105. "name": "symfony/cache-contracts",
  4106. "version": "v1.1.10",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/symfony/cache-contracts.git",
  4110. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  4115. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  4116. "shasum": ""
  4117. },
  4118. "require": {
  4119. "php": ">=7.1.3",
  4120. "psr/cache": "^1.0"
  4121. },
  4122. "suggest": {
  4123. "symfony/cache-implementation": ""
  4124. },
  4125. "type": "library",
  4126. "extra": {
  4127. "branch-alias": {
  4128. "dev-master": "1.1-dev"
  4129. },
  4130. "thanks": {
  4131. "name": "symfony/contracts",
  4132. "url": "https://github.com/symfony/contracts"
  4133. }
  4134. },
  4135. "autoload": {
  4136. "psr-4": {
  4137. "Symfony\\Contracts\\Cache\\": ""
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Nicolas Grekas",
  4147. "email": "p@tchwork.com"
  4148. },
  4149. {
  4150. "name": "Symfony Community",
  4151. "homepage": "https://symfony.com/contributors"
  4152. }
  4153. ],
  4154. "description": "Generic abstractions related to caching",
  4155. "homepage": "https://symfony.com",
  4156. "keywords": [
  4157. "abstractions",
  4158. "contracts",
  4159. "decoupling",
  4160. "interfaces",
  4161. "interoperability",
  4162. "standards"
  4163. ],
  4164. "time": "2020-09-02T16:08:58+00:00"
  4165. },
  4166. {
  4167. "name": "symfony/console",
  4168. "version": "v3.4.47",
  4169. "source": {
  4170. "type": "git",
  4171. "url": "https://github.com/symfony/console.git",
  4172. "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
  4173. },
  4174. "dist": {
  4175. "type": "zip",
  4176. "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
  4177. "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
  4178. "shasum": ""
  4179. },
  4180. "require": {
  4181. "php": "^5.5.9|>=7.0.8",
  4182. "symfony/debug": "~2.8|~3.0|~4.0",
  4183. "symfony/polyfill-mbstring": "~1.0"
  4184. },
  4185. "conflict": {
  4186. "symfony/dependency-injection": "<3.4",
  4187. "symfony/process": "<3.3"
  4188. },
  4189. "provide": {
  4190. "psr/log-implementation": "1.0"
  4191. },
  4192. "require-dev": {
  4193. "psr/log": "~1.0",
  4194. "symfony/config": "~3.3|~4.0",
  4195. "symfony/dependency-injection": "~3.4|~4.0",
  4196. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4197. "symfony/lock": "~3.4|~4.0",
  4198. "symfony/process": "~3.3|~4.0"
  4199. },
  4200. "suggest": {
  4201. "psr/log": "For using the console logger",
  4202. "symfony/event-dispatcher": "",
  4203. "symfony/lock": "",
  4204. "symfony/process": ""
  4205. },
  4206. "type": "library",
  4207. "autoload": {
  4208. "psr-4": {
  4209. "Symfony\\Component\\Console\\": ""
  4210. },
  4211. "exclude-from-classmap": [
  4212. "/Tests/"
  4213. ]
  4214. },
  4215. "notification-url": "https://packagist.org/downloads/",
  4216. "license": [
  4217. "MIT"
  4218. ],
  4219. "authors": [
  4220. {
  4221. "name": "Fabien Potencier",
  4222. "email": "fabien@symfony.com"
  4223. },
  4224. {
  4225. "name": "Symfony Community",
  4226. "homepage": "https://symfony.com/contributors"
  4227. }
  4228. ],
  4229. "description": "Symfony Console Component",
  4230. "homepage": "https://symfony.com",
  4231. "time": "2020-10-24T10:57:07+00:00"
  4232. },
  4233. {
  4234. "name": "symfony/css-selector",
  4235. "version": "v5.2.0",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://github.com/symfony/css-selector.git",
  4239. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4244. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4245. "shasum": ""
  4246. },
  4247. "require": {
  4248. "php": ">=7.2.5"
  4249. },
  4250. "type": "library",
  4251. "autoload": {
  4252. "psr-4": {
  4253. "Symfony\\Component\\CssSelector\\": ""
  4254. },
  4255. "exclude-from-classmap": [
  4256. "/Tests/"
  4257. ]
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Fabien Potencier",
  4266. "email": "fabien@symfony.com"
  4267. },
  4268. {
  4269. "name": "Jean-François Simon",
  4270. "email": "jeanfrancois.simon@sensiolabs.com"
  4271. },
  4272. {
  4273. "name": "Symfony Community",
  4274. "homepage": "https://symfony.com/contributors"
  4275. }
  4276. ],
  4277. "description": "Symfony CssSelector Component",
  4278. "homepage": "https://symfony.com",
  4279. "time": "2020-10-28T21:31:18+00:00"
  4280. },
  4281. {
  4282. "name": "symfony/debug",
  4283. "version": "v3.4.47",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/symfony/debug.git",
  4287. "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
  4292. "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
  4293. "shasum": ""
  4294. },
  4295. "require": {
  4296. "php": "^5.5.9|>=7.0.8",
  4297. "psr/log": "~1.0"
  4298. },
  4299. "conflict": {
  4300. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  4301. },
  4302. "require-dev": {
  4303. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  4304. },
  4305. "type": "library",
  4306. "autoload": {
  4307. "psr-4": {
  4308. "Symfony\\Component\\Debug\\": ""
  4309. },
  4310. "exclude-from-classmap": [
  4311. "/Tests/"
  4312. ]
  4313. },
  4314. "notification-url": "https://packagist.org/downloads/",
  4315. "license": [
  4316. "MIT"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "Fabien Potencier",
  4321. "email": "fabien@symfony.com"
  4322. },
  4323. {
  4324. "name": "Symfony Community",
  4325. "homepage": "https://symfony.com/contributors"
  4326. }
  4327. ],
  4328. "description": "Symfony Debug Component",
  4329. "homepage": "https://symfony.com",
  4330. "time": "2020-10-24T10:57:07+00:00"
  4331. },
  4332. {
  4333. "name": "symfony/dom-crawler",
  4334. "version": "v4.4.17",
  4335. "source": {
  4336. "type": "git",
  4337. "url": "https://github.com/symfony/dom-crawler.git",
  4338. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  4339. },
  4340. "dist": {
  4341. "type": "zip",
  4342. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  4343. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  4344. "shasum": ""
  4345. },
  4346. "require": {
  4347. "php": ">=7.1.3",
  4348. "symfony/polyfill-ctype": "~1.8",
  4349. "symfony/polyfill-mbstring": "~1.0"
  4350. },
  4351. "conflict": {
  4352. "masterminds/html5": "<2.6"
  4353. },
  4354. "require-dev": {
  4355. "masterminds/html5": "^2.6",
  4356. "symfony/css-selector": "^3.4|^4.0|^5.0"
  4357. },
  4358. "suggest": {
  4359. "symfony/css-selector": ""
  4360. },
  4361. "type": "library",
  4362. "autoload": {
  4363. "psr-4": {
  4364. "Symfony\\Component\\DomCrawler\\": ""
  4365. },
  4366. "exclude-from-classmap": [
  4367. "/Tests/"
  4368. ]
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Fabien Potencier",
  4377. "email": "fabien@symfony.com"
  4378. },
  4379. {
  4380. "name": "Symfony Community",
  4381. "homepage": "https://symfony.com/contributors"
  4382. }
  4383. ],
  4384. "description": "Symfony DomCrawler Component",
  4385. "homepage": "https://symfony.com",
  4386. "time": "2020-10-24T11:50:19+00:00"
  4387. },
  4388. {
  4389. "name": "symfony/event-dispatcher",
  4390. "version": "v4.4.17",
  4391. "source": {
  4392. "type": "git",
  4393. "url": "https://github.com/symfony/event-dispatcher.git",
  4394. "reference": "f029d6f21eac61ab23198e7aca40e7638e8c8924"
  4395. },
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f029d6f21eac61ab23198e7aca40e7638e8c8924",
  4399. "reference": "f029d6f21eac61ab23198e7aca40e7638e8c8924",
  4400. "shasum": ""
  4401. },
  4402. "require": {
  4403. "php": ">=7.1.3",
  4404. "symfony/event-dispatcher-contracts": "^1.1"
  4405. },
  4406. "conflict": {
  4407. "symfony/dependency-injection": "<3.4"
  4408. },
  4409. "provide": {
  4410. "psr/event-dispatcher-implementation": "1.0",
  4411. "symfony/event-dispatcher-implementation": "1.1"
  4412. },
  4413. "require-dev": {
  4414. "psr/log": "~1.0",
  4415. "symfony/config": "^3.4|^4.0|^5.0",
  4416. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4417. "symfony/error-handler": "~3.4|~4.4",
  4418. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4419. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4420. "symfony/service-contracts": "^1.1|^2",
  4421. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  4422. },
  4423. "suggest": {
  4424. "symfony/dependency-injection": "",
  4425. "symfony/http-kernel": ""
  4426. },
  4427. "type": "library",
  4428. "autoload": {
  4429. "psr-4": {
  4430. "Symfony\\Component\\EventDispatcher\\": ""
  4431. },
  4432. "exclude-from-classmap": [
  4433. "/Tests/"
  4434. ]
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "Fabien Potencier",
  4443. "email": "fabien@symfony.com"
  4444. },
  4445. {
  4446. "name": "Symfony Community",
  4447. "homepage": "https://symfony.com/contributors"
  4448. }
  4449. ],
  4450. "description": "Symfony EventDispatcher Component",
  4451. "homepage": "https://symfony.com",
  4452. "time": "2020-10-31T22:44:29+00:00"
  4453. },
  4454. {
  4455. "name": "symfony/event-dispatcher-contracts",
  4456. "version": "v1.1.9",
  4457. "source": {
  4458. "type": "git",
  4459. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4460. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  4461. },
  4462. "dist": {
  4463. "type": "zip",
  4464. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4465. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4466. "shasum": ""
  4467. },
  4468. "require": {
  4469. "php": ">=7.1.3"
  4470. },
  4471. "suggest": {
  4472. "psr/event-dispatcher": "",
  4473. "symfony/event-dispatcher-implementation": ""
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "branch-alias": {
  4478. "dev-master": "1.1-dev"
  4479. },
  4480. "thanks": {
  4481. "name": "symfony/contracts",
  4482. "url": "https://github.com/symfony/contracts"
  4483. }
  4484. },
  4485. "autoload": {
  4486. "psr-4": {
  4487. "Symfony\\Contracts\\EventDispatcher\\": ""
  4488. }
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Nicolas Grekas",
  4497. "email": "p@tchwork.com"
  4498. },
  4499. {
  4500. "name": "Symfony Community",
  4501. "homepage": "https://symfony.com/contributors"
  4502. }
  4503. ],
  4504. "description": "Generic abstractions related to dispatching event",
  4505. "homepage": "https://symfony.com",
  4506. "keywords": [
  4507. "abstractions",
  4508. "contracts",
  4509. "decoupling",
  4510. "interfaces",
  4511. "interoperability",
  4512. "standards"
  4513. ],
  4514. "time": "2020-07-06T13:19:58+00:00"
  4515. },
  4516. {
  4517. "name": "symfony/finder",
  4518. "version": "v3.4.47",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/symfony/finder.git",
  4522. "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
  4527. "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
  4528. "shasum": ""
  4529. },
  4530. "require": {
  4531. "php": "^5.5.9|>=7.0.8"
  4532. },
  4533. "type": "library",
  4534. "autoload": {
  4535. "psr-4": {
  4536. "Symfony\\Component\\Finder\\": ""
  4537. },
  4538. "exclude-from-classmap": [
  4539. "/Tests/"
  4540. ]
  4541. },
  4542. "notification-url": "https://packagist.org/downloads/",
  4543. "license": [
  4544. "MIT"
  4545. ],
  4546. "authors": [
  4547. {
  4548. "name": "Fabien Potencier",
  4549. "email": "fabien@symfony.com"
  4550. },
  4551. {
  4552. "name": "Symfony Community",
  4553. "homepage": "https://symfony.com/contributors"
  4554. }
  4555. ],
  4556. "description": "Symfony Finder Component",
  4557. "homepage": "https://symfony.com",
  4558. "time": "2020-11-16T17:02:08+00:00"
  4559. },
  4560. {
  4561. "name": "symfony/http-foundation",
  4562. "version": "v3.4.47",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://github.com/symfony/http-foundation.git",
  4566. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8",
  4571. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8",
  4572. "shasum": ""
  4573. },
  4574. "require": {
  4575. "php": "^5.5.9|>=7.0.8",
  4576. "symfony/polyfill-mbstring": "~1.1",
  4577. "symfony/polyfill-php70": "~1.6"
  4578. },
  4579. "require-dev": {
  4580. "symfony/expression-language": "~2.8|~3.0|~4.0"
  4581. },
  4582. "type": "library",
  4583. "autoload": {
  4584. "psr-4": {
  4585. "Symfony\\Component\\HttpFoundation\\": ""
  4586. },
  4587. "exclude-from-classmap": [
  4588. "/Tests/"
  4589. ]
  4590. },
  4591. "notification-url": "https://packagist.org/downloads/",
  4592. "license": [
  4593. "MIT"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "Fabien Potencier",
  4598. "email": "fabien@symfony.com"
  4599. },
  4600. {
  4601. "name": "Symfony Community",
  4602. "homepage": "https://symfony.com/contributors"
  4603. }
  4604. ],
  4605. "description": "Symfony HttpFoundation Component",
  4606. "homepage": "https://symfony.com",
  4607. "time": "2020-10-24T10:57:07+00:00"
  4608. },
  4609. {
  4610. "name": "symfony/http-kernel",
  4611. "version": "v3.4.47",
  4612. "source": {
  4613. "type": "git",
  4614. "url": "https://github.com/symfony/http-kernel.git",
  4615. "reference": "a98a4c30089e6a2d52a9fa236f718159b539f6f5"
  4616. },
  4617. "dist": {
  4618. "type": "zip",
  4619. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a98a4c30089e6a2d52a9fa236f718159b539f6f5",
  4620. "reference": "a98a4c30089e6a2d52a9fa236f718159b539f6f5",
  4621. "shasum": ""
  4622. },
  4623. "require": {
  4624. "php": "^5.5.9|>=7.0.8",
  4625. "psr/log": "~1.0",
  4626. "symfony/debug": "^3.3.3|~4.0",
  4627. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4628. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  4629. "symfony/polyfill-ctype": "~1.8",
  4630. "symfony/polyfill-php56": "~1.8"
  4631. },
  4632. "conflict": {
  4633. "symfony/config": "<2.8",
  4634. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  4635. "symfony/var-dumper": "<3.3",
  4636. "twig/twig": "<1.34|<2.4,>=2"
  4637. },
  4638. "provide": {
  4639. "psr/log-implementation": "1.0"
  4640. },
  4641. "require-dev": {
  4642. "psr/cache": "~1.0",
  4643. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  4644. "symfony/class-loader": "~2.8|~3.0",
  4645. "symfony/config": "~2.8|~3.0|~4.0",
  4646. "symfony/console": "~2.8|~3.0|~4.0",
  4647. "symfony/css-selector": "~2.8|~3.0|~4.0",
  4648. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  4649. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  4650. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4651. "symfony/finder": "~2.8|~3.0|~4.0",
  4652. "symfony/process": "~2.8|~3.0|~4.0",
  4653. "symfony/routing": "~3.4|~4.0",
  4654. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  4655. "symfony/templating": "~2.8|~3.0|~4.0",
  4656. "symfony/translation": "~2.8|~3.0|~4.0",
  4657. "symfony/var-dumper": "~3.3|~4.0"
  4658. },
  4659. "suggest": {
  4660. "symfony/browser-kit": "",
  4661. "symfony/config": "",
  4662. "symfony/console": "",
  4663. "symfony/dependency-injection": "",
  4664. "symfony/finder": "",
  4665. "symfony/var-dumper": ""
  4666. },
  4667. "type": "library",
  4668. "autoload": {
  4669. "psr-4": {
  4670. "Symfony\\Component\\HttpKernel\\": ""
  4671. },
  4672. "exclude-from-classmap": [
  4673. "/Tests/"
  4674. ]
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Fabien Potencier",
  4683. "email": "fabien@symfony.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Symfony HttpKernel Component",
  4691. "homepage": "https://symfony.com",
  4692. "time": "2020-11-27T08:42:42+00:00"
  4693. },
  4694. {
  4695. "name": "symfony/polyfill-ctype",
  4696. "version": "v1.20.0",
  4697. "source": {
  4698. "type": "git",
  4699. "url": "https://github.com/symfony/polyfill-ctype.git",
  4700. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  4701. },
  4702. "dist": {
  4703. "type": "zip",
  4704. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  4705. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  4706. "shasum": ""
  4707. },
  4708. "require": {
  4709. "php": ">=7.1"
  4710. },
  4711. "suggest": {
  4712. "ext-ctype": "For best performance"
  4713. },
  4714. "type": "library",
  4715. "extra": {
  4716. "branch-alias": {
  4717. "dev-main": "1.20-dev"
  4718. },
  4719. "thanks": {
  4720. "name": "symfony/polyfill",
  4721. "url": "https://github.com/symfony/polyfill"
  4722. }
  4723. },
  4724. "autoload": {
  4725. "psr-4": {
  4726. "Symfony\\Polyfill\\Ctype\\": ""
  4727. },
  4728. "files": [
  4729. "bootstrap.php"
  4730. ]
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "MIT"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Gert de Pagter",
  4739. "email": "BackEndTea@gmail.com"
  4740. },
  4741. {
  4742. "name": "Symfony Community",
  4743. "homepage": "https://symfony.com/contributors"
  4744. }
  4745. ],
  4746. "description": "Symfony polyfill for ctype functions",
  4747. "homepage": "https://symfony.com",
  4748. "keywords": [
  4749. "compatibility",
  4750. "ctype",
  4751. "polyfill",
  4752. "portable"
  4753. ],
  4754. "time": "2020-10-23T14:02:19+00:00"
  4755. },
  4756. {
  4757. "name": "symfony/polyfill-iconv",
  4758. "version": "v1.20.0",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://github.com/symfony/polyfill-iconv.git",
  4762. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  4767. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  4768. "shasum": ""
  4769. },
  4770. "require": {
  4771. "php": ">=7.1"
  4772. },
  4773. "suggest": {
  4774. "ext-iconv": "For best performance"
  4775. },
  4776. "type": "library",
  4777. "extra": {
  4778. "branch-alias": {
  4779. "dev-main": "1.20-dev"
  4780. },
  4781. "thanks": {
  4782. "name": "symfony/polyfill",
  4783. "url": "https://github.com/symfony/polyfill"
  4784. }
  4785. },
  4786. "autoload": {
  4787. "psr-4": {
  4788. "Symfony\\Polyfill\\Iconv\\": ""
  4789. },
  4790. "files": [
  4791. "bootstrap.php"
  4792. ]
  4793. },
  4794. "notification-url": "https://packagist.org/downloads/",
  4795. "license": [
  4796. "MIT"
  4797. ],
  4798. "authors": [
  4799. {
  4800. "name": "Nicolas Grekas",
  4801. "email": "p@tchwork.com"
  4802. },
  4803. {
  4804. "name": "Symfony Community",
  4805. "homepage": "https://symfony.com/contributors"
  4806. }
  4807. ],
  4808. "description": "Symfony polyfill for the Iconv extension",
  4809. "homepage": "https://symfony.com",
  4810. "keywords": [
  4811. "compatibility",
  4812. "iconv",
  4813. "polyfill",
  4814. "portable",
  4815. "shim"
  4816. ],
  4817. "time": "2020-10-23T14:02:19+00:00"
  4818. },
  4819. {
  4820. "name": "symfony/polyfill-intl-idn",
  4821. "version": "v1.20.0",
  4822. "source": {
  4823. "type": "git",
  4824. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4825. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  4826. },
  4827. "dist": {
  4828. "type": "zip",
  4829. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  4830. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  4831. "shasum": ""
  4832. },
  4833. "require": {
  4834. "php": ">=7.1",
  4835. "symfony/polyfill-intl-normalizer": "^1.10",
  4836. "symfony/polyfill-php72": "^1.10"
  4837. },
  4838. "suggest": {
  4839. "ext-intl": "For best performance"
  4840. },
  4841. "type": "library",
  4842. "extra": {
  4843. "branch-alias": {
  4844. "dev-main": "1.20-dev"
  4845. },
  4846. "thanks": {
  4847. "name": "symfony/polyfill",
  4848. "url": "https://github.com/symfony/polyfill"
  4849. }
  4850. },
  4851. "autoload": {
  4852. "psr-4": {
  4853. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4854. },
  4855. "files": [
  4856. "bootstrap.php"
  4857. ]
  4858. },
  4859. "notification-url": "https://packagist.org/downloads/",
  4860. "license": [
  4861. "MIT"
  4862. ],
  4863. "authors": [
  4864. {
  4865. "name": "Laurent Bassin",
  4866. "email": "laurent@bassin.info"
  4867. },
  4868. {
  4869. "name": "Trevor Rowbotham",
  4870. "email": "trevor.rowbotham@pm.me"
  4871. },
  4872. {
  4873. "name": "Symfony Community",
  4874. "homepage": "https://symfony.com/contributors"
  4875. }
  4876. ],
  4877. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4878. "homepage": "https://symfony.com",
  4879. "keywords": [
  4880. "compatibility",
  4881. "idn",
  4882. "intl",
  4883. "polyfill",
  4884. "portable",
  4885. "shim"
  4886. ],
  4887. "time": "2020-10-23T14:02:19+00:00"
  4888. },
  4889. {
  4890. "name": "symfony/polyfill-intl-normalizer",
  4891. "version": "v1.20.0",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4895. "reference": "727d1096295d807c309fb01a851577302394c897"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  4900. "reference": "727d1096295d807c309fb01a851577302394c897",
  4901. "shasum": ""
  4902. },
  4903. "require": {
  4904. "php": ">=7.1"
  4905. },
  4906. "suggest": {
  4907. "ext-intl": "For best performance"
  4908. },
  4909. "type": "library",
  4910. "extra": {
  4911. "branch-alias": {
  4912. "dev-main": "1.20-dev"
  4913. },
  4914. "thanks": {
  4915. "name": "symfony/polyfill",
  4916. "url": "https://github.com/symfony/polyfill"
  4917. }
  4918. },
  4919. "autoload": {
  4920. "psr-4": {
  4921. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4922. },
  4923. "files": [
  4924. "bootstrap.php"
  4925. ],
  4926. "classmap": [
  4927. "Resources/stubs"
  4928. ]
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Nicolas Grekas",
  4937. "email": "p@tchwork.com"
  4938. },
  4939. {
  4940. "name": "Symfony Community",
  4941. "homepage": "https://symfony.com/contributors"
  4942. }
  4943. ],
  4944. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4945. "homepage": "https://symfony.com",
  4946. "keywords": [
  4947. "compatibility",
  4948. "intl",
  4949. "normalizer",
  4950. "polyfill",
  4951. "portable",
  4952. "shim"
  4953. ],
  4954. "time": "2020-10-23T14:02:19+00:00"
  4955. },
  4956. {
  4957. "name": "symfony/polyfill-mbstring",
  4958. "version": "v1.20.0",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4962. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  4967. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "php": ">=7.1"
  4972. },
  4973. "suggest": {
  4974. "ext-mbstring": "For best performance"
  4975. },
  4976. "type": "library",
  4977. "extra": {
  4978. "branch-alias": {
  4979. "dev-main": "1.20-dev"
  4980. },
  4981. "thanks": {
  4982. "name": "symfony/polyfill",
  4983. "url": "https://github.com/symfony/polyfill"
  4984. }
  4985. },
  4986. "autoload": {
  4987. "psr-4": {
  4988. "Symfony\\Polyfill\\Mbstring\\": ""
  4989. },
  4990. "files": [
  4991. "bootstrap.php"
  4992. ]
  4993. },
  4994. "notification-url": "https://packagist.org/downloads/",
  4995. "license": [
  4996. "MIT"
  4997. ],
  4998. "authors": [
  4999. {
  5000. "name": "Nicolas Grekas",
  5001. "email": "p@tchwork.com"
  5002. },
  5003. {
  5004. "name": "Symfony Community",
  5005. "homepage": "https://symfony.com/contributors"
  5006. }
  5007. ],
  5008. "description": "Symfony polyfill for the Mbstring extension",
  5009. "homepage": "https://symfony.com",
  5010. "keywords": [
  5011. "compatibility",
  5012. "mbstring",
  5013. "polyfill",
  5014. "portable",
  5015. "shim"
  5016. ],
  5017. "time": "2020-10-23T14:02:19+00:00"
  5018. },
  5019. {
  5020. "name": "symfony/polyfill-php56",
  5021. "version": "v1.20.0",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://github.com/symfony/polyfill-php56.git",
  5025. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5030. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5031. "shasum": ""
  5032. },
  5033. "require": {
  5034. "php": ">=7.1"
  5035. },
  5036. "type": "metapackage",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-main": "1.20-dev"
  5040. },
  5041. "thanks": {
  5042. "name": "symfony/polyfill",
  5043. "url": "https://github.com/symfony/polyfill"
  5044. }
  5045. },
  5046. "notification-url": "https://packagist.org/downloads/",
  5047. "license": [
  5048. "MIT"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Nicolas Grekas",
  5053. "email": "p@tchwork.com"
  5054. },
  5055. {
  5056. "name": "Symfony Community",
  5057. "homepage": "https://symfony.com/contributors"
  5058. }
  5059. ],
  5060. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5061. "homepage": "https://symfony.com",
  5062. "keywords": [
  5063. "compatibility",
  5064. "polyfill",
  5065. "portable",
  5066. "shim"
  5067. ],
  5068. "time": "2020-10-23T14:02:19+00:00"
  5069. },
  5070. {
  5071. "name": "symfony/polyfill-php70",
  5072. "version": "v1.20.0",
  5073. "source": {
  5074. "type": "git",
  5075. "url": "https://github.com/symfony/polyfill-php70.git",
  5076. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  5077. },
  5078. "dist": {
  5079. "type": "zip",
  5080. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  5081. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  5082. "shasum": ""
  5083. },
  5084. "require": {
  5085. "php": ">=7.1"
  5086. },
  5087. "type": "metapackage",
  5088. "extra": {
  5089. "branch-alias": {
  5090. "dev-main": "1.20-dev"
  5091. },
  5092. "thanks": {
  5093. "name": "symfony/polyfill",
  5094. "url": "https://github.com/symfony/polyfill"
  5095. }
  5096. },
  5097. "notification-url": "https://packagist.org/downloads/",
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Nicolas Grekas",
  5104. "email": "p@tchwork.com"
  5105. },
  5106. {
  5107. "name": "Symfony Community",
  5108. "homepage": "https://symfony.com/contributors"
  5109. }
  5110. ],
  5111. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5112. "homepage": "https://symfony.com",
  5113. "keywords": [
  5114. "compatibility",
  5115. "polyfill",
  5116. "portable",
  5117. "shim"
  5118. ],
  5119. "time": "2020-10-23T14:02:19+00:00"
  5120. },
  5121. {
  5122. "name": "symfony/polyfill-php72",
  5123. "version": "v1.20.0",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://github.com/symfony/polyfill-php72.git",
  5127. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5132. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5133. "shasum": ""
  5134. },
  5135. "require": {
  5136. "php": ">=7.1"
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "branch-alias": {
  5141. "dev-main": "1.20-dev"
  5142. },
  5143. "thanks": {
  5144. "name": "symfony/polyfill",
  5145. "url": "https://github.com/symfony/polyfill"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "psr-4": {
  5150. "Symfony\\Polyfill\\Php72\\": ""
  5151. },
  5152. "files": [
  5153. "bootstrap.php"
  5154. ]
  5155. },
  5156. "notification-url": "https://packagist.org/downloads/",
  5157. "license": [
  5158. "MIT"
  5159. ],
  5160. "authors": [
  5161. {
  5162. "name": "Nicolas Grekas",
  5163. "email": "p@tchwork.com"
  5164. },
  5165. {
  5166. "name": "Symfony Community",
  5167. "homepage": "https://symfony.com/contributors"
  5168. }
  5169. ],
  5170. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5171. "homepage": "https://symfony.com",
  5172. "keywords": [
  5173. "compatibility",
  5174. "polyfill",
  5175. "portable",
  5176. "shim"
  5177. ],
  5178. "time": "2020-10-23T14:02:19+00:00"
  5179. },
  5180. {
  5181. "name": "symfony/process",
  5182. "version": "v3.4.47",
  5183. "source": {
  5184. "type": "git",
  5185. "url": "https://github.com/symfony/process.git",
  5186. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
  5187. },
  5188. "dist": {
  5189. "type": "zip",
  5190. "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  5191. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  5192. "shasum": ""
  5193. },
  5194. "require": {
  5195. "php": "^5.5.9|>=7.0.8"
  5196. },
  5197. "type": "library",
  5198. "autoload": {
  5199. "psr-4": {
  5200. "Symfony\\Component\\Process\\": ""
  5201. },
  5202. "exclude-from-classmap": [
  5203. "/Tests/"
  5204. ]
  5205. },
  5206. "notification-url": "https://packagist.org/downloads/",
  5207. "license": [
  5208. "MIT"
  5209. ],
  5210. "authors": [
  5211. {
  5212. "name": "Fabien Potencier",
  5213. "email": "fabien@symfony.com"
  5214. },
  5215. {
  5216. "name": "Symfony Community",
  5217. "homepage": "https://symfony.com/contributors"
  5218. }
  5219. ],
  5220. "description": "Symfony Process Component",
  5221. "homepage": "https://symfony.com",
  5222. "time": "2020-10-24T10:57:07+00:00"
  5223. },
  5224. {
  5225. "name": "symfony/psr-http-message-bridge",
  5226. "version": "v1.2.0",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5230. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  5235. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  5236. "shasum": ""
  5237. },
  5238. "require": {
  5239. "php": "^7.1",
  5240. "psr/http-message": "^1.0",
  5241. "symfony/http-foundation": "^3.4 || ^4.0"
  5242. },
  5243. "require-dev": {
  5244. "nyholm/psr7": "^1.1",
  5245. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  5246. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  5247. },
  5248. "suggest": {
  5249. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5250. },
  5251. "type": "symfony-bridge",
  5252. "extra": {
  5253. "branch-alias": {
  5254. "dev-master": "1.2-dev"
  5255. }
  5256. },
  5257. "autoload": {
  5258. "psr-4": {
  5259. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5260. },
  5261. "exclude-from-classmap": [
  5262. "/Tests/"
  5263. ]
  5264. },
  5265. "notification-url": "https://repo.packagist.org/downloads/",
  5266. "license": [
  5267. "MIT"
  5268. ],
  5269. "authors": [
  5270. {
  5271. "name": "Symfony Community",
  5272. "homepage": "http://symfony.com/contributors"
  5273. },
  5274. {
  5275. "name": "Fabien Potencier",
  5276. "email": "fabien@symfony.com"
  5277. }
  5278. ],
  5279. "description": "PSR HTTP message bridge",
  5280. "homepage": "http://symfony.com",
  5281. "keywords": [
  5282. "http",
  5283. "http-message",
  5284. "psr-17",
  5285. "psr-7"
  5286. ],
  5287. "time": "2019-03-11T18:22:33+00:00"
  5288. },
  5289. {
  5290. "name": "symfony/routing",
  5291. "version": "v3.4.47",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/symfony/routing.git",
  5295. "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/symfony/routing/zipball/3e522ac69cadffd8131cc2b22157fa7662331a6c",
  5300. "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c",
  5301. "shasum": ""
  5302. },
  5303. "require": {
  5304. "php": "^5.5.9|>=7.0.8"
  5305. },
  5306. "conflict": {
  5307. "symfony/config": "<3.3.1",
  5308. "symfony/dependency-injection": "<3.3",
  5309. "symfony/yaml": "<3.4"
  5310. },
  5311. "require-dev": {
  5312. "doctrine/annotations": "~1.0",
  5313. "psr/log": "~1.0",
  5314. "symfony/config": "^3.3.1|~4.0",
  5315. "symfony/dependency-injection": "~3.3|~4.0",
  5316. "symfony/expression-language": "~2.8|~3.0|~4.0",
  5317. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  5318. "symfony/yaml": "~3.4|~4.0"
  5319. },
  5320. "suggest": {
  5321. "doctrine/annotations": "For using the annotation loader",
  5322. "symfony/config": "For using the all-in-one router or any loader",
  5323. "symfony/expression-language": "For using expression matching",
  5324. "symfony/http-foundation": "For using a Symfony Request object",
  5325. "symfony/yaml": "For using the YAML loader"
  5326. },
  5327. "type": "library",
  5328. "autoload": {
  5329. "psr-4": {
  5330. "Symfony\\Component\\Routing\\": ""
  5331. },
  5332. "exclude-from-classmap": [
  5333. "/Tests/"
  5334. ]
  5335. },
  5336. "notification-url": "https://packagist.org/downloads/",
  5337. "license": [
  5338. "MIT"
  5339. ],
  5340. "authors": [
  5341. {
  5342. "name": "Fabien Potencier",
  5343. "email": "fabien@symfony.com"
  5344. },
  5345. {
  5346. "name": "Symfony Community",
  5347. "homepage": "https://symfony.com/contributors"
  5348. }
  5349. ],
  5350. "description": "Symfony Routing Component",
  5351. "homepage": "https://symfony.com",
  5352. "keywords": [
  5353. "router",
  5354. "routing",
  5355. "uri",
  5356. "url"
  5357. ],
  5358. "time": "2020-10-24T10:57:07+00:00"
  5359. },
  5360. {
  5361. "name": "symfony/service-contracts",
  5362. "version": "v1.1.9",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/symfony/service-contracts.git",
  5366. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26",
  5371. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=7.1.3",
  5376. "psr/container": "^1.0"
  5377. },
  5378. "suggest": {
  5379. "symfony/service-implementation": ""
  5380. },
  5381. "type": "library",
  5382. "extra": {
  5383. "branch-alias": {
  5384. "dev-master": "1.1-dev"
  5385. },
  5386. "thanks": {
  5387. "name": "symfony/contracts",
  5388. "url": "https://github.com/symfony/contracts"
  5389. }
  5390. },
  5391. "autoload": {
  5392. "psr-4": {
  5393. "Symfony\\Contracts\\Service\\": ""
  5394. }
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "license": [
  5398. "MIT"
  5399. ],
  5400. "authors": [
  5401. {
  5402. "name": "Nicolas Grekas",
  5403. "email": "p@tchwork.com"
  5404. },
  5405. {
  5406. "name": "Symfony Community",
  5407. "homepage": "https://symfony.com/contributors"
  5408. }
  5409. ],
  5410. "description": "Generic abstractions related to writing services",
  5411. "homepage": "https://symfony.com",
  5412. "keywords": [
  5413. "abstractions",
  5414. "contracts",
  5415. "decoupling",
  5416. "interfaces",
  5417. "interoperability",
  5418. "standards"
  5419. ],
  5420. "time": "2020-07-06T13:19:58+00:00"
  5421. },
  5422. {
  5423. "name": "symfony/translation",
  5424. "version": "v4.3.11",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/symfony/translation.git",
  5428. "reference": "46e462be71935ae15eab531e4d491d801857f24c"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/symfony/translation/zipball/46e462be71935ae15eab531e4d491d801857f24c",
  5433. "reference": "46e462be71935ae15eab531e4d491d801857f24c",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "php": "^7.1.3",
  5438. "symfony/polyfill-mbstring": "~1.0",
  5439. "symfony/translation-contracts": "^1.1.6"
  5440. },
  5441. "conflict": {
  5442. "symfony/config": "<3.4",
  5443. "symfony/dependency-injection": "<3.4",
  5444. "symfony/yaml": "<3.4"
  5445. },
  5446. "provide": {
  5447. "symfony/translation-implementation": "1.0"
  5448. },
  5449. "require-dev": {
  5450. "psr/log": "~1.0",
  5451. "symfony/config": "~3.4|~4.0",
  5452. "symfony/console": "~3.4|~4.0",
  5453. "symfony/dependency-injection": "~3.4|~4.0",
  5454. "symfony/finder": "~2.8|~3.0|~4.0",
  5455. "symfony/http-kernel": "~3.4|~4.0",
  5456. "symfony/intl": "~3.4|~4.0",
  5457. "symfony/service-contracts": "^1.1.2",
  5458. "symfony/var-dumper": "~3.4|~4.0",
  5459. "symfony/yaml": "~3.4|~4.0"
  5460. },
  5461. "suggest": {
  5462. "psr/log-implementation": "To use logging capability in translator",
  5463. "symfony/config": "",
  5464. "symfony/yaml": ""
  5465. },
  5466. "type": "library",
  5467. "extra": {
  5468. "branch-alias": {
  5469. "dev-master": "4.3-dev"
  5470. }
  5471. },
  5472. "autoload": {
  5473. "psr-4": {
  5474. "Symfony\\Component\\Translation\\": ""
  5475. },
  5476. "exclude-from-classmap": [
  5477. "/Tests/"
  5478. ]
  5479. },
  5480. "notification-url": "https://packagist.org/downloads/",
  5481. "license": [
  5482. "MIT"
  5483. ],
  5484. "authors": [
  5485. {
  5486. "name": "Fabien Potencier",
  5487. "email": "fabien@symfony.com"
  5488. },
  5489. {
  5490. "name": "Symfony Community",
  5491. "homepage": "https://symfony.com/contributors"
  5492. }
  5493. ],
  5494. "description": "Symfony Translation Component",
  5495. "homepage": "https://symfony.com",
  5496. "time": "2020-01-04T12:24:57+00:00"
  5497. },
  5498. {
  5499. "name": "symfony/translation-contracts",
  5500. "version": "v1.1.10",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://github.com/symfony/translation-contracts.git",
  5504. "reference": "84180a25fad31e23bebd26ca09d89464f082cacc"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/84180a25fad31e23bebd26ca09d89464f082cacc",
  5509. "reference": "84180a25fad31e23bebd26ca09d89464f082cacc",
  5510. "shasum": ""
  5511. },
  5512. "require": {
  5513. "php": ">=7.1.3"
  5514. },
  5515. "suggest": {
  5516. "symfony/translation-implementation": ""
  5517. },
  5518. "type": "library",
  5519. "extra": {
  5520. "branch-alias": {
  5521. "dev-master": "1.1-dev"
  5522. },
  5523. "thanks": {
  5524. "name": "symfony/contracts",
  5525. "url": "https://github.com/symfony/contracts"
  5526. }
  5527. },
  5528. "autoload": {
  5529. "psr-4": {
  5530. "Symfony\\Contracts\\Translation\\": ""
  5531. }
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Nicolas Grekas",
  5540. "email": "p@tchwork.com"
  5541. },
  5542. {
  5543. "name": "Symfony Community",
  5544. "homepage": "https://symfony.com/contributors"
  5545. }
  5546. ],
  5547. "description": "Generic abstractions related to translation",
  5548. "homepage": "https://symfony.com",
  5549. "keywords": [
  5550. "abstractions",
  5551. "contracts",
  5552. "decoupling",
  5553. "interfaces",
  5554. "interoperability",
  5555. "standards"
  5556. ],
  5557. "time": "2020-09-02T16:08:58+00:00"
  5558. },
  5559. {
  5560. "name": "symfony/var-dumper",
  5561. "version": "v3.4.47",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://github.com/symfony/var-dumper.git",
  5565. "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d"
  5566. },
  5567. "dist": {
  5568. "type": "zip",
  5569. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0719f6cf4633a38b2c1585140998579ce23b4b7d",
  5570. "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d",
  5571. "shasum": ""
  5572. },
  5573. "require": {
  5574. "php": "^5.5.9|>=7.0.8",
  5575. "symfony/polyfill-mbstring": "~1.0"
  5576. },
  5577. "conflict": {
  5578. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5579. },
  5580. "require-dev": {
  5581. "ext-iconv": "*",
  5582. "twig/twig": "~1.34|~2.4"
  5583. },
  5584. "suggest": {
  5585. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5586. "ext-intl": "To show region name in time zone dump",
  5587. "ext-symfony_debug": ""
  5588. },
  5589. "type": "library",
  5590. "autoload": {
  5591. "files": [
  5592. "Resources/functions/dump.php"
  5593. ],
  5594. "psr-4": {
  5595. "Symfony\\Component\\VarDumper\\": ""
  5596. },
  5597. "exclude-from-classmap": [
  5598. "/Tests/"
  5599. ]
  5600. },
  5601. "notification-url": "https://packagist.org/downloads/",
  5602. "license": [
  5603. "MIT"
  5604. ],
  5605. "authors": [
  5606. {
  5607. "name": "Nicolas Grekas",
  5608. "email": "p@tchwork.com"
  5609. },
  5610. {
  5611. "name": "Symfony Community",
  5612. "homepage": "https://symfony.com/contributors"
  5613. }
  5614. ],
  5615. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5616. "homepage": "https://symfony.com",
  5617. "keywords": [
  5618. "debug",
  5619. "dump"
  5620. ],
  5621. "time": "2020-10-24T10:57:07+00:00"
  5622. },
  5623. {
  5624. "name": "symfony/var-exporter",
  5625. "version": "v4.4.17",
  5626. "source": {
  5627. "type": "git",
  5628. "url": "https://github.com/symfony/var-exporter.git",
  5629. "reference": "f04b7d187b120e0a44c18a2d479c2dd0abe99d9c"
  5630. },
  5631. "dist": {
  5632. "type": "zip",
  5633. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f04b7d187b120e0a44c18a2d479c2dd0abe99d9c",
  5634. "reference": "f04b7d187b120e0a44c18a2d479c2dd0abe99d9c",
  5635. "shasum": ""
  5636. },
  5637. "require": {
  5638. "php": ">=7.1.3"
  5639. },
  5640. "require-dev": {
  5641. "symfony/var-dumper": "^4.4.9|^5.0.9"
  5642. },
  5643. "type": "library",
  5644. "autoload": {
  5645. "psr-4": {
  5646. "Symfony\\Component\\VarExporter\\": ""
  5647. },
  5648. "exclude-from-classmap": [
  5649. "/Tests/"
  5650. ]
  5651. },
  5652. "notification-url": "https://packagist.org/downloads/",
  5653. "license": [
  5654. "MIT"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Nicolas Grekas",
  5659. "email": "p@tchwork.com"
  5660. },
  5661. {
  5662. "name": "Symfony Community",
  5663. "homepage": "https://symfony.com/contributors"
  5664. }
  5665. ],
  5666. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  5667. "homepage": "https://symfony.com",
  5668. "keywords": [
  5669. "clone",
  5670. "construct",
  5671. "export",
  5672. "hydrate",
  5673. "instantiate",
  5674. "serialize"
  5675. ],
  5676. "time": "2020-10-28T20:42:29+00:00"
  5677. },
  5678. {
  5679. "name": "tijsverkoyen/css-to-inline-styles",
  5680. "version": "2.2.3",
  5681. "source": {
  5682. "type": "git",
  5683. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5684. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  5685. },
  5686. "dist": {
  5687. "type": "zip",
  5688. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5689. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5690. "shasum": ""
  5691. },
  5692. "require": {
  5693. "ext-dom": "*",
  5694. "ext-libxml": "*",
  5695. "php": "^5.5 || ^7.0 || ^8.0",
  5696. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  5697. },
  5698. "require-dev": {
  5699. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  5700. },
  5701. "type": "library",
  5702. "extra": {
  5703. "branch-alias": {
  5704. "dev-master": "2.2.x-dev"
  5705. }
  5706. },
  5707. "autoload": {
  5708. "psr-4": {
  5709. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5710. }
  5711. },
  5712. "notification-url": "https://packagist.org/downloads/",
  5713. "license": [
  5714. "BSD-3-Clause"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "Tijs Verkoyen",
  5719. "email": "css_to_inline_styles@verkoyen.eu",
  5720. "role": "Developer"
  5721. }
  5722. ],
  5723. "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.",
  5724. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5725. "time": "2020-07-13T06:12:54+00:00"
  5726. },
  5727. {
  5728. "name": "vlucas/phpdotenv",
  5729. "version": "v2.6.6",
  5730. "source": {
  5731. "type": "git",
  5732. "url": "https://github.com/vlucas/phpdotenv.git",
  5733. "reference": "e1d57f62db3db00d9139078cbedf262280701479"
  5734. },
  5735. "dist": {
  5736. "type": "zip",
  5737. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e1d57f62db3db00d9139078cbedf262280701479",
  5738. "reference": "e1d57f62db3db00d9139078cbedf262280701479",
  5739. "shasum": ""
  5740. },
  5741. "require": {
  5742. "php": "^5.3.9 || ^7.0 || ^8.0",
  5743. "symfony/polyfill-ctype": "^1.17"
  5744. },
  5745. "require-dev": {
  5746. "ext-filter": "*",
  5747. "ext-pcre": "*",
  5748. "phpunit/phpunit": "^4.8.35 || ^5.7.27"
  5749. },
  5750. "suggest": {
  5751. "ext-filter": "Required to use the boolean validator.",
  5752. "ext-pcre": "Required to use most of the library."
  5753. },
  5754. "type": "library",
  5755. "extra": {
  5756. "branch-alias": {
  5757. "dev-master": "2.6-dev"
  5758. }
  5759. },
  5760. "autoload": {
  5761. "psr-4": {
  5762. "Dotenv\\": "src/"
  5763. }
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "BSD-3-Clause"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Graham Campbell",
  5772. "email": "graham@alt-three.com",
  5773. "homepage": "https://gjcampbell.co.uk/"
  5774. },
  5775. {
  5776. "name": "Vance Lucas",
  5777. "email": "vance@vancelucas.com",
  5778. "homepage": "https://vancelucas.com/"
  5779. }
  5780. ],
  5781. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5782. "keywords": [
  5783. "dotenv",
  5784. "env",
  5785. "environment"
  5786. ],
  5787. "time": "2020-07-14T17:54:18+00:00"
  5788. },
  5789. {
  5790. "name": "yansongda/pay",
  5791. "version": "v2.7.8",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://github.com/yansongda/pay.git",
  5795. "reference": "9c1b3c0f98b118d18461495381bfe63454e4566f"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://api.github.com/repos/yansongda/pay/zipball/9c1b3c0f98b118d18461495381bfe63454e4566f",
  5800. "reference": "9c1b3c0f98b118d18461495381bfe63454e4566f",
  5801. "shasum": ""
  5802. },
  5803. "require": {
  5804. "ext-json": "*",
  5805. "ext-libxml": "*",
  5806. "ext-openssl": "*",
  5807. "ext-simplexml": "*",
  5808. "monolog/monolog": "^1.23",
  5809. "php": ">=7.0",
  5810. "symfony/event-dispatcher": "^3.0|^4.0",
  5811. "symfony/http-foundation": "^3.0|^4.0",
  5812. "yansongda/supports": "^1.8"
  5813. },
  5814. "require-dev": {
  5815. "mockery/mockery": "^1.2",
  5816. "phpunit/phpunit": "^6.2"
  5817. },
  5818. "type": "library",
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Yansongda\\Pay\\": "src"
  5822. }
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "yansongda",
  5831. "email": "me@yansongda.cn"
  5832. }
  5833. ],
  5834. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  5835. "keywords": [
  5836. "alipay",
  5837. "pay",
  5838. "wechat"
  5839. ],
  5840. "time": "2019-06-20T13:10:47+00:00"
  5841. },
  5842. {
  5843. "name": "yansongda/supports",
  5844. "version": "v1.9.0",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/yansongda/supports.git",
  5848. "reference": "830b61b0da2c6b0413a8d016903507542b322de0"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/yansongda/supports/zipball/830b61b0da2c6b0413a8d016903507542b322de0",
  5853. "reference": "830b61b0da2c6b0413a8d016903507542b322de0",
  5854. "shasum": ""
  5855. },
  5856. "require": {
  5857. "guzzlehttp/guzzle": "^6.2",
  5858. "monolog/monolog": "^1.23",
  5859. "php": ">=5.5"
  5860. },
  5861. "require-dev": {
  5862. "predis/predis": "^1.1"
  5863. },
  5864. "suggest": {
  5865. "predis/predis": "Allows to use throttle feature"
  5866. },
  5867. "type": "library",
  5868. "autoload": {
  5869. "psr-4": {
  5870. "Yansongda\\Supports\\": "src/"
  5871. }
  5872. },
  5873. "notification-url": "https://packagist.org/downloads/",
  5874. "license": [
  5875. "MIT"
  5876. ],
  5877. "authors": [
  5878. {
  5879. "name": "yansongda",
  5880. "email": "me@yansongda.cn"
  5881. }
  5882. ],
  5883. "description": "common components",
  5884. "keywords": [
  5885. "Guzzle",
  5886. "array",
  5887. "collection",
  5888. "config",
  5889. "http",
  5890. "support",
  5891. "throttle"
  5892. ],
  5893. "time": "2019-06-05T05:08:48+00:00"
  5894. }
  5895. ],
  5896. "packages-dev": [
  5897. {
  5898. "name": "barryvdh/laravel-debugbar",
  5899. "version": "v3.4.2",
  5900. "source": {
  5901. "type": "git",
  5902. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  5903. "reference": "91ee8b3acf0d72a4937f4855bd245acbda9910ac"
  5904. },
  5905. "dist": {
  5906. "type": "zip",
  5907. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/91ee8b3acf0d72a4937f4855bd245acbda9910ac",
  5908. "reference": "91ee8b3acf0d72a4937f4855bd245acbda9910ac",
  5909. "shasum": ""
  5910. },
  5911. "require": {
  5912. "illuminate/routing": "^5.5|^6|^7",
  5913. "illuminate/session": "^5.5|^6|^7",
  5914. "illuminate/support": "^5.5|^6|^7",
  5915. "maximebf/debugbar": "^1.16.3",
  5916. "php": ">=7.0",
  5917. "symfony/debug": "^3|^4|^5",
  5918. "symfony/finder": "^3|^4|^5"
  5919. },
  5920. "require-dev": {
  5921. "orchestra/testbench": "^3.5|^4.0|^5.0",
  5922. "phpunit/phpunit": "^6.0|^7.0|^8.5|^9.0"
  5923. },
  5924. "type": "library",
  5925. "extra": {
  5926. "branch-alias": {
  5927. "dev-master": "3.2-dev"
  5928. },
  5929. "laravel": {
  5930. "providers": [
  5931. "Barryvdh\\Debugbar\\ServiceProvider"
  5932. ],
  5933. "aliases": {
  5934. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  5935. }
  5936. }
  5937. },
  5938. "autoload": {
  5939. "psr-4": {
  5940. "Barryvdh\\Debugbar\\": "src/"
  5941. },
  5942. "files": [
  5943. "src/helpers.php"
  5944. ]
  5945. },
  5946. "notification-url": "https://packagist.org/downloads/",
  5947. "license": [
  5948. "MIT"
  5949. ],
  5950. "authors": [
  5951. {
  5952. "name": "Barry vd. Heuvel",
  5953. "email": "barryvdh@gmail.com"
  5954. }
  5955. ],
  5956. "description": "PHP Debugbar integration for Laravel",
  5957. "keywords": [
  5958. "debug",
  5959. "debugbar",
  5960. "laravel",
  5961. "profiler",
  5962. "webprofiler"
  5963. ],
  5964. "time": "2020-08-30T07:08:17+00:00"
  5965. },
  5966. {
  5967. "name": "barryvdh/laravel-ide-helper",
  5968. "version": "v2.8.0",
  5969. "source": {
  5970. "type": "git",
  5971. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  5972. "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b"
  5973. },
  5974. "dist": {
  5975. "type": "zip",
  5976. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/ba95d18ef55c91295250ae8b7bfa73d8fb866b9b",
  5977. "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b",
  5978. "shasum": ""
  5979. },
  5980. "require": {
  5981. "barryvdh/reflection-docblock": "^2.0.6",
  5982. "composer/composer": "^1.6 || ^2.0@dev",
  5983. "doctrine/dbal": "~2.3",
  5984. "illuminate/console": "^5.5 || ^6 || ^7",
  5985. "illuminate/filesystem": "^5.5 || ^6 || ^7",
  5986. "illuminate/support": "^5.5 || ^6 || ^7",
  5987. "php": ">=7.2",
  5988. "phpdocumentor/type-resolver": "^1.1.0"
  5989. },
  5990. "require-dev": {
  5991. "illuminate/config": "^5.5 || ^6 || ^7",
  5992. "illuminate/view": "^5.5 || ^6 || ^7",
  5993. "mockery/mockery": "^1.3",
  5994. "orchestra/testbench": "^3.5 || ^4 || ^5",
  5995. "phpro/grumphp": "^0.19.0",
  5996. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  5997. "squizlabs/php_codesniffer": "^3.5",
  5998. "vimeo/psalm": "^3.12"
  5999. },
  6000. "type": "library",
  6001. "extra": {
  6002. "branch-alias": {
  6003. "dev-master": "2.7-dev"
  6004. },
  6005. "laravel": {
  6006. "providers": [
  6007. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  6008. ]
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Barryvdh\\LaravelIdeHelper\\": "src"
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Barry vd. Heuvel",
  6023. "email": "barryvdh@gmail.com"
  6024. }
  6025. ],
  6026. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  6027. "keywords": [
  6028. "autocomplete",
  6029. "codeintel",
  6030. "helper",
  6031. "ide",
  6032. "laravel",
  6033. "netbeans",
  6034. "phpdoc",
  6035. "phpstorm",
  6036. "sublime"
  6037. ],
  6038. "time": "2020-08-10T08:22:48+00:00"
  6039. },
  6040. {
  6041. "name": "barryvdh/reflection-docblock",
  6042. "version": "v2.0.6",
  6043. "source": {
  6044. "type": "git",
  6045. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  6046. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  6047. },
  6048. "dist": {
  6049. "type": "zip",
  6050. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6051. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6052. "shasum": ""
  6053. },
  6054. "require": {
  6055. "php": ">=5.3.3"
  6056. },
  6057. "require-dev": {
  6058. "phpunit/phpunit": "~4.0,<4.5"
  6059. },
  6060. "suggest": {
  6061. "dflydev/markdown": "~1.0",
  6062. "erusev/parsedown": "~1.0"
  6063. },
  6064. "type": "library",
  6065. "extra": {
  6066. "branch-alias": {
  6067. "dev-master": "2.0.x-dev"
  6068. }
  6069. },
  6070. "autoload": {
  6071. "psr-0": {
  6072. "Barryvdh": [
  6073. "src/"
  6074. ]
  6075. }
  6076. },
  6077. "notification-url": "https://repo.packagist.org/downloads/",
  6078. "license": [
  6079. "MIT"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "Mike van Riel",
  6084. "email": "mike.vanriel@naenius.com"
  6085. }
  6086. ],
  6087. "time": "2018-12-13T10:34:14+00:00"
  6088. },
  6089. {
  6090. "name": "composer/ca-bundle",
  6091. "version": "1.2.8",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://github.com/composer/ca-bundle.git",
  6095. "reference": "8a7ecad675253e4654ea05505233285377405215"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  6100. "reference": "8a7ecad675253e4654ea05505233285377405215",
  6101. "shasum": ""
  6102. },
  6103. "require": {
  6104. "ext-openssl": "*",
  6105. "ext-pcre": "*",
  6106. "php": "^5.3.2 || ^7.0 || ^8.0"
  6107. },
  6108. "require-dev": {
  6109. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  6110. "psr/log": "^1.0",
  6111. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  6112. },
  6113. "type": "library",
  6114. "extra": {
  6115. "branch-alias": {
  6116. "dev-master": "1.x-dev"
  6117. }
  6118. },
  6119. "autoload": {
  6120. "psr-4": {
  6121. "Composer\\CaBundle\\": "src"
  6122. }
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "MIT"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Jordi Boggiano",
  6131. "email": "j.boggiano@seld.be",
  6132. "homepage": "http://seld.be"
  6133. }
  6134. ],
  6135. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  6136. "keywords": [
  6137. "cabundle",
  6138. "cacert",
  6139. "certificate",
  6140. "ssl",
  6141. "tls"
  6142. ],
  6143. "time": "2020-08-23T12:54:47+00:00"
  6144. },
  6145. {
  6146. "name": "composer/composer",
  6147. "version": "2.0.8",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/composer/composer.git",
  6151. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  6156. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  6157. "shasum": ""
  6158. },
  6159. "require": {
  6160. "composer/ca-bundle": "^1.0",
  6161. "composer/semver": "^3.0",
  6162. "composer/spdx-licenses": "^1.2",
  6163. "composer/xdebug-handler": "^1.1",
  6164. "justinrainbow/json-schema": "^5.2.10",
  6165. "php": "^5.3.2 || ^7.0 || ^8.0",
  6166. "psr/log": "^1.0",
  6167. "react/promise": "^1.2 || ^2.7",
  6168. "seld/jsonlint": "^1.4",
  6169. "seld/phar-utils": "^1.0",
  6170. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  6171. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  6172. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  6173. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  6174. },
  6175. "require-dev": {
  6176. "phpspec/prophecy": "^1.10",
  6177. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  6178. },
  6179. "suggest": {
  6180. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  6181. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  6182. "ext-zlib": "Allow gzip compression of HTTP requests"
  6183. },
  6184. "bin": [
  6185. "bin/composer"
  6186. ],
  6187. "type": "library",
  6188. "extra": {
  6189. "branch-alias": {
  6190. "dev-master": "2.0-dev"
  6191. }
  6192. },
  6193. "autoload": {
  6194. "psr-4": {
  6195. "Composer\\": "src/Composer"
  6196. }
  6197. },
  6198. "notification-url": "https://packagist.org/downloads/",
  6199. "license": [
  6200. "MIT"
  6201. ],
  6202. "authors": [
  6203. {
  6204. "name": "Nils Adermann",
  6205. "email": "naderman@naderman.de",
  6206. "homepage": "https://www.naderman.de"
  6207. },
  6208. {
  6209. "name": "Jordi Boggiano",
  6210. "email": "j.boggiano@seld.be",
  6211. "homepage": "https://seld.be"
  6212. }
  6213. ],
  6214. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  6215. "homepage": "https://getcomposer.org/",
  6216. "keywords": [
  6217. "autoload",
  6218. "dependency",
  6219. "package"
  6220. ],
  6221. "time": "2020-12-03T16:20:39+00:00"
  6222. },
  6223. {
  6224. "name": "composer/semver",
  6225. "version": "3.2.4",
  6226. "source": {
  6227. "type": "git",
  6228. "url": "https://github.com/composer/semver.git",
  6229. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  6230. },
  6231. "dist": {
  6232. "type": "zip",
  6233. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  6234. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  6235. "shasum": ""
  6236. },
  6237. "require": {
  6238. "php": "^5.3.2 || ^7.0 || ^8.0"
  6239. },
  6240. "require-dev": {
  6241. "phpstan/phpstan": "^0.12.54",
  6242. "symfony/phpunit-bridge": "^4.2 || ^5"
  6243. },
  6244. "type": "library",
  6245. "extra": {
  6246. "branch-alias": {
  6247. "dev-main": "3.x-dev"
  6248. }
  6249. },
  6250. "autoload": {
  6251. "psr-4": {
  6252. "Composer\\Semver\\": "src"
  6253. }
  6254. },
  6255. "notification-url": "https://packagist.org/downloads/",
  6256. "license": [
  6257. "MIT"
  6258. ],
  6259. "authors": [
  6260. {
  6261. "name": "Nils Adermann",
  6262. "email": "naderman@naderman.de",
  6263. "homepage": "http://www.naderman.de"
  6264. },
  6265. {
  6266. "name": "Jordi Boggiano",
  6267. "email": "j.boggiano@seld.be",
  6268. "homepage": "http://seld.be"
  6269. },
  6270. {
  6271. "name": "Rob Bast",
  6272. "email": "rob.bast@gmail.com",
  6273. "homepage": "http://robbast.nl"
  6274. }
  6275. ],
  6276. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6277. "keywords": [
  6278. "semantic",
  6279. "semver",
  6280. "validation",
  6281. "versioning"
  6282. ],
  6283. "time": "2020-11-13T08:59:24+00:00"
  6284. },
  6285. {
  6286. "name": "composer/spdx-licenses",
  6287. "version": "1.5.5",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://github.com/composer/spdx-licenses.git",
  6291. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  6296. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  6297. "shasum": ""
  6298. },
  6299. "require": {
  6300. "php": "^5.3.2 || ^7.0 || ^8.0"
  6301. },
  6302. "require-dev": {
  6303. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-main": "1.x-dev"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "psr-4": {
  6313. "Composer\\Spdx\\": "src"
  6314. }
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Nils Adermann",
  6323. "email": "naderman@naderman.de",
  6324. "homepage": "http://www.naderman.de"
  6325. },
  6326. {
  6327. "name": "Jordi Boggiano",
  6328. "email": "j.boggiano@seld.be",
  6329. "homepage": "http://seld.be"
  6330. },
  6331. {
  6332. "name": "Rob Bast",
  6333. "email": "rob.bast@gmail.com",
  6334. "homepage": "http://robbast.nl"
  6335. }
  6336. ],
  6337. "description": "SPDX licenses list and validation library.",
  6338. "keywords": [
  6339. "license",
  6340. "spdx",
  6341. "validator"
  6342. ],
  6343. "time": "2020-12-03T16:04:16+00:00"
  6344. },
  6345. {
  6346. "name": "composer/xdebug-handler",
  6347. "version": "1.4.5",
  6348. "source": {
  6349. "type": "git",
  6350. "url": "https://github.com/composer/xdebug-handler.git",
  6351. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  6352. },
  6353. "dist": {
  6354. "type": "zip",
  6355. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  6356. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  6357. "shasum": ""
  6358. },
  6359. "require": {
  6360. "php": "^5.3.2 || ^7.0 || ^8.0",
  6361. "psr/log": "^1.0"
  6362. },
  6363. "require-dev": {
  6364. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  6365. },
  6366. "type": "library",
  6367. "autoload": {
  6368. "psr-4": {
  6369. "Composer\\XdebugHandler\\": "src"
  6370. }
  6371. },
  6372. "notification-url": "https://packagist.org/downloads/",
  6373. "license": [
  6374. "MIT"
  6375. ],
  6376. "authors": [
  6377. {
  6378. "name": "John Stevenson",
  6379. "email": "john-stevenson@blueyonder.co.uk"
  6380. }
  6381. ],
  6382. "description": "Restarts a process without Xdebug.",
  6383. "keywords": [
  6384. "Xdebug",
  6385. "performance"
  6386. ],
  6387. "time": "2020-11-13T08:04:11+00:00"
  6388. },
  6389. {
  6390. "name": "doctrine/instantiator",
  6391. "version": "1.4.0",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/doctrine/instantiator.git",
  6395. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  6400. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "php": "^7.1 || ^8.0"
  6405. },
  6406. "require-dev": {
  6407. "doctrine/coding-standard": "^8.0",
  6408. "ext-pdo": "*",
  6409. "ext-phar": "*",
  6410. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  6411. "phpstan/phpstan": "^0.12",
  6412. "phpstan/phpstan-phpunit": "^0.12",
  6413. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  6414. },
  6415. "type": "library",
  6416. "autoload": {
  6417. "psr-4": {
  6418. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6419. }
  6420. },
  6421. "notification-url": "https://packagist.org/downloads/",
  6422. "license": [
  6423. "MIT"
  6424. ],
  6425. "authors": [
  6426. {
  6427. "name": "Marco Pivetta",
  6428. "email": "ocramius@gmail.com",
  6429. "homepage": "https://ocramius.github.io/"
  6430. }
  6431. ],
  6432. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6433. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6434. "keywords": [
  6435. "constructor",
  6436. "instantiate"
  6437. ],
  6438. "time": "2020-11-10T18:47:58+00:00"
  6439. },
  6440. {
  6441. "name": "filp/whoops",
  6442. "version": "2.9.1",
  6443. "source": {
  6444. "type": "git",
  6445. "url": "https://github.com/filp/whoops.git",
  6446. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  6447. },
  6448. "dist": {
  6449. "type": "zip",
  6450. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  6451. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  6452. "shasum": ""
  6453. },
  6454. "require": {
  6455. "php": "^5.5.9 || ^7.0 || ^8.0",
  6456. "psr/log": "^1.0.1"
  6457. },
  6458. "require-dev": {
  6459. "mockery/mockery": "^0.9 || ^1.0",
  6460. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  6461. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6462. },
  6463. "suggest": {
  6464. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6465. "whoops/soap": "Formats errors as SOAP responses"
  6466. },
  6467. "type": "library",
  6468. "extra": {
  6469. "branch-alias": {
  6470. "dev-master": "2.7-dev"
  6471. }
  6472. },
  6473. "autoload": {
  6474. "psr-4": {
  6475. "Whoops\\": "src/Whoops/"
  6476. }
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Filipe Dobreira",
  6485. "homepage": "https://github.com/filp",
  6486. "role": "Developer"
  6487. }
  6488. ],
  6489. "description": "php error handling for cool kids",
  6490. "homepage": "https://filp.github.io/whoops/",
  6491. "keywords": [
  6492. "error",
  6493. "exception",
  6494. "handling",
  6495. "library",
  6496. "throwable",
  6497. "whoops"
  6498. ],
  6499. "time": "2020-11-01T12:00:00+00:00"
  6500. },
  6501. {
  6502. "name": "fzaninotto/faker",
  6503. "version": "v1.9.1",
  6504. "source": {
  6505. "type": "git",
  6506. "url": "https://github.com/fzaninotto/Faker.git",
  6507. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  6508. },
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  6512. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "php": "^5.3.3 || ^7.0"
  6517. },
  6518. "require-dev": {
  6519. "ext-intl": "*",
  6520. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6521. "squizlabs/php_codesniffer": "^2.9.2"
  6522. },
  6523. "type": "library",
  6524. "extra": {
  6525. "branch-alias": {
  6526. "dev-master": "1.9-dev"
  6527. }
  6528. },
  6529. "autoload": {
  6530. "psr-4": {
  6531. "Faker\\": "src/Faker/"
  6532. }
  6533. },
  6534. "notification-url": "https://packagist.org/downloads/",
  6535. "license": [
  6536. "MIT"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "François Zaninotto"
  6541. }
  6542. ],
  6543. "description": "Faker is a PHP library that generates fake data for you.",
  6544. "keywords": [
  6545. "data",
  6546. "faker",
  6547. "fixtures"
  6548. ],
  6549. "abandoned": true,
  6550. "time": "2019-12-12T13:22:17+00:00"
  6551. },
  6552. {
  6553. "name": "hamcrest/hamcrest-php",
  6554. "version": "v2.0.1",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6558. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6559. },
  6560. "dist": {
  6561. "type": "zip",
  6562. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6563. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6564. "shasum": ""
  6565. },
  6566. "require": {
  6567. "php": "^5.3|^7.0|^8.0"
  6568. },
  6569. "replace": {
  6570. "cordoval/hamcrest-php": "*",
  6571. "davedevelopment/hamcrest-php": "*",
  6572. "kodova/hamcrest-php": "*"
  6573. },
  6574. "require-dev": {
  6575. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6576. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6577. },
  6578. "type": "library",
  6579. "extra": {
  6580. "branch-alias": {
  6581. "dev-master": "2.1-dev"
  6582. }
  6583. },
  6584. "autoload": {
  6585. "classmap": [
  6586. "hamcrest"
  6587. ]
  6588. },
  6589. "notification-url": "https://packagist.org/downloads/",
  6590. "license": [
  6591. "BSD-3-Clause"
  6592. ],
  6593. "description": "This is the PHP port of Hamcrest Matchers",
  6594. "keywords": [
  6595. "test"
  6596. ],
  6597. "time": "2020-07-09T08:09:16+00:00"
  6598. },
  6599. {
  6600. "name": "justinrainbow/json-schema",
  6601. "version": "5.2.10",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://github.com/justinrainbow/json-schema.git",
  6605. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  6610. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  6611. "shasum": ""
  6612. },
  6613. "require": {
  6614. "php": ">=5.3.3"
  6615. },
  6616. "require-dev": {
  6617. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6618. "json-schema/json-schema-test-suite": "1.2.0",
  6619. "phpunit/phpunit": "^4.8.35"
  6620. },
  6621. "bin": [
  6622. "bin/validate-json"
  6623. ],
  6624. "type": "library",
  6625. "extra": {
  6626. "branch-alias": {
  6627. "dev-master": "5.0.x-dev"
  6628. }
  6629. },
  6630. "autoload": {
  6631. "psr-4": {
  6632. "JsonSchema\\": "src/JsonSchema/"
  6633. }
  6634. },
  6635. "notification-url": "https://packagist.org/downloads/",
  6636. "license": [
  6637. "MIT"
  6638. ],
  6639. "authors": [
  6640. {
  6641. "name": "Bruno Prieto Reis",
  6642. "email": "bruno.p.reis@gmail.com"
  6643. },
  6644. {
  6645. "name": "Justin Rainbow",
  6646. "email": "justin.rainbow@gmail.com"
  6647. },
  6648. {
  6649. "name": "Igor Wiedler",
  6650. "email": "igor@wiedler.ch"
  6651. },
  6652. {
  6653. "name": "Robert Schönthal",
  6654. "email": "seroscho@googlemail.com"
  6655. }
  6656. ],
  6657. "description": "A library to validate a json schema.",
  6658. "homepage": "https://github.com/justinrainbow/json-schema",
  6659. "keywords": [
  6660. "json",
  6661. "schema"
  6662. ],
  6663. "time": "2020-05-27T16:41:55+00:00"
  6664. },
  6665. {
  6666. "name": "maximebf/debugbar",
  6667. "version": "v1.16.4",
  6668. "source": {
  6669. "type": "git",
  6670. "url": "https://github.com/maximebf/php-debugbar.git",
  6671. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  6672. },
  6673. "dist": {
  6674. "type": "zip",
  6675. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  6676. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  6677. "shasum": ""
  6678. },
  6679. "require": {
  6680. "php": "^7.1|^8",
  6681. "psr/log": "^1.0",
  6682. "symfony/var-dumper": "^2.6|^3|^4|^5"
  6683. },
  6684. "require-dev": {
  6685. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  6686. },
  6687. "suggest": {
  6688. "kriswallsmith/assetic": "The best way to manage assets",
  6689. "monolog/monolog": "Log using Monolog",
  6690. "predis/predis": "Redis storage"
  6691. },
  6692. "type": "library",
  6693. "extra": {
  6694. "branch-alias": {
  6695. "dev-master": "1.16-dev"
  6696. }
  6697. },
  6698. "autoload": {
  6699. "psr-4": {
  6700. "DebugBar\\": "src/DebugBar/"
  6701. }
  6702. },
  6703. "notification-url": "https://packagist.org/downloads/",
  6704. "license": [
  6705. "MIT"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Maxime Bouroumeau-Fuseau",
  6710. "email": "maxime.bouroumeau@gmail.com",
  6711. "homepage": "http://maximebf.com"
  6712. },
  6713. {
  6714. "name": "Barry vd. Heuvel",
  6715. "email": "barryvdh@gmail.com"
  6716. }
  6717. ],
  6718. "description": "Debug bar in the browser for php application",
  6719. "homepage": "https://github.com/maximebf/php-debugbar",
  6720. "keywords": [
  6721. "debug",
  6722. "debugbar"
  6723. ],
  6724. "time": "2020-12-07T10:48:48+00:00"
  6725. },
  6726. {
  6727. "name": "mockery/mockery",
  6728. "version": "1.3.3",
  6729. "source": {
  6730. "type": "git",
  6731. "url": "https://github.com/mockery/mockery.git",
  6732. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  6733. },
  6734. "dist": {
  6735. "type": "zip",
  6736. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6737. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6738. "shasum": ""
  6739. },
  6740. "require": {
  6741. "hamcrest/hamcrest-php": "^2.0.1",
  6742. "lib-pcre": ">=7.0",
  6743. "php": ">=5.6.0"
  6744. },
  6745. "require-dev": {
  6746. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  6747. },
  6748. "type": "library",
  6749. "extra": {
  6750. "branch-alias": {
  6751. "dev-master": "1.3.x-dev"
  6752. }
  6753. },
  6754. "autoload": {
  6755. "psr-0": {
  6756. "Mockery": "library/"
  6757. }
  6758. },
  6759. "notification-url": "https://packagist.org/downloads/",
  6760. "license": [
  6761. "BSD-3-Clause"
  6762. ],
  6763. "authors": [
  6764. {
  6765. "name": "Pádraic Brady",
  6766. "email": "padraic.brady@gmail.com",
  6767. "homepage": "http://blog.astrumfutura.com"
  6768. },
  6769. {
  6770. "name": "Dave Marshall",
  6771. "email": "dave.marshall@atstsolutions.co.uk",
  6772. "homepage": "http://davedevelopment.co.uk"
  6773. }
  6774. ],
  6775. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6776. "homepage": "https://github.com/mockery/mockery",
  6777. "keywords": [
  6778. "BDD",
  6779. "TDD",
  6780. "library",
  6781. "mock",
  6782. "mock objects",
  6783. "mockery",
  6784. "stub",
  6785. "test",
  6786. "test double",
  6787. "testing"
  6788. ],
  6789. "time": "2020-08-11T18:10:21+00:00"
  6790. },
  6791. {
  6792. "name": "myclabs/deep-copy",
  6793. "version": "1.10.2",
  6794. "source": {
  6795. "type": "git",
  6796. "url": "https://github.com/myclabs/DeepCopy.git",
  6797. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  6798. },
  6799. "dist": {
  6800. "type": "zip",
  6801. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6802. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6803. "shasum": ""
  6804. },
  6805. "require": {
  6806. "php": "^7.1 || ^8.0"
  6807. },
  6808. "replace": {
  6809. "myclabs/deep-copy": "self.version"
  6810. },
  6811. "require-dev": {
  6812. "doctrine/collections": "^1.0",
  6813. "doctrine/common": "^2.6",
  6814. "phpunit/phpunit": "^7.1"
  6815. },
  6816. "type": "library",
  6817. "autoload": {
  6818. "psr-4": {
  6819. "DeepCopy\\": "src/DeepCopy/"
  6820. },
  6821. "files": [
  6822. "src/DeepCopy/deep_copy.php"
  6823. ]
  6824. },
  6825. "notification-url": "https://packagist.org/downloads/",
  6826. "license": [
  6827. "MIT"
  6828. ],
  6829. "description": "Create deep copies (clones) of your objects",
  6830. "keywords": [
  6831. "clone",
  6832. "copy",
  6833. "duplicate",
  6834. "object",
  6835. "object graph"
  6836. ],
  6837. "time": "2020-11-13T09:40:50+00:00"
  6838. },
  6839. {
  6840. "name": "phar-io/manifest",
  6841. "version": "1.0.1",
  6842. "source": {
  6843. "type": "git",
  6844. "url": "https://github.com/phar-io/manifest.git",
  6845. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  6846. },
  6847. "dist": {
  6848. "type": "zip",
  6849. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  6850. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  6851. "shasum": ""
  6852. },
  6853. "require": {
  6854. "ext-dom": "*",
  6855. "ext-phar": "*",
  6856. "phar-io/version": "^1.0.1",
  6857. "php": "^5.6 || ^7.0"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "branch-alias": {
  6862. "dev-master": "1.0.x-dev"
  6863. }
  6864. },
  6865. "autoload": {
  6866. "classmap": [
  6867. "src/"
  6868. ]
  6869. },
  6870. "notification-url": "https://repo.packagist.org/downloads/",
  6871. "license": [
  6872. "BSD-3-Clause"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Arne Blankerts",
  6877. "email": "arne@blankerts.de",
  6878. "role": "Developer"
  6879. },
  6880. {
  6881. "name": "Sebastian Heuer",
  6882. "email": "sebastian@phpeople.de",
  6883. "role": "Developer"
  6884. },
  6885. {
  6886. "name": "Sebastian Bergmann",
  6887. "email": "sebastian@phpunit.de",
  6888. "role": "Developer"
  6889. }
  6890. ],
  6891. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6892. "time": "2017-03-05T18:14:27+00:00"
  6893. },
  6894. {
  6895. "name": "phar-io/version",
  6896. "version": "1.0.1",
  6897. "source": {
  6898. "type": "git",
  6899. "url": "https://github.com/phar-io/version.git",
  6900. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  6901. },
  6902. "dist": {
  6903. "type": "zip",
  6904. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  6905. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  6906. "shasum": ""
  6907. },
  6908. "require": {
  6909. "php": "^5.6 || ^7.0"
  6910. },
  6911. "type": "library",
  6912. "autoload": {
  6913. "classmap": [
  6914. "src/"
  6915. ]
  6916. },
  6917. "notification-url": "https://repo.packagist.org/downloads/",
  6918. "license": [
  6919. "BSD-3-Clause"
  6920. ],
  6921. "authors": [
  6922. {
  6923. "name": "Arne Blankerts",
  6924. "email": "arne@blankerts.de",
  6925. "role": "Developer"
  6926. },
  6927. {
  6928. "name": "Sebastian Heuer",
  6929. "email": "sebastian@phpeople.de",
  6930. "role": "Developer"
  6931. },
  6932. {
  6933. "name": "Sebastian Bergmann",
  6934. "email": "sebastian@phpunit.de",
  6935. "role": "Developer"
  6936. }
  6937. ],
  6938. "description": "Library for handling version information and constraints",
  6939. "time": "2017-03-05T17:38:23+00:00"
  6940. },
  6941. {
  6942. "name": "phpdocumentor/reflection-common",
  6943. "version": "2.2.0",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6947. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6952. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6953. "shasum": ""
  6954. },
  6955. "require": {
  6956. "php": "^7.2 || ^8.0"
  6957. },
  6958. "type": "library",
  6959. "extra": {
  6960. "branch-alias": {
  6961. "dev-2.x": "2.x-dev"
  6962. }
  6963. },
  6964. "autoload": {
  6965. "psr-4": {
  6966. "phpDocumentor\\Reflection\\": "src/"
  6967. }
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Jaap van Otterdijk",
  6976. "email": "opensource@ijaap.nl"
  6977. }
  6978. ],
  6979. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6980. "homepage": "http://www.phpdoc.org",
  6981. "keywords": [
  6982. "FQSEN",
  6983. "phpDocumentor",
  6984. "phpdoc",
  6985. "reflection",
  6986. "static analysis"
  6987. ],
  6988. "time": "2020-06-27T09:03:43+00:00"
  6989. },
  6990. {
  6991. "name": "phpdocumentor/reflection-docblock",
  6992. "version": "5.2.2",
  6993. "source": {
  6994. "type": "git",
  6995. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6996. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  6997. },
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  7001. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  7002. "shasum": ""
  7003. },
  7004. "require": {
  7005. "ext-filter": "*",
  7006. "php": "^7.2 || ^8.0",
  7007. "phpdocumentor/reflection-common": "^2.2",
  7008. "phpdocumentor/type-resolver": "^1.3",
  7009. "webmozart/assert": "^1.9.1"
  7010. },
  7011. "require-dev": {
  7012. "mockery/mockery": "~1.3.2"
  7013. },
  7014. "type": "library",
  7015. "extra": {
  7016. "branch-alias": {
  7017. "dev-master": "5.x-dev"
  7018. }
  7019. },
  7020. "autoload": {
  7021. "psr-4": {
  7022. "phpDocumentor\\Reflection\\": "src"
  7023. }
  7024. },
  7025. "notification-url": "https://packagist.org/downloads/",
  7026. "license": [
  7027. "MIT"
  7028. ],
  7029. "authors": [
  7030. {
  7031. "name": "Mike van Riel",
  7032. "email": "me@mikevanriel.com"
  7033. },
  7034. {
  7035. "name": "Jaap van Otterdijk",
  7036. "email": "account@ijaap.nl"
  7037. }
  7038. ],
  7039. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7040. "time": "2020-09-03T19:13:55+00:00"
  7041. },
  7042. {
  7043. "name": "phpdocumentor/type-resolver",
  7044. "version": "1.4.0",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7048. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  7053. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  7054. "shasum": ""
  7055. },
  7056. "require": {
  7057. "php": "^7.2 || ^8.0",
  7058. "phpdocumentor/reflection-common": "^2.0"
  7059. },
  7060. "require-dev": {
  7061. "ext-tokenizer": "*"
  7062. },
  7063. "type": "library",
  7064. "extra": {
  7065. "branch-alias": {
  7066. "dev-1.x": "1.x-dev"
  7067. }
  7068. },
  7069. "autoload": {
  7070. "psr-4": {
  7071. "phpDocumentor\\Reflection\\": "src"
  7072. }
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "MIT"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Mike van Riel",
  7081. "email": "me@mikevanriel.com"
  7082. }
  7083. ],
  7084. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  7085. "time": "2020-09-17T18:55:26+00:00"
  7086. },
  7087. {
  7088. "name": "phpspec/prophecy",
  7089. "version": "v1.10.3",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/phpspec/prophecy.git",
  7093. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  7098. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "doctrine/instantiator": "^1.0.2",
  7103. "php": "^5.3|^7.0",
  7104. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7105. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  7106. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  7107. },
  7108. "require-dev": {
  7109. "phpspec/phpspec": "^2.5 || ^3.2",
  7110. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7111. },
  7112. "type": "library",
  7113. "extra": {
  7114. "branch-alias": {
  7115. "dev-master": "1.10.x-dev"
  7116. }
  7117. },
  7118. "autoload": {
  7119. "psr-4": {
  7120. "Prophecy\\": "src/Prophecy"
  7121. }
  7122. },
  7123. "notification-url": "https://packagist.org/downloads/",
  7124. "license": [
  7125. "MIT"
  7126. ],
  7127. "authors": [
  7128. {
  7129. "name": "Konstantin Kudryashov",
  7130. "email": "ever.zet@gmail.com",
  7131. "homepage": "http://everzet.com"
  7132. },
  7133. {
  7134. "name": "Marcello Duarte",
  7135. "email": "marcello.duarte@gmail.com"
  7136. }
  7137. ],
  7138. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7139. "homepage": "https://github.com/phpspec/prophecy",
  7140. "keywords": [
  7141. "Double",
  7142. "Dummy",
  7143. "fake",
  7144. "mock",
  7145. "spy",
  7146. "stub"
  7147. ],
  7148. "time": "2020-03-05T15:02:03+00:00"
  7149. },
  7150. {
  7151. "name": "phpunit/php-code-coverage",
  7152. "version": "5.3.2",
  7153. "source": {
  7154. "type": "git",
  7155. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7156. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7157. },
  7158. "dist": {
  7159. "type": "zip",
  7160. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7161. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7162. "shasum": ""
  7163. },
  7164. "require": {
  7165. "ext-dom": "*",
  7166. "ext-xmlwriter": "*",
  7167. "php": "^7.0",
  7168. "phpunit/php-file-iterator": "^1.4.2",
  7169. "phpunit/php-text-template": "^1.2.1",
  7170. "phpunit/php-token-stream": "^2.0.1",
  7171. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7172. "sebastian/environment": "^3.0",
  7173. "sebastian/version": "^2.0.1",
  7174. "theseer/tokenizer": "^1.1"
  7175. },
  7176. "require-dev": {
  7177. "phpunit/phpunit": "^6.0"
  7178. },
  7179. "suggest": {
  7180. "ext-xdebug": "^2.5.5"
  7181. },
  7182. "type": "library",
  7183. "extra": {
  7184. "branch-alias": {
  7185. "dev-master": "5.3.x-dev"
  7186. }
  7187. },
  7188. "autoload": {
  7189. "classmap": [
  7190. "src/"
  7191. ]
  7192. },
  7193. "notification-url": "https://repo.packagist.org/downloads/",
  7194. "license": [
  7195. "BSD-3-Clause"
  7196. ],
  7197. "authors": [
  7198. {
  7199. "name": "Sebastian Bergmann",
  7200. "email": "sebastian@phpunit.de",
  7201. "role": "lead"
  7202. }
  7203. ],
  7204. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7205. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7206. "keywords": [
  7207. "coverage",
  7208. "testing",
  7209. "xunit"
  7210. ],
  7211. "time": "2018-04-06T15:36:58+00:00"
  7212. },
  7213. {
  7214. "name": "phpunit/php-file-iterator",
  7215. "version": "1.4.5",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7219. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7224. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7225. "shasum": ""
  7226. },
  7227. "require": {
  7228. "php": ">=5.3.3"
  7229. },
  7230. "type": "library",
  7231. "extra": {
  7232. "branch-alias": {
  7233. "dev-master": "1.4.x-dev"
  7234. }
  7235. },
  7236. "autoload": {
  7237. "classmap": [
  7238. "src/"
  7239. ]
  7240. },
  7241. "notification-url": "https://repo.packagist.org/downloads/",
  7242. "license": [
  7243. "BSD-3-Clause"
  7244. ],
  7245. "authors": [
  7246. {
  7247. "name": "Sebastian Bergmann",
  7248. "email": "sb@sebastian-bergmann.de",
  7249. "role": "lead"
  7250. }
  7251. ],
  7252. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7253. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7254. "keywords": [
  7255. "filesystem",
  7256. "iterator"
  7257. ],
  7258. "time": "2017-11-27T13:52:08+00:00"
  7259. },
  7260. {
  7261. "name": "phpunit/php-text-template",
  7262. "version": "1.2.1",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7266. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7271. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "php": ">=5.3.3"
  7276. },
  7277. "type": "library",
  7278. "autoload": {
  7279. "classmap": [
  7280. "src/"
  7281. ]
  7282. },
  7283. "notification-url": "https://repo.packagist.org/downloads/",
  7284. "license": [
  7285. "BSD-3-Clause"
  7286. ],
  7287. "authors": [
  7288. {
  7289. "name": "Sebastian Bergmann",
  7290. "email": "sebastian@phpunit.de",
  7291. "role": "lead"
  7292. }
  7293. ],
  7294. "description": "Simple template engine.",
  7295. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7296. "keywords": [
  7297. "template"
  7298. ],
  7299. "time": "2015-06-21T13:50:34+00:00"
  7300. },
  7301. {
  7302. "name": "phpunit/php-timer",
  7303. "version": "1.0.9",
  7304. "source": {
  7305. "type": "git",
  7306. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7307. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7308. },
  7309. "dist": {
  7310. "type": "zip",
  7311. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7312. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7313. "shasum": ""
  7314. },
  7315. "require": {
  7316. "php": "^5.3.3 || ^7.0"
  7317. },
  7318. "require-dev": {
  7319. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7320. },
  7321. "type": "library",
  7322. "extra": {
  7323. "branch-alias": {
  7324. "dev-master": "1.0-dev"
  7325. }
  7326. },
  7327. "autoload": {
  7328. "classmap": [
  7329. "src/"
  7330. ]
  7331. },
  7332. "notification-url": "https://repo.packagist.org/downloads/",
  7333. "license": [
  7334. "BSD-3-Clause"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Sebastian Bergmann",
  7339. "email": "sb@sebastian-bergmann.de",
  7340. "role": "lead"
  7341. }
  7342. ],
  7343. "description": "Utility class for timing",
  7344. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7345. "keywords": [
  7346. "timer"
  7347. ],
  7348. "time": "2017-02-26T11:10:40+00:00"
  7349. },
  7350. {
  7351. "name": "phpunit/php-token-stream",
  7352. "version": "2.0.2",
  7353. "source": {
  7354. "type": "git",
  7355. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7356. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  7357. },
  7358. "dist": {
  7359. "type": "zip",
  7360. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  7361. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  7362. "shasum": ""
  7363. },
  7364. "require": {
  7365. "ext-tokenizer": "*",
  7366. "php": "^7.0"
  7367. },
  7368. "require-dev": {
  7369. "phpunit/phpunit": "^6.2.4"
  7370. },
  7371. "type": "library",
  7372. "extra": {
  7373. "branch-alias": {
  7374. "dev-master": "2.0-dev"
  7375. }
  7376. },
  7377. "autoload": {
  7378. "classmap": [
  7379. "src/"
  7380. ]
  7381. },
  7382. "notification-url": "https://repo.packagist.org/downloads/",
  7383. "license": [
  7384. "BSD-3-Clause"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Sebastian Bergmann",
  7389. "email": "sebastian@phpunit.de"
  7390. }
  7391. ],
  7392. "description": "Wrapper around PHP's tokenizer extension.",
  7393. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7394. "keywords": [
  7395. "tokenizer"
  7396. ],
  7397. "abandoned": true,
  7398. "time": "2017-11-27T05:48:46+00:00"
  7399. },
  7400. {
  7401. "name": "phpunit/phpunit",
  7402. "version": "6.5.14",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7406. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7411. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7412. "shasum": ""
  7413. },
  7414. "require": {
  7415. "ext-dom": "*",
  7416. "ext-json": "*",
  7417. "ext-libxml": "*",
  7418. "ext-mbstring": "*",
  7419. "ext-xml": "*",
  7420. "myclabs/deep-copy": "^1.6.1",
  7421. "phar-io/manifest": "^1.0.1",
  7422. "phar-io/version": "^1.0",
  7423. "php": "^7.0",
  7424. "phpspec/prophecy": "^1.7",
  7425. "phpunit/php-code-coverage": "^5.3",
  7426. "phpunit/php-file-iterator": "^1.4.3",
  7427. "phpunit/php-text-template": "^1.2.1",
  7428. "phpunit/php-timer": "^1.0.9",
  7429. "phpunit/phpunit-mock-objects": "^5.0.9",
  7430. "sebastian/comparator": "^2.1",
  7431. "sebastian/diff": "^2.0",
  7432. "sebastian/environment": "^3.1",
  7433. "sebastian/exporter": "^3.1",
  7434. "sebastian/global-state": "^2.0",
  7435. "sebastian/object-enumerator": "^3.0.3",
  7436. "sebastian/resource-operations": "^1.0",
  7437. "sebastian/version": "^2.0.1"
  7438. },
  7439. "conflict": {
  7440. "phpdocumentor/reflection-docblock": "3.0.2",
  7441. "phpunit/dbunit": "<3.0"
  7442. },
  7443. "require-dev": {
  7444. "ext-pdo": "*"
  7445. },
  7446. "suggest": {
  7447. "ext-xdebug": "*",
  7448. "phpunit/php-invoker": "^1.1"
  7449. },
  7450. "bin": [
  7451. "phpunit"
  7452. ],
  7453. "type": "library",
  7454. "extra": {
  7455. "branch-alias": {
  7456. "dev-master": "6.5.x-dev"
  7457. }
  7458. },
  7459. "autoload": {
  7460. "classmap": [
  7461. "src/"
  7462. ]
  7463. },
  7464. "notification-url": "https://packagist.org/downloads/",
  7465. "license": [
  7466. "BSD-3-Clause"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "Sebastian Bergmann",
  7471. "email": "sebastian@phpunit.de",
  7472. "role": "lead"
  7473. }
  7474. ],
  7475. "description": "The PHP Unit Testing framework.",
  7476. "homepage": "https://phpunit.de/",
  7477. "keywords": [
  7478. "phpunit",
  7479. "testing",
  7480. "xunit"
  7481. ],
  7482. "time": "2019-02-01T05:22:47+00:00"
  7483. },
  7484. {
  7485. "name": "phpunit/phpunit-mock-objects",
  7486. "version": "5.0.10",
  7487. "source": {
  7488. "type": "git",
  7489. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  7490. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  7491. },
  7492. "dist": {
  7493. "type": "zip",
  7494. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  7495. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  7496. "shasum": ""
  7497. },
  7498. "require": {
  7499. "doctrine/instantiator": "^1.0.5",
  7500. "php": "^7.0",
  7501. "phpunit/php-text-template": "^1.2.1",
  7502. "sebastian/exporter": "^3.1"
  7503. },
  7504. "conflict": {
  7505. "phpunit/phpunit": "<6.0"
  7506. },
  7507. "require-dev": {
  7508. "phpunit/phpunit": "^6.5.11"
  7509. },
  7510. "suggest": {
  7511. "ext-soap": "*"
  7512. },
  7513. "type": "library",
  7514. "extra": {
  7515. "branch-alias": {
  7516. "dev-master": "5.0.x-dev"
  7517. }
  7518. },
  7519. "autoload": {
  7520. "classmap": [
  7521. "src/"
  7522. ]
  7523. },
  7524. "notification-url": "https://repo.packagist.org/downloads/",
  7525. "license": [
  7526. "BSD-3-Clause"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "Sebastian Bergmann",
  7531. "email": "sebastian@phpunit.de",
  7532. "role": "lead"
  7533. }
  7534. ],
  7535. "description": "Mock Object library for PHPUnit",
  7536. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  7537. "keywords": [
  7538. "mock",
  7539. "xunit"
  7540. ],
  7541. "abandoned": true,
  7542. "time": "2018-08-09T05:50:03+00:00"
  7543. },
  7544. {
  7545. "name": "sebastian/code-unit-reverse-lookup",
  7546. "version": "1.0.2",
  7547. "source": {
  7548. "type": "git",
  7549. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7550. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  7551. },
  7552. "dist": {
  7553. "type": "zip",
  7554. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  7555. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  7556. "shasum": ""
  7557. },
  7558. "require": {
  7559. "php": ">=5.6"
  7560. },
  7561. "require-dev": {
  7562. "phpunit/phpunit": "^8.5"
  7563. },
  7564. "type": "library",
  7565. "extra": {
  7566. "branch-alias": {
  7567. "dev-master": "1.0.x-dev"
  7568. }
  7569. },
  7570. "autoload": {
  7571. "classmap": [
  7572. "src/"
  7573. ]
  7574. },
  7575. "notification-url": "https://packagist.org/downloads/",
  7576. "license": [
  7577. "BSD-3-Clause"
  7578. ],
  7579. "authors": [
  7580. {
  7581. "name": "Sebastian Bergmann",
  7582. "email": "sebastian@phpunit.de"
  7583. }
  7584. ],
  7585. "description": "Looks up which function or method a line of code belongs to",
  7586. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7587. "time": "2020-11-30T08:15:22+00:00"
  7588. },
  7589. {
  7590. "name": "sebastian/comparator",
  7591. "version": "2.1.3",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/sebastianbergmann/comparator.git",
  7595. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  7600. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": "^7.0",
  7605. "sebastian/diff": "^2.0 || ^3.0",
  7606. "sebastian/exporter": "^3.1"
  7607. },
  7608. "require-dev": {
  7609. "phpunit/phpunit": "^6.4"
  7610. },
  7611. "type": "library",
  7612. "extra": {
  7613. "branch-alias": {
  7614. "dev-master": "2.1.x-dev"
  7615. }
  7616. },
  7617. "autoload": {
  7618. "classmap": [
  7619. "src/"
  7620. ]
  7621. },
  7622. "notification-url": "https://repo.packagist.org/downloads/",
  7623. "license": [
  7624. "BSD-3-Clause"
  7625. ],
  7626. "authors": [
  7627. {
  7628. "name": "Jeff Welch",
  7629. "email": "whatthejeff@gmail.com"
  7630. },
  7631. {
  7632. "name": "Volker Dusch",
  7633. "email": "github@wallbash.com"
  7634. },
  7635. {
  7636. "name": "Bernhard Schussek",
  7637. "email": "bschussek@2bepublished.at"
  7638. },
  7639. {
  7640. "name": "Sebastian Bergmann",
  7641. "email": "sebastian@phpunit.de"
  7642. }
  7643. ],
  7644. "description": "Provides the functionality to compare PHP values for equality",
  7645. "homepage": "https://github.com/sebastianbergmann/comparator",
  7646. "keywords": [
  7647. "comparator",
  7648. "compare",
  7649. "equality"
  7650. ],
  7651. "time": "2018-02-01T13:46:46+00:00"
  7652. },
  7653. {
  7654. "name": "sebastian/diff",
  7655. "version": "2.0.1",
  7656. "source": {
  7657. "type": "git",
  7658. "url": "https://github.com/sebastianbergmann/diff.git",
  7659. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  7660. },
  7661. "dist": {
  7662. "type": "zip",
  7663. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  7664. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  7665. "shasum": ""
  7666. },
  7667. "require": {
  7668. "php": "^7.0"
  7669. },
  7670. "require-dev": {
  7671. "phpunit/phpunit": "^6.2"
  7672. },
  7673. "type": "library",
  7674. "extra": {
  7675. "branch-alias": {
  7676. "dev-master": "2.0-dev"
  7677. }
  7678. },
  7679. "autoload": {
  7680. "classmap": [
  7681. "src/"
  7682. ]
  7683. },
  7684. "notification-url": "https://repo.packagist.org/downloads/",
  7685. "license": [
  7686. "BSD-3-Clause"
  7687. ],
  7688. "authors": [
  7689. {
  7690. "name": "Kore Nordmann",
  7691. "email": "mail@kore-nordmann.de"
  7692. },
  7693. {
  7694. "name": "Sebastian Bergmann",
  7695. "email": "sebastian@phpunit.de"
  7696. }
  7697. ],
  7698. "description": "Diff implementation",
  7699. "homepage": "https://github.com/sebastianbergmann/diff",
  7700. "keywords": [
  7701. "diff"
  7702. ],
  7703. "time": "2017-08-03T08:09:46+00:00"
  7704. },
  7705. {
  7706. "name": "sebastian/environment",
  7707. "version": "3.1.0",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/sebastianbergmann/environment.git",
  7711. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  7716. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  7717. "shasum": ""
  7718. },
  7719. "require": {
  7720. "php": "^7.0"
  7721. },
  7722. "require-dev": {
  7723. "phpunit/phpunit": "^6.1"
  7724. },
  7725. "type": "library",
  7726. "extra": {
  7727. "branch-alias": {
  7728. "dev-master": "3.1.x-dev"
  7729. }
  7730. },
  7731. "autoload": {
  7732. "classmap": [
  7733. "src/"
  7734. ]
  7735. },
  7736. "notification-url": "https://repo.packagist.org/downloads/",
  7737. "license": [
  7738. "BSD-3-Clause"
  7739. ],
  7740. "authors": [
  7741. {
  7742. "name": "Sebastian Bergmann",
  7743. "email": "sebastian@phpunit.de"
  7744. }
  7745. ],
  7746. "description": "Provides functionality to handle HHVM/PHP environments",
  7747. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7748. "keywords": [
  7749. "Xdebug",
  7750. "environment",
  7751. "hhvm"
  7752. ],
  7753. "time": "2017-07-01T08:51:00+00:00"
  7754. },
  7755. {
  7756. "name": "sebastian/exporter",
  7757. "version": "3.1.3",
  7758. "source": {
  7759. "type": "git",
  7760. "url": "https://github.com/sebastianbergmann/exporter.git",
  7761. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  7762. },
  7763. "dist": {
  7764. "type": "zip",
  7765. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  7766. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  7767. "shasum": ""
  7768. },
  7769. "require": {
  7770. "php": ">=7.0",
  7771. "sebastian/recursion-context": "^3.0"
  7772. },
  7773. "require-dev": {
  7774. "ext-mbstring": "*",
  7775. "phpunit/phpunit": "^6.0"
  7776. },
  7777. "type": "library",
  7778. "extra": {
  7779. "branch-alias": {
  7780. "dev-master": "3.1.x-dev"
  7781. }
  7782. },
  7783. "autoload": {
  7784. "classmap": [
  7785. "src/"
  7786. ]
  7787. },
  7788. "notification-url": "https://packagist.org/downloads/",
  7789. "license": [
  7790. "BSD-3-Clause"
  7791. ],
  7792. "authors": [
  7793. {
  7794. "name": "Sebastian Bergmann",
  7795. "email": "sebastian@phpunit.de"
  7796. },
  7797. {
  7798. "name": "Jeff Welch",
  7799. "email": "whatthejeff@gmail.com"
  7800. },
  7801. {
  7802. "name": "Volker Dusch",
  7803. "email": "github@wallbash.com"
  7804. },
  7805. {
  7806. "name": "Adam Harvey",
  7807. "email": "aharvey@php.net"
  7808. },
  7809. {
  7810. "name": "Bernhard Schussek",
  7811. "email": "bschussek@gmail.com"
  7812. }
  7813. ],
  7814. "description": "Provides the functionality to export PHP variables for visualization",
  7815. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7816. "keywords": [
  7817. "export",
  7818. "exporter"
  7819. ],
  7820. "time": "2020-11-30T07:47:53+00:00"
  7821. },
  7822. {
  7823. "name": "sebastian/global-state",
  7824. "version": "2.0.0",
  7825. "source": {
  7826. "type": "git",
  7827. "url": "https://github.com/sebastianbergmann/global-state.git",
  7828. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7829. },
  7830. "dist": {
  7831. "type": "zip",
  7832. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7833. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7834. "shasum": ""
  7835. },
  7836. "require": {
  7837. "php": "^7.0"
  7838. },
  7839. "require-dev": {
  7840. "phpunit/phpunit": "^6.0"
  7841. },
  7842. "suggest": {
  7843. "ext-uopz": "*"
  7844. },
  7845. "type": "library",
  7846. "extra": {
  7847. "branch-alias": {
  7848. "dev-master": "2.0-dev"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "classmap": [
  7853. "src/"
  7854. ]
  7855. },
  7856. "notification-url": "https://repo.packagist.org/downloads/",
  7857. "license": [
  7858. "BSD-3-Clause"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Sebastian Bergmann",
  7863. "email": "sebastian@phpunit.de"
  7864. }
  7865. ],
  7866. "description": "Snapshotting of global state",
  7867. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7868. "keywords": [
  7869. "global state"
  7870. ],
  7871. "time": "2017-04-27T15:39:26+00:00"
  7872. },
  7873. {
  7874. "name": "sebastian/object-enumerator",
  7875. "version": "3.0.4",
  7876. "source": {
  7877. "type": "git",
  7878. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7879. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  7880. },
  7881. "dist": {
  7882. "type": "zip",
  7883. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  7884. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  7885. "shasum": ""
  7886. },
  7887. "require": {
  7888. "php": ">=7.0",
  7889. "sebastian/object-reflector": "^1.1.1",
  7890. "sebastian/recursion-context": "^3.0"
  7891. },
  7892. "require-dev": {
  7893. "phpunit/phpunit": "^6.0"
  7894. },
  7895. "type": "library",
  7896. "extra": {
  7897. "branch-alias": {
  7898. "dev-master": "3.0.x-dev"
  7899. }
  7900. },
  7901. "autoload": {
  7902. "classmap": [
  7903. "src/"
  7904. ]
  7905. },
  7906. "notification-url": "https://packagist.org/downloads/",
  7907. "license": [
  7908. "BSD-3-Clause"
  7909. ],
  7910. "authors": [
  7911. {
  7912. "name": "Sebastian Bergmann",
  7913. "email": "sebastian@phpunit.de"
  7914. }
  7915. ],
  7916. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7917. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7918. "time": "2020-11-30T07:40:27+00:00"
  7919. },
  7920. {
  7921. "name": "sebastian/object-reflector",
  7922. "version": "1.1.2",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7926. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  7931. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "php": ">=7.0"
  7936. },
  7937. "require-dev": {
  7938. "phpunit/phpunit": "^6.0"
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "branch-alias": {
  7943. "dev-master": "1.1-dev"
  7944. }
  7945. },
  7946. "autoload": {
  7947. "classmap": [
  7948. "src/"
  7949. ]
  7950. },
  7951. "notification-url": "https://packagist.org/downloads/",
  7952. "license": [
  7953. "BSD-3-Clause"
  7954. ],
  7955. "authors": [
  7956. {
  7957. "name": "Sebastian Bergmann",
  7958. "email": "sebastian@phpunit.de"
  7959. }
  7960. ],
  7961. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7962. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7963. "time": "2020-11-30T07:37:18+00:00"
  7964. },
  7965. {
  7966. "name": "sebastian/recursion-context",
  7967. "version": "3.0.1",
  7968. "source": {
  7969. "type": "git",
  7970. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7971. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  7972. },
  7973. "dist": {
  7974. "type": "zip",
  7975. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  7976. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  7977. "shasum": ""
  7978. },
  7979. "require": {
  7980. "php": ">=7.0"
  7981. },
  7982. "require-dev": {
  7983. "phpunit/phpunit": "^6.0"
  7984. },
  7985. "type": "library",
  7986. "extra": {
  7987. "branch-alias": {
  7988. "dev-master": "3.0.x-dev"
  7989. }
  7990. },
  7991. "autoload": {
  7992. "classmap": [
  7993. "src/"
  7994. ]
  7995. },
  7996. "notification-url": "https://packagist.org/downloads/",
  7997. "license": [
  7998. "BSD-3-Clause"
  7999. ],
  8000. "authors": [
  8001. {
  8002. "name": "Sebastian Bergmann",
  8003. "email": "sebastian@phpunit.de"
  8004. },
  8005. {
  8006. "name": "Jeff Welch",
  8007. "email": "whatthejeff@gmail.com"
  8008. },
  8009. {
  8010. "name": "Adam Harvey",
  8011. "email": "aharvey@php.net"
  8012. }
  8013. ],
  8014. "description": "Provides functionality to recursively process PHP variables",
  8015. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8016. "time": "2020-11-30T07:34:24+00:00"
  8017. },
  8018. {
  8019. "name": "sebastian/resource-operations",
  8020. "version": "1.0.0",
  8021. "source": {
  8022. "type": "git",
  8023. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8024. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8025. },
  8026. "dist": {
  8027. "type": "zip",
  8028. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8029. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8030. "shasum": ""
  8031. },
  8032. "require": {
  8033. "php": ">=5.6.0"
  8034. },
  8035. "type": "library",
  8036. "extra": {
  8037. "branch-alias": {
  8038. "dev-master": "1.0.x-dev"
  8039. }
  8040. },
  8041. "autoload": {
  8042. "classmap": [
  8043. "src/"
  8044. ]
  8045. },
  8046. "notification-url": "https://repo.packagist.org/downloads/",
  8047. "license": [
  8048. "BSD-3-Clause"
  8049. ],
  8050. "authors": [
  8051. {
  8052. "name": "Sebastian Bergmann",
  8053. "email": "sebastian@phpunit.de"
  8054. }
  8055. ],
  8056. "description": "Provides a list of PHP built-in functions that operate on resources",
  8057. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8058. "time": "2015-07-28T20:34:47+00:00"
  8059. },
  8060. {
  8061. "name": "sebastian/version",
  8062. "version": "2.0.1",
  8063. "source": {
  8064. "type": "git",
  8065. "url": "https://github.com/sebastianbergmann/version.git",
  8066. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8067. },
  8068. "dist": {
  8069. "type": "zip",
  8070. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8071. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8072. "shasum": ""
  8073. },
  8074. "require": {
  8075. "php": ">=5.6"
  8076. },
  8077. "type": "library",
  8078. "extra": {
  8079. "branch-alias": {
  8080. "dev-master": "2.0.x-dev"
  8081. }
  8082. },
  8083. "autoload": {
  8084. "classmap": [
  8085. "src/"
  8086. ]
  8087. },
  8088. "notification-url": "https://repo.packagist.org/downloads/",
  8089. "license": [
  8090. "BSD-3-Clause"
  8091. ],
  8092. "authors": [
  8093. {
  8094. "name": "Sebastian Bergmann",
  8095. "email": "sebastian@phpunit.de",
  8096. "role": "lead"
  8097. }
  8098. ],
  8099. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8100. "homepage": "https://github.com/sebastianbergmann/version",
  8101. "time": "2016-10-03T07:35:21+00:00"
  8102. },
  8103. {
  8104. "name": "seld/jsonlint",
  8105. "version": "1.8.3",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/Seldaek/jsonlint.git",
  8109. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  8114. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  8115. "shasum": ""
  8116. },
  8117. "require": {
  8118. "php": "^5.3 || ^7.0 || ^8.0"
  8119. },
  8120. "require-dev": {
  8121. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  8122. },
  8123. "bin": [
  8124. "bin/jsonlint"
  8125. ],
  8126. "type": "library",
  8127. "autoload": {
  8128. "psr-4": {
  8129. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  8130. }
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "MIT"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Jordi Boggiano",
  8139. "email": "j.boggiano@seld.be",
  8140. "homepage": "http://seld.be"
  8141. }
  8142. ],
  8143. "description": "JSON Linter",
  8144. "keywords": [
  8145. "json",
  8146. "linter",
  8147. "parser",
  8148. "validator"
  8149. ],
  8150. "time": "2020-11-11T09:19:24+00:00"
  8151. },
  8152. {
  8153. "name": "seld/phar-utils",
  8154. "version": "1.1.1",
  8155. "source": {
  8156. "type": "git",
  8157. "url": "https://github.com/Seldaek/phar-utils.git",
  8158. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  8159. },
  8160. "dist": {
  8161. "type": "zip",
  8162. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  8163. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  8164. "shasum": ""
  8165. },
  8166. "require": {
  8167. "php": ">=5.3"
  8168. },
  8169. "type": "library",
  8170. "extra": {
  8171. "branch-alias": {
  8172. "dev-master": "1.x-dev"
  8173. }
  8174. },
  8175. "autoload": {
  8176. "psr-4": {
  8177. "Seld\\PharUtils\\": "src/"
  8178. }
  8179. },
  8180. "notification-url": "https://packagist.org/downloads/",
  8181. "license": [
  8182. "MIT"
  8183. ],
  8184. "authors": [
  8185. {
  8186. "name": "Jordi Boggiano",
  8187. "email": "j.boggiano@seld.be"
  8188. }
  8189. ],
  8190. "description": "PHAR file format utilities, for when PHP phars you up",
  8191. "keywords": [
  8192. "phar"
  8193. ],
  8194. "time": "2020-07-07T18:42:57+00:00"
  8195. },
  8196. {
  8197. "name": "symfony/filesystem",
  8198. "version": "v5.2.0",
  8199. "source": {
  8200. "type": "git",
  8201. "url": "https://github.com/symfony/filesystem.git",
  8202. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238"
  8203. },
  8204. "dist": {
  8205. "type": "zip",
  8206. "url": "https://api.github.com/repos/symfony/filesystem/zipball/bb92ba7f38b037e531908590a858a04d85c0e238",
  8207. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238",
  8208. "shasum": ""
  8209. },
  8210. "require": {
  8211. "php": ">=7.2.5",
  8212. "symfony/polyfill-ctype": "~1.8"
  8213. },
  8214. "type": "library",
  8215. "autoload": {
  8216. "psr-4": {
  8217. "Symfony\\Component\\Filesystem\\": ""
  8218. },
  8219. "exclude-from-classmap": [
  8220. "/Tests/"
  8221. ]
  8222. },
  8223. "notification-url": "https://packagist.org/downloads/",
  8224. "license": [
  8225. "MIT"
  8226. ],
  8227. "authors": [
  8228. {
  8229. "name": "Fabien Potencier",
  8230. "email": "fabien@symfony.com"
  8231. },
  8232. {
  8233. "name": "Symfony Community",
  8234. "homepage": "https://symfony.com/contributors"
  8235. }
  8236. ],
  8237. "description": "Symfony Filesystem Component",
  8238. "homepage": "https://symfony.com",
  8239. "time": "2020-11-12T09:58:18+00:00"
  8240. },
  8241. {
  8242. "name": "symfony/thanks",
  8243. "version": "v1.2.10",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://github.com/symfony/thanks.git",
  8247. "reference": "e9c4709560296acbd4fe9e12b8d57a925aa7eae8"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://api.github.com/repos/symfony/thanks/zipball/e9c4709560296acbd4fe9e12b8d57a925aa7eae8",
  8252. "reference": "e9c4709560296acbd4fe9e12b8d57a925aa7eae8",
  8253. "shasum": ""
  8254. },
  8255. "require": {
  8256. "composer-plugin-api": "^1.0|^2.0",
  8257. "php": ">=5.5.9"
  8258. },
  8259. "type": "composer-plugin",
  8260. "extra": {
  8261. "branch-alias": {
  8262. "dev-main": "1.2-dev"
  8263. },
  8264. "class": "Symfony\\Thanks\\Thanks"
  8265. },
  8266. "autoload": {
  8267. "psr-4": {
  8268. "Symfony\\Thanks\\": "src"
  8269. }
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "MIT"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Nicolas Grekas",
  8278. "email": "p@tchwork.com"
  8279. }
  8280. ],
  8281. "description": "Encourages sending ⭐ and 💵 to fellow PHP package maintainers (not limited to Symfony components)!",
  8282. "time": "2020-10-14T17:47:37+00:00"
  8283. },
  8284. {
  8285. "name": "theseer/tokenizer",
  8286. "version": "1.2.0",
  8287. "source": {
  8288. "type": "git",
  8289. "url": "https://github.com/theseer/tokenizer.git",
  8290. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8291. },
  8292. "dist": {
  8293. "type": "zip",
  8294. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8295. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8296. "shasum": ""
  8297. },
  8298. "require": {
  8299. "ext-dom": "*",
  8300. "ext-tokenizer": "*",
  8301. "ext-xmlwriter": "*",
  8302. "php": "^7.2 || ^8.0"
  8303. },
  8304. "type": "library",
  8305. "autoload": {
  8306. "classmap": [
  8307. "src/"
  8308. ]
  8309. },
  8310. "notification-url": "https://packagist.org/downloads/",
  8311. "license": [
  8312. "BSD-3-Clause"
  8313. ],
  8314. "authors": [
  8315. {
  8316. "name": "Arne Blankerts",
  8317. "email": "arne@blankerts.de",
  8318. "role": "Developer"
  8319. }
  8320. ],
  8321. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8322. "time": "2020-07-12T23:59:07+00:00"
  8323. },
  8324. {
  8325. "name": "webmozart/assert",
  8326. "version": "1.9.1",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/webmozart/assert.git",
  8330. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8335. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8336. "shasum": ""
  8337. },
  8338. "require": {
  8339. "php": "^5.3.3 || ^7.0 || ^8.0",
  8340. "symfony/polyfill-ctype": "^1.8"
  8341. },
  8342. "conflict": {
  8343. "phpstan/phpstan": "<0.12.20",
  8344. "vimeo/psalm": "<3.9.1"
  8345. },
  8346. "require-dev": {
  8347. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8348. },
  8349. "type": "library",
  8350. "autoload": {
  8351. "psr-4": {
  8352. "Webmozart\\Assert\\": "src/"
  8353. }
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "MIT"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Bernhard Schussek",
  8362. "email": "bschussek@gmail.com"
  8363. }
  8364. ],
  8365. "description": "Assertions to validate method input/output with nice error messages.",
  8366. "keywords": [
  8367. "assert",
  8368. "check",
  8369. "validate"
  8370. ],
  8371. "time": "2020-07-08T17:02:28+00:00"
  8372. }
  8373. ],
  8374. "aliases": [],
  8375. "minimum-stability": "stable",
  8376. "stability-flags": {
  8377. "laravel-admin": 20,
  8378. "laravel-admin-ex/helpers": 20,
  8379. "laravel-admin-ex/scheduling": 20,
  8380. "laravel-admin-ex/ueditor": 20
  8381. },
  8382. "prefer-stable": false,
  8383. "prefer-lowest": false,
  8384. "platform": {
  8385. "php": ">=7.0.0"
  8386. },
  8387. "platform-dev": []
  8388. }