composer.lock 337 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "6fbad5b586f6005ca8d6774205323cd5",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "time": "2020-10-30T02:02:47+00:00"
  63. },
  64. {
  65. "name": "barryvdh/laravel-ide-helper",
  66. "version": "v2.8.2",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  70. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  75. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "barryvdh/reflection-docblock": "^2.0.6",
  86. "composer/composer": "^1.6 || ^2",
  87. "doctrine/dbal": "~2.3",
  88. "ext-json": "*",
  89. "illuminate/console": "^6 || ^7 || ^8",
  90. "illuminate/filesystem": "^6 || ^7 || ^8",
  91. "illuminate/support": "^6 || ^7 || ^8",
  92. "php": ">=7.2",
  93. "phpdocumentor/type-resolver": "^1.1.0"
  94. },
  95. "require-dev": {
  96. "ext-pdo_sqlite": "*",
  97. "friendsofphp/php-cs-fixer": "^2",
  98. "illuminate/config": "^6 || ^7 || ^8",
  99. "illuminate/view": "^6 || ^7 || ^8",
  100. "mockery/mockery": "^1.3.3",
  101. "orchestra/testbench": "^4 || ^5 || ^6",
  102. "phpunit/phpunit": "^8.5 || ^9",
  103. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  104. "vimeo/psalm": "^3.12"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-master": "2.8-dev"
  110. },
  111. "laravel": {
  112. "providers": [
  113. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Barryvdh\\LaravelIdeHelper\\": "src"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Barry vd. Heuvel",
  129. "email": "barryvdh@gmail.com"
  130. }
  131. ],
  132. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  133. "keywords": [
  134. "autocomplete",
  135. "codeintel",
  136. "helper",
  137. "ide",
  138. "laravel",
  139. "netbeans",
  140. "phpdoc",
  141. "phpstorm",
  142. "sublime"
  143. ],
  144. "time": "2020-12-06T08:55:05+00:00"
  145. },
  146. {
  147. "name": "barryvdh/reflection-docblock",
  148. "version": "v2.0.6",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  152. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  157. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  158. "shasum": "",
  159. "mirrors": [
  160. {
  161. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  162. "preferred": true
  163. }
  164. ]
  165. },
  166. "require": {
  167. "php": ">=5.3.3"
  168. },
  169. "require-dev": {
  170. "phpunit/phpunit": "~4.0,<4.5"
  171. },
  172. "suggest": {
  173. "dflydev/markdown": "~1.0",
  174. "erusev/parsedown": "~1.0"
  175. },
  176. "type": "library",
  177. "extra": {
  178. "branch-alias": {
  179. "dev-master": "2.0.x-dev"
  180. }
  181. },
  182. "autoload": {
  183. "psr-0": {
  184. "Barryvdh": [
  185. "src/"
  186. ]
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Mike van Riel",
  196. "email": "mike.vanriel@naenius.com"
  197. }
  198. ],
  199. "time": "2018-12-13T10:34:14+00:00"
  200. },
  201. {
  202. "name": "composer/ca-bundle",
  203. "version": "1.2.9",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/composer/ca-bundle.git",
  207. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  212. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  213. "shasum": "",
  214. "mirrors": [
  215. {
  216. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  217. "preferred": true
  218. }
  219. ]
  220. },
  221. "require": {
  222. "ext-openssl": "*",
  223. "ext-pcre": "*",
  224. "php": "^5.3.2 || ^7.0 || ^8.0"
  225. },
  226. "require-dev": {
  227. "phpstan/phpstan": "^0.12.55",
  228. "psr/log": "^1.0",
  229. "symfony/phpunit-bridge": "^4.2 || ^5",
  230. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  231. },
  232. "type": "library",
  233. "extra": {
  234. "branch-alias": {
  235. "dev-main": "1.x-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "Composer\\CaBundle\\": "src"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Jordi Boggiano",
  250. "email": "j.boggiano@seld.be",
  251. "homepage": "http://seld.be"
  252. }
  253. ],
  254. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  255. "keywords": [
  256. "cabundle",
  257. "cacert",
  258. "certificate",
  259. "ssl",
  260. "tls"
  261. ],
  262. "time": "2021-01-12T12:10:35+00:00"
  263. },
  264. {
  265. "name": "composer/composer",
  266. "version": "2.0.12",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/composer.git",
  270. "reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/composer/zipball/6c12ce263da71641903e399c3ce8ecb08fd375fb",
  275. "reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb",
  276. "shasum": "",
  277. "mirrors": [
  278. {
  279. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  280. "preferred": true
  281. }
  282. ]
  283. },
  284. "require": {
  285. "composer/ca-bundle": "^1.0",
  286. "composer/semver": "^3.0",
  287. "composer/spdx-licenses": "^1.2",
  288. "composer/xdebug-handler": "^1.1",
  289. "justinrainbow/json-schema": "^5.2.10",
  290. "php": "^5.3.2 || ^7.0 || ^8.0",
  291. "psr/log": "^1.0",
  292. "react/promise": "^1.2 || ^2.7",
  293. "seld/jsonlint": "^1.4",
  294. "seld/phar-utils": "^1.0",
  295. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  296. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  297. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  298. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  299. },
  300. "require-dev": {
  301. "phpspec/prophecy": "^1.10",
  302. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  303. },
  304. "suggest": {
  305. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  306. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  307. "ext-zlib": "Allow gzip compression of HTTP requests"
  308. },
  309. "bin": [
  310. "bin/composer"
  311. ],
  312. "type": "library",
  313. "extra": {
  314. "branch-alias": {
  315. "dev-master": "2.0-dev"
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Composer\\": "src/Composer"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Nils Adermann",
  330. "email": "naderman@naderman.de",
  331. "homepage": "https://www.naderman.de"
  332. },
  333. {
  334. "name": "Jordi Boggiano",
  335. "email": "j.boggiano@seld.be",
  336. "homepage": "https://seld.be"
  337. }
  338. ],
  339. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  340. "homepage": "https://getcomposer.org/",
  341. "keywords": [
  342. "autoload",
  343. "dependency",
  344. "package"
  345. ],
  346. "time": "2021-04-01T08:14:59+00:00"
  347. },
  348. {
  349. "name": "composer/semver",
  350. "version": "3.2.4",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/composer/semver.git",
  354. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  359. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "php": "^5.3.2 || ^7.0 || ^8.0"
  370. },
  371. "require-dev": {
  372. "phpstan/phpstan": "^0.12.54",
  373. "symfony/phpunit-bridge": "^4.2 || ^5"
  374. },
  375. "type": "library",
  376. "extra": {
  377. "branch-alias": {
  378. "dev-main": "3.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Composer\\Semver\\": "src"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Nils Adermann",
  393. "email": "naderman@naderman.de",
  394. "homepage": "http://www.naderman.de"
  395. },
  396. {
  397. "name": "Jordi Boggiano",
  398. "email": "j.boggiano@seld.be",
  399. "homepage": "http://seld.be"
  400. },
  401. {
  402. "name": "Rob Bast",
  403. "email": "rob.bast@gmail.com",
  404. "homepage": "http://robbast.nl"
  405. }
  406. ],
  407. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  408. "keywords": [
  409. "semantic",
  410. "semver",
  411. "validation",
  412. "versioning"
  413. ],
  414. "time": "2020-11-13T08:59:24+00:00"
  415. },
  416. {
  417. "name": "composer/spdx-licenses",
  418. "version": "1.5.5",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/composer/spdx-licenses.git",
  422. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  427. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  428. "shasum": "",
  429. "mirrors": [
  430. {
  431. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  432. "preferred": true
  433. }
  434. ]
  435. },
  436. "require": {
  437. "php": "^5.3.2 || ^7.0 || ^8.0"
  438. },
  439. "require-dev": {
  440. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  441. },
  442. "type": "library",
  443. "extra": {
  444. "branch-alias": {
  445. "dev-main": "1.x-dev"
  446. }
  447. },
  448. "autoload": {
  449. "psr-4": {
  450. "Composer\\Spdx\\": "src"
  451. }
  452. },
  453. "notification-url": "https://packagist.org/downloads/",
  454. "license": [
  455. "MIT"
  456. ],
  457. "authors": [
  458. {
  459. "name": "Nils Adermann",
  460. "email": "naderman@naderman.de",
  461. "homepage": "http://www.naderman.de"
  462. },
  463. {
  464. "name": "Jordi Boggiano",
  465. "email": "j.boggiano@seld.be",
  466. "homepage": "http://seld.be"
  467. },
  468. {
  469. "name": "Rob Bast",
  470. "email": "rob.bast@gmail.com",
  471. "homepage": "http://robbast.nl"
  472. }
  473. ],
  474. "description": "SPDX licenses list and validation library.",
  475. "keywords": [
  476. "license",
  477. "spdx",
  478. "validator"
  479. ],
  480. "time": "2020-12-03T16:04:16+00:00"
  481. },
  482. {
  483. "name": "composer/xdebug-handler",
  484. "version": "1.4.6",
  485. "source": {
  486. "type": "git",
  487. "url": "https://github.com/composer/xdebug-handler.git",
  488. "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
  489. },
  490. "dist": {
  491. "type": "zip",
  492. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
  493. "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
  494. "shasum": "",
  495. "mirrors": [
  496. {
  497. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  498. "preferred": true
  499. }
  500. ]
  501. },
  502. "require": {
  503. "php": "^5.3.2 || ^7.0 || ^8.0",
  504. "psr/log": "^1.0"
  505. },
  506. "require-dev": {
  507. "phpstan/phpstan": "^0.12.55",
  508. "symfony/phpunit-bridge": "^4.2 || ^5"
  509. },
  510. "type": "library",
  511. "autoload": {
  512. "psr-4": {
  513. "Composer\\XdebugHandler\\": "src"
  514. }
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "John Stevenson",
  523. "email": "john-stevenson@blueyonder.co.uk"
  524. }
  525. ],
  526. "description": "Restarts a process without Xdebug.",
  527. "keywords": [
  528. "Xdebug",
  529. "performance"
  530. ],
  531. "time": "2021-03-25T17:01:18+00:00"
  532. },
  533. {
  534. "name": "dasprid/enum",
  535. "version": "1.0.3",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/DASPRiD/Enum.git",
  539. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  544. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  545. "shasum": "",
  546. "mirrors": [
  547. {
  548. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  549. "preferred": true
  550. }
  551. ]
  552. },
  553. "require-dev": {
  554. "phpunit/phpunit": "^7 | ^8 | ^9",
  555. "squizlabs/php_codesniffer": "^3.4"
  556. },
  557. "type": "library",
  558. "autoload": {
  559. "psr-4": {
  560. "DASPRiD\\Enum\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "BSD-2-Clause"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Ben Scholzen 'DASPRiD'",
  570. "email": "mail@dasprids.de",
  571. "homepage": "https://dasprids.de/",
  572. "role": "Developer"
  573. }
  574. ],
  575. "description": "PHP 7.1 enum implementation",
  576. "keywords": [
  577. "enum",
  578. "map"
  579. ],
  580. "time": "2020-10-02T16:03:48+00:00"
  581. },
  582. {
  583. "name": "dingo/api",
  584. "version": "v2.4.7",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/dingo/api.git",
  588. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  593. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  594. "shasum": "",
  595. "mirrors": [
  596. {
  597. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  598. "preferred": true
  599. }
  600. ]
  601. },
  602. "require": {
  603. "dingo/blueprint": "^0.3",
  604. "illuminate/routing": "^5.5 || ^6.0",
  605. "illuminate/support": "^5.5 || ^6.0",
  606. "league/fractal": "^0.17",
  607. "php": "^7.1"
  608. },
  609. "require-dev": {
  610. "friendsofphp/php-cs-fixer": "~2",
  611. "illuminate/auth": "^5.5 || ^6.0",
  612. "illuminate/cache": "^5.5 || ^6.0",
  613. "illuminate/console": "^5.5 || ^6.0",
  614. "illuminate/database": "^5.5 || ^6.0",
  615. "illuminate/events": "^5.5 || ^6.0",
  616. "illuminate/filesystem": "^5.5 || ^6.0",
  617. "illuminate/log": "^5.5 || ^6.0",
  618. "illuminate/pagination": "^5.5 || ^6.0",
  619. "laravel/lumen-framework": "^5.5 || ^6.0",
  620. "mockery/mockery": "~1.0",
  621. "phpdocumentor/reflection-docblock": "3.3.2",
  622. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  623. "squizlabs/php_codesniffer": "~2.0",
  624. "tymon/jwt-auth": "1.0.*"
  625. },
  626. "suggest": {
  627. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  628. },
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "2.0-dev"
  633. },
  634. "laravel": {
  635. "providers": [
  636. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  637. ],
  638. "aliases": {
  639. "API": "Dingo\\Api\\Facade\\API"
  640. }
  641. }
  642. },
  643. "autoload": {
  644. "psr-4": {
  645. "Dingo\\Api\\": "src/"
  646. },
  647. "files": [
  648. "src/helpers.php"
  649. ]
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "BSD-3-Clause"
  654. ],
  655. "authors": [
  656. {
  657. "name": "Jason Lewis",
  658. "email": "jason.lewis1991@gmail.com"
  659. }
  660. ],
  661. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  662. "keywords": [
  663. "api",
  664. "dingo",
  665. "laravel",
  666. "restful"
  667. ],
  668. "time": "2020-03-19T01:36:11+00:00"
  669. },
  670. {
  671. "name": "dingo/blueprint",
  672. "version": "v0.3.1",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/dingo/blueprint.git",
  676. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  681. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  682. "shasum": "",
  683. "mirrors": [
  684. {
  685. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  686. "preferred": true
  687. }
  688. ]
  689. },
  690. "require": {
  691. "doctrine/annotations": "~1.2",
  692. "illuminate/filesystem": "^5.5 || ^6.0",
  693. "illuminate/support": "^5.5 || ^6.0",
  694. "php": "^7.1",
  695. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  696. },
  697. "require-dev": {
  698. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  699. "squizlabs/php_codesniffer": "~2.0"
  700. },
  701. "type": "library",
  702. "extra": {
  703. "branch-alias": {
  704. "dev-master": "0.2-dev"
  705. }
  706. },
  707. "autoload": {
  708. "psr-4": {
  709. "Dingo\\Blueprint\\": "src"
  710. }
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "BSD-3-Clause"
  715. ],
  716. "authors": [
  717. {
  718. "name": "Jason Lewis",
  719. "email": "jason.lewis1991@gmail.com"
  720. }
  721. ],
  722. "description": "API Blueprint documentation generator.",
  723. "keywords": [
  724. "api",
  725. "blueprint",
  726. "dingo",
  727. "docs",
  728. "laravel"
  729. ],
  730. "time": "2019-10-07T10:14:17+00:00"
  731. },
  732. {
  733. "name": "doctrine/annotations",
  734. "version": "1.12.1",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/doctrine/annotations.git",
  738. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b",
  743. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b",
  744. "shasum": "",
  745. "mirrors": [
  746. {
  747. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  748. "preferred": true
  749. }
  750. ]
  751. },
  752. "require": {
  753. "doctrine/lexer": "1.*",
  754. "ext-tokenizer": "*",
  755. "php": "^7.1 || ^8.0"
  756. },
  757. "require-dev": {
  758. "doctrine/cache": "1.*",
  759. "doctrine/coding-standard": "^6.0 || ^8.1",
  760. "phpstan/phpstan": "^0.12.20",
  761. "phpunit/phpunit": "^7.5 || ^9.1.5"
  762. },
  763. "type": "library",
  764. "autoload": {
  765. "psr-4": {
  766. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Guilherme Blanco",
  776. "email": "guilhermeblanco@gmail.com"
  777. },
  778. {
  779. "name": "Roman Borschel",
  780. "email": "roman@code-factory.org"
  781. },
  782. {
  783. "name": "Benjamin Eberlei",
  784. "email": "kontakt@beberlei.de"
  785. },
  786. {
  787. "name": "Jonathan Wage",
  788. "email": "jonwage@gmail.com"
  789. },
  790. {
  791. "name": "Johannes Schmitt",
  792. "email": "schmittjoh@gmail.com"
  793. }
  794. ],
  795. "description": "Docblock Annotations Parser",
  796. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  797. "keywords": [
  798. "annotations",
  799. "docblock",
  800. "parser"
  801. ],
  802. "time": "2021-02-21T21:00:45+00:00"
  803. },
  804. {
  805. "name": "doctrine/cache",
  806. "version": "1.10.2",
  807. "source": {
  808. "type": "git",
  809. "url": "https://github.com/doctrine/cache.git",
  810. "reference": "13e3381b25847283a91948d04640543941309727"
  811. },
  812. "dist": {
  813. "type": "zip",
  814. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  815. "reference": "13e3381b25847283a91948d04640543941309727",
  816. "shasum": "",
  817. "mirrors": [
  818. {
  819. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  820. "preferred": true
  821. }
  822. ]
  823. },
  824. "require": {
  825. "php": "~7.1 || ^8.0"
  826. },
  827. "conflict": {
  828. "doctrine/common": ">2.2,<2.4"
  829. },
  830. "require-dev": {
  831. "alcaeus/mongo-php-adapter": "^1.1",
  832. "doctrine/coding-standard": "^6.0",
  833. "mongodb/mongodb": "^1.1",
  834. "phpunit/phpunit": "^7.0",
  835. "predis/predis": "~1.0"
  836. },
  837. "suggest": {
  838. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  839. },
  840. "type": "library",
  841. "extra": {
  842. "branch-alias": {
  843. "dev-master": "1.9.x-dev"
  844. }
  845. },
  846. "autoload": {
  847. "psr-4": {
  848. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  849. }
  850. },
  851. "notification-url": "https://packagist.org/downloads/",
  852. "license": [
  853. "MIT"
  854. ],
  855. "authors": [
  856. {
  857. "name": "Guilherme Blanco",
  858. "email": "guilhermeblanco@gmail.com"
  859. },
  860. {
  861. "name": "Roman Borschel",
  862. "email": "roman@code-factory.org"
  863. },
  864. {
  865. "name": "Benjamin Eberlei",
  866. "email": "kontakt@beberlei.de"
  867. },
  868. {
  869. "name": "Jonathan Wage",
  870. "email": "jonwage@gmail.com"
  871. },
  872. {
  873. "name": "Johannes Schmitt",
  874. "email": "schmittjoh@gmail.com"
  875. }
  876. ],
  877. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  878. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  879. "keywords": [
  880. "abstraction",
  881. "apcu",
  882. "cache",
  883. "caching",
  884. "couchdb",
  885. "memcached",
  886. "php",
  887. "redis",
  888. "xcache"
  889. ],
  890. "time": "2020-07-07T18:54:01+00:00"
  891. },
  892. {
  893. "name": "doctrine/dbal",
  894. "version": "2.13.1",
  895. "source": {
  896. "type": "git",
  897. "url": "https://github.com/doctrine/dbal.git",
  898. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  899. },
  900. "dist": {
  901. "type": "zip",
  902. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  903. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  904. "shasum": "",
  905. "mirrors": [
  906. {
  907. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  908. "preferred": true
  909. }
  910. ]
  911. },
  912. "require": {
  913. "doctrine/cache": "^1.0",
  914. "doctrine/deprecations": "^0.5.3",
  915. "doctrine/event-manager": "^1.0",
  916. "ext-pdo": "*",
  917. "php": "^7.1 || ^8"
  918. },
  919. "require-dev": {
  920. "doctrine/coding-standard": "8.2.0",
  921. "jetbrains/phpstorm-stubs": "2020.2",
  922. "phpstan/phpstan": "0.12.81",
  923. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  924. "squizlabs/php_codesniffer": "3.6.0",
  925. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  926. "vimeo/psalm": "4.6.4"
  927. },
  928. "suggest": {
  929. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  930. },
  931. "bin": [
  932. "bin/doctrine-dbal"
  933. ],
  934. "type": "library",
  935. "autoload": {
  936. "psr-4": {
  937. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Guilherme Blanco",
  947. "email": "guilhermeblanco@gmail.com"
  948. },
  949. {
  950. "name": "Roman Borschel",
  951. "email": "roman@code-factory.org"
  952. },
  953. {
  954. "name": "Benjamin Eberlei",
  955. "email": "kontakt@beberlei.de"
  956. },
  957. {
  958. "name": "Jonathan Wage",
  959. "email": "jonwage@gmail.com"
  960. }
  961. ],
  962. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  963. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  964. "keywords": [
  965. "abstraction",
  966. "database",
  967. "db2",
  968. "dbal",
  969. "mariadb",
  970. "mssql",
  971. "mysql",
  972. "oci8",
  973. "oracle",
  974. "pdo",
  975. "pgsql",
  976. "postgresql",
  977. "queryobject",
  978. "sasql",
  979. "sql",
  980. "sqlanywhere",
  981. "sqlite",
  982. "sqlserver",
  983. "sqlsrv"
  984. ],
  985. "time": "2021-04-17T17:30:19+00:00"
  986. },
  987. {
  988. "name": "doctrine/deprecations",
  989. "version": "v0.5.3",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/doctrine/deprecations.git",
  993. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  998. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  999. "shasum": "",
  1000. "mirrors": [
  1001. {
  1002. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1003. "preferred": true
  1004. }
  1005. ]
  1006. },
  1007. "require": {
  1008. "php": "^7.1|^8.0"
  1009. },
  1010. "require-dev": {
  1011. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  1012. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  1013. "psr/log": "^1.0"
  1014. },
  1015. "suggest": {
  1016. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1017. },
  1018. "type": "library",
  1019. "autoload": {
  1020. "psr-4": {
  1021. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1022. }
  1023. },
  1024. "notification-url": "https://packagist.org/downloads/",
  1025. "license": [
  1026. "MIT"
  1027. ],
  1028. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1029. "homepage": "https://www.doctrine-project.org/",
  1030. "time": "2021-03-21T12:59:47+00:00"
  1031. },
  1032. {
  1033. "name": "doctrine/event-manager",
  1034. "version": "1.1.1",
  1035. "source": {
  1036. "type": "git",
  1037. "url": "https://github.com/doctrine/event-manager.git",
  1038. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1039. },
  1040. "dist": {
  1041. "type": "zip",
  1042. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1043. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1044. "shasum": "",
  1045. "mirrors": [
  1046. {
  1047. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1048. "preferred": true
  1049. }
  1050. ]
  1051. },
  1052. "require": {
  1053. "php": "^7.1 || ^8.0"
  1054. },
  1055. "conflict": {
  1056. "doctrine/common": "<2.9@dev"
  1057. },
  1058. "require-dev": {
  1059. "doctrine/coding-standard": "^6.0",
  1060. "phpunit/phpunit": "^7.0"
  1061. },
  1062. "type": "library",
  1063. "extra": {
  1064. "branch-alias": {
  1065. "dev-master": "1.0.x-dev"
  1066. }
  1067. },
  1068. "autoload": {
  1069. "psr-4": {
  1070. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Guilherme Blanco",
  1080. "email": "guilhermeblanco@gmail.com"
  1081. },
  1082. {
  1083. "name": "Roman Borschel",
  1084. "email": "roman@code-factory.org"
  1085. },
  1086. {
  1087. "name": "Benjamin Eberlei",
  1088. "email": "kontakt@beberlei.de"
  1089. },
  1090. {
  1091. "name": "Jonathan Wage",
  1092. "email": "jonwage@gmail.com"
  1093. },
  1094. {
  1095. "name": "Johannes Schmitt",
  1096. "email": "schmittjoh@gmail.com"
  1097. },
  1098. {
  1099. "name": "Marco Pivetta",
  1100. "email": "ocramius@gmail.com"
  1101. }
  1102. ],
  1103. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1104. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1105. "keywords": [
  1106. "event",
  1107. "event dispatcher",
  1108. "event manager",
  1109. "event system",
  1110. "events"
  1111. ],
  1112. "time": "2020-05-29T18:28:51+00:00"
  1113. },
  1114. {
  1115. "name": "doctrine/inflector",
  1116. "version": "2.0.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/doctrine/inflector.git",
  1120. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1125. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1126. "shasum": "",
  1127. "mirrors": [
  1128. {
  1129. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1130. "preferred": true
  1131. }
  1132. ]
  1133. },
  1134. "require": {
  1135. "php": "^7.2 || ^8.0"
  1136. },
  1137. "require-dev": {
  1138. "doctrine/coding-standard": "^7.0",
  1139. "phpstan/phpstan": "^0.11",
  1140. "phpstan/phpstan-phpunit": "^0.11",
  1141. "phpstan/phpstan-strict-rules": "^0.11",
  1142. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "2.0.x-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Guilherme Blanco",
  1162. "email": "guilhermeblanco@gmail.com"
  1163. },
  1164. {
  1165. "name": "Roman Borschel",
  1166. "email": "roman@code-factory.org"
  1167. },
  1168. {
  1169. "name": "Benjamin Eberlei",
  1170. "email": "kontakt@beberlei.de"
  1171. },
  1172. {
  1173. "name": "Jonathan Wage",
  1174. "email": "jonwage@gmail.com"
  1175. },
  1176. {
  1177. "name": "Johannes Schmitt",
  1178. "email": "schmittjoh@gmail.com"
  1179. }
  1180. ],
  1181. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1182. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1183. "keywords": [
  1184. "inflection",
  1185. "inflector",
  1186. "lowercase",
  1187. "manipulation",
  1188. "php",
  1189. "plural",
  1190. "singular",
  1191. "strings",
  1192. "uppercase",
  1193. "words"
  1194. ],
  1195. "time": "2020-05-29T15:13:26+00:00"
  1196. },
  1197. {
  1198. "name": "doctrine/lexer",
  1199. "version": "1.2.1",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/doctrine/lexer.git",
  1203. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1208. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1209. "shasum": "",
  1210. "mirrors": [
  1211. {
  1212. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1213. "preferred": true
  1214. }
  1215. ]
  1216. },
  1217. "require": {
  1218. "php": "^7.2 || ^8.0"
  1219. },
  1220. "require-dev": {
  1221. "doctrine/coding-standard": "^6.0",
  1222. "phpstan/phpstan": "^0.11.8",
  1223. "phpunit/phpunit": "^8.2"
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "1.2.x-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-4": {
  1233. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Guilherme Blanco",
  1243. "email": "guilhermeblanco@gmail.com"
  1244. },
  1245. {
  1246. "name": "Roman Borschel",
  1247. "email": "roman@code-factory.org"
  1248. },
  1249. {
  1250. "name": "Johannes Schmitt",
  1251. "email": "schmittjoh@gmail.com"
  1252. }
  1253. ],
  1254. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1255. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1256. "keywords": [
  1257. "annotations",
  1258. "docblock",
  1259. "lexer",
  1260. "parser",
  1261. "php"
  1262. ],
  1263. "time": "2020-05-25T17:44:05+00:00"
  1264. },
  1265. {
  1266. "name": "dragonmantank/cron-expression",
  1267. "version": "v2.3.1",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/dragonmantank/cron-expression.git",
  1271. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1276. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1277. "shasum": "",
  1278. "mirrors": [
  1279. {
  1280. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1281. "preferred": true
  1282. }
  1283. ]
  1284. },
  1285. "require": {
  1286. "php": "^7.0|^8.0"
  1287. },
  1288. "require-dev": {
  1289. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1290. },
  1291. "type": "library",
  1292. "extra": {
  1293. "branch-alias": {
  1294. "dev-master": "2.3-dev"
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Cron\\": "src/Cron/"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Michael Dowling",
  1309. "email": "mtdowling@gmail.com",
  1310. "homepage": "https://github.com/mtdowling"
  1311. },
  1312. {
  1313. "name": "Chris Tankersley",
  1314. "email": "chris@ctankersley.com",
  1315. "homepage": "https://github.com/dragonmantank"
  1316. }
  1317. ],
  1318. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1319. "keywords": [
  1320. "cron",
  1321. "schedule"
  1322. ],
  1323. "time": "2020-10-13T00:52:37+00:00"
  1324. },
  1325. {
  1326. "name": "easywechat-composer/easywechat-composer",
  1327. "version": "1.4.0",
  1328. "source": {
  1329. "type": "git",
  1330. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1331. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a"
  1332. },
  1333. "dist": {
  1334. "type": "zip",
  1335. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1336. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1337. "shasum": "",
  1338. "mirrors": [
  1339. {
  1340. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1341. "preferred": true
  1342. }
  1343. ]
  1344. },
  1345. "require": {
  1346. "composer-plugin-api": "^1.0 || ^2.0",
  1347. "php": ">=7.0"
  1348. },
  1349. "require-dev": {
  1350. "composer/composer": "^1.0 || ^2.0",
  1351. "phpunit/phpunit": "^6.5 || ^7.0"
  1352. },
  1353. "type": "composer-plugin",
  1354. "extra": {
  1355. "class": "EasyWeChatComposer\\Plugin"
  1356. },
  1357. "autoload": {
  1358. "psr-4": {
  1359. "EasyWeChatComposer\\": "src/"
  1360. }
  1361. },
  1362. "notification-url": "https://packagist.org/downloads/",
  1363. "license": [
  1364. "MIT"
  1365. ],
  1366. "authors": [
  1367. {
  1368. "name": "张铭阳",
  1369. "email": "mingyoungcheung@gmail.com"
  1370. }
  1371. ],
  1372. "description": "The composer plugin for EasyWeChat",
  1373. "time": "2020-07-23T11:06:47+00:00"
  1374. },
  1375. {
  1376. "name": "egulias/email-validator",
  1377. "version": "2.1.25",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/egulias/EmailValidator.git",
  1381. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1386. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1387. "shasum": "",
  1388. "mirrors": [
  1389. {
  1390. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1391. "preferred": true
  1392. }
  1393. ]
  1394. },
  1395. "require": {
  1396. "doctrine/lexer": "^1.0.1",
  1397. "php": ">=5.5",
  1398. "symfony/polyfill-intl-idn": "^1.10"
  1399. },
  1400. "require-dev": {
  1401. "dominicsayers/isemail": "^3.0.7",
  1402. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1403. "satooshi/php-coveralls": "^1.0.1"
  1404. },
  1405. "suggest": {
  1406. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "2.1.x-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Egulias\\EmailValidator\\": "src"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Eduardo Gulias Davis"
  1426. }
  1427. ],
  1428. "description": "A library for validating emails against several RFCs",
  1429. "homepage": "https://github.com/egulias/EmailValidator",
  1430. "keywords": [
  1431. "email",
  1432. "emailvalidation",
  1433. "emailvalidator",
  1434. "validation",
  1435. "validator"
  1436. ],
  1437. "time": "2020-12-29T14:50:06+00:00"
  1438. },
  1439. {
  1440. "name": "endroid/qr-code",
  1441. "version": "3.9.7",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/endroid/qr-code.git",
  1445. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1450. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1451. "shasum": "",
  1452. "mirrors": [
  1453. {
  1454. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1455. "preferred": true
  1456. }
  1457. ]
  1458. },
  1459. "require": {
  1460. "bacon/bacon-qr-code": "^2.0",
  1461. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1462. "myclabs/php-enum": "^1.5",
  1463. "php": "^7.3||^8.0",
  1464. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1465. "symfony/property-access": "^3.4||^4.4||^5.0"
  1466. },
  1467. "require-dev": {
  1468. "endroid/quality": "^1.5.2",
  1469. "setasign/fpdf": "^1.8"
  1470. },
  1471. "suggest": {
  1472. "ext-gd": "Required for generating PNG images",
  1473. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1474. "setasign/fpdf": "Required to use the FPDF writer.",
  1475. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1476. },
  1477. "type": "library",
  1478. "extra": {
  1479. "branch-alias": {
  1480. "dev-master": "3.x-dev"
  1481. }
  1482. },
  1483. "autoload": {
  1484. "psr-4": {
  1485. "Endroid\\QrCode\\": "src/"
  1486. }
  1487. },
  1488. "notification-url": "https://packagist.org/downloads/",
  1489. "license": [
  1490. "MIT"
  1491. ],
  1492. "authors": [
  1493. {
  1494. "name": "Jeroen van den Enden",
  1495. "email": "info@endroid.nl"
  1496. }
  1497. ],
  1498. "description": "Endroid QR Code",
  1499. "homepage": "https://github.com/endroid/qr-code",
  1500. "keywords": [
  1501. "bundle",
  1502. "code",
  1503. "endroid",
  1504. "php",
  1505. "qr",
  1506. "qrcode"
  1507. ],
  1508. "time": "2021-04-20T19:10:54+00:00"
  1509. },
  1510. {
  1511. "name": "guzzlehttp/guzzle",
  1512. "version": "6.5.5",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/guzzle/guzzle.git",
  1516. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1521. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1522. "shasum": "",
  1523. "mirrors": [
  1524. {
  1525. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1526. "preferred": true
  1527. }
  1528. ]
  1529. },
  1530. "require": {
  1531. "ext-json": "*",
  1532. "guzzlehttp/promises": "^1.0",
  1533. "guzzlehttp/psr7": "^1.6.1",
  1534. "php": ">=5.5",
  1535. "symfony/polyfill-intl-idn": "^1.17.0"
  1536. },
  1537. "require-dev": {
  1538. "ext-curl": "*",
  1539. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1540. "psr/log": "^1.1"
  1541. },
  1542. "suggest": {
  1543. "psr/log": "Required for using the Log middleware"
  1544. },
  1545. "type": "library",
  1546. "extra": {
  1547. "branch-alias": {
  1548. "dev-master": "6.5-dev"
  1549. }
  1550. },
  1551. "autoload": {
  1552. "psr-4": {
  1553. "GuzzleHttp\\": "src/"
  1554. },
  1555. "files": [
  1556. "src/functions_include.php"
  1557. ]
  1558. },
  1559. "notification-url": "https://packagist.org/downloads/",
  1560. "license": [
  1561. "MIT"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "Michael Dowling",
  1566. "email": "mtdowling@gmail.com",
  1567. "homepage": "https://github.com/mtdowling"
  1568. }
  1569. ],
  1570. "description": "Guzzle is a PHP HTTP client library",
  1571. "homepage": "http://guzzlephp.org/",
  1572. "keywords": [
  1573. "client",
  1574. "curl",
  1575. "framework",
  1576. "http",
  1577. "http client",
  1578. "rest",
  1579. "web service"
  1580. ],
  1581. "time": "2020-06-16T21:01:06+00:00"
  1582. },
  1583. {
  1584. "name": "guzzlehttp/promises",
  1585. "version": "1.4.1",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://github.com/guzzle/promises.git",
  1589. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1594. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1595. "shasum": "",
  1596. "mirrors": [
  1597. {
  1598. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1599. "preferred": true
  1600. }
  1601. ]
  1602. },
  1603. "require": {
  1604. "php": ">=5.5"
  1605. },
  1606. "require-dev": {
  1607. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1608. },
  1609. "type": "library",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "1.4-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-4": {
  1617. "GuzzleHttp\\Promise\\": "src/"
  1618. },
  1619. "files": [
  1620. "src/functions_include.php"
  1621. ]
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Michael Dowling",
  1630. "email": "mtdowling@gmail.com",
  1631. "homepage": "https://github.com/mtdowling"
  1632. }
  1633. ],
  1634. "description": "Guzzle promises library",
  1635. "keywords": [
  1636. "promise"
  1637. ],
  1638. "time": "2021-03-07T09:25:29+00:00"
  1639. },
  1640. {
  1641. "name": "guzzlehttp/psr7",
  1642. "version": "1.8.1",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/guzzle/psr7.git",
  1646. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1",
  1651. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1",
  1652. "shasum": "",
  1653. "mirrors": [
  1654. {
  1655. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1656. "preferred": true
  1657. }
  1658. ]
  1659. },
  1660. "require": {
  1661. "php": ">=5.4.0",
  1662. "psr/http-message": "~1.0",
  1663. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1664. },
  1665. "provide": {
  1666. "psr/http-message-implementation": "1.0"
  1667. },
  1668. "require-dev": {
  1669. "ext-zlib": "*",
  1670. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1671. },
  1672. "suggest": {
  1673. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "branch-alias": {
  1678. "dev-master": "1.7-dev"
  1679. }
  1680. },
  1681. "autoload": {
  1682. "psr-4": {
  1683. "GuzzleHttp\\Psr7\\": "src/"
  1684. },
  1685. "files": [
  1686. "src/functions_include.php"
  1687. ]
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "MIT"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "Michael Dowling",
  1696. "email": "mtdowling@gmail.com",
  1697. "homepage": "https://github.com/mtdowling"
  1698. },
  1699. {
  1700. "name": "Tobias Schultze",
  1701. "homepage": "https://github.com/Tobion"
  1702. }
  1703. ],
  1704. "description": "PSR-7 message implementation that also provides common utility methods",
  1705. "keywords": [
  1706. "http",
  1707. "message",
  1708. "psr-7",
  1709. "request",
  1710. "response",
  1711. "stream",
  1712. "uri",
  1713. "url"
  1714. ],
  1715. "time": "2021-03-21T16:25:00+00:00"
  1716. },
  1717. {
  1718. "name": "illuminate/auth",
  1719. "version": "v6.20.24",
  1720. "source": {
  1721. "type": "git",
  1722. "url": "https://github.com/illuminate/auth.git",
  1723. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16"
  1724. },
  1725. "dist": {
  1726. "type": "zip",
  1727. "url": "https://api.github.com/repos/illuminate/auth/zipball/7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  1728. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  1729. "shasum": "",
  1730. "mirrors": [
  1731. {
  1732. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1733. "preferred": true
  1734. }
  1735. ]
  1736. },
  1737. "require": {
  1738. "illuminate/contracts": "^6.0",
  1739. "illuminate/http": "^6.0",
  1740. "illuminate/queue": "^6.0",
  1741. "illuminate/support": "^6.0",
  1742. "php": "^7.2.5|^8.0"
  1743. },
  1744. "suggest": {
  1745. "illuminate/console": "Required to use the auth:clear-resets command (^6.0).",
  1746. "illuminate/queue": "Required to fire login / logout events (^6.0).",
  1747. "illuminate/session": "Required to use the session based guard (^6.0)."
  1748. },
  1749. "type": "library",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "6.x-dev"
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Illuminate\\Auth\\": ""
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Taylor Otwell",
  1767. "email": "taylor@laravel.com"
  1768. }
  1769. ],
  1770. "description": "The Illuminate Auth package.",
  1771. "homepage": "https://laravel.com",
  1772. "time": "2020-10-27T15:05:51+00:00"
  1773. },
  1774. {
  1775. "name": "illuminate/broadcasting",
  1776. "version": "v6.20.24",
  1777. "source": {
  1778. "type": "git",
  1779. "url": "https://github.com/illuminate/broadcasting.git",
  1780. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0"
  1781. },
  1782. "dist": {
  1783. "type": "zip",
  1784. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/e176ec6c65fb4f9d62e501619a361fe5989123d0",
  1785. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0",
  1786. "shasum": "",
  1787. "mirrors": [
  1788. {
  1789. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1790. "preferred": true
  1791. }
  1792. ]
  1793. },
  1794. "require": {
  1795. "ext-json": "*",
  1796. "illuminate/bus": "^6.0",
  1797. "illuminate/contracts": "^6.0",
  1798. "illuminate/queue": "^6.0",
  1799. "illuminate/support": "^6.0",
  1800. "php": "^7.2.5|^8.0",
  1801. "psr/log": "^1.0"
  1802. },
  1803. "suggest": {
  1804. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0)."
  1805. },
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "6.x-dev"
  1810. }
  1811. },
  1812. "autoload": {
  1813. "psr-4": {
  1814. "Illuminate\\Broadcasting\\": ""
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Taylor Otwell",
  1824. "email": "taylor@laravel.com"
  1825. }
  1826. ],
  1827. "description": "The Illuminate Broadcasting package.",
  1828. "homepage": "https://laravel.com",
  1829. "time": "2020-11-19T14:10:44+00:00"
  1830. },
  1831. {
  1832. "name": "illuminate/bus",
  1833. "version": "v6.20.24",
  1834. "source": {
  1835. "type": "git",
  1836. "url": "https://github.com/illuminate/bus.git",
  1837. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94"
  1838. },
  1839. "dist": {
  1840. "type": "zip",
  1841. "url": "https://api.github.com/repos/illuminate/bus/zipball/107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  1842. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  1843. "shasum": "",
  1844. "mirrors": [
  1845. {
  1846. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1847. "preferred": true
  1848. }
  1849. ]
  1850. },
  1851. "require": {
  1852. "illuminate/contracts": "^6.0",
  1853. "illuminate/pipeline": "^6.0",
  1854. "illuminate/support": "^6.0",
  1855. "php": "^7.2.5|^8.0"
  1856. },
  1857. "type": "library",
  1858. "extra": {
  1859. "branch-alias": {
  1860. "dev-master": "6.x-dev"
  1861. }
  1862. },
  1863. "autoload": {
  1864. "psr-4": {
  1865. "Illuminate\\Bus\\": ""
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Taylor Otwell",
  1875. "email": "taylor@laravel.com"
  1876. }
  1877. ],
  1878. "description": "The Illuminate Bus package.",
  1879. "homepage": "https://laravel.com",
  1880. "time": "2020-10-27T15:05:51+00:00"
  1881. },
  1882. {
  1883. "name": "illuminate/cache",
  1884. "version": "v6.20.24",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://github.com/illuminate/cache.git",
  1888. "reference": "c24628c01406d14e2fd1e7842888cd84cb0e3e37"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://api.github.com/repos/illuminate/cache/zipball/c24628c01406d14e2fd1e7842888cd84cb0e3e37",
  1893. "reference": "c24628c01406d14e2fd1e7842888cd84cb0e3e37",
  1894. "shasum": "",
  1895. "mirrors": [
  1896. {
  1897. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1898. "preferred": true
  1899. }
  1900. ]
  1901. },
  1902. "require": {
  1903. "illuminate/contracts": "^6.0",
  1904. "illuminate/support": "^6.0",
  1905. "php": "^7.2.5|^8.0"
  1906. },
  1907. "suggest": {
  1908. "ext-memcached": "Required to use the memcache cache driver.",
  1909. "illuminate/database": "Required to use the database cache driver (^6.0).",
  1910. "illuminate/filesystem": "Required to use the file cache driver (^6.0).",
  1911. "illuminate/redis": "Required to use the redis cache driver (^6.0).",
  1912. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4)."
  1913. },
  1914. "type": "library",
  1915. "extra": {
  1916. "branch-alias": {
  1917. "dev-master": "6.x-dev"
  1918. }
  1919. },
  1920. "autoload": {
  1921. "psr-4": {
  1922. "Illuminate\\Cache\\": ""
  1923. }
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "MIT"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Taylor Otwell",
  1932. "email": "taylor@laravel.com"
  1933. }
  1934. ],
  1935. "description": "The Illuminate Cache package.",
  1936. "homepage": "https://laravel.com",
  1937. "time": "2021-03-30T21:33:10+00:00"
  1938. },
  1939. {
  1940. "name": "illuminate/config",
  1941. "version": "v6.20.24",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/illuminate/config.git",
  1945. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/illuminate/config/zipball/e52084805fcfc0d36f891121dd14c64ce388a892",
  1950. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892",
  1951. "shasum": "",
  1952. "mirrors": [
  1953. {
  1954. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1955. "preferred": true
  1956. }
  1957. ]
  1958. },
  1959. "require": {
  1960. "illuminate/contracts": "^6.0",
  1961. "illuminate/support": "^6.0",
  1962. "php": "^7.2.5|^8.0"
  1963. },
  1964. "type": "library",
  1965. "extra": {
  1966. "branch-alias": {
  1967. "dev-master": "6.x-dev"
  1968. }
  1969. },
  1970. "autoload": {
  1971. "psr-4": {
  1972. "Illuminate\\Config\\": ""
  1973. }
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "MIT"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Taylor Otwell",
  1982. "email": "taylor@laravel.com"
  1983. }
  1984. ],
  1985. "description": "The Illuminate Config package.",
  1986. "homepage": "https://laravel.com",
  1987. "time": "2020-10-27T15:05:51+00:00"
  1988. },
  1989. {
  1990. "name": "illuminate/console",
  1991. "version": "v6.20.24",
  1992. "source": {
  1993. "type": "git",
  1994. "url": "https://github.com/illuminate/console.git",
  1995. "reference": "e500b84f88c313432638d84911aa4ddfaa31c663"
  1996. },
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://api.github.com/repos/illuminate/console/zipball/e500b84f88c313432638d84911aa4ddfaa31c663",
  2000. "reference": "e500b84f88c313432638d84911aa4ddfaa31c663",
  2001. "shasum": "",
  2002. "mirrors": [
  2003. {
  2004. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2005. "preferred": true
  2006. }
  2007. ]
  2008. },
  2009. "require": {
  2010. "illuminate/contracts": "^6.0",
  2011. "illuminate/support": "^6.0",
  2012. "php": "^7.2.5|^8.0",
  2013. "symfony/console": "^4.3.4",
  2014. "symfony/process": "^4.3.4"
  2015. },
  2016. "suggest": {
  2017. "dragonmantank/cron-expression": "Required to use scheduler (^2.3.1).",
  2018. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.3.1|^7.0.1).",
  2019. "illuminate/bus": "Required to use the scheduled job dispatcher (^6.0)",
  2020. "illuminate/container": "Required to use the scheduler (^6.0)",
  2021. "illuminate/filesystem": "Required to use the generator command (^6.0)",
  2022. "illuminate/queue": "Required to use closures for scheduled jobs (^6.0)"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "6.x-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Illuminate\\Console\\": ""
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Taylor Otwell",
  2042. "email": "taylor@laravel.com"
  2043. }
  2044. ],
  2045. "description": "The Illuminate Console package.",
  2046. "homepage": "https://laravel.com",
  2047. "time": "2020-10-27T19:50:31+00:00"
  2048. },
  2049. {
  2050. "name": "illuminate/container",
  2051. "version": "v6.20.24",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/illuminate/container.git",
  2055. "reference": "aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/illuminate/container/zipball/aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113",
  2060. "reference": "aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113",
  2061. "shasum": "",
  2062. "mirrors": [
  2063. {
  2064. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2065. "preferred": true
  2066. }
  2067. ]
  2068. },
  2069. "require": {
  2070. "illuminate/contracts": "^6.0",
  2071. "php": "^7.2.5|^8.0",
  2072. "psr/container": "^1.0"
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "branch-alias": {
  2077. "dev-master": "6.x-dev"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "Illuminate\\Container\\": ""
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Taylor Otwell",
  2092. "email": "taylor@laravel.com"
  2093. }
  2094. ],
  2095. "description": "The Illuminate Container package.",
  2096. "homepage": "https://laravel.com",
  2097. "time": "2020-10-27T16:13:38+00:00"
  2098. },
  2099. {
  2100. "name": "illuminate/contracts",
  2101. "version": "v6.20.24",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/illuminate/contracts.git",
  2105. "reference": "89dc8d7ac32cdfa254461cdd4da5d692b44169a4"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/illuminate/contracts/zipball/89dc8d7ac32cdfa254461cdd4da5d692b44169a4",
  2110. "reference": "89dc8d7ac32cdfa254461cdd4da5d692b44169a4",
  2111. "shasum": "",
  2112. "mirrors": [
  2113. {
  2114. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2115. "preferred": true
  2116. }
  2117. ]
  2118. },
  2119. "require": {
  2120. "php": "^7.2.5|^8.0",
  2121. "psr/container": "^1.0",
  2122. "psr/simple-cache": "^1.0"
  2123. },
  2124. "type": "library",
  2125. "extra": {
  2126. "branch-alias": {
  2127. "dev-master": "6.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "Illuminate\\Contracts\\": ""
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "MIT"
  2138. ],
  2139. "authors": [
  2140. {
  2141. "name": "Taylor Otwell",
  2142. "email": "taylor@laravel.com"
  2143. }
  2144. ],
  2145. "description": "The Illuminate Contracts package.",
  2146. "homepage": "https://laravel.com",
  2147. "time": "2020-12-18T14:12:37+00:00"
  2148. },
  2149. {
  2150. "name": "illuminate/database",
  2151. "version": "v6.20.24",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/illuminate/database.git",
  2155. "reference": "da124fbe2eeed5315a8b768af6f37fb712dd0f3a"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://api.github.com/repos/illuminate/database/zipball/da124fbe2eeed5315a8b768af6f37fb712dd0f3a",
  2160. "reference": "da124fbe2eeed5315a8b768af6f37fb712dd0f3a",
  2161. "shasum": "",
  2162. "mirrors": [
  2163. {
  2164. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2165. "preferred": true
  2166. }
  2167. ]
  2168. },
  2169. "require": {
  2170. "ext-json": "*",
  2171. "illuminate/container": "^6.0",
  2172. "illuminate/contracts": "^6.0",
  2173. "illuminate/support": "^6.0",
  2174. "php": "^7.2.5|^8.0"
  2175. },
  2176. "suggest": {
  2177. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2178. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2179. "illuminate/console": "Required to use the database commands (^6.0).",
  2180. "illuminate/events": "Required to use the observers with Eloquent (^6.0).",
  2181. "illuminate/filesystem": "Required to use the migrations (^6.0).",
  2182. "illuminate/pagination": "Required to paginate the result set (^6.0).",
  2183. "symfony/finder": "Required to use Eloquent model factories (^4.3.4)."
  2184. },
  2185. "type": "library",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-master": "6.x-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-4": {
  2193. "Illuminate\\Database\\": ""
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "MIT"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "Taylor Otwell",
  2203. "email": "taylor@laravel.com"
  2204. }
  2205. ],
  2206. "description": "The Illuminate Database package.",
  2207. "homepage": "https://laravel.com",
  2208. "keywords": [
  2209. "database",
  2210. "laravel",
  2211. "orm",
  2212. "sql"
  2213. ],
  2214. "time": "2021-04-08T12:38:18+00:00"
  2215. },
  2216. {
  2217. "name": "illuminate/encryption",
  2218. "version": "v6.20.24",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/illuminate/encryption.git",
  2222. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/illuminate/encryption/zipball/b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2227. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2228. "shasum": "",
  2229. "mirrors": [
  2230. {
  2231. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2232. "preferred": true
  2233. }
  2234. ]
  2235. },
  2236. "require": {
  2237. "ext-json": "*",
  2238. "ext-mbstring": "*",
  2239. "ext-openssl": "*",
  2240. "illuminate/contracts": "^6.0",
  2241. "illuminate/support": "^6.0",
  2242. "php": "^7.2.5|^8.0"
  2243. },
  2244. "type": "library",
  2245. "extra": {
  2246. "branch-alias": {
  2247. "dev-master": "6.x-dev"
  2248. }
  2249. },
  2250. "autoload": {
  2251. "psr-4": {
  2252. "Illuminate\\Encryption\\": ""
  2253. }
  2254. },
  2255. "notification-url": "https://packagist.org/downloads/",
  2256. "license": [
  2257. "MIT"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Taylor Otwell",
  2262. "email": "taylor@laravel.com"
  2263. }
  2264. ],
  2265. "description": "The Illuminate Encryption package.",
  2266. "homepage": "https://laravel.com",
  2267. "time": "2020-10-27T15:05:51+00:00"
  2268. },
  2269. {
  2270. "name": "illuminate/events",
  2271. "version": "v6.20.24",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/illuminate/events.git",
  2275. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/illuminate/events/zipball/668581e3c31f9d499dc6919fe873003969a88e6c",
  2280. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c",
  2281. "shasum": "",
  2282. "mirrors": [
  2283. {
  2284. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2285. "preferred": true
  2286. }
  2287. ]
  2288. },
  2289. "require": {
  2290. "illuminate/container": "^6.0",
  2291. "illuminate/contracts": "^6.0",
  2292. "illuminate/support": "^6.0",
  2293. "php": "^7.2.5|^8.0"
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "branch-alias": {
  2298. "dev-master": "6.x-dev"
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-4": {
  2303. "Illuminate\\Events\\": ""
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Taylor Otwell",
  2313. "email": "taylor@laravel.com"
  2314. }
  2315. ],
  2316. "description": "The Illuminate Events package.",
  2317. "homepage": "https://laravel.com",
  2318. "time": "2020-10-27T15:05:51+00:00"
  2319. },
  2320. {
  2321. "name": "illuminate/filesystem",
  2322. "version": "v6.20.24",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/illuminate/filesystem.git",
  2326. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/5355953da41db06aac064a3d08dfa1f9bafffd24",
  2331. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24",
  2332. "shasum": "",
  2333. "mirrors": [
  2334. {
  2335. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2336. "preferred": true
  2337. }
  2338. ]
  2339. },
  2340. "require": {
  2341. "illuminate/contracts": "^6.0",
  2342. "illuminate/support": "^6.0",
  2343. "php": "^7.2.5|^8.0",
  2344. "symfony/finder": "^4.3.4"
  2345. },
  2346. "suggest": {
  2347. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2348. "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.1).",
  2349. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2350. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2351. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2352. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)."
  2353. },
  2354. "type": "library",
  2355. "extra": {
  2356. "branch-alias": {
  2357. "dev-master": "6.x-dev"
  2358. }
  2359. },
  2360. "autoload": {
  2361. "psr-4": {
  2362. "Illuminate\\Filesystem\\": ""
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Taylor Otwell",
  2372. "email": "taylor@laravel.com"
  2373. }
  2374. ],
  2375. "description": "The Illuminate Filesystem package.",
  2376. "homepage": "https://laravel.com",
  2377. "time": "2020-10-27T15:05:51+00:00"
  2378. },
  2379. {
  2380. "name": "illuminate/hashing",
  2381. "version": "v6.20.24",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/illuminate/hashing.git",
  2385. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/illuminate/hashing/zipball/d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2390. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2391. "shasum": "",
  2392. "mirrors": [
  2393. {
  2394. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2395. "preferred": true
  2396. }
  2397. ]
  2398. },
  2399. "require": {
  2400. "illuminate/contracts": "^6.0",
  2401. "illuminate/support": "^6.0",
  2402. "php": "^7.2.5|^8.0"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "6.x-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Illuminate\\Hashing\\": ""
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Taylor Otwell",
  2422. "email": "taylor@laravel.com"
  2423. }
  2424. ],
  2425. "description": "The Illuminate Hashing package.",
  2426. "homepage": "https://laravel.com",
  2427. "time": "2020-10-27T15:05:51+00:00"
  2428. },
  2429. {
  2430. "name": "illuminate/http",
  2431. "version": "v6.20.24",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/illuminate/http.git",
  2435. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/illuminate/http/zipball/c20a51c83af75a335b7e97beb168a860bfe2f929",
  2440. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929",
  2441. "shasum": "",
  2442. "mirrors": [
  2443. {
  2444. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2445. "preferred": true
  2446. }
  2447. ]
  2448. },
  2449. "require": {
  2450. "ext-json": "*",
  2451. "illuminate/session": "^6.0",
  2452. "illuminate/support": "^6.0",
  2453. "php": "^7.2.5|^8.0",
  2454. "symfony/http-foundation": "^4.3.4",
  2455. "symfony/http-kernel": "^4.3.4"
  2456. },
  2457. "suggest": {
  2458. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image()."
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "branch-alias": {
  2463. "dev-master": "6.x-dev"
  2464. }
  2465. },
  2466. "autoload": {
  2467. "psr-4": {
  2468. "Illuminate\\Http\\": ""
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Taylor Otwell",
  2478. "email": "taylor@laravel.com"
  2479. }
  2480. ],
  2481. "description": "The Illuminate Http package.",
  2482. "homepage": "https://laravel.com",
  2483. "time": "2021-01-20T13:50:36+00:00"
  2484. },
  2485. {
  2486. "name": "illuminate/log",
  2487. "version": "v6.20.24",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/illuminate/log.git",
  2491. "reference": "f6a94ca6050310a2f58e2a6b7d43d6d64594d077"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/illuminate/log/zipball/f6a94ca6050310a2f58e2a6b7d43d6d64594d077",
  2496. "reference": "f6a94ca6050310a2f58e2a6b7d43d6d64594d077",
  2497. "shasum": "",
  2498. "mirrors": [
  2499. {
  2500. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2501. "preferred": true
  2502. }
  2503. ]
  2504. },
  2505. "require": {
  2506. "illuminate/contracts": "^6.0",
  2507. "illuminate/support": "^6.0",
  2508. "monolog/monolog": "^1.12|^2.0",
  2509. "php": "^7.2.5|^8.0"
  2510. },
  2511. "type": "library",
  2512. "extra": {
  2513. "branch-alias": {
  2514. "dev-master": "6.x-dev"
  2515. }
  2516. },
  2517. "autoload": {
  2518. "psr-4": {
  2519. "Illuminate\\Log\\": ""
  2520. }
  2521. },
  2522. "notification-url": "https://packagist.org/downloads/",
  2523. "license": [
  2524. "MIT"
  2525. ],
  2526. "authors": [
  2527. {
  2528. "name": "Taylor Otwell",
  2529. "email": "taylor@laravel.com"
  2530. }
  2531. ],
  2532. "description": "The Illuminate Log package.",
  2533. "homepage": "https://laravel.com",
  2534. "time": "2020-10-27T15:05:51+00:00"
  2535. },
  2536. {
  2537. "name": "illuminate/pagination",
  2538. "version": "v6.20.24",
  2539. "source": {
  2540. "type": "git",
  2541. "url": "https://github.com/illuminate/pagination.git",
  2542. "reference": "c98b4979213660a29a1979813824849f30fd9f27"
  2543. },
  2544. "dist": {
  2545. "type": "zip",
  2546. "url": "https://api.github.com/repos/illuminate/pagination/zipball/c98b4979213660a29a1979813824849f30fd9f27",
  2547. "reference": "c98b4979213660a29a1979813824849f30fd9f27",
  2548. "shasum": "",
  2549. "mirrors": [
  2550. {
  2551. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2552. "preferred": true
  2553. }
  2554. ]
  2555. },
  2556. "require": {
  2557. "ext-json": "*",
  2558. "illuminate/contracts": "^6.0",
  2559. "illuminate/support": "^6.0",
  2560. "php": "^7.2.5|^8.0"
  2561. },
  2562. "type": "library",
  2563. "extra": {
  2564. "branch-alias": {
  2565. "dev-master": "6.x-dev"
  2566. }
  2567. },
  2568. "autoload": {
  2569. "psr-4": {
  2570. "Illuminate\\Pagination\\": ""
  2571. }
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Taylor Otwell",
  2580. "email": "taylor@laravel.com"
  2581. }
  2582. ],
  2583. "description": "The Illuminate Pagination package.",
  2584. "homepage": "https://laravel.com",
  2585. "time": "2021-01-26T17:15:42+00:00"
  2586. },
  2587. {
  2588. "name": "illuminate/pipeline",
  2589. "version": "v6.20.24",
  2590. "source": {
  2591. "type": "git",
  2592. "url": "https://github.com/illuminate/pipeline.git",
  2593. "reference": "01063d3605efd22453316d771802cf5075ed848e"
  2594. },
  2595. "dist": {
  2596. "type": "zip",
  2597. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/01063d3605efd22453316d771802cf5075ed848e",
  2598. "reference": "01063d3605efd22453316d771802cf5075ed848e",
  2599. "shasum": "",
  2600. "mirrors": [
  2601. {
  2602. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2603. "preferred": true
  2604. }
  2605. ]
  2606. },
  2607. "require": {
  2608. "illuminate/contracts": "^6.0",
  2609. "illuminate/support": "^6.0",
  2610. "php": "^7.2.5|^8.0",
  2611. "symfony/debug": "^4.3.4"
  2612. },
  2613. "type": "library",
  2614. "extra": {
  2615. "branch-alias": {
  2616. "dev-master": "6.x-dev"
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "Illuminate\\Pipeline\\": ""
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "Taylor Otwell",
  2631. "email": "taylor@laravel.com"
  2632. }
  2633. ],
  2634. "description": "The Illuminate Pipeline package.",
  2635. "homepage": "https://laravel.com",
  2636. "time": "2020-10-27T15:05:51+00:00"
  2637. },
  2638. {
  2639. "name": "illuminate/queue",
  2640. "version": "v6.20.24",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/illuminate/queue.git",
  2644. "reference": "eaf5da2b91526bc21485ebf98f08a6cb9948b053"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/illuminate/queue/zipball/eaf5da2b91526bc21485ebf98f08a6cb9948b053",
  2649. "reference": "eaf5da2b91526bc21485ebf98f08a6cb9948b053",
  2650. "shasum": "",
  2651. "mirrors": [
  2652. {
  2653. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2654. "preferred": true
  2655. }
  2656. ]
  2657. },
  2658. "require": {
  2659. "ext-json": "*",
  2660. "illuminate/console": "^6.0",
  2661. "illuminate/container": "^6.0",
  2662. "illuminate/contracts": "^6.0",
  2663. "illuminate/database": "^6.0",
  2664. "illuminate/filesystem": "^6.0",
  2665. "illuminate/pipeline": "^6.0",
  2666. "illuminate/support": "^6.0",
  2667. "opis/closure": "^3.6",
  2668. "php": "^7.2.5|^8.0",
  2669. "symfony/debug": "^4.3.4",
  2670. "symfony/process": "^4.3.4"
  2671. },
  2672. "suggest": {
  2673. "aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.155).",
  2674. "ext-pcntl": "Required to use all features of the queue worker.",
  2675. "ext-posix": "Required to use all features of the queue worker.",
  2676. "illuminate/redis": "Required to use the Redis queue driver (^6.0).",
  2677. "pda/pheanstalk": "Required to use the Beanstalk queue driver (^4.0)."
  2678. },
  2679. "type": "library",
  2680. "extra": {
  2681. "branch-alias": {
  2682. "dev-master": "6.x-dev"
  2683. }
  2684. },
  2685. "autoload": {
  2686. "psr-4": {
  2687. "Illuminate\\Queue\\": ""
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Taylor Otwell",
  2697. "email": "taylor@laravel.com"
  2698. }
  2699. ],
  2700. "description": "The Illuminate Queue package.",
  2701. "homepage": "https://laravel.com",
  2702. "time": "2020-11-18T14:36:08+00:00"
  2703. },
  2704. {
  2705. "name": "illuminate/routing",
  2706. "version": "v6.20.24",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/illuminate/routing.git",
  2710. "reference": "a38bc28ef7d6b09c2c5793d04e4d822bea21e18c"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/illuminate/routing/zipball/a38bc28ef7d6b09c2c5793d04e4d822bea21e18c",
  2715. "reference": "a38bc28ef7d6b09c2c5793d04e4d822bea21e18c",
  2716. "shasum": "",
  2717. "mirrors": [
  2718. {
  2719. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2720. "preferred": true
  2721. }
  2722. ]
  2723. },
  2724. "require": {
  2725. "ext-json": "*",
  2726. "illuminate/container": "^6.0",
  2727. "illuminate/contracts": "^6.0",
  2728. "illuminate/http": "^6.0",
  2729. "illuminate/pipeline": "^6.0",
  2730. "illuminate/session": "^6.0",
  2731. "illuminate/support": "^6.0",
  2732. "php": "^7.2.5|^8.0",
  2733. "symfony/debug": "^4.3.4",
  2734. "symfony/http-foundation": "^4.3.4",
  2735. "symfony/http-kernel": "^4.3.4",
  2736. "symfony/routing": "^4.3.4"
  2737. },
  2738. "suggest": {
  2739. "illuminate/console": "Required to use the make commands (^6.0).",
  2740. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2741. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  2742. },
  2743. "type": "library",
  2744. "extra": {
  2745. "branch-alias": {
  2746. "dev-master": "6.x-dev"
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-4": {
  2751. "Illuminate\\Routing\\": ""
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Taylor Otwell",
  2761. "email": "taylor@laravel.com"
  2762. }
  2763. ],
  2764. "description": "The Illuminate Routing package.",
  2765. "homepage": "https://laravel.com",
  2766. "time": "2020-10-27T19:50:31+00:00"
  2767. },
  2768. {
  2769. "name": "illuminate/session",
  2770. "version": "v6.20.24",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://github.com/illuminate/session.git",
  2774. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://api.github.com/repos/illuminate/session/zipball/3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  2779. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  2780. "shasum": "",
  2781. "mirrors": [
  2782. {
  2783. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2784. "preferred": true
  2785. }
  2786. ]
  2787. },
  2788. "require": {
  2789. "ext-json": "*",
  2790. "illuminate/contracts": "^6.0",
  2791. "illuminate/filesystem": "^6.0",
  2792. "illuminate/support": "^6.0",
  2793. "php": "^7.2.5|^8.0",
  2794. "symfony/finder": "^4.3.4",
  2795. "symfony/http-foundation": "^4.3.4"
  2796. },
  2797. "suggest": {
  2798. "illuminate/console": "Required to use the session:table command (^6.0)."
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "6.x-dev"
  2804. }
  2805. },
  2806. "autoload": {
  2807. "psr-4": {
  2808. "Illuminate\\Session\\": ""
  2809. }
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Taylor Otwell",
  2818. "email": "taylor@laravel.com"
  2819. }
  2820. ],
  2821. "description": "The Illuminate Session package.",
  2822. "homepage": "https://laravel.com",
  2823. "time": "2020-10-27T15:05:51+00:00"
  2824. },
  2825. {
  2826. "name": "illuminate/support",
  2827. "version": "v6.20.24",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/illuminate/support.git",
  2831. "reference": "566e3dcfb0e3973ed8cd86ddb4ad4ef33a84fedf"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://api.github.com/repos/illuminate/support/zipball/566e3dcfb0e3973ed8cd86ddb4ad4ef33a84fedf",
  2836. "reference": "566e3dcfb0e3973ed8cd86ddb4ad4ef33a84fedf",
  2837. "shasum": "",
  2838. "mirrors": [
  2839. {
  2840. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2841. "preferred": true
  2842. }
  2843. ]
  2844. },
  2845. "require": {
  2846. "doctrine/inflector": "^1.4|^2.0",
  2847. "ext-json": "*",
  2848. "ext-mbstring": "*",
  2849. "illuminate/contracts": "^6.0",
  2850. "nesbot/carbon": "^2.31",
  2851. "php": "^7.2.5|^8.0"
  2852. },
  2853. "conflict": {
  2854. "tightenco/collect": "<5.5.33"
  2855. },
  2856. "suggest": {
  2857. "illuminate/filesystem": "Required to use the composer class (^6.0).",
  2858. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2859. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  2860. "symfony/process": "Required to use the composer class (^4.3.4).",
  2861. "symfony/var-dumper": "Required to use the dd function (^4.3.4).",
  2862. "vlucas/phpdotenv": "Required to use the Env class and env helper (^3.3)."
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-master": "6.x-dev"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Illuminate\\Support\\": ""
  2873. },
  2874. "files": [
  2875. "helpers.php"
  2876. ]
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "Taylor Otwell",
  2885. "email": "taylor@laravel.com"
  2886. }
  2887. ],
  2888. "description": "The Illuminate Support package.",
  2889. "homepage": "https://laravel.com",
  2890. "time": "2021-03-12T13:52:50+00:00"
  2891. },
  2892. {
  2893. "name": "illuminate/translation",
  2894. "version": "v6.20.24",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/illuminate/translation.git",
  2898. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/illuminate/translation/zipball/717fad58c8451b86c7b5644bc652430a3369d7b3",
  2903. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3",
  2904. "shasum": "",
  2905. "mirrors": [
  2906. {
  2907. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2908. "preferred": true
  2909. }
  2910. ]
  2911. },
  2912. "require": {
  2913. "ext-json": "*",
  2914. "illuminate/contracts": "^6.0",
  2915. "illuminate/filesystem": "^6.0",
  2916. "illuminate/support": "^6.0",
  2917. "php": "^7.2.5|^8.0"
  2918. },
  2919. "type": "library",
  2920. "extra": {
  2921. "branch-alias": {
  2922. "dev-master": "6.x-dev"
  2923. }
  2924. },
  2925. "autoload": {
  2926. "psr-4": {
  2927. "Illuminate\\Translation\\": ""
  2928. }
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "Taylor Otwell",
  2937. "email": "taylor@laravel.com"
  2938. }
  2939. ],
  2940. "description": "The Illuminate Translation package.",
  2941. "homepage": "https://laravel.com",
  2942. "time": "2020-10-27T15:05:51+00:00"
  2943. },
  2944. {
  2945. "name": "illuminate/validation",
  2946. "version": "v6.20.24",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/illuminate/validation.git",
  2950. "reference": "90e2dfd53ca89192cdd06ada89d3a48cda3aeee2"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/illuminate/validation/zipball/90e2dfd53ca89192cdd06ada89d3a48cda3aeee2",
  2955. "reference": "90e2dfd53ca89192cdd06ada89d3a48cda3aeee2",
  2956. "shasum": "",
  2957. "mirrors": [
  2958. {
  2959. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2960. "preferred": true
  2961. }
  2962. ]
  2963. },
  2964. "require": {
  2965. "egulias/email-validator": "^2.1.10",
  2966. "ext-json": "*",
  2967. "illuminate/container": "^6.0",
  2968. "illuminate/contracts": "^6.0",
  2969. "illuminate/support": "^6.0",
  2970. "illuminate/translation": "^6.0",
  2971. "php": "^7.2.5|^8.0",
  2972. "symfony/http-foundation": "^4.3.4"
  2973. },
  2974. "suggest": {
  2975. "illuminate/database": "Required to use the database presence verifier (^6.0)."
  2976. },
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-master": "6.x-dev"
  2981. }
  2982. },
  2983. "autoload": {
  2984. "psr-4": {
  2985. "Illuminate\\Validation\\": ""
  2986. }
  2987. },
  2988. "notification-url": "https://packagist.org/downloads/",
  2989. "license": [
  2990. "MIT"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Taylor Otwell",
  2995. "email": "taylor@laravel.com"
  2996. }
  2997. ],
  2998. "description": "The Illuminate Validation package.",
  2999. "homepage": "https://laravel.com",
  3000. "time": "2021-04-14T11:58:24+00:00"
  3001. },
  3002. {
  3003. "name": "illuminate/view",
  3004. "version": "v6.20.24",
  3005. "source": {
  3006. "type": "git",
  3007. "url": "https://github.com/illuminate/view.git",
  3008. "reference": "4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1"
  3009. },
  3010. "dist": {
  3011. "type": "zip",
  3012. "url": "https://api.github.com/repos/illuminate/view/zipball/4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1",
  3013. "reference": "4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1",
  3014. "shasum": "",
  3015. "mirrors": [
  3016. {
  3017. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3018. "preferred": true
  3019. }
  3020. ]
  3021. },
  3022. "require": {
  3023. "ext-json": "*",
  3024. "illuminate/container": "^6.0",
  3025. "illuminate/contracts": "^6.0",
  3026. "illuminate/events": "^6.0",
  3027. "illuminate/filesystem": "^6.0",
  3028. "illuminate/support": "^6.0",
  3029. "php": "^7.2.5|^8.0",
  3030. "symfony/debug": "^4.3.4"
  3031. },
  3032. "type": "library",
  3033. "extra": {
  3034. "branch-alias": {
  3035. "dev-master": "6.x-dev"
  3036. }
  3037. },
  3038. "autoload": {
  3039. "psr-4": {
  3040. "Illuminate\\View\\": ""
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Taylor Otwell",
  3050. "email": "taylor@laravel.com"
  3051. }
  3052. ],
  3053. "description": "The Illuminate View package.",
  3054. "homepage": "https://laravel.com",
  3055. "time": "2021-02-01T14:20:21+00:00"
  3056. },
  3057. {
  3058. "name": "intervention/image",
  3059. "version": "2.5.1",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/Intervention/image.git",
  3063. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  3068. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  3069. "shasum": "",
  3070. "mirrors": [
  3071. {
  3072. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3073. "preferred": true
  3074. }
  3075. ]
  3076. },
  3077. "require": {
  3078. "ext-fileinfo": "*",
  3079. "guzzlehttp/psr7": "~1.1",
  3080. "php": ">=5.4.0"
  3081. },
  3082. "require-dev": {
  3083. "mockery/mockery": "~0.9.2",
  3084. "phpunit/phpunit": "^4.8 || ^5.7"
  3085. },
  3086. "suggest": {
  3087. "ext-gd": "to use GD library based image processing.",
  3088. "ext-imagick": "to use Imagick based image processing.",
  3089. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3090. },
  3091. "type": "library",
  3092. "extra": {
  3093. "branch-alias": {
  3094. "dev-master": "2.4-dev"
  3095. },
  3096. "laravel": {
  3097. "providers": [
  3098. "Intervention\\Image\\ImageServiceProvider"
  3099. ],
  3100. "aliases": {
  3101. "Image": "Intervention\\Image\\Facades\\Image"
  3102. }
  3103. }
  3104. },
  3105. "autoload": {
  3106. "psr-4": {
  3107. "Intervention\\Image\\": "src/Intervention/Image"
  3108. }
  3109. },
  3110. "notification-url": "https://packagist.org/downloads/",
  3111. "license": [
  3112. "MIT"
  3113. ],
  3114. "authors": [
  3115. {
  3116. "name": "Oliver Vogel",
  3117. "email": "oliver@olivervogel.com",
  3118. "homepage": "http://olivervogel.com/"
  3119. }
  3120. ],
  3121. "description": "Image handling and manipulation library with support for Laravel integration",
  3122. "homepage": "http://image.intervention.io/",
  3123. "keywords": [
  3124. "gd",
  3125. "image",
  3126. "imagick",
  3127. "laravel",
  3128. "thumbnail",
  3129. "watermark"
  3130. ],
  3131. "time": "2019-11-02T09:15:47+00:00"
  3132. },
  3133. {
  3134. "name": "jaybizzle/crawler-detect",
  3135. "version": "v1.2.105",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3139. "reference": "719c1ed49224857800c3dc40838b6b761d046105"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/719c1ed49224857800c3dc40838b6b761d046105",
  3144. "reference": "719c1ed49224857800c3dc40838b6b761d046105",
  3145. "shasum": "",
  3146. "mirrors": [
  3147. {
  3148. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3149. "preferred": true
  3150. }
  3151. ]
  3152. },
  3153. "require": {
  3154. "php": ">=5.3.0"
  3155. },
  3156. "require-dev": {
  3157. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3158. },
  3159. "type": "library",
  3160. "autoload": {
  3161. "psr-4": {
  3162. "Jaybizzle\\CrawlerDetect\\": "src/"
  3163. }
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Mark Beech",
  3172. "email": "m@rkbee.ch",
  3173. "role": "Developer"
  3174. }
  3175. ],
  3176. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3177. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3178. "keywords": [
  3179. "crawler",
  3180. "crawler detect",
  3181. "crawler detector",
  3182. "crawlerdetect",
  3183. "php crawler detect"
  3184. ],
  3185. "time": "2021-03-03T20:55:48+00:00"
  3186. },
  3187. {
  3188. "name": "jenssegers/agent",
  3189. "version": "v2.6.4",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/jenssegers/agent.git",
  3193. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  3198. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  3199. "shasum": "",
  3200. "mirrors": [
  3201. {
  3202. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3203. "preferred": true
  3204. }
  3205. ]
  3206. },
  3207. "require": {
  3208. "jaybizzle/crawler-detect": "^1.2",
  3209. "mobiledetect/mobiledetectlib": "^2.7.6",
  3210. "php": ">=5.6"
  3211. },
  3212. "require-dev": {
  3213. "php-coveralls/php-coveralls": "^2.1",
  3214. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  3215. },
  3216. "suggest": {
  3217. "illuminate/support": "Required for laravel service providers"
  3218. },
  3219. "type": "library",
  3220. "extra": {
  3221. "branch-alias": {
  3222. "dev-master": "3.0-dev"
  3223. },
  3224. "laravel": {
  3225. "providers": [
  3226. "Jenssegers\\Agent\\AgentServiceProvider"
  3227. ],
  3228. "aliases": {
  3229. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  3230. }
  3231. }
  3232. },
  3233. "autoload": {
  3234. "psr-4": {
  3235. "Jenssegers\\Agent\\": "src/"
  3236. }
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "MIT"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Jens Segers",
  3245. "homepage": "https://jenssegers.com"
  3246. }
  3247. ],
  3248. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  3249. "homepage": "https://github.com/jenssegers/agent",
  3250. "keywords": [
  3251. "Agent",
  3252. "browser",
  3253. "desktop",
  3254. "laravel",
  3255. "mobile",
  3256. "platform",
  3257. "user agent",
  3258. "useragent"
  3259. ],
  3260. "time": "2020-06-13T08:05:20+00:00"
  3261. },
  3262. {
  3263. "name": "justinrainbow/json-schema",
  3264. "version": "5.2.10",
  3265. "source": {
  3266. "type": "git",
  3267. "url": "https://github.com/justinrainbow/json-schema.git",
  3268. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  3269. },
  3270. "dist": {
  3271. "type": "zip",
  3272. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  3273. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  3274. "shasum": "",
  3275. "mirrors": [
  3276. {
  3277. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3278. "preferred": true
  3279. }
  3280. ]
  3281. },
  3282. "require": {
  3283. "php": ">=5.3.3"
  3284. },
  3285. "require-dev": {
  3286. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  3287. "json-schema/json-schema-test-suite": "1.2.0",
  3288. "phpunit/phpunit": "^4.8.35"
  3289. },
  3290. "bin": [
  3291. "bin/validate-json"
  3292. ],
  3293. "type": "library",
  3294. "extra": {
  3295. "branch-alias": {
  3296. "dev-master": "5.0.x-dev"
  3297. }
  3298. },
  3299. "autoload": {
  3300. "psr-4": {
  3301. "JsonSchema\\": "src/JsonSchema/"
  3302. }
  3303. },
  3304. "notification-url": "https://packagist.org/downloads/",
  3305. "license": [
  3306. "MIT"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Bruno Prieto Reis",
  3311. "email": "bruno.p.reis@gmail.com"
  3312. },
  3313. {
  3314. "name": "Justin Rainbow",
  3315. "email": "justin.rainbow@gmail.com"
  3316. },
  3317. {
  3318. "name": "Igor Wiedler",
  3319. "email": "igor@wiedler.ch"
  3320. },
  3321. {
  3322. "name": "Robert Schönthal",
  3323. "email": "seroscho@googlemail.com"
  3324. }
  3325. ],
  3326. "description": "A library to validate a json schema.",
  3327. "homepage": "https://github.com/justinrainbow/json-schema",
  3328. "keywords": [
  3329. "json",
  3330. "schema"
  3331. ],
  3332. "time": "2020-05-27T16:41:55+00:00"
  3333. },
  3334. {
  3335. "name": "khanamiryan/qrcode-detector-decoder",
  3336. "version": "1.0.5",
  3337. "source": {
  3338. "type": "git",
  3339. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  3340. "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5"
  3341. },
  3342. "dist": {
  3343. "type": "zip",
  3344. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/6c8c23003a87ecd7458807cd49372b1fb590d1f5",
  3345. "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5",
  3346. "shasum": "",
  3347. "mirrors": [
  3348. {
  3349. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3350. "preferred": true
  3351. }
  3352. ]
  3353. },
  3354. "require": {
  3355. "php": ">=5.6"
  3356. },
  3357. "require-dev": {
  3358. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  3359. },
  3360. "type": "library",
  3361. "autoload": {
  3362. "psr-4": {
  3363. "Zxing\\": "lib/"
  3364. },
  3365. "files": [
  3366. "lib/Common/customFunctions.php"
  3367. ]
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "Ashot Khanamiryan",
  3376. "email": "a.khanamiryan@gmail.com",
  3377. "homepage": "https://github.com/khanamiryan",
  3378. "role": "Developer"
  3379. }
  3380. ],
  3381. "description": "QR code decoder / reader",
  3382. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  3383. "keywords": [
  3384. "barcode",
  3385. "qr",
  3386. "zxing"
  3387. ],
  3388. "time": "2021-04-20T18:34:35+00:00"
  3389. },
  3390. {
  3391. "name": "laravel/lumen-framework",
  3392. "version": "v6.3.5",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/laravel/lumen-framework.git",
  3396. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/74d61ebf4f022a874bcea560054a2a2050d0e75d",
  3401. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d",
  3402. "shasum": "",
  3403. "mirrors": [
  3404. {
  3405. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3406. "preferred": true
  3407. }
  3408. ]
  3409. },
  3410. "require": {
  3411. "dragonmantank/cron-expression": "^2.0",
  3412. "illuminate/auth": "^6.0",
  3413. "illuminate/broadcasting": "^6.0",
  3414. "illuminate/bus": "^6.0",
  3415. "illuminate/cache": "^6.0",
  3416. "illuminate/config": "^6.0",
  3417. "illuminate/container": "^6.0",
  3418. "illuminate/contracts": "^6.0",
  3419. "illuminate/database": "^6.0",
  3420. "illuminate/encryption": "^6.0",
  3421. "illuminate/events": "^6.0",
  3422. "illuminate/filesystem": "^6.0",
  3423. "illuminate/hashing": "^6.0",
  3424. "illuminate/http": "^6.0",
  3425. "illuminate/log": "^6.0",
  3426. "illuminate/pagination": "^6.0",
  3427. "illuminate/pipeline": "^6.0",
  3428. "illuminate/queue": "^6.0",
  3429. "illuminate/support": "^6.0",
  3430. "illuminate/translation": "^6.0",
  3431. "illuminate/validation": "^6.0",
  3432. "illuminate/view": "^6.0",
  3433. "nikic/fast-route": "^1.3",
  3434. "php": "^7.2",
  3435. "symfony/http-foundation": "^4.3",
  3436. "symfony/http-kernel": "^4.3",
  3437. "symfony/var-dumper": "^4.3",
  3438. "vlucas/phpdotenv": "^3.3"
  3439. },
  3440. "require-dev": {
  3441. "mockery/mockery": "^1.0",
  3442. "phpunit/phpunit": "^7.5|^8.0"
  3443. },
  3444. "suggest": {
  3445. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3446. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3447. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  3448. },
  3449. "type": "library",
  3450. "extra": {
  3451. "branch-alias": {
  3452. "dev-master": "6.x-dev"
  3453. }
  3454. },
  3455. "autoload": {
  3456. "psr-4": {
  3457. "Laravel\\Lumen\\": "src/"
  3458. },
  3459. "files": [
  3460. "src/helpers.php"
  3461. ]
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "Taylor Otwell",
  3470. "email": "taylorotwell@gmail.com"
  3471. }
  3472. ],
  3473. "description": "The Laravel Lumen Framework.",
  3474. "homepage": "https://lumen.laravel.com",
  3475. "keywords": [
  3476. "framework",
  3477. "laravel",
  3478. "lumen"
  3479. ],
  3480. "time": "2020-03-13T20:24:43+00:00"
  3481. },
  3482. {
  3483. "name": "lcobucci/jwt",
  3484. "version": "3.3.3",
  3485. "source": {
  3486. "type": "git",
  3487. "url": "https://github.com/lcobucci/jwt.git",
  3488. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  3489. },
  3490. "dist": {
  3491. "type": "zip",
  3492. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  3493. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  3494. "shasum": "",
  3495. "mirrors": [
  3496. {
  3497. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3498. "preferred": true
  3499. }
  3500. ]
  3501. },
  3502. "require": {
  3503. "ext-mbstring": "*",
  3504. "ext-openssl": "*",
  3505. "php": "^5.6 || ^7.0"
  3506. },
  3507. "require-dev": {
  3508. "mikey179/vfsstream": "~1.5",
  3509. "phpmd/phpmd": "~2.2",
  3510. "phpunit/php-invoker": "~1.1",
  3511. "phpunit/phpunit": "^5.7 || ^7.3",
  3512. "squizlabs/php_codesniffer": "~2.3"
  3513. },
  3514. "type": "library",
  3515. "extra": {
  3516. "branch-alias": {
  3517. "dev-master": "3.1-dev"
  3518. }
  3519. },
  3520. "autoload": {
  3521. "psr-4": {
  3522. "Lcobucci\\JWT\\": "src"
  3523. }
  3524. },
  3525. "notification-url": "https://packagist.org/downloads/",
  3526. "license": [
  3527. "BSD-3-Clause"
  3528. ],
  3529. "authors": [
  3530. {
  3531. "name": "Luís Otávio Cobucci Oblonczyk",
  3532. "email": "lcobucci@gmail.com",
  3533. "role": "Developer"
  3534. }
  3535. ],
  3536. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3537. "keywords": [
  3538. "JWS",
  3539. "jwt"
  3540. ],
  3541. "time": "2020-08-20T13:22:28+00:00"
  3542. },
  3543. {
  3544. "name": "league/flysystem",
  3545. "version": "1.1.3",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/thephpleague/flysystem.git",
  3549. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  3554. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  3555. "shasum": "",
  3556. "mirrors": [
  3557. {
  3558. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3559. "preferred": true
  3560. }
  3561. ]
  3562. },
  3563. "require": {
  3564. "ext-fileinfo": "*",
  3565. "league/mime-type-detection": "^1.3",
  3566. "php": "^7.2.5 || ^8.0"
  3567. },
  3568. "conflict": {
  3569. "league/flysystem-sftp": "<1.0.6"
  3570. },
  3571. "require-dev": {
  3572. "phpspec/prophecy": "^1.11.1",
  3573. "phpunit/phpunit": "^8.5.8"
  3574. },
  3575. "suggest": {
  3576. "ext-fileinfo": "Required for MimeType",
  3577. "ext-ftp": "Allows you to use FTP server storage",
  3578. "ext-openssl": "Allows you to use FTPS server storage",
  3579. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3580. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3581. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3582. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3583. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3584. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3585. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3586. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3587. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3588. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3589. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3590. },
  3591. "type": "library",
  3592. "extra": {
  3593. "branch-alias": {
  3594. "dev-master": "1.1-dev"
  3595. }
  3596. },
  3597. "autoload": {
  3598. "psr-4": {
  3599. "League\\Flysystem\\": "src/"
  3600. }
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Frank de Jonge",
  3609. "email": "info@frenky.net"
  3610. }
  3611. ],
  3612. "description": "Filesystem abstraction: Many filesystems, one API.",
  3613. "keywords": [
  3614. "Cloud Files",
  3615. "WebDAV",
  3616. "abstraction",
  3617. "aws",
  3618. "cloud",
  3619. "copy.com",
  3620. "dropbox",
  3621. "file systems",
  3622. "files",
  3623. "filesystem",
  3624. "filesystems",
  3625. "ftp",
  3626. "rackspace",
  3627. "remote",
  3628. "s3",
  3629. "sftp",
  3630. "storage"
  3631. ],
  3632. "time": "2020-08-23T07:39:11+00:00"
  3633. },
  3634. {
  3635. "name": "league/fractal",
  3636. "version": "0.17.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/thephpleague/fractal.git",
  3640. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3645. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3646. "shasum": "",
  3647. "mirrors": [
  3648. {
  3649. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3650. "preferred": true
  3651. }
  3652. ]
  3653. },
  3654. "require": {
  3655. "php": ">=5.4"
  3656. },
  3657. "require-dev": {
  3658. "doctrine/orm": "^2.5",
  3659. "illuminate/contracts": "~5.0",
  3660. "mockery/mockery": "~0.9",
  3661. "pagerfanta/pagerfanta": "~1.0.0",
  3662. "phpunit/phpunit": "~4.0",
  3663. "squizlabs/php_codesniffer": "~1.5",
  3664. "zendframework/zend-paginator": "~2.3"
  3665. },
  3666. "suggest": {
  3667. "illuminate/pagination": "The Illuminate Pagination component.",
  3668. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3669. "zendframework/zend-paginator": "Zend Framework Paginator"
  3670. },
  3671. "type": "library",
  3672. "extra": {
  3673. "branch-alias": {
  3674. "dev-master": "0.13-dev"
  3675. }
  3676. },
  3677. "autoload": {
  3678. "psr-4": {
  3679. "League\\Fractal\\": "src"
  3680. }
  3681. },
  3682. "notification-url": "https://packagist.org/downloads/",
  3683. "license": [
  3684. "MIT"
  3685. ],
  3686. "authors": [
  3687. {
  3688. "name": "Phil Sturgeon",
  3689. "email": "me@philsturgeon.uk",
  3690. "homepage": "http://philsturgeon.uk/",
  3691. "role": "Developer"
  3692. }
  3693. ],
  3694. "description": "Handle the output of complex data structures ready for API output.",
  3695. "homepage": "http://fractal.thephpleague.com/",
  3696. "keywords": [
  3697. "api",
  3698. "json",
  3699. "league",
  3700. "rest"
  3701. ],
  3702. "time": "2017-06-12T11:04:56+00:00"
  3703. },
  3704. {
  3705. "name": "league/mime-type-detection",
  3706. "version": "1.7.0",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3710. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3715. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3716. "shasum": "",
  3717. "mirrors": [
  3718. {
  3719. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3720. "preferred": true
  3721. }
  3722. ]
  3723. },
  3724. "require": {
  3725. "ext-fileinfo": "*",
  3726. "php": "^7.2 || ^8.0"
  3727. },
  3728. "require-dev": {
  3729. "friendsofphp/php-cs-fixer": "^2.18",
  3730. "phpstan/phpstan": "^0.12.68",
  3731. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3732. },
  3733. "type": "library",
  3734. "autoload": {
  3735. "psr-4": {
  3736. "League\\MimeTypeDetection\\": "src"
  3737. }
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "authors": [
  3744. {
  3745. "name": "Frank de Jonge",
  3746. "email": "info@frankdejonge.nl"
  3747. }
  3748. ],
  3749. "description": "Mime-type detection for Flysystem",
  3750. "time": "2021-01-18T20:58:21+00:00"
  3751. },
  3752. {
  3753. "name": "mobiledetect/mobiledetectlib",
  3754. "version": "2.8.37",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3758. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3763. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3764. "shasum": "",
  3765. "mirrors": [
  3766. {
  3767. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3768. "preferred": true
  3769. }
  3770. ]
  3771. },
  3772. "require": {
  3773. "php": ">=5.0.0"
  3774. },
  3775. "require-dev": {
  3776. "phpunit/phpunit": "~4.8.35||~5.7"
  3777. },
  3778. "type": "library",
  3779. "autoload": {
  3780. "classmap": [
  3781. "Mobile_Detect.php"
  3782. ],
  3783. "psr-0": {
  3784. "Detection": "namespaced/"
  3785. }
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "MIT"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Serban Ghita",
  3794. "email": "serbanghita@gmail.com",
  3795. "homepage": "http://mobiledetect.net",
  3796. "role": "Developer"
  3797. }
  3798. ],
  3799. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3800. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3801. "keywords": [
  3802. "detect mobile devices",
  3803. "mobile",
  3804. "mobile detect",
  3805. "mobile detector",
  3806. "php mobile detect"
  3807. ],
  3808. "time": "2021-02-19T21:22:57+00:00"
  3809. },
  3810. {
  3811. "name": "monolog/monolog",
  3812. "version": "2.2.0",
  3813. "source": {
  3814. "type": "git",
  3815. "url": "https://github.com/Seldaek/monolog.git",
  3816. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3817. },
  3818. "dist": {
  3819. "type": "zip",
  3820. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3821. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3822. "shasum": "",
  3823. "mirrors": [
  3824. {
  3825. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3826. "preferred": true
  3827. }
  3828. ]
  3829. },
  3830. "require": {
  3831. "php": ">=7.2",
  3832. "psr/log": "^1.0.1"
  3833. },
  3834. "provide": {
  3835. "psr/log-implementation": "1.0.0"
  3836. },
  3837. "require-dev": {
  3838. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3839. "doctrine/couchdb": "~1.0@dev",
  3840. "elasticsearch/elasticsearch": "^7",
  3841. "graylog2/gelf-php": "^1.4.2",
  3842. "mongodb/mongodb": "^1.8",
  3843. "php-amqplib/php-amqplib": "~2.4",
  3844. "php-console/php-console": "^3.1.3",
  3845. "phpspec/prophecy": "^1.6.1",
  3846. "phpstan/phpstan": "^0.12.59",
  3847. "phpunit/phpunit": "^8.5",
  3848. "predis/predis": "^1.1",
  3849. "rollbar/rollbar": "^1.3",
  3850. "ruflin/elastica": ">=0.90 <7.0.1",
  3851. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3852. },
  3853. "suggest": {
  3854. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3855. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3856. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3857. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3858. "ext-mbstring": "Allow to work properly with unicode symbols",
  3859. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3860. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3861. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3862. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3863. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3864. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3865. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3866. },
  3867. "type": "library",
  3868. "extra": {
  3869. "branch-alias": {
  3870. "dev-main": "2.x-dev"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Monolog\\": "src/Monolog"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Jordi Boggiano",
  3885. "email": "j.boggiano@seld.be",
  3886. "homepage": "https://seld.be"
  3887. }
  3888. ],
  3889. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3890. "homepage": "https://github.com/Seldaek/monolog",
  3891. "keywords": [
  3892. "log",
  3893. "logging",
  3894. "psr-3"
  3895. ],
  3896. "time": "2020-12-14T13:15:25+00:00"
  3897. },
  3898. {
  3899. "name": "myclabs/php-enum",
  3900. "version": "1.8.0",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://github.com/myclabs/php-enum.git",
  3904. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3909. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3910. "shasum": "",
  3911. "mirrors": [
  3912. {
  3913. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3914. "preferred": true
  3915. }
  3916. ]
  3917. },
  3918. "require": {
  3919. "ext-json": "*",
  3920. "php": "^7.3 || ^8.0"
  3921. },
  3922. "require-dev": {
  3923. "phpunit/phpunit": "^9.5",
  3924. "squizlabs/php_codesniffer": "1.*",
  3925. "vimeo/psalm": "^4.5.1"
  3926. },
  3927. "type": "library",
  3928. "autoload": {
  3929. "psr-4": {
  3930. "MyCLabs\\Enum\\": "src/"
  3931. }
  3932. },
  3933. "notification-url": "https://packagist.org/downloads/",
  3934. "license": [
  3935. "MIT"
  3936. ],
  3937. "authors": [
  3938. {
  3939. "name": "PHP Enum contributors",
  3940. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3941. }
  3942. ],
  3943. "description": "PHP Enum implementation",
  3944. "homepage": "http://github.com/myclabs/php-enum",
  3945. "keywords": [
  3946. "enum"
  3947. ],
  3948. "time": "2021-02-15T16:11:48+00:00"
  3949. },
  3950. {
  3951. "name": "namshi/jose",
  3952. "version": "7.2.3",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/namshi/jose.git",
  3956. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3961. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3962. "shasum": "",
  3963. "mirrors": [
  3964. {
  3965. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3966. "preferred": true
  3967. }
  3968. ]
  3969. },
  3970. "require": {
  3971. "ext-date": "*",
  3972. "ext-hash": "*",
  3973. "ext-json": "*",
  3974. "ext-pcre": "*",
  3975. "ext-spl": "*",
  3976. "php": ">=5.5",
  3977. "symfony/polyfill-php56": "^1.0"
  3978. },
  3979. "require-dev": {
  3980. "phpseclib/phpseclib": "^2.0",
  3981. "phpunit/phpunit": "^4.5|^5.0",
  3982. "satooshi/php-coveralls": "^1.0"
  3983. },
  3984. "suggest": {
  3985. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3986. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3987. },
  3988. "type": "library",
  3989. "autoload": {
  3990. "psr-4": {
  3991. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3992. }
  3993. },
  3994. "notification-url": "https://packagist.org/downloads/",
  3995. "license": [
  3996. "MIT"
  3997. ],
  3998. "authors": [
  3999. {
  4000. "name": "Alessandro Nadalin",
  4001. "email": "alessandro.nadalin@gmail.com"
  4002. },
  4003. {
  4004. "name": "Alessandro Cinelli (cirpo)",
  4005. "email": "alessandro.cinelli@gmail.com"
  4006. }
  4007. ],
  4008. "description": "JSON Object Signing and Encryption library for PHP.",
  4009. "keywords": [
  4010. "JSON Web Signature",
  4011. "JSON Web Token",
  4012. "JWS",
  4013. "json",
  4014. "jwt",
  4015. "token"
  4016. ],
  4017. "time": "2016-12-05T07:27:31+00:00"
  4018. },
  4019. {
  4020. "name": "nesbot/carbon",
  4021. "version": "2.46.0",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/briannesbitt/Carbon.git",
  4025. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  4030. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  4031. "shasum": "",
  4032. "mirrors": [
  4033. {
  4034. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4035. "preferred": true
  4036. }
  4037. ]
  4038. },
  4039. "require": {
  4040. "ext-json": "*",
  4041. "php": "^7.1.8 || ^8.0",
  4042. "symfony/polyfill-mbstring": "^1.0",
  4043. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  4044. },
  4045. "require-dev": {
  4046. "doctrine/orm": "^2.7",
  4047. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  4048. "kylekatarnls/multi-tester": "^2.0",
  4049. "phpmd/phpmd": "^2.9",
  4050. "phpstan/extension-installer": "^1.0",
  4051. "phpstan/phpstan": "^0.12.54",
  4052. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  4053. "squizlabs/php_codesniffer": "^3.4"
  4054. },
  4055. "bin": [
  4056. "bin/carbon"
  4057. ],
  4058. "type": "library",
  4059. "extra": {
  4060. "branch-alias": {
  4061. "dev-master": "2.x-dev",
  4062. "dev-3.x": "3.x-dev"
  4063. },
  4064. "laravel": {
  4065. "providers": [
  4066. "Carbon\\Laravel\\ServiceProvider"
  4067. ]
  4068. },
  4069. "phpstan": {
  4070. "includes": [
  4071. "extension.neon"
  4072. ]
  4073. }
  4074. },
  4075. "autoload": {
  4076. "psr-4": {
  4077. "Carbon\\": "src/Carbon/"
  4078. }
  4079. },
  4080. "notification-url": "https://packagist.org/downloads/",
  4081. "license": [
  4082. "MIT"
  4083. ],
  4084. "authors": [
  4085. {
  4086. "name": "Brian Nesbitt",
  4087. "email": "brian@nesbot.com",
  4088. "homepage": "http://nesbot.com"
  4089. },
  4090. {
  4091. "name": "kylekatarnls",
  4092. "homepage": "http://github.com/kylekatarnls"
  4093. }
  4094. ],
  4095. "description": "An API extension for DateTime that supports 281 different languages.",
  4096. "homepage": "http://carbon.nesbot.com",
  4097. "keywords": [
  4098. "date",
  4099. "datetime",
  4100. "time"
  4101. ],
  4102. "time": "2021-02-24T17:30:44+00:00"
  4103. },
  4104. {
  4105. "name": "nikic/fast-route",
  4106. "version": "v1.3.0",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/nikic/FastRoute.git",
  4110. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4115. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4116. "shasum": "",
  4117. "mirrors": [
  4118. {
  4119. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4120. "preferred": true
  4121. }
  4122. ]
  4123. },
  4124. "require": {
  4125. "php": ">=5.4.0"
  4126. },
  4127. "require-dev": {
  4128. "phpunit/phpunit": "^4.8.35|~5.7"
  4129. },
  4130. "type": "library",
  4131. "autoload": {
  4132. "psr-4": {
  4133. "FastRoute\\": "src/"
  4134. },
  4135. "files": [
  4136. "src/functions.php"
  4137. ]
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "BSD-3-Clause"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Nikita Popov",
  4146. "email": "nikic@php.net"
  4147. }
  4148. ],
  4149. "description": "Fast request router for PHP",
  4150. "keywords": [
  4151. "router",
  4152. "routing"
  4153. ],
  4154. "time": "2018-02-13T20:26:39+00:00"
  4155. },
  4156. {
  4157. "name": "opis/closure",
  4158. "version": "3.6.2",
  4159. "source": {
  4160. "type": "git",
  4161. "url": "https://github.com/opis/closure.git",
  4162. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  4163. },
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4167. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4168. "shasum": "",
  4169. "mirrors": [
  4170. {
  4171. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4172. "preferred": true
  4173. }
  4174. ]
  4175. },
  4176. "require": {
  4177. "php": "^5.4 || ^7.0 || ^8.0"
  4178. },
  4179. "require-dev": {
  4180. "jeremeamia/superclosure": "^2.0",
  4181. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "3.6.x-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "psr-4": {
  4191. "Opis\\Closure\\": "src/"
  4192. },
  4193. "files": [
  4194. "functions.php"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Marius Sarca",
  4204. "email": "marius.sarca@gmail.com"
  4205. },
  4206. {
  4207. "name": "Sorin Sarca",
  4208. "email": "sarca_sorin@hotmail.com"
  4209. }
  4210. ],
  4211. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4212. "homepage": "https://opis.io/closure",
  4213. "keywords": [
  4214. "anonymous functions",
  4215. "closure",
  4216. "function",
  4217. "serializable",
  4218. "serialization",
  4219. "serialize"
  4220. ],
  4221. "time": "2021-04-09T13:42:10+00:00"
  4222. },
  4223. {
  4224. "name": "overtrue/easy-sms",
  4225. "version": "1.3.2",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/overtrue/easy-sms.git",
  4229. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  4234. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  4235. "shasum": "",
  4236. "mirrors": [
  4237. {
  4238. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4239. "preferred": true
  4240. }
  4241. ]
  4242. },
  4243. "require": {
  4244. "ext-json": "*",
  4245. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4246. "php": ">=5.6"
  4247. },
  4248. "require-dev": {
  4249. "mockery/mockery": "1.3.1",
  4250. "phpunit/phpunit": "^5.7 || ^7.5"
  4251. },
  4252. "type": "library",
  4253. "autoload": {
  4254. "psr-4": {
  4255. "Overtrue\\EasySms\\": "src"
  4256. }
  4257. },
  4258. "notification-url": "https://packagist.org/downloads/",
  4259. "license": [
  4260. "MIT"
  4261. ],
  4262. "authors": [
  4263. {
  4264. "name": "overtrue",
  4265. "email": "i@overtrue.me"
  4266. }
  4267. ],
  4268. "description": "The easiest way to send short message.",
  4269. "time": "2021-01-22T06:52:59+00:00"
  4270. },
  4271. {
  4272. "name": "overtrue/laravel-wechat",
  4273. "version": "5.1.0",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://github.com/overtrue/laravel-wechat.git",
  4277. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4282. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4283. "shasum": "",
  4284. "mirrors": [
  4285. {
  4286. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4287. "preferred": true
  4288. }
  4289. ]
  4290. },
  4291. "require": {
  4292. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4293. "overtrue/wechat": "^4.0"
  4294. },
  4295. "require-dev": {
  4296. "friendsofphp/php-cs-fixer": "^2.16",
  4297. "laravel/framework": "^8.5"
  4298. },
  4299. "type": "library",
  4300. "extra": {
  4301. "laravel": {
  4302. "providers": [
  4303. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4304. ],
  4305. "aliases": {
  4306. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4307. }
  4308. }
  4309. },
  4310. "autoload": {
  4311. "psr-4": {
  4312. "Overtrue\\LaravelWeChat\\": "src/"
  4313. }
  4314. },
  4315. "notification-url": "https://packagist.org/downloads/",
  4316. "license": [
  4317. "MIT"
  4318. ],
  4319. "authors": [
  4320. {
  4321. "name": "overtrue",
  4322. "email": "anzhengchao@gmail.com"
  4323. }
  4324. ],
  4325. "description": "微信 SDK for Laravel",
  4326. "keywords": [
  4327. "laravel",
  4328. "sdk",
  4329. "wechat",
  4330. "weixin"
  4331. ],
  4332. "time": "2020-09-27T08:32:30+00:00"
  4333. },
  4334. {
  4335. "name": "overtrue/socialite",
  4336. "version": "2.0.23",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/overtrue/socialite.git",
  4340. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/overtrue/socialite/zipball/0bc60597b589592243f074a4d9016aabd2e9cfb2",
  4345. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2",
  4346. "shasum": "",
  4347. "mirrors": [
  4348. {
  4349. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4350. "preferred": true
  4351. }
  4352. ]
  4353. },
  4354. "require": {
  4355. "ext-json": "*",
  4356. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4357. "php": ">=5.6",
  4358. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4359. },
  4360. "require-dev": {
  4361. "mockery/mockery": "~1.2",
  4362. "phpunit/phpunit": "~6"
  4363. },
  4364. "type": "library",
  4365. "autoload": {
  4366. "psr-4": {
  4367. "Overtrue\\Socialite\\": "src/"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "overtrue",
  4377. "email": "anzhengchao@gmail.com"
  4378. }
  4379. ],
  4380. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  4381. "keywords": [
  4382. "login",
  4383. "oauth",
  4384. "qq",
  4385. "social",
  4386. "wechat",
  4387. "weibo"
  4388. ],
  4389. "time": "2020-12-14T03:30:08+00:00"
  4390. },
  4391. {
  4392. "name": "overtrue/wechat",
  4393. "version": "4.4.0",
  4394. "source": {
  4395. "type": "git",
  4396. "url": "https://github.com/w7corp/easywechat.git",
  4397. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6"
  4398. },
  4399. "dist": {
  4400. "type": "zip",
  4401. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/20bdd3fe8056ee9297692caf53bd131be8079ee6",
  4402. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6",
  4403. "shasum": "",
  4404. "mirrors": [
  4405. {
  4406. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4407. "preferred": true
  4408. }
  4409. ]
  4410. },
  4411. "require": {
  4412. "easywechat-composer/easywechat-composer": "^1.1",
  4413. "ext-fileinfo": "*",
  4414. "ext-openssl": "*",
  4415. "ext-simplexml": "*",
  4416. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4417. "monolog/monolog": "^1.22 || ^2.0",
  4418. "overtrue/socialite": "~2.0",
  4419. "php": ">=7.2",
  4420. "pimple/pimple": "^3.0",
  4421. "psr/simple-cache": "^1.0",
  4422. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  4423. "symfony/event-dispatcher": "^4.3 || ^5.0",
  4424. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  4425. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  4426. },
  4427. "require-dev": {
  4428. "friendsofphp/php-cs-fixer": "^2.15",
  4429. "mikey179/vfsstream": "^1.6",
  4430. "mockery/mockery": "^1.2.3",
  4431. "phpstan/phpstan": "^0.12.0",
  4432. "phpunit/phpunit": "^7.5"
  4433. },
  4434. "type": "library",
  4435. "autoload": {
  4436. "psr-4": {
  4437. "EasyWeChat\\": "src/"
  4438. },
  4439. "files": [
  4440. "src/Kernel/Support/Helpers.php",
  4441. "src/Kernel/Helpers.php"
  4442. ]
  4443. },
  4444. "notification-url": "https://packagist.org/downloads/",
  4445. "license": [
  4446. "MIT"
  4447. ],
  4448. "authors": [
  4449. {
  4450. "name": "overtrue",
  4451. "email": "anzhengchao@gmail.com"
  4452. }
  4453. ],
  4454. "description": "微信SDK",
  4455. "keywords": [
  4456. "easywechat",
  4457. "sdk",
  4458. "wechat",
  4459. "weixin",
  4460. "weixin-sdk"
  4461. ],
  4462. "time": "2020-12-30T06:39:40+00:00"
  4463. },
  4464. {
  4465. "name": "phpdocumentor/reflection-common",
  4466. "version": "2.2.0",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4470. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4475. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4476. "shasum": "",
  4477. "mirrors": [
  4478. {
  4479. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4480. "preferred": true
  4481. }
  4482. ]
  4483. },
  4484. "require": {
  4485. "php": "^7.2 || ^8.0"
  4486. },
  4487. "type": "library",
  4488. "extra": {
  4489. "branch-alias": {
  4490. "dev-2.x": "2.x-dev"
  4491. }
  4492. },
  4493. "autoload": {
  4494. "psr-4": {
  4495. "phpDocumentor\\Reflection\\": "src/"
  4496. }
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Jaap van Otterdijk",
  4505. "email": "opensource@ijaap.nl"
  4506. }
  4507. ],
  4508. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4509. "homepage": "http://www.phpdoc.org",
  4510. "keywords": [
  4511. "FQSEN",
  4512. "phpDocumentor",
  4513. "phpdoc",
  4514. "reflection",
  4515. "static analysis"
  4516. ],
  4517. "time": "2020-06-27T09:03:43+00:00"
  4518. },
  4519. {
  4520. "name": "phpdocumentor/reflection-docblock",
  4521. "version": "4.3.4",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4525. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4530. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4531. "shasum": "",
  4532. "mirrors": [
  4533. {
  4534. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4535. "preferred": true
  4536. }
  4537. ]
  4538. },
  4539. "require": {
  4540. "php": "^7.0",
  4541. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  4542. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  4543. "webmozart/assert": "^1.0"
  4544. },
  4545. "require-dev": {
  4546. "doctrine/instantiator": "^1.0.5",
  4547. "mockery/mockery": "^1.0",
  4548. "phpdocumentor/type-resolver": "0.4.*",
  4549. "phpunit/phpunit": "^6.4"
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "4.x-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "psr-4": {
  4559. "phpDocumentor\\Reflection\\": [
  4560. "src/"
  4561. ]
  4562. }
  4563. },
  4564. "notification-url": "https://packagist.org/downloads/",
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "authors": [
  4569. {
  4570. "name": "Mike van Riel",
  4571. "email": "me@mikevanriel.com"
  4572. }
  4573. ],
  4574. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4575. "time": "2019-12-28T18:55:12+00:00"
  4576. },
  4577. {
  4578. "name": "phpdocumentor/type-resolver",
  4579. "version": "1.4.0",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4583. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4588. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4589. "shasum": "",
  4590. "mirrors": [
  4591. {
  4592. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4593. "preferred": true
  4594. }
  4595. ]
  4596. },
  4597. "require": {
  4598. "php": "^7.2 || ^8.0",
  4599. "phpdocumentor/reflection-common": "^2.0"
  4600. },
  4601. "require-dev": {
  4602. "ext-tokenizer": "*"
  4603. },
  4604. "type": "library",
  4605. "extra": {
  4606. "branch-alias": {
  4607. "dev-1.x": "1.x-dev"
  4608. }
  4609. },
  4610. "autoload": {
  4611. "psr-4": {
  4612. "phpDocumentor\\Reflection\\": "src"
  4613. }
  4614. },
  4615. "notification-url": "https://packagist.org/downloads/",
  4616. "license": [
  4617. "MIT"
  4618. ],
  4619. "authors": [
  4620. {
  4621. "name": "Mike van Riel",
  4622. "email": "me@mikevanriel.com"
  4623. }
  4624. ],
  4625. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4626. "time": "2020-09-17T18:55:26+00:00"
  4627. },
  4628. {
  4629. "name": "phpoption/phpoption",
  4630. "version": "1.7.5",
  4631. "source": {
  4632. "type": "git",
  4633. "url": "https://github.com/schmittjoh/php-option.git",
  4634. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4635. },
  4636. "dist": {
  4637. "type": "zip",
  4638. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4639. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4640. "shasum": "",
  4641. "mirrors": [
  4642. {
  4643. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4644. "preferred": true
  4645. }
  4646. ]
  4647. },
  4648. "require": {
  4649. "php": "^5.5.9 || ^7.0 || ^8.0"
  4650. },
  4651. "require-dev": {
  4652. "bamarni/composer-bin-plugin": "^1.4.1",
  4653. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  4654. },
  4655. "type": "library",
  4656. "extra": {
  4657. "branch-alias": {
  4658. "dev-master": "1.7-dev"
  4659. }
  4660. },
  4661. "autoload": {
  4662. "psr-4": {
  4663. "PhpOption\\": "src/PhpOption/"
  4664. }
  4665. },
  4666. "notification-url": "https://packagist.org/downloads/",
  4667. "license": [
  4668. "Apache-2.0"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "Johannes M. Schmitt",
  4673. "email": "schmittjoh@gmail.com"
  4674. },
  4675. {
  4676. "name": "Graham Campbell",
  4677. "email": "graham@alt-three.com"
  4678. }
  4679. ],
  4680. "description": "Option Type for PHP",
  4681. "keywords": [
  4682. "language",
  4683. "option",
  4684. "php",
  4685. "type"
  4686. ],
  4687. "time": "2020-07-20T17:29:33+00:00"
  4688. },
  4689. {
  4690. "name": "pimple/pimple",
  4691. "version": "v3.4.0",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/silexphp/Pimple.git",
  4695. "reference": "86406047271859ffc13424a048541f4531f53601"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  4700. "reference": "86406047271859ffc13424a048541f4531f53601",
  4701. "shasum": "",
  4702. "mirrors": [
  4703. {
  4704. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4705. "preferred": true
  4706. }
  4707. ]
  4708. },
  4709. "require": {
  4710. "php": ">=7.2.5",
  4711. "psr/container": "^1.1"
  4712. },
  4713. "require-dev": {
  4714. "symfony/phpunit-bridge": "^5.0"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "branch-alias": {
  4719. "dev-master": "3.4.x-dev"
  4720. }
  4721. },
  4722. "autoload": {
  4723. "psr-0": {
  4724. "Pimple": "src/"
  4725. }
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Fabien Potencier",
  4734. "email": "fabien@symfony.com"
  4735. }
  4736. ],
  4737. "description": "Pimple, a simple Dependency Injection Container",
  4738. "homepage": "https://pimple.symfony.com",
  4739. "keywords": [
  4740. "container",
  4741. "dependency injection"
  4742. ],
  4743. "time": "2021-03-06T08:28:00+00:00"
  4744. },
  4745. {
  4746. "name": "psr/cache",
  4747. "version": "1.0.1",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://github.com/php-fig/cache.git",
  4751. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4756. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4757. "shasum": "",
  4758. "mirrors": [
  4759. {
  4760. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4761. "preferred": true
  4762. }
  4763. ]
  4764. },
  4765. "require": {
  4766. "php": ">=5.3.0"
  4767. },
  4768. "type": "library",
  4769. "extra": {
  4770. "branch-alias": {
  4771. "dev-master": "1.0.x-dev"
  4772. }
  4773. },
  4774. "autoload": {
  4775. "psr-4": {
  4776. "Psr\\Cache\\": "src/"
  4777. }
  4778. },
  4779. "notification-url": "https://packagist.org/downloads/",
  4780. "license": [
  4781. "MIT"
  4782. ],
  4783. "authors": [
  4784. {
  4785. "name": "PHP-FIG",
  4786. "homepage": "http://www.php-fig.org/"
  4787. }
  4788. ],
  4789. "description": "Common interface for caching libraries",
  4790. "keywords": [
  4791. "cache",
  4792. "psr",
  4793. "psr-6"
  4794. ],
  4795. "time": "2016-08-06T20:24:11+00:00"
  4796. },
  4797. {
  4798. "name": "psr/container",
  4799. "version": "1.1.1",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/php-fig/container.git",
  4803. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4808. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4809. "shasum": "",
  4810. "mirrors": [
  4811. {
  4812. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4813. "preferred": true
  4814. }
  4815. ]
  4816. },
  4817. "require": {
  4818. "php": ">=7.2.0"
  4819. },
  4820. "type": "library",
  4821. "autoload": {
  4822. "psr-4": {
  4823. "Psr\\Container\\": "src/"
  4824. }
  4825. },
  4826. "notification-url": "https://packagist.org/downloads/",
  4827. "license": [
  4828. "MIT"
  4829. ],
  4830. "authors": [
  4831. {
  4832. "name": "PHP-FIG",
  4833. "homepage": "https://www.php-fig.org/"
  4834. }
  4835. ],
  4836. "description": "Common Container Interface (PHP FIG PSR-11)",
  4837. "homepage": "https://github.com/php-fig/container",
  4838. "keywords": [
  4839. "PSR-11",
  4840. "container",
  4841. "container-interface",
  4842. "container-interop",
  4843. "psr"
  4844. ],
  4845. "time": "2021-03-05T17:36:06+00:00"
  4846. },
  4847. {
  4848. "name": "psr/http-message",
  4849. "version": "1.0.1",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/php-fig/http-message.git",
  4853. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4858. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4859. "shasum": "",
  4860. "mirrors": [
  4861. {
  4862. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4863. "preferred": true
  4864. }
  4865. ]
  4866. },
  4867. "require": {
  4868. "php": ">=5.3.0"
  4869. },
  4870. "type": "library",
  4871. "extra": {
  4872. "branch-alias": {
  4873. "dev-master": "1.0.x-dev"
  4874. }
  4875. },
  4876. "autoload": {
  4877. "psr-4": {
  4878. "Psr\\Http\\Message\\": "src/"
  4879. }
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "PHP-FIG",
  4888. "homepage": "http://www.php-fig.org/"
  4889. }
  4890. ],
  4891. "description": "Common interface for HTTP messages",
  4892. "homepage": "https://github.com/php-fig/http-message",
  4893. "keywords": [
  4894. "http",
  4895. "http-message",
  4896. "psr",
  4897. "psr-7",
  4898. "request",
  4899. "response"
  4900. ],
  4901. "time": "2016-08-06T14:39:51+00:00"
  4902. },
  4903. {
  4904. "name": "psr/log",
  4905. "version": "1.1.3",
  4906. "source": {
  4907. "type": "git",
  4908. "url": "https://github.com/php-fig/log.git",
  4909. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4910. },
  4911. "dist": {
  4912. "type": "zip",
  4913. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4914. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4915. "shasum": "",
  4916. "mirrors": [
  4917. {
  4918. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4919. "preferred": true
  4920. }
  4921. ]
  4922. },
  4923. "require": {
  4924. "php": ">=5.3.0"
  4925. },
  4926. "type": "library",
  4927. "extra": {
  4928. "branch-alias": {
  4929. "dev-master": "1.1.x-dev"
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Psr\\Log\\": "Psr/Log/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "PHP-FIG",
  4944. "homepage": "http://www.php-fig.org/"
  4945. }
  4946. ],
  4947. "description": "Common interface for logging libraries",
  4948. "homepage": "https://github.com/php-fig/log",
  4949. "keywords": [
  4950. "log",
  4951. "psr",
  4952. "psr-3"
  4953. ],
  4954. "time": "2020-03-23T09:12:05+00:00"
  4955. },
  4956. {
  4957. "name": "psr/simple-cache",
  4958. "version": "1.0.1",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/php-fig/simple-cache.git",
  4962. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4967. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4968. "shasum": "",
  4969. "mirrors": [
  4970. {
  4971. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4972. "preferred": true
  4973. }
  4974. ]
  4975. },
  4976. "require": {
  4977. "php": ">=5.3.0"
  4978. },
  4979. "type": "library",
  4980. "extra": {
  4981. "branch-alias": {
  4982. "dev-master": "1.0.x-dev"
  4983. }
  4984. },
  4985. "autoload": {
  4986. "psr-4": {
  4987. "Psr\\SimpleCache\\": "src/"
  4988. }
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "MIT"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "PHP-FIG",
  4997. "homepage": "http://www.php-fig.org/"
  4998. }
  4999. ],
  5000. "description": "Common interfaces for simple caching",
  5001. "keywords": [
  5002. "cache",
  5003. "caching",
  5004. "psr",
  5005. "psr-16",
  5006. "simple-cache"
  5007. ],
  5008. "time": "2017-10-23T01:57:42+00:00"
  5009. },
  5010. {
  5011. "name": "ralouphie/getallheaders",
  5012. "version": "3.0.3",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/ralouphie/getallheaders.git",
  5016. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5021. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5022. "shasum": "",
  5023. "mirrors": [
  5024. {
  5025. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5026. "preferred": true
  5027. }
  5028. ]
  5029. },
  5030. "require": {
  5031. "php": ">=5.6"
  5032. },
  5033. "require-dev": {
  5034. "php-coveralls/php-coveralls": "^2.1",
  5035. "phpunit/phpunit": "^5 || ^6.5"
  5036. },
  5037. "type": "library",
  5038. "autoload": {
  5039. "files": [
  5040. "src/getallheaders.php"
  5041. ]
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Ralph Khattar",
  5050. "email": "ralph.khattar@gmail.com"
  5051. }
  5052. ],
  5053. "description": "A polyfill for getallheaders.",
  5054. "time": "2019-03-08T08:55:37+00:00"
  5055. },
  5056. {
  5057. "name": "react/promise",
  5058. "version": "v2.8.0",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/reactphp/promise.git",
  5062. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  5067. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  5068. "shasum": "",
  5069. "mirrors": [
  5070. {
  5071. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5072. "preferred": true
  5073. }
  5074. ]
  5075. },
  5076. "require": {
  5077. "php": ">=5.4.0"
  5078. },
  5079. "require-dev": {
  5080. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  5081. },
  5082. "type": "library",
  5083. "autoload": {
  5084. "psr-4": {
  5085. "React\\Promise\\": "src/"
  5086. },
  5087. "files": [
  5088. "src/functions_include.php"
  5089. ]
  5090. },
  5091. "notification-url": "https://packagist.org/downloads/",
  5092. "license": [
  5093. "MIT"
  5094. ],
  5095. "authors": [
  5096. {
  5097. "name": "Jan Sorgalla",
  5098. "email": "jsorgalla@gmail.com"
  5099. }
  5100. ],
  5101. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5102. "keywords": [
  5103. "promise",
  5104. "promises"
  5105. ],
  5106. "time": "2020-05-12T15:16:56+00:00"
  5107. },
  5108. {
  5109. "name": "seld/jsonlint",
  5110. "version": "1.8.3",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/Seldaek/jsonlint.git",
  5114. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  5119. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  5120. "shasum": "",
  5121. "mirrors": [
  5122. {
  5123. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5124. "preferred": true
  5125. }
  5126. ]
  5127. },
  5128. "require": {
  5129. "php": "^5.3 || ^7.0 || ^8.0"
  5130. },
  5131. "require-dev": {
  5132. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5133. },
  5134. "bin": [
  5135. "bin/jsonlint"
  5136. ],
  5137. "type": "library",
  5138. "autoload": {
  5139. "psr-4": {
  5140. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5141. }
  5142. },
  5143. "notification-url": "https://packagist.org/downloads/",
  5144. "license": [
  5145. "MIT"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Jordi Boggiano",
  5150. "email": "j.boggiano@seld.be",
  5151. "homepage": "http://seld.be"
  5152. }
  5153. ],
  5154. "description": "JSON Linter",
  5155. "keywords": [
  5156. "json",
  5157. "linter",
  5158. "parser",
  5159. "validator"
  5160. ],
  5161. "time": "2020-11-11T09:19:24+00:00"
  5162. },
  5163. {
  5164. "name": "seld/phar-utils",
  5165. "version": "1.1.1",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/Seldaek/phar-utils.git",
  5169. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5174. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5175. "shasum": "",
  5176. "mirrors": [
  5177. {
  5178. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5179. "preferred": true
  5180. }
  5181. ]
  5182. },
  5183. "require": {
  5184. "php": ">=5.3"
  5185. },
  5186. "type": "library",
  5187. "extra": {
  5188. "branch-alias": {
  5189. "dev-master": "1.x-dev"
  5190. }
  5191. },
  5192. "autoload": {
  5193. "psr-4": {
  5194. "Seld\\PharUtils\\": "src/"
  5195. }
  5196. },
  5197. "notification-url": "https://packagist.org/downloads/",
  5198. "license": [
  5199. "MIT"
  5200. ],
  5201. "authors": [
  5202. {
  5203. "name": "Jordi Boggiano",
  5204. "email": "j.boggiano@seld.be"
  5205. }
  5206. ],
  5207. "description": "PHAR file format utilities, for when PHP phars you up",
  5208. "keywords": [
  5209. "phar"
  5210. ],
  5211. "time": "2020-07-07T18:42:57+00:00"
  5212. },
  5213. {
  5214. "name": "symfony/cache",
  5215. "version": "v5.2.6",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/symfony/cache.git",
  5219. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/symfony/cache/zipball/093d69bb10c959553c8beb828b8d4ea250a247dd",
  5224. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd",
  5225. "shasum": "",
  5226. "mirrors": [
  5227. {
  5228. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5229. "preferred": true
  5230. }
  5231. ]
  5232. },
  5233. "require": {
  5234. "php": ">=7.2.5",
  5235. "psr/cache": "^1.0|^2.0",
  5236. "psr/log": "^1.1",
  5237. "symfony/cache-contracts": "^1.1.7|^2",
  5238. "symfony/polyfill-php80": "^1.15",
  5239. "symfony/service-contracts": "^1.1|^2",
  5240. "symfony/var-exporter": "^4.4|^5.0"
  5241. },
  5242. "conflict": {
  5243. "doctrine/dbal": "<2.10",
  5244. "symfony/dependency-injection": "<4.4",
  5245. "symfony/http-kernel": "<4.4",
  5246. "symfony/var-dumper": "<4.4"
  5247. },
  5248. "provide": {
  5249. "psr/cache-implementation": "1.0|2.0",
  5250. "psr/simple-cache-implementation": "1.0",
  5251. "symfony/cache-implementation": "1.0|2.0"
  5252. },
  5253. "require-dev": {
  5254. "cache/integration-tests": "dev-master",
  5255. "doctrine/cache": "^1.6",
  5256. "doctrine/dbal": "^2.10|^3.0",
  5257. "predis/predis": "^1.1",
  5258. "psr/simple-cache": "^1.0",
  5259. "symfony/config": "^4.4|^5.0",
  5260. "symfony/dependency-injection": "^4.4|^5.0",
  5261. "symfony/filesystem": "^4.4|^5.0",
  5262. "symfony/http-kernel": "^4.4|^5.0",
  5263. "symfony/messenger": "^4.4|^5.0",
  5264. "symfony/var-dumper": "^4.4|^5.0"
  5265. },
  5266. "type": "library",
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Symfony\\Component\\Cache\\": ""
  5270. },
  5271. "exclude-from-classmap": [
  5272. "/Tests/"
  5273. ]
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Nicolas Grekas",
  5282. "email": "p@tchwork.com"
  5283. },
  5284. {
  5285. "name": "Symfony Community",
  5286. "homepage": "https://symfony.com/contributors"
  5287. }
  5288. ],
  5289. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  5290. "homepage": "https://symfony.com",
  5291. "keywords": [
  5292. "caching",
  5293. "psr6"
  5294. ],
  5295. "time": "2021-03-16T09:10:13+00:00"
  5296. },
  5297. {
  5298. "name": "symfony/cache-contracts",
  5299. "version": "v2.4.0",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/symfony/cache-contracts.git",
  5303. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  5308. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  5309. "shasum": "",
  5310. "mirrors": [
  5311. {
  5312. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5313. "preferred": true
  5314. }
  5315. ]
  5316. },
  5317. "require": {
  5318. "php": ">=7.2.5",
  5319. "psr/cache": "^1.0|^2.0|^3.0"
  5320. },
  5321. "suggest": {
  5322. "symfony/cache-implementation": ""
  5323. },
  5324. "type": "library",
  5325. "extra": {
  5326. "branch-alias": {
  5327. "dev-main": "2.4-dev"
  5328. },
  5329. "thanks": {
  5330. "name": "symfony/contracts",
  5331. "url": "https://github.com/symfony/contracts"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "psr-4": {
  5336. "Symfony\\Contracts\\Cache\\": ""
  5337. }
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "MIT"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Nicolas Grekas",
  5346. "email": "p@tchwork.com"
  5347. },
  5348. {
  5349. "name": "Symfony Community",
  5350. "homepage": "https://symfony.com/contributors"
  5351. }
  5352. ],
  5353. "description": "Generic abstractions related to caching",
  5354. "homepage": "https://symfony.com",
  5355. "keywords": [
  5356. "abstractions",
  5357. "contracts",
  5358. "decoupling",
  5359. "interfaces",
  5360. "interoperability",
  5361. "standards"
  5362. ],
  5363. "time": "2021-03-23T23:28:01+00:00"
  5364. },
  5365. {
  5366. "name": "symfony/console",
  5367. "version": "v4.4.21",
  5368. "source": {
  5369. "type": "git",
  5370. "url": "https://github.com/symfony/console.git",
  5371. "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23"
  5372. },
  5373. "dist": {
  5374. "type": "zip",
  5375. "url": "https://api.github.com/repos/symfony/console/zipball/1ba4560dbbb9fcf5ae28b61f71f49c678086cf23",
  5376. "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23",
  5377. "shasum": "",
  5378. "mirrors": [
  5379. {
  5380. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5381. "preferred": true
  5382. }
  5383. ]
  5384. },
  5385. "require": {
  5386. "php": ">=7.1.3",
  5387. "symfony/polyfill-mbstring": "~1.0",
  5388. "symfony/polyfill-php73": "^1.8",
  5389. "symfony/polyfill-php80": "^1.15",
  5390. "symfony/service-contracts": "^1.1|^2"
  5391. },
  5392. "conflict": {
  5393. "symfony/dependency-injection": "<3.4",
  5394. "symfony/event-dispatcher": "<4.3|>=5",
  5395. "symfony/lock": "<4.4",
  5396. "symfony/process": "<3.3"
  5397. },
  5398. "provide": {
  5399. "psr/log-implementation": "1.0"
  5400. },
  5401. "require-dev": {
  5402. "psr/log": "~1.0",
  5403. "symfony/config": "^3.4|^4.0|^5.0",
  5404. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5405. "symfony/event-dispatcher": "^4.3",
  5406. "symfony/lock": "^4.4|^5.0",
  5407. "symfony/process": "^3.4|^4.0|^5.0",
  5408. "symfony/var-dumper": "^4.3|^5.0"
  5409. },
  5410. "suggest": {
  5411. "psr/log": "For using the console logger",
  5412. "symfony/event-dispatcher": "",
  5413. "symfony/lock": "",
  5414. "symfony/process": ""
  5415. },
  5416. "type": "library",
  5417. "autoload": {
  5418. "psr-4": {
  5419. "Symfony\\Component\\Console\\": ""
  5420. },
  5421. "exclude-from-classmap": [
  5422. "/Tests/"
  5423. ]
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "MIT"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "Fabien Potencier",
  5432. "email": "fabien@symfony.com"
  5433. },
  5434. {
  5435. "name": "Symfony Community",
  5436. "homepage": "https://symfony.com/contributors"
  5437. }
  5438. ],
  5439. "description": "Eases the creation of beautiful and testable command line interfaces",
  5440. "homepage": "https://symfony.com",
  5441. "time": "2021-03-26T09:23:24+00:00"
  5442. },
  5443. {
  5444. "name": "symfony/debug",
  5445. "version": "v4.4.20",
  5446. "source": {
  5447. "type": "git",
  5448. "url": "https://github.com/symfony/debug.git",
  5449. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16"
  5450. },
  5451. "dist": {
  5452. "type": "zip",
  5453. "url": "https://api.github.com/repos/symfony/debug/zipball/157bbec4fd773bae53c5483c50951a5530a2cc16",
  5454. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16",
  5455. "shasum": "",
  5456. "mirrors": [
  5457. {
  5458. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5459. "preferred": true
  5460. }
  5461. ]
  5462. },
  5463. "require": {
  5464. "php": ">=7.1.3",
  5465. "psr/log": "~1.0",
  5466. "symfony/polyfill-php80": "^1.15"
  5467. },
  5468. "conflict": {
  5469. "symfony/http-kernel": "<3.4"
  5470. },
  5471. "require-dev": {
  5472. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  5473. },
  5474. "type": "library",
  5475. "autoload": {
  5476. "psr-4": {
  5477. "Symfony\\Component\\Debug\\": ""
  5478. },
  5479. "exclude-from-classmap": [
  5480. "/Tests/"
  5481. ]
  5482. },
  5483. "notification-url": "https://packagist.org/downloads/",
  5484. "license": [
  5485. "MIT"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Fabien Potencier",
  5490. "email": "fabien@symfony.com"
  5491. },
  5492. {
  5493. "name": "Symfony Community",
  5494. "homepage": "https://symfony.com/contributors"
  5495. }
  5496. ],
  5497. "description": "Provides tools to ease debugging PHP code",
  5498. "homepage": "https://symfony.com",
  5499. "time": "2021-01-28T16:54:48+00:00"
  5500. },
  5501. {
  5502. "name": "symfony/deprecation-contracts",
  5503. "version": "v2.4.0",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/symfony/deprecation-contracts.git",
  5507. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5512. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5513. "shasum": "",
  5514. "mirrors": [
  5515. {
  5516. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5517. "preferred": true
  5518. }
  5519. ]
  5520. },
  5521. "require": {
  5522. "php": ">=7.1"
  5523. },
  5524. "type": "library",
  5525. "extra": {
  5526. "branch-alias": {
  5527. "dev-main": "2.4-dev"
  5528. },
  5529. "thanks": {
  5530. "name": "symfony/contracts",
  5531. "url": "https://github.com/symfony/contracts"
  5532. }
  5533. },
  5534. "autoload": {
  5535. "files": [
  5536. "function.php"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Nicolas Grekas",
  5546. "email": "p@tchwork.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "A generic function and convention to trigger deprecation notices",
  5554. "homepage": "https://symfony.com",
  5555. "time": "2021-03-23T23:28:01+00:00"
  5556. },
  5557. {
  5558. "name": "symfony/error-handler",
  5559. "version": "v4.4.21",
  5560. "source": {
  5561. "type": "git",
  5562. "url": "https://github.com/symfony/error-handler.git",
  5563. "reference": "48e81a375525872e788c2418430f54150d935810"
  5564. },
  5565. "dist": {
  5566. "type": "zip",
  5567. "url": "https://api.github.com/repos/symfony/error-handler/zipball/48e81a375525872e788c2418430f54150d935810",
  5568. "reference": "48e81a375525872e788c2418430f54150d935810",
  5569. "shasum": "",
  5570. "mirrors": [
  5571. {
  5572. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5573. "preferred": true
  5574. }
  5575. ]
  5576. },
  5577. "require": {
  5578. "php": ">=7.1.3",
  5579. "psr/log": "~1.0",
  5580. "symfony/debug": "^4.4.5",
  5581. "symfony/polyfill-php80": "^1.15",
  5582. "symfony/var-dumper": "^4.4|^5.0"
  5583. },
  5584. "require-dev": {
  5585. "symfony/http-kernel": "^4.4|^5.0",
  5586. "symfony/serializer": "^4.4|^5.0"
  5587. },
  5588. "type": "library",
  5589. "autoload": {
  5590. "psr-4": {
  5591. "Symfony\\Component\\ErrorHandler\\": ""
  5592. },
  5593. "exclude-from-classmap": [
  5594. "/Tests/"
  5595. ]
  5596. },
  5597. "notification-url": "https://packagist.org/downloads/",
  5598. "license": [
  5599. "MIT"
  5600. ],
  5601. "authors": [
  5602. {
  5603. "name": "Fabien Potencier",
  5604. "email": "fabien@symfony.com"
  5605. },
  5606. {
  5607. "name": "Symfony Community",
  5608. "homepage": "https://symfony.com/contributors"
  5609. }
  5610. ],
  5611. "description": "Provides tools to manage errors and ease debugging PHP code",
  5612. "homepage": "https://symfony.com",
  5613. "time": "2021-03-08T10:28:40+00:00"
  5614. },
  5615. {
  5616. "name": "symfony/event-dispatcher",
  5617. "version": "v4.4.20",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://github.com/symfony/event-dispatcher.git",
  5621. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  5626. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  5627. "shasum": "",
  5628. "mirrors": [
  5629. {
  5630. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5631. "preferred": true
  5632. }
  5633. ]
  5634. },
  5635. "require": {
  5636. "php": ">=7.1.3",
  5637. "symfony/event-dispatcher-contracts": "^1.1"
  5638. },
  5639. "conflict": {
  5640. "symfony/dependency-injection": "<3.4"
  5641. },
  5642. "provide": {
  5643. "psr/event-dispatcher-implementation": "1.0",
  5644. "symfony/event-dispatcher-implementation": "1.1"
  5645. },
  5646. "require-dev": {
  5647. "psr/log": "~1.0",
  5648. "symfony/config": "^3.4|^4.0|^5.0",
  5649. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5650. "symfony/error-handler": "~3.4|~4.4",
  5651. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5652. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5653. "symfony/service-contracts": "^1.1|^2",
  5654. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5655. },
  5656. "suggest": {
  5657. "symfony/dependency-injection": "",
  5658. "symfony/http-kernel": ""
  5659. },
  5660. "type": "library",
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Symfony\\Component\\EventDispatcher\\": ""
  5664. },
  5665. "exclude-from-classmap": [
  5666. "/Tests/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Fabien Potencier",
  5676. "email": "fabien@symfony.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5684. "homepage": "https://symfony.com",
  5685. "time": "2021-01-27T09:09:26+00:00"
  5686. },
  5687. {
  5688. "name": "symfony/event-dispatcher-contracts",
  5689. "version": "v1.1.9",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5693. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5698. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5699. "shasum": "",
  5700. "mirrors": [
  5701. {
  5702. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5703. "preferred": true
  5704. }
  5705. ]
  5706. },
  5707. "require": {
  5708. "php": ">=7.1.3"
  5709. },
  5710. "suggest": {
  5711. "psr/event-dispatcher": "",
  5712. "symfony/event-dispatcher-implementation": ""
  5713. },
  5714. "type": "library",
  5715. "extra": {
  5716. "branch-alias": {
  5717. "dev-master": "1.1-dev"
  5718. },
  5719. "thanks": {
  5720. "name": "symfony/contracts",
  5721. "url": "https://github.com/symfony/contracts"
  5722. }
  5723. },
  5724. "autoload": {
  5725. "psr-4": {
  5726. "Symfony\\Contracts\\EventDispatcher\\": ""
  5727. }
  5728. },
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "Nicolas Grekas",
  5736. "email": "p@tchwork.com"
  5737. },
  5738. {
  5739. "name": "Symfony Community",
  5740. "homepage": "https://symfony.com/contributors"
  5741. }
  5742. ],
  5743. "description": "Generic abstractions related to dispatching event",
  5744. "homepage": "https://symfony.com",
  5745. "keywords": [
  5746. "abstractions",
  5747. "contracts",
  5748. "decoupling",
  5749. "interfaces",
  5750. "interoperability",
  5751. "standards"
  5752. ],
  5753. "time": "2020-07-06T13:19:58+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/filesystem",
  5757. "version": "v5.2.6",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/filesystem.git",
  5761. "reference": "8c86a82f51658188119e62cff0a050a12d09836f"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
  5766. "reference": "8c86a82f51658188119e62cff0a050a12d09836f",
  5767. "shasum": "",
  5768. "mirrors": [
  5769. {
  5770. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5771. "preferred": true
  5772. }
  5773. ]
  5774. },
  5775. "require": {
  5776. "php": ">=7.2.5",
  5777. "symfony/polyfill-ctype": "~1.8"
  5778. },
  5779. "type": "library",
  5780. "autoload": {
  5781. "psr-4": {
  5782. "Symfony\\Component\\Filesystem\\": ""
  5783. },
  5784. "exclude-from-classmap": [
  5785. "/Tests/"
  5786. ]
  5787. },
  5788. "notification-url": "https://packagist.org/downloads/",
  5789. "license": [
  5790. "MIT"
  5791. ],
  5792. "authors": [
  5793. {
  5794. "name": "Fabien Potencier",
  5795. "email": "fabien@symfony.com"
  5796. },
  5797. {
  5798. "name": "Symfony Community",
  5799. "homepage": "https://symfony.com/contributors"
  5800. }
  5801. ],
  5802. "description": "Provides basic utilities for the filesystem",
  5803. "homepage": "https://symfony.com",
  5804. "time": "2021-03-28T14:30:26+00:00"
  5805. },
  5806. {
  5807. "name": "symfony/finder",
  5808. "version": "v4.4.20",
  5809. "source": {
  5810. "type": "git",
  5811. "url": "https://github.com/symfony/finder.git",
  5812. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  5813. },
  5814. "dist": {
  5815. "type": "zip",
  5816. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  5817. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  5818. "shasum": "",
  5819. "mirrors": [
  5820. {
  5821. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5822. "preferred": true
  5823. }
  5824. ]
  5825. },
  5826. "require": {
  5827. "php": ">=7.1.3"
  5828. },
  5829. "type": "library",
  5830. "autoload": {
  5831. "psr-4": {
  5832. "Symfony\\Component\\Finder\\": ""
  5833. },
  5834. "exclude-from-classmap": [
  5835. "/Tests/"
  5836. ]
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Fabien Potencier",
  5845. "email": "fabien@symfony.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Finds files and directories via an intuitive fluent interface",
  5853. "homepage": "https://symfony.com",
  5854. "time": "2021-02-12T10:48:09+00:00"
  5855. },
  5856. {
  5857. "name": "symfony/http-client-contracts",
  5858. "version": "v2.4.0",
  5859. "source": {
  5860. "type": "git",
  5861. "url": "https://github.com/symfony/http-client-contracts.git",
  5862. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5863. },
  5864. "dist": {
  5865. "type": "zip",
  5866. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5867. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5868. "shasum": "",
  5869. "mirrors": [
  5870. {
  5871. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5872. "preferred": true
  5873. }
  5874. ]
  5875. },
  5876. "require": {
  5877. "php": ">=7.2.5"
  5878. },
  5879. "suggest": {
  5880. "symfony/http-client-implementation": ""
  5881. },
  5882. "type": "library",
  5883. "extra": {
  5884. "branch-alias": {
  5885. "dev-main": "2.4-dev"
  5886. },
  5887. "thanks": {
  5888. "name": "symfony/contracts",
  5889. "url": "https://github.com/symfony/contracts"
  5890. }
  5891. },
  5892. "autoload": {
  5893. "psr-4": {
  5894. "Symfony\\Contracts\\HttpClient\\": ""
  5895. }
  5896. },
  5897. "notification-url": "https://packagist.org/downloads/",
  5898. "license": [
  5899. "MIT"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "Nicolas Grekas",
  5904. "email": "p@tchwork.com"
  5905. },
  5906. {
  5907. "name": "Symfony Community",
  5908. "homepage": "https://symfony.com/contributors"
  5909. }
  5910. ],
  5911. "description": "Generic abstractions related to HTTP clients",
  5912. "homepage": "https://symfony.com",
  5913. "keywords": [
  5914. "abstractions",
  5915. "contracts",
  5916. "decoupling",
  5917. "interfaces",
  5918. "interoperability",
  5919. "standards"
  5920. ],
  5921. "time": "2021-04-11T23:07:08+00:00"
  5922. },
  5923. {
  5924. "name": "symfony/http-foundation",
  5925. "version": "v4.4.20",
  5926. "source": {
  5927. "type": "git",
  5928. "url": "https://github.com/symfony/http-foundation.git",
  5929. "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a"
  5930. },
  5931. "dist": {
  5932. "type": "zip",
  5933. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/02d968647fe61b2f419a8dc70c468a9d30a48d3a",
  5934. "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a",
  5935. "shasum": "",
  5936. "mirrors": [
  5937. {
  5938. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5939. "preferred": true
  5940. }
  5941. ]
  5942. },
  5943. "require": {
  5944. "php": ">=7.1.3",
  5945. "symfony/mime": "^4.3|^5.0",
  5946. "symfony/polyfill-mbstring": "~1.1",
  5947. "symfony/polyfill-php80": "^1.15"
  5948. },
  5949. "require-dev": {
  5950. "predis/predis": "~1.0",
  5951. "symfony/expression-language": "^3.4|^4.0|^5.0"
  5952. },
  5953. "type": "library",
  5954. "autoload": {
  5955. "psr-4": {
  5956. "Symfony\\Component\\HttpFoundation\\": ""
  5957. },
  5958. "exclude-from-classmap": [
  5959. "/Tests/"
  5960. ]
  5961. },
  5962. "notification-url": "https://packagist.org/downloads/",
  5963. "license": [
  5964. "MIT"
  5965. ],
  5966. "authors": [
  5967. {
  5968. "name": "Fabien Potencier",
  5969. "email": "fabien@symfony.com"
  5970. },
  5971. {
  5972. "name": "Symfony Community",
  5973. "homepage": "https://symfony.com/contributors"
  5974. }
  5975. ],
  5976. "description": "Defines an object-oriented layer for the HTTP specification",
  5977. "homepage": "https://symfony.com",
  5978. "time": "2021-02-25T17:11:33+00:00"
  5979. },
  5980. {
  5981. "name": "symfony/http-kernel",
  5982. "version": "v4.4.21",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/symfony/http-kernel.git",
  5986. "reference": "0248214120d00c5f44f1cd5d9ad65f0b38459333"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/0248214120d00c5f44f1cd5d9ad65f0b38459333",
  5991. "reference": "0248214120d00c5f44f1cd5d9ad65f0b38459333",
  5992. "shasum": "",
  5993. "mirrors": [
  5994. {
  5995. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5996. "preferred": true
  5997. }
  5998. ]
  5999. },
  6000. "require": {
  6001. "php": ">=7.1.3",
  6002. "psr/log": "~1.0",
  6003. "symfony/error-handler": "^4.4",
  6004. "symfony/event-dispatcher": "^4.4",
  6005. "symfony/http-client-contracts": "^1.1|^2",
  6006. "symfony/http-foundation": "^4.4|^5.0",
  6007. "symfony/polyfill-ctype": "^1.8",
  6008. "symfony/polyfill-php73": "^1.9",
  6009. "symfony/polyfill-php80": "^1.15"
  6010. },
  6011. "conflict": {
  6012. "symfony/browser-kit": "<4.3",
  6013. "symfony/config": "<3.4",
  6014. "symfony/console": ">=5",
  6015. "symfony/dependency-injection": "<4.3",
  6016. "symfony/translation": "<4.2",
  6017. "twig/twig": "<1.43|<2.13,>=2"
  6018. },
  6019. "provide": {
  6020. "psr/log-implementation": "1.0"
  6021. },
  6022. "require-dev": {
  6023. "psr/cache": "^1.0|^2.0|^3.0",
  6024. "symfony/browser-kit": "^4.3|^5.0",
  6025. "symfony/config": "^3.4|^4.0|^5.0",
  6026. "symfony/console": "^3.4|^4.0",
  6027. "symfony/css-selector": "^3.4|^4.0|^5.0",
  6028. "symfony/dependency-injection": "^4.3|^5.0",
  6029. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  6030. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6031. "symfony/finder": "^3.4|^4.0|^5.0",
  6032. "symfony/process": "^3.4|^4.0|^5.0",
  6033. "symfony/routing": "^3.4|^4.0|^5.0",
  6034. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  6035. "symfony/templating": "^3.4|^4.0|^5.0",
  6036. "symfony/translation": "^4.2|^5.0",
  6037. "symfony/translation-contracts": "^1.1|^2",
  6038. "twig/twig": "^1.43|^2.13|^3.0.4"
  6039. },
  6040. "suggest": {
  6041. "symfony/browser-kit": "",
  6042. "symfony/config": "",
  6043. "symfony/console": "",
  6044. "symfony/dependency-injection": ""
  6045. },
  6046. "type": "library",
  6047. "autoload": {
  6048. "psr-4": {
  6049. "Symfony\\Component\\HttpKernel\\": ""
  6050. },
  6051. "exclude-from-classmap": [
  6052. "/Tests/"
  6053. ]
  6054. },
  6055. "notification-url": "https://packagist.org/downloads/",
  6056. "license": [
  6057. "MIT"
  6058. ],
  6059. "authors": [
  6060. {
  6061. "name": "Fabien Potencier",
  6062. "email": "fabien@symfony.com"
  6063. },
  6064. {
  6065. "name": "Symfony Community",
  6066. "homepage": "https://symfony.com/contributors"
  6067. }
  6068. ],
  6069. "description": "Provides a structured process for converting a Request into a Response",
  6070. "homepage": "https://symfony.com",
  6071. "time": "2021-03-29T05:11:04+00:00"
  6072. },
  6073. {
  6074. "name": "symfony/mime",
  6075. "version": "v5.2.6",
  6076. "source": {
  6077. "type": "git",
  6078. "url": "https://github.com/symfony/mime.git",
  6079. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b"
  6080. },
  6081. "dist": {
  6082. "type": "zip",
  6083. "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b",
  6084. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b",
  6085. "shasum": "",
  6086. "mirrors": [
  6087. {
  6088. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6089. "preferred": true
  6090. }
  6091. ]
  6092. },
  6093. "require": {
  6094. "php": ">=7.2.5",
  6095. "symfony/deprecation-contracts": "^2.1",
  6096. "symfony/polyfill-intl-idn": "^1.10",
  6097. "symfony/polyfill-mbstring": "^1.0",
  6098. "symfony/polyfill-php80": "^1.15"
  6099. },
  6100. "conflict": {
  6101. "egulias/email-validator": "~3.0.0",
  6102. "phpdocumentor/reflection-docblock": "<3.2.2",
  6103. "phpdocumentor/type-resolver": "<1.4.0",
  6104. "symfony/mailer": "<4.4"
  6105. },
  6106. "require-dev": {
  6107. "egulias/email-validator": "^2.1.10|^3.1",
  6108. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6109. "symfony/dependency-injection": "^4.4|^5.0",
  6110. "symfony/property-access": "^4.4|^5.1",
  6111. "symfony/property-info": "^4.4|^5.1",
  6112. "symfony/serializer": "^5.2"
  6113. },
  6114. "type": "library",
  6115. "autoload": {
  6116. "psr-4": {
  6117. "Symfony\\Component\\Mime\\": ""
  6118. },
  6119. "exclude-from-classmap": [
  6120. "/Tests/"
  6121. ]
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Fabien Potencier",
  6130. "email": "fabien@symfony.com"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Allows manipulating MIME messages",
  6138. "homepage": "https://symfony.com",
  6139. "keywords": [
  6140. "mime",
  6141. "mime-type"
  6142. ],
  6143. "time": "2021-03-12T13:18:39+00:00"
  6144. },
  6145. {
  6146. "name": "symfony/options-resolver",
  6147. "version": "v5.2.4",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/symfony/options-resolver.git",
  6151. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  6156. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  6157. "shasum": "",
  6158. "mirrors": [
  6159. {
  6160. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6161. "preferred": true
  6162. }
  6163. ]
  6164. },
  6165. "require": {
  6166. "php": ">=7.2.5",
  6167. "symfony/deprecation-contracts": "^2.1",
  6168. "symfony/polyfill-php73": "~1.0",
  6169. "symfony/polyfill-php80": "^1.15"
  6170. },
  6171. "type": "library",
  6172. "autoload": {
  6173. "psr-4": {
  6174. "Symfony\\Component\\OptionsResolver\\": ""
  6175. },
  6176. "exclude-from-classmap": [
  6177. "/Tests/"
  6178. ]
  6179. },
  6180. "notification-url": "https://packagist.org/downloads/",
  6181. "license": [
  6182. "MIT"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "Fabien Potencier",
  6187. "email": "fabien@symfony.com"
  6188. },
  6189. {
  6190. "name": "Symfony Community",
  6191. "homepage": "https://symfony.com/contributors"
  6192. }
  6193. ],
  6194. "description": "Provides an improved replacement for the array_replace PHP function",
  6195. "homepage": "https://symfony.com",
  6196. "keywords": [
  6197. "config",
  6198. "configuration",
  6199. "options"
  6200. ],
  6201. "time": "2021-01-27T12:56:27+00:00"
  6202. },
  6203. {
  6204. "name": "symfony/polyfill-ctype",
  6205. "version": "v1.22.1",
  6206. "source": {
  6207. "type": "git",
  6208. "url": "https://github.com/symfony/polyfill-ctype.git",
  6209. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  6210. },
  6211. "dist": {
  6212. "type": "zip",
  6213. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  6214. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  6215. "shasum": "",
  6216. "mirrors": [
  6217. {
  6218. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6219. "preferred": true
  6220. }
  6221. ]
  6222. },
  6223. "require": {
  6224. "php": ">=7.1"
  6225. },
  6226. "suggest": {
  6227. "ext-ctype": "For best performance"
  6228. },
  6229. "type": "library",
  6230. "extra": {
  6231. "branch-alias": {
  6232. "dev-main": "1.22-dev"
  6233. },
  6234. "thanks": {
  6235. "name": "symfony/polyfill",
  6236. "url": "https://github.com/symfony/polyfill"
  6237. }
  6238. },
  6239. "autoload": {
  6240. "psr-4": {
  6241. "Symfony\\Polyfill\\Ctype\\": ""
  6242. },
  6243. "files": [
  6244. "bootstrap.php"
  6245. ]
  6246. },
  6247. "notification-url": "https://packagist.org/downloads/",
  6248. "license": [
  6249. "MIT"
  6250. ],
  6251. "authors": [
  6252. {
  6253. "name": "Gert de Pagter",
  6254. "email": "BackEndTea@gmail.com"
  6255. },
  6256. {
  6257. "name": "Symfony Community",
  6258. "homepage": "https://symfony.com/contributors"
  6259. }
  6260. ],
  6261. "description": "Symfony polyfill for ctype functions",
  6262. "homepage": "https://symfony.com",
  6263. "keywords": [
  6264. "compatibility",
  6265. "ctype",
  6266. "polyfill",
  6267. "portable"
  6268. ],
  6269. "time": "2021-01-07T16:49:33+00:00"
  6270. },
  6271. {
  6272. "name": "symfony/polyfill-intl-grapheme",
  6273. "version": "v1.22.1",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6277. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  6282. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  6283. "shasum": "",
  6284. "mirrors": [
  6285. {
  6286. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6287. "preferred": true
  6288. }
  6289. ]
  6290. },
  6291. "require": {
  6292. "php": ">=7.1"
  6293. },
  6294. "suggest": {
  6295. "ext-intl": "For best performance"
  6296. },
  6297. "type": "library",
  6298. "extra": {
  6299. "branch-alias": {
  6300. "dev-main": "1.22-dev"
  6301. },
  6302. "thanks": {
  6303. "name": "symfony/polyfill",
  6304. "url": "https://github.com/symfony/polyfill"
  6305. }
  6306. },
  6307. "autoload": {
  6308. "psr-4": {
  6309. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6310. },
  6311. "files": [
  6312. "bootstrap.php"
  6313. ]
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "Nicolas Grekas",
  6322. "email": "p@tchwork.com"
  6323. },
  6324. {
  6325. "name": "Symfony Community",
  6326. "homepage": "https://symfony.com/contributors"
  6327. }
  6328. ],
  6329. "description": "Symfony polyfill for intl's grapheme_* functions",
  6330. "homepage": "https://symfony.com",
  6331. "keywords": [
  6332. "compatibility",
  6333. "grapheme",
  6334. "intl",
  6335. "polyfill",
  6336. "portable",
  6337. "shim"
  6338. ],
  6339. "time": "2021-01-22T09:19:47+00:00"
  6340. },
  6341. {
  6342. "name": "symfony/polyfill-intl-idn",
  6343. "version": "v1.22.1",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6347. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6352. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6353. "shasum": "",
  6354. "mirrors": [
  6355. {
  6356. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6357. "preferred": true
  6358. }
  6359. ]
  6360. },
  6361. "require": {
  6362. "php": ">=7.1",
  6363. "symfony/polyfill-intl-normalizer": "^1.10",
  6364. "symfony/polyfill-php72": "^1.10"
  6365. },
  6366. "suggest": {
  6367. "ext-intl": "For best performance"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "branch-alias": {
  6372. "dev-main": "1.22-dev"
  6373. },
  6374. "thanks": {
  6375. "name": "symfony/polyfill",
  6376. "url": "https://github.com/symfony/polyfill"
  6377. }
  6378. },
  6379. "autoload": {
  6380. "psr-4": {
  6381. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6382. },
  6383. "files": [
  6384. "bootstrap.php"
  6385. ]
  6386. },
  6387. "notification-url": "https://packagist.org/downloads/",
  6388. "license": [
  6389. "MIT"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Laurent Bassin",
  6394. "email": "laurent@bassin.info"
  6395. },
  6396. {
  6397. "name": "Trevor Rowbotham",
  6398. "email": "trevor.rowbotham@pm.me"
  6399. },
  6400. {
  6401. "name": "Symfony Community",
  6402. "homepage": "https://symfony.com/contributors"
  6403. }
  6404. ],
  6405. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6406. "homepage": "https://symfony.com",
  6407. "keywords": [
  6408. "compatibility",
  6409. "idn",
  6410. "intl",
  6411. "polyfill",
  6412. "portable",
  6413. "shim"
  6414. ],
  6415. "time": "2021-01-22T09:19:47+00:00"
  6416. },
  6417. {
  6418. "name": "symfony/polyfill-intl-normalizer",
  6419. "version": "v1.22.1",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6423. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6428. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6429. "shasum": "",
  6430. "mirrors": [
  6431. {
  6432. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6433. "preferred": true
  6434. }
  6435. ]
  6436. },
  6437. "require": {
  6438. "php": ">=7.1"
  6439. },
  6440. "suggest": {
  6441. "ext-intl": "For best performance"
  6442. },
  6443. "type": "library",
  6444. "extra": {
  6445. "branch-alias": {
  6446. "dev-main": "1.22-dev"
  6447. },
  6448. "thanks": {
  6449. "name": "symfony/polyfill",
  6450. "url": "https://github.com/symfony/polyfill"
  6451. }
  6452. },
  6453. "autoload": {
  6454. "psr-4": {
  6455. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6456. },
  6457. "files": [
  6458. "bootstrap.php"
  6459. ],
  6460. "classmap": [
  6461. "Resources/stubs"
  6462. ]
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Nicolas Grekas",
  6471. "email": "p@tchwork.com"
  6472. },
  6473. {
  6474. "name": "Symfony Community",
  6475. "homepage": "https://symfony.com/contributors"
  6476. }
  6477. ],
  6478. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6479. "homepage": "https://symfony.com",
  6480. "keywords": [
  6481. "compatibility",
  6482. "intl",
  6483. "normalizer",
  6484. "polyfill",
  6485. "portable",
  6486. "shim"
  6487. ],
  6488. "time": "2021-01-22T09:19:47+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/polyfill-mbstring",
  6492. "version": "v1.22.1",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6496. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6501. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6502. "shasum": "",
  6503. "mirrors": [
  6504. {
  6505. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6506. "preferred": true
  6507. }
  6508. ]
  6509. },
  6510. "require": {
  6511. "php": ">=7.1"
  6512. },
  6513. "suggest": {
  6514. "ext-mbstring": "For best performance"
  6515. },
  6516. "type": "library",
  6517. "extra": {
  6518. "branch-alias": {
  6519. "dev-main": "1.22-dev"
  6520. },
  6521. "thanks": {
  6522. "name": "symfony/polyfill",
  6523. "url": "https://github.com/symfony/polyfill"
  6524. }
  6525. },
  6526. "autoload": {
  6527. "psr-4": {
  6528. "Symfony\\Polyfill\\Mbstring\\": ""
  6529. },
  6530. "files": [
  6531. "bootstrap.php"
  6532. ]
  6533. },
  6534. "notification-url": "https://packagist.org/downloads/",
  6535. "license": [
  6536. "MIT"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "Nicolas Grekas",
  6541. "email": "p@tchwork.com"
  6542. },
  6543. {
  6544. "name": "Symfony Community",
  6545. "homepage": "https://symfony.com/contributors"
  6546. }
  6547. ],
  6548. "description": "Symfony polyfill for the Mbstring extension",
  6549. "homepage": "https://symfony.com",
  6550. "keywords": [
  6551. "compatibility",
  6552. "mbstring",
  6553. "polyfill",
  6554. "portable",
  6555. "shim"
  6556. ],
  6557. "time": "2021-01-22T09:19:47+00:00"
  6558. },
  6559. {
  6560. "name": "symfony/polyfill-php56",
  6561. "version": "v1.20.0",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/symfony/polyfill-php56.git",
  6565. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6570. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6571. "shasum": "",
  6572. "mirrors": [
  6573. {
  6574. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6575. "preferred": true
  6576. }
  6577. ]
  6578. },
  6579. "require": {
  6580. "php": ">=7.1"
  6581. },
  6582. "type": "metapackage",
  6583. "extra": {
  6584. "branch-alias": {
  6585. "dev-main": "1.20-dev"
  6586. },
  6587. "thanks": {
  6588. "name": "symfony/polyfill",
  6589. "url": "https://github.com/symfony/polyfill"
  6590. }
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Nicolas Grekas",
  6599. "email": "p@tchwork.com"
  6600. },
  6601. {
  6602. "name": "Symfony Community",
  6603. "homepage": "https://symfony.com/contributors"
  6604. }
  6605. ],
  6606. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6607. "homepage": "https://symfony.com",
  6608. "keywords": [
  6609. "compatibility",
  6610. "polyfill",
  6611. "portable",
  6612. "shim"
  6613. ],
  6614. "time": "2020-10-23T14:02:19+00:00"
  6615. },
  6616. {
  6617. "name": "symfony/polyfill-php72",
  6618. "version": "v1.22.1",
  6619. "source": {
  6620. "type": "git",
  6621. "url": "https://github.com/symfony/polyfill-php72.git",
  6622. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6623. },
  6624. "dist": {
  6625. "type": "zip",
  6626. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6627. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6628. "shasum": "",
  6629. "mirrors": [
  6630. {
  6631. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6632. "preferred": true
  6633. }
  6634. ]
  6635. },
  6636. "require": {
  6637. "php": ">=7.1"
  6638. },
  6639. "type": "library",
  6640. "extra": {
  6641. "branch-alias": {
  6642. "dev-main": "1.22-dev"
  6643. },
  6644. "thanks": {
  6645. "name": "symfony/polyfill",
  6646. "url": "https://github.com/symfony/polyfill"
  6647. }
  6648. },
  6649. "autoload": {
  6650. "psr-4": {
  6651. "Symfony\\Polyfill\\Php72\\": ""
  6652. },
  6653. "files": [
  6654. "bootstrap.php"
  6655. ]
  6656. },
  6657. "notification-url": "https://packagist.org/downloads/",
  6658. "license": [
  6659. "MIT"
  6660. ],
  6661. "authors": [
  6662. {
  6663. "name": "Nicolas Grekas",
  6664. "email": "p@tchwork.com"
  6665. },
  6666. {
  6667. "name": "Symfony Community",
  6668. "homepage": "https://symfony.com/contributors"
  6669. }
  6670. ],
  6671. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6672. "homepage": "https://symfony.com",
  6673. "keywords": [
  6674. "compatibility",
  6675. "polyfill",
  6676. "portable",
  6677. "shim"
  6678. ],
  6679. "time": "2021-01-07T16:49:33+00:00"
  6680. },
  6681. {
  6682. "name": "symfony/polyfill-php73",
  6683. "version": "v1.22.1",
  6684. "source": {
  6685. "type": "git",
  6686. "url": "https://github.com/symfony/polyfill-php73.git",
  6687. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6688. },
  6689. "dist": {
  6690. "type": "zip",
  6691. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6692. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6693. "shasum": "",
  6694. "mirrors": [
  6695. {
  6696. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6697. "preferred": true
  6698. }
  6699. ]
  6700. },
  6701. "require": {
  6702. "php": ">=7.1"
  6703. },
  6704. "type": "library",
  6705. "extra": {
  6706. "branch-alias": {
  6707. "dev-main": "1.22-dev"
  6708. },
  6709. "thanks": {
  6710. "name": "symfony/polyfill",
  6711. "url": "https://github.com/symfony/polyfill"
  6712. }
  6713. },
  6714. "autoload": {
  6715. "psr-4": {
  6716. "Symfony\\Polyfill\\Php73\\": ""
  6717. },
  6718. "files": [
  6719. "bootstrap.php"
  6720. ],
  6721. "classmap": [
  6722. "Resources/stubs"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Nicolas Grekas",
  6732. "email": "p@tchwork.com"
  6733. },
  6734. {
  6735. "name": "Symfony Community",
  6736. "homepage": "https://symfony.com/contributors"
  6737. }
  6738. ],
  6739. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6740. "homepage": "https://symfony.com",
  6741. "keywords": [
  6742. "compatibility",
  6743. "polyfill",
  6744. "portable",
  6745. "shim"
  6746. ],
  6747. "time": "2021-01-07T16:49:33+00:00"
  6748. },
  6749. {
  6750. "name": "symfony/polyfill-php80",
  6751. "version": "v1.22.1",
  6752. "source": {
  6753. "type": "git",
  6754. "url": "https://github.com/symfony/polyfill-php80.git",
  6755. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6756. },
  6757. "dist": {
  6758. "type": "zip",
  6759. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6760. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6761. "shasum": "",
  6762. "mirrors": [
  6763. {
  6764. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6765. "preferred": true
  6766. }
  6767. ]
  6768. },
  6769. "require": {
  6770. "php": ">=7.1"
  6771. },
  6772. "type": "library",
  6773. "extra": {
  6774. "branch-alias": {
  6775. "dev-main": "1.22-dev"
  6776. },
  6777. "thanks": {
  6778. "name": "symfony/polyfill",
  6779. "url": "https://github.com/symfony/polyfill"
  6780. }
  6781. },
  6782. "autoload": {
  6783. "psr-4": {
  6784. "Symfony\\Polyfill\\Php80\\": ""
  6785. },
  6786. "files": [
  6787. "bootstrap.php"
  6788. ],
  6789. "classmap": [
  6790. "Resources/stubs"
  6791. ]
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "MIT"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Ion Bazan",
  6800. "email": "ion.bazan@gmail.com"
  6801. },
  6802. {
  6803. "name": "Nicolas Grekas",
  6804. "email": "p@tchwork.com"
  6805. },
  6806. {
  6807. "name": "Symfony Community",
  6808. "homepage": "https://symfony.com/contributors"
  6809. }
  6810. ],
  6811. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6812. "homepage": "https://symfony.com",
  6813. "keywords": [
  6814. "compatibility",
  6815. "polyfill",
  6816. "portable",
  6817. "shim"
  6818. ],
  6819. "time": "2021-01-07T16:49:33+00:00"
  6820. },
  6821. {
  6822. "name": "symfony/process",
  6823. "version": "v4.4.20",
  6824. "source": {
  6825. "type": "git",
  6826. "url": "https://github.com/symfony/process.git",
  6827. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  6828. },
  6829. "dist": {
  6830. "type": "zip",
  6831. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  6832. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  6833. "shasum": "",
  6834. "mirrors": [
  6835. {
  6836. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6837. "preferred": true
  6838. }
  6839. ]
  6840. },
  6841. "require": {
  6842. "php": ">=7.1.3"
  6843. },
  6844. "type": "library",
  6845. "autoload": {
  6846. "psr-4": {
  6847. "Symfony\\Component\\Process\\": ""
  6848. },
  6849. "exclude-from-classmap": [
  6850. "/Tests/"
  6851. ]
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "MIT"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "Fabien Potencier",
  6860. "email": "fabien@symfony.com"
  6861. },
  6862. {
  6863. "name": "Symfony Community",
  6864. "homepage": "https://symfony.com/contributors"
  6865. }
  6866. ],
  6867. "description": "Executes commands in sub-processes",
  6868. "homepage": "https://symfony.com",
  6869. "time": "2021-01-27T09:09:26+00:00"
  6870. },
  6871. {
  6872. "name": "symfony/property-access",
  6873. "version": "v5.2.4",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/symfony/property-access.git",
  6877. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6882. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6883. "shasum": "",
  6884. "mirrors": [
  6885. {
  6886. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6887. "preferred": true
  6888. }
  6889. ]
  6890. },
  6891. "require": {
  6892. "php": ">=7.2.5",
  6893. "symfony/deprecation-contracts": "^2.1",
  6894. "symfony/polyfill-php80": "^1.15",
  6895. "symfony/property-info": "^5.2"
  6896. },
  6897. "require-dev": {
  6898. "symfony/cache": "^4.4|^5.0"
  6899. },
  6900. "suggest": {
  6901. "psr/cache-implementation": "To cache access methods."
  6902. },
  6903. "type": "library",
  6904. "autoload": {
  6905. "psr-4": {
  6906. "Symfony\\Component\\PropertyAccess\\": ""
  6907. },
  6908. "exclude-from-classmap": [
  6909. "/Tests/"
  6910. ]
  6911. },
  6912. "notification-url": "https://packagist.org/downloads/",
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Fabien Potencier",
  6919. "email": "fabien@symfony.com"
  6920. },
  6921. {
  6922. "name": "Symfony Community",
  6923. "homepage": "https://symfony.com/contributors"
  6924. }
  6925. ],
  6926. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6927. "homepage": "https://symfony.com",
  6928. "keywords": [
  6929. "access",
  6930. "array",
  6931. "extraction",
  6932. "index",
  6933. "injection",
  6934. "object",
  6935. "property",
  6936. "property path",
  6937. "reflection"
  6938. ],
  6939. "time": "2021-01-27T10:15:41+00:00"
  6940. },
  6941. {
  6942. "name": "symfony/property-info",
  6943. "version": "v5.2.4",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/symfony/property-info.git",
  6947. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/symfony/property-info/zipball/7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6952. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6953. "shasum": "",
  6954. "mirrors": [
  6955. {
  6956. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6957. "preferred": true
  6958. }
  6959. ]
  6960. },
  6961. "require": {
  6962. "php": ">=7.2.5",
  6963. "symfony/deprecation-contracts": "^2.1",
  6964. "symfony/polyfill-php80": "^1.15",
  6965. "symfony/string": "^5.1"
  6966. },
  6967. "conflict": {
  6968. "phpdocumentor/reflection-docblock": "<3.2.2",
  6969. "phpdocumentor/type-resolver": "<1.4.0",
  6970. "symfony/dependency-injection": "<4.4"
  6971. },
  6972. "require-dev": {
  6973. "doctrine/annotations": "^1.10.4",
  6974. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6975. "symfony/cache": "^4.4|^5.0",
  6976. "symfony/dependency-injection": "^4.4|^5.0",
  6977. "symfony/serializer": "^4.4|^5.0"
  6978. },
  6979. "suggest": {
  6980. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6981. "psr/cache-implementation": "To cache results",
  6982. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6983. "symfony/serializer": "To use Serializer metadata"
  6984. },
  6985. "type": "library",
  6986. "autoload": {
  6987. "psr-4": {
  6988. "Symfony\\Component\\PropertyInfo\\": ""
  6989. },
  6990. "exclude-from-classmap": [
  6991. "/Tests/"
  6992. ]
  6993. },
  6994. "notification-url": "https://packagist.org/downloads/",
  6995. "license": [
  6996. "MIT"
  6997. ],
  6998. "authors": [
  6999. {
  7000. "name": "Kévin Dunglas",
  7001. "email": "dunglas@gmail.com"
  7002. },
  7003. {
  7004. "name": "Symfony Community",
  7005. "homepage": "https://symfony.com/contributors"
  7006. }
  7007. ],
  7008. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7009. "homepage": "https://symfony.com",
  7010. "keywords": [
  7011. "doctrine",
  7012. "phpdoc",
  7013. "property",
  7014. "symfony",
  7015. "type",
  7016. "validator"
  7017. ],
  7018. "time": "2021-02-17T15:24:54+00:00"
  7019. },
  7020. {
  7021. "name": "symfony/psr-http-message-bridge",
  7022. "version": "v2.1.0",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7026. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d",
  7031. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d",
  7032. "shasum": "",
  7033. "mirrors": [
  7034. {
  7035. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7036. "preferred": true
  7037. }
  7038. ]
  7039. },
  7040. "require": {
  7041. "php": ">=7.1",
  7042. "psr/http-message": "^1.0",
  7043. "symfony/http-foundation": "^4.4 || ^5.0"
  7044. },
  7045. "require-dev": {
  7046. "nyholm/psr7": "^1.1",
  7047. "psr/log": "^1.1",
  7048. "symfony/browser-kit": "^4.4 || ^5.0",
  7049. "symfony/config": "^4.4 || ^5.0",
  7050. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7051. "symfony/framework-bundle": "^4.4 || ^5.0",
  7052. "symfony/http-kernel": "^4.4 || ^5.0",
  7053. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  7054. },
  7055. "suggest": {
  7056. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7057. },
  7058. "type": "symfony-bridge",
  7059. "extra": {
  7060. "branch-alias": {
  7061. "dev-main": "2.1-dev"
  7062. }
  7063. },
  7064. "autoload": {
  7065. "psr-4": {
  7066. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7067. },
  7068. "exclude-from-classmap": [
  7069. "/Tests/"
  7070. ]
  7071. },
  7072. "notification-url": "https://packagist.org/downloads/",
  7073. "license": [
  7074. "MIT"
  7075. ],
  7076. "authors": [
  7077. {
  7078. "name": "Fabien Potencier",
  7079. "email": "fabien@symfony.com"
  7080. },
  7081. {
  7082. "name": "Symfony Community",
  7083. "homepage": "http://symfony.com/contributors"
  7084. }
  7085. ],
  7086. "description": "PSR HTTP message bridge",
  7087. "homepage": "http://symfony.com",
  7088. "keywords": [
  7089. "http",
  7090. "http-message",
  7091. "psr-17",
  7092. "psr-7"
  7093. ],
  7094. "time": "2021-02-17T10:35:25+00:00"
  7095. },
  7096. {
  7097. "name": "symfony/routing",
  7098. "version": "v4.4.20",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/symfony/routing.git",
  7102. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/symfony/routing/zipball/69919991c845b34626664ddc9b3aef9d09d2a5df",
  7107. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df",
  7108. "shasum": "",
  7109. "mirrors": [
  7110. {
  7111. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7112. "preferred": true
  7113. }
  7114. ]
  7115. },
  7116. "require": {
  7117. "php": ">=7.1.3"
  7118. },
  7119. "conflict": {
  7120. "symfony/config": "<4.2",
  7121. "symfony/dependency-injection": "<3.4",
  7122. "symfony/yaml": "<3.4"
  7123. },
  7124. "require-dev": {
  7125. "doctrine/annotations": "^1.10.4",
  7126. "psr/log": "~1.0",
  7127. "symfony/config": "^4.2|^5.0",
  7128. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7129. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7130. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  7131. "symfony/yaml": "^3.4|^4.0|^5.0"
  7132. },
  7133. "suggest": {
  7134. "doctrine/annotations": "For using the annotation loader",
  7135. "symfony/config": "For using the all-in-one router or any loader",
  7136. "symfony/expression-language": "For using expression matching",
  7137. "symfony/http-foundation": "For using a Symfony Request object",
  7138. "symfony/yaml": "For using the YAML loader"
  7139. },
  7140. "type": "library",
  7141. "autoload": {
  7142. "psr-4": {
  7143. "Symfony\\Component\\Routing\\": ""
  7144. },
  7145. "exclude-from-classmap": [
  7146. "/Tests/"
  7147. ]
  7148. },
  7149. "notification-url": "https://packagist.org/downloads/",
  7150. "license": [
  7151. "MIT"
  7152. ],
  7153. "authors": [
  7154. {
  7155. "name": "Fabien Potencier",
  7156. "email": "fabien@symfony.com"
  7157. },
  7158. {
  7159. "name": "Symfony Community",
  7160. "homepage": "https://symfony.com/contributors"
  7161. }
  7162. ],
  7163. "description": "Maps an HTTP request to a set of configuration variables",
  7164. "homepage": "https://symfony.com",
  7165. "keywords": [
  7166. "router",
  7167. "routing",
  7168. "uri",
  7169. "url"
  7170. ],
  7171. "time": "2021-02-22T15:37:04+00:00"
  7172. },
  7173. {
  7174. "name": "symfony/service-contracts",
  7175. "version": "v2.4.0",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/symfony/service-contracts.git",
  7179. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7184. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7185. "shasum": "",
  7186. "mirrors": [
  7187. {
  7188. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7189. "preferred": true
  7190. }
  7191. ]
  7192. },
  7193. "require": {
  7194. "php": ">=7.2.5",
  7195. "psr/container": "^1.1"
  7196. },
  7197. "suggest": {
  7198. "symfony/service-implementation": ""
  7199. },
  7200. "type": "library",
  7201. "extra": {
  7202. "branch-alias": {
  7203. "dev-main": "2.4-dev"
  7204. },
  7205. "thanks": {
  7206. "name": "symfony/contracts",
  7207. "url": "https://github.com/symfony/contracts"
  7208. }
  7209. },
  7210. "autoload": {
  7211. "psr-4": {
  7212. "Symfony\\Contracts\\Service\\": ""
  7213. }
  7214. },
  7215. "notification-url": "https://packagist.org/downloads/",
  7216. "license": [
  7217. "MIT"
  7218. ],
  7219. "authors": [
  7220. {
  7221. "name": "Nicolas Grekas",
  7222. "email": "p@tchwork.com"
  7223. },
  7224. {
  7225. "name": "Symfony Community",
  7226. "homepage": "https://symfony.com/contributors"
  7227. }
  7228. ],
  7229. "description": "Generic abstractions related to writing services",
  7230. "homepage": "https://symfony.com",
  7231. "keywords": [
  7232. "abstractions",
  7233. "contracts",
  7234. "decoupling",
  7235. "interfaces",
  7236. "interoperability",
  7237. "standards"
  7238. ],
  7239. "time": "2021-04-01T10:43:52+00:00"
  7240. },
  7241. {
  7242. "name": "symfony/string",
  7243. "version": "v5.2.6",
  7244. "source": {
  7245. "type": "git",
  7246. "url": "https://github.com/symfony/string.git",
  7247. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
  7248. },
  7249. "dist": {
  7250. "type": "zip",
  7251. "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7252. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7253. "shasum": "",
  7254. "mirrors": [
  7255. {
  7256. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7257. "preferred": true
  7258. }
  7259. ]
  7260. },
  7261. "require": {
  7262. "php": ">=7.2.5",
  7263. "symfony/polyfill-ctype": "~1.8",
  7264. "symfony/polyfill-intl-grapheme": "~1.0",
  7265. "symfony/polyfill-intl-normalizer": "~1.0",
  7266. "symfony/polyfill-mbstring": "~1.0",
  7267. "symfony/polyfill-php80": "~1.15"
  7268. },
  7269. "require-dev": {
  7270. "symfony/error-handler": "^4.4|^5.0",
  7271. "symfony/http-client": "^4.4|^5.0",
  7272. "symfony/translation-contracts": "^1.1|^2",
  7273. "symfony/var-exporter": "^4.4|^5.0"
  7274. },
  7275. "type": "library",
  7276. "autoload": {
  7277. "psr-4": {
  7278. "Symfony\\Component\\String\\": ""
  7279. },
  7280. "files": [
  7281. "Resources/functions.php"
  7282. ],
  7283. "exclude-from-classmap": [
  7284. "/Tests/"
  7285. ]
  7286. },
  7287. "notification-url": "https://packagist.org/downloads/",
  7288. "license": [
  7289. "MIT"
  7290. ],
  7291. "authors": [
  7292. {
  7293. "name": "Nicolas Grekas",
  7294. "email": "p@tchwork.com"
  7295. },
  7296. {
  7297. "name": "Symfony Community",
  7298. "homepage": "https://symfony.com/contributors"
  7299. }
  7300. ],
  7301. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7302. "homepage": "https://symfony.com",
  7303. "keywords": [
  7304. "grapheme",
  7305. "i18n",
  7306. "string",
  7307. "unicode",
  7308. "utf-8",
  7309. "utf8"
  7310. ],
  7311. "time": "2021-03-17T17:12:15+00:00"
  7312. },
  7313. {
  7314. "name": "symfony/translation",
  7315. "version": "v4.4.21",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/symfony/translation.git",
  7319. "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/symfony/translation/zipball/eb8f5428cc3b40d6dffe303b195b084f1c5fbd14",
  7324. "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14",
  7325. "shasum": "",
  7326. "mirrors": [
  7327. {
  7328. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7329. "preferred": true
  7330. }
  7331. ]
  7332. },
  7333. "require": {
  7334. "php": ">=7.1.3",
  7335. "symfony/polyfill-mbstring": "~1.0",
  7336. "symfony/translation-contracts": "^1.1.6|^2"
  7337. },
  7338. "conflict": {
  7339. "symfony/config": "<3.4",
  7340. "symfony/dependency-injection": "<3.4",
  7341. "symfony/http-kernel": "<4.4",
  7342. "symfony/yaml": "<3.4"
  7343. },
  7344. "provide": {
  7345. "symfony/translation-implementation": "1.0|2.0"
  7346. },
  7347. "require-dev": {
  7348. "psr/log": "~1.0",
  7349. "symfony/config": "^3.4|^4.0|^5.0",
  7350. "symfony/console": "^3.4|^4.0|^5.0",
  7351. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7352. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  7353. "symfony/http-kernel": "^4.4",
  7354. "symfony/intl": "^3.4|^4.0|^5.0",
  7355. "symfony/service-contracts": "^1.1.2|^2",
  7356. "symfony/yaml": "^3.4|^4.0|^5.0"
  7357. },
  7358. "suggest": {
  7359. "psr/log-implementation": "To use logging capability in translator",
  7360. "symfony/config": "",
  7361. "symfony/yaml": ""
  7362. },
  7363. "type": "library",
  7364. "autoload": {
  7365. "psr-4": {
  7366. "Symfony\\Component\\Translation\\": ""
  7367. },
  7368. "exclude-from-classmap": [
  7369. "/Tests/"
  7370. ]
  7371. },
  7372. "notification-url": "https://packagist.org/downloads/",
  7373. "license": [
  7374. "MIT"
  7375. ],
  7376. "authors": [
  7377. {
  7378. "name": "Fabien Potencier",
  7379. "email": "fabien@symfony.com"
  7380. },
  7381. {
  7382. "name": "Symfony Community",
  7383. "homepage": "https://symfony.com/contributors"
  7384. }
  7385. ],
  7386. "description": "Provides tools to internationalize your application",
  7387. "homepage": "https://symfony.com",
  7388. "time": "2021-03-23T16:25:01+00:00"
  7389. },
  7390. {
  7391. "name": "symfony/translation-contracts",
  7392. "version": "v2.4.0",
  7393. "source": {
  7394. "type": "git",
  7395. "url": "https://github.com/symfony/translation-contracts.git",
  7396. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7397. },
  7398. "dist": {
  7399. "type": "zip",
  7400. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7401. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7402. "shasum": "",
  7403. "mirrors": [
  7404. {
  7405. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7406. "preferred": true
  7407. }
  7408. ]
  7409. },
  7410. "require": {
  7411. "php": ">=7.2.5"
  7412. },
  7413. "suggest": {
  7414. "symfony/translation-implementation": ""
  7415. },
  7416. "type": "library",
  7417. "extra": {
  7418. "branch-alias": {
  7419. "dev-main": "2.4-dev"
  7420. },
  7421. "thanks": {
  7422. "name": "symfony/contracts",
  7423. "url": "https://github.com/symfony/contracts"
  7424. }
  7425. },
  7426. "autoload": {
  7427. "psr-4": {
  7428. "Symfony\\Contracts\\Translation\\": ""
  7429. }
  7430. },
  7431. "notification-url": "https://packagist.org/downloads/",
  7432. "license": [
  7433. "MIT"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Nicolas Grekas",
  7438. "email": "p@tchwork.com"
  7439. },
  7440. {
  7441. "name": "Symfony Community",
  7442. "homepage": "https://symfony.com/contributors"
  7443. }
  7444. ],
  7445. "description": "Generic abstractions related to translation",
  7446. "homepage": "https://symfony.com",
  7447. "keywords": [
  7448. "abstractions",
  7449. "contracts",
  7450. "decoupling",
  7451. "interfaces",
  7452. "interoperability",
  7453. "standards"
  7454. ],
  7455. "time": "2021-03-23T23:28:01+00:00"
  7456. },
  7457. {
  7458. "name": "symfony/var-dumper",
  7459. "version": "v4.4.21",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/symfony/var-dumper.git",
  7463. "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0da0e174f728996f5d5072d6a9f0a42259dbc806",
  7468. "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806",
  7469. "shasum": "",
  7470. "mirrors": [
  7471. {
  7472. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7473. "preferred": true
  7474. }
  7475. ]
  7476. },
  7477. "require": {
  7478. "php": ">=7.1.3",
  7479. "symfony/polyfill-mbstring": "~1.0",
  7480. "symfony/polyfill-php72": "~1.5",
  7481. "symfony/polyfill-php80": "^1.15"
  7482. },
  7483. "conflict": {
  7484. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7485. "symfony/console": "<3.4"
  7486. },
  7487. "require-dev": {
  7488. "ext-iconv": "*",
  7489. "symfony/console": "^3.4|^4.0|^5.0",
  7490. "symfony/process": "^4.4|^5.0",
  7491. "twig/twig": "^1.43|^2.13|^3.0.4"
  7492. },
  7493. "suggest": {
  7494. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7495. "ext-intl": "To show region name in time zone dump",
  7496. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7497. },
  7498. "bin": [
  7499. "Resources/bin/var-dump-server"
  7500. ],
  7501. "type": "library",
  7502. "autoload": {
  7503. "files": [
  7504. "Resources/functions/dump.php"
  7505. ],
  7506. "psr-4": {
  7507. "Symfony\\Component\\VarDumper\\": ""
  7508. },
  7509. "exclude-from-classmap": [
  7510. "/Tests/"
  7511. ]
  7512. },
  7513. "notification-url": "https://packagist.org/downloads/",
  7514. "license": [
  7515. "MIT"
  7516. ],
  7517. "authors": [
  7518. {
  7519. "name": "Nicolas Grekas",
  7520. "email": "p@tchwork.com"
  7521. },
  7522. {
  7523. "name": "Symfony Community",
  7524. "homepage": "https://symfony.com/contributors"
  7525. }
  7526. ],
  7527. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7528. "homepage": "https://symfony.com",
  7529. "keywords": [
  7530. "debug",
  7531. "dump"
  7532. ],
  7533. "time": "2021-03-27T19:49:03+00:00"
  7534. },
  7535. {
  7536. "name": "symfony/var-exporter",
  7537. "version": "v5.2.4",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/symfony/var-exporter.git",
  7541. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  7546. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  7547. "shasum": "",
  7548. "mirrors": [
  7549. {
  7550. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7551. "preferred": true
  7552. }
  7553. ]
  7554. },
  7555. "require": {
  7556. "php": ">=7.2.5",
  7557. "symfony/polyfill-php80": "^1.15"
  7558. },
  7559. "require-dev": {
  7560. "symfony/var-dumper": "^4.4.9|^5.0.9"
  7561. },
  7562. "type": "library",
  7563. "autoload": {
  7564. "psr-4": {
  7565. "Symfony\\Component\\VarExporter\\": ""
  7566. },
  7567. "exclude-from-classmap": [
  7568. "/Tests/"
  7569. ]
  7570. },
  7571. "notification-url": "https://packagist.org/downloads/",
  7572. "license": [
  7573. "MIT"
  7574. ],
  7575. "authors": [
  7576. {
  7577. "name": "Nicolas Grekas",
  7578. "email": "p@tchwork.com"
  7579. },
  7580. {
  7581. "name": "Symfony Community",
  7582. "homepage": "https://symfony.com/contributors"
  7583. }
  7584. ],
  7585. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7586. "homepage": "https://symfony.com",
  7587. "keywords": [
  7588. "clone",
  7589. "construct",
  7590. "export",
  7591. "hydrate",
  7592. "instantiate",
  7593. "serialize"
  7594. ],
  7595. "time": "2021-01-27T10:01:46+00:00"
  7596. },
  7597. {
  7598. "name": "tencentcloud/tencentcloud-sdk-php",
  7599. "version": "3.0.370",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  7603. "reference": "c691a5abb20bfcddc332d210a75d1d31f95f31b4"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/c691a5abb20bfcddc332d210a75d1d31f95f31b4",
  7608. "reference": "c691a5abb20bfcddc332d210a75d1d31f95f31b4",
  7609. "shasum": "",
  7610. "mirrors": [
  7611. {
  7612. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7613. "preferred": true
  7614. }
  7615. ]
  7616. },
  7617. "require": {
  7618. "guzzlehttp/guzzle": "^6.3 || ^7.0.1",
  7619. "guzzlehttp/psr7": "^1.4",
  7620. "php": ">=5.6.0"
  7621. },
  7622. "type": "library",
  7623. "autoload": {
  7624. "classmap": [
  7625. "src/QcloudApi/QcloudApi.php"
  7626. ],
  7627. "psr-4": {
  7628. "TencentCloud\\": "./src/TencentCloud"
  7629. }
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "Apache-2.0"
  7634. ],
  7635. "authors": [
  7636. {
  7637. "name": "coolli",
  7638. "email": "tencentcloudapi@tencent.com",
  7639. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7640. "role": "Developer"
  7641. }
  7642. ],
  7643. "description": "TencentCloudApi php sdk",
  7644. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  7645. "time": "2021-04-21T00:25:28+00:00"
  7646. },
  7647. {
  7648. "name": "tymon/jwt-auth",
  7649. "version": "1.0.0-rc.5",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7653. "reference": "103739700dc0358039a33b5bc91247570bb83529"
  7654. },
  7655. "dist": {
  7656. "type": "zip",
  7657. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/103739700dc0358039a33b5bc91247570bb83529",
  7658. "reference": "103739700dc0358039a33b5bc91247570bb83529",
  7659. "shasum": "",
  7660. "mirrors": [
  7661. {
  7662. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7663. "preferred": true
  7664. }
  7665. ]
  7666. },
  7667. "require": {
  7668. "illuminate/auth": "^5.1|^6",
  7669. "illuminate/contracts": "^5.1|^6",
  7670. "illuminate/http": "^5.1|^6",
  7671. "illuminate/support": "^5.1|^6",
  7672. "lcobucci/jwt": "^3.2",
  7673. "namshi/jose": "^7.0",
  7674. "nesbot/carbon": "^1.0|^2.0",
  7675. "php": "^5.5.9|^7.0"
  7676. },
  7677. "require-dev": {
  7678. "cartalyst/sentinel": "^2|^3",
  7679. "illuminate/console": "^5.1|^6",
  7680. "illuminate/database": "^5.1|^6",
  7681. "illuminate/routing": "^5.1|^6",
  7682. "mockery/mockery": ">=0.9.9",
  7683. "phpunit/phpunit": "~4.8|~6.0"
  7684. },
  7685. "type": "library",
  7686. "extra": {
  7687. "branch-alias": {
  7688. "dev-develop": "1.0-dev"
  7689. },
  7690. "laravel": {
  7691. "aliases": {
  7692. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7693. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7694. },
  7695. "providers": [
  7696. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7697. ]
  7698. }
  7699. },
  7700. "autoload": {
  7701. "psr-4": {
  7702. "Tymon\\JWTAuth\\": "src/"
  7703. }
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Sean Tymon",
  7712. "email": "tymon148@gmail.com",
  7713. "homepage": "https://tymon.xyz",
  7714. "role": "Developer"
  7715. }
  7716. ],
  7717. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7718. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7719. "keywords": [
  7720. "Authentication",
  7721. "JSON Web Token",
  7722. "auth",
  7723. "jwt",
  7724. "laravel"
  7725. ],
  7726. "time": "2019-09-09T03:33:47+00:00"
  7727. },
  7728. {
  7729. "name": "vlucas/phpdotenv",
  7730. "version": "v3.6.8",
  7731. "source": {
  7732. "type": "git",
  7733. "url": "https://github.com/vlucas/phpdotenv.git",
  7734. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8"
  7735. },
  7736. "dist": {
  7737. "type": "zip",
  7738. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5e679f7616db829358341e2d5cccbd18773bdab8",
  7739. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8",
  7740. "shasum": "",
  7741. "mirrors": [
  7742. {
  7743. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7744. "preferred": true
  7745. }
  7746. ]
  7747. },
  7748. "require": {
  7749. "php": "^5.4 || ^7.0 || ^8.0",
  7750. "phpoption/phpoption": "^1.5.2",
  7751. "symfony/polyfill-ctype": "^1.17"
  7752. },
  7753. "require-dev": {
  7754. "ext-filter": "*",
  7755. "ext-pcre": "*",
  7756. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7757. },
  7758. "suggest": {
  7759. "ext-filter": "Required to use the boolean validator.",
  7760. "ext-pcre": "Required to use most of the library."
  7761. },
  7762. "type": "library",
  7763. "extra": {
  7764. "branch-alias": {
  7765. "dev-master": "3.6-dev"
  7766. }
  7767. },
  7768. "autoload": {
  7769. "psr-4": {
  7770. "Dotenv\\": "src/"
  7771. }
  7772. },
  7773. "notification-url": "https://packagist.org/downloads/",
  7774. "license": [
  7775. "BSD-3-Clause"
  7776. ],
  7777. "authors": [
  7778. {
  7779. "name": "Graham Campbell",
  7780. "email": "graham@alt-three.com",
  7781. "homepage": "https://gjcampbell.co.uk/"
  7782. },
  7783. {
  7784. "name": "Vance Lucas",
  7785. "email": "vance@vancelucas.com",
  7786. "homepage": "https://vancelucas.com/"
  7787. }
  7788. ],
  7789. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7790. "keywords": [
  7791. "dotenv",
  7792. "env",
  7793. "environment"
  7794. ],
  7795. "time": "2021-01-20T14:39:46+00:00"
  7796. },
  7797. {
  7798. "name": "webmozart/assert",
  7799. "version": "1.10.0",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/webmozarts/assert.git",
  7803. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7808. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7809. "shasum": "",
  7810. "mirrors": [
  7811. {
  7812. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7813. "preferred": true
  7814. }
  7815. ]
  7816. },
  7817. "require": {
  7818. "php": "^7.2 || ^8.0",
  7819. "symfony/polyfill-ctype": "^1.8"
  7820. },
  7821. "conflict": {
  7822. "phpstan/phpstan": "<0.12.20",
  7823. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7824. },
  7825. "require-dev": {
  7826. "phpunit/phpunit": "^8.5.13"
  7827. },
  7828. "type": "library",
  7829. "extra": {
  7830. "branch-alias": {
  7831. "dev-master": "1.10-dev"
  7832. }
  7833. },
  7834. "autoload": {
  7835. "psr-4": {
  7836. "Webmozart\\Assert\\": "src/"
  7837. }
  7838. },
  7839. "notification-url": "https://packagist.org/downloads/",
  7840. "license": [
  7841. "MIT"
  7842. ],
  7843. "authors": [
  7844. {
  7845. "name": "Bernhard Schussek",
  7846. "email": "bschussek@gmail.com"
  7847. }
  7848. ],
  7849. "description": "Assertions to validate method input/output with nice error messages.",
  7850. "keywords": [
  7851. "assert",
  7852. "check",
  7853. "validate"
  7854. ],
  7855. "time": "2021-03-09T10:59:23+00:00"
  7856. }
  7857. ],
  7858. "packages-dev": [
  7859. {
  7860. "name": "doctrine/instantiator",
  7861. "version": "1.4.0",
  7862. "source": {
  7863. "type": "git",
  7864. "url": "https://github.com/doctrine/instantiator.git",
  7865. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7866. },
  7867. "dist": {
  7868. "type": "zip",
  7869. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7870. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7871. "shasum": "",
  7872. "mirrors": [
  7873. {
  7874. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7875. "preferred": true
  7876. }
  7877. ]
  7878. },
  7879. "require": {
  7880. "php": "^7.1 || ^8.0"
  7881. },
  7882. "require-dev": {
  7883. "doctrine/coding-standard": "^8.0",
  7884. "ext-pdo": "*",
  7885. "ext-phar": "*",
  7886. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7887. "phpstan/phpstan": "^0.12",
  7888. "phpstan/phpstan-phpunit": "^0.12",
  7889. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7890. },
  7891. "type": "library",
  7892. "autoload": {
  7893. "psr-4": {
  7894. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7895. }
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Marco Pivetta",
  7904. "email": "ocramius@gmail.com",
  7905. "homepage": "https://ocramius.github.io/"
  7906. }
  7907. ],
  7908. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7909. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7910. "keywords": [
  7911. "constructor",
  7912. "instantiate"
  7913. ],
  7914. "time": "2020-11-10T18:47:58+00:00"
  7915. },
  7916. {
  7917. "name": "fzaninotto/faker",
  7918. "version": "v1.9.2",
  7919. "source": {
  7920. "type": "git",
  7921. "url": "https://github.com/fzaninotto/Faker.git",
  7922. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  7923. },
  7924. "dist": {
  7925. "type": "zip",
  7926. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  7927. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  7928. "shasum": "",
  7929. "mirrors": [
  7930. {
  7931. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7932. "preferred": true
  7933. }
  7934. ]
  7935. },
  7936. "require": {
  7937. "php": "^5.3.3 || ^7.0"
  7938. },
  7939. "require-dev": {
  7940. "ext-intl": "*",
  7941. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7942. "squizlabs/php_codesniffer": "^2.9.2"
  7943. },
  7944. "type": "library",
  7945. "extra": {
  7946. "branch-alias": {
  7947. "dev-master": "1.9-dev"
  7948. }
  7949. },
  7950. "autoload": {
  7951. "psr-4": {
  7952. "Faker\\": "src/Faker/"
  7953. }
  7954. },
  7955. "notification-url": "https://packagist.org/downloads/",
  7956. "license": [
  7957. "MIT"
  7958. ],
  7959. "authors": [
  7960. {
  7961. "name": "François Zaninotto"
  7962. }
  7963. ],
  7964. "description": "Faker is a PHP library that generates fake data for you.",
  7965. "keywords": [
  7966. "data",
  7967. "faker",
  7968. "fixtures"
  7969. ],
  7970. "abandoned": true,
  7971. "time": "2020-12-11T09:56:16+00:00"
  7972. },
  7973. {
  7974. "name": "hamcrest/hamcrest-php",
  7975. "version": "v2.0.1",
  7976. "source": {
  7977. "type": "git",
  7978. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7979. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7980. },
  7981. "dist": {
  7982. "type": "zip",
  7983. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7984. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7985. "shasum": "",
  7986. "mirrors": [
  7987. {
  7988. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7989. "preferred": true
  7990. }
  7991. ]
  7992. },
  7993. "require": {
  7994. "php": "^5.3|^7.0|^8.0"
  7995. },
  7996. "replace": {
  7997. "cordoval/hamcrest-php": "*",
  7998. "davedevelopment/hamcrest-php": "*",
  7999. "kodova/hamcrest-php": "*"
  8000. },
  8001. "require-dev": {
  8002. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8003. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8004. },
  8005. "type": "library",
  8006. "extra": {
  8007. "branch-alias": {
  8008. "dev-master": "2.1-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "classmap": [
  8013. "hamcrest"
  8014. ]
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "BSD-3-Clause"
  8019. ],
  8020. "description": "This is the PHP port of Hamcrest Matchers",
  8021. "keywords": [
  8022. "test"
  8023. ],
  8024. "time": "2020-07-09T08:09:16+00:00"
  8025. },
  8026. {
  8027. "name": "mockery/mockery",
  8028. "version": "1.4.3",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/mockery/mockery.git",
  8032. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8037. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8038. "shasum": "",
  8039. "mirrors": [
  8040. {
  8041. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8042. "preferred": true
  8043. }
  8044. ]
  8045. },
  8046. "require": {
  8047. "hamcrest/hamcrest-php": "^2.0.1",
  8048. "lib-pcre": ">=7.0",
  8049. "php": "^7.3 || ^8.0"
  8050. },
  8051. "conflict": {
  8052. "phpunit/phpunit": "<8.0"
  8053. },
  8054. "require-dev": {
  8055. "phpunit/phpunit": "^8.5 || ^9.3"
  8056. },
  8057. "type": "library",
  8058. "extra": {
  8059. "branch-alias": {
  8060. "dev-master": "1.4.x-dev"
  8061. }
  8062. },
  8063. "autoload": {
  8064. "psr-0": {
  8065. "Mockery": "library/"
  8066. }
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "BSD-3-Clause"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "Pádraic Brady",
  8075. "email": "padraic.brady@gmail.com",
  8076. "homepage": "http://blog.astrumfutura.com"
  8077. },
  8078. {
  8079. "name": "Dave Marshall",
  8080. "email": "dave.marshall@atstsolutions.co.uk",
  8081. "homepage": "http://davedevelopment.co.uk"
  8082. }
  8083. ],
  8084. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8085. "homepage": "https://github.com/mockery/mockery",
  8086. "keywords": [
  8087. "BDD",
  8088. "TDD",
  8089. "library",
  8090. "mock",
  8091. "mock objects",
  8092. "mockery",
  8093. "stub",
  8094. "test",
  8095. "test double",
  8096. "testing"
  8097. ],
  8098. "time": "2021-02-24T09:51:49+00:00"
  8099. },
  8100. {
  8101. "name": "myclabs/deep-copy",
  8102. "version": "1.10.2",
  8103. "source": {
  8104. "type": "git",
  8105. "url": "https://github.com/myclabs/DeepCopy.git",
  8106. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8107. },
  8108. "dist": {
  8109. "type": "zip",
  8110. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8111. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8112. "shasum": "",
  8113. "mirrors": [
  8114. {
  8115. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8116. "preferred": true
  8117. }
  8118. ]
  8119. },
  8120. "require": {
  8121. "php": "^7.1 || ^8.0"
  8122. },
  8123. "replace": {
  8124. "myclabs/deep-copy": "self.version"
  8125. },
  8126. "require-dev": {
  8127. "doctrine/collections": "^1.0",
  8128. "doctrine/common": "^2.6",
  8129. "phpunit/phpunit": "^7.1"
  8130. },
  8131. "type": "library",
  8132. "autoload": {
  8133. "psr-4": {
  8134. "DeepCopy\\": "src/DeepCopy/"
  8135. },
  8136. "files": [
  8137. "src/DeepCopy/deep_copy.php"
  8138. ]
  8139. },
  8140. "notification-url": "https://packagist.org/downloads/",
  8141. "license": [
  8142. "MIT"
  8143. ],
  8144. "description": "Create deep copies (clones) of your objects",
  8145. "keywords": [
  8146. "clone",
  8147. "copy",
  8148. "duplicate",
  8149. "object",
  8150. "object graph"
  8151. ],
  8152. "time": "2020-11-13T09:40:50+00:00"
  8153. },
  8154. {
  8155. "name": "phar-io/manifest",
  8156. "version": "2.0.1",
  8157. "source": {
  8158. "type": "git",
  8159. "url": "https://github.com/phar-io/manifest.git",
  8160. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8161. },
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8165. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8166. "shasum": "",
  8167. "mirrors": [
  8168. {
  8169. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8170. "preferred": true
  8171. }
  8172. ]
  8173. },
  8174. "require": {
  8175. "ext-dom": "*",
  8176. "ext-phar": "*",
  8177. "ext-xmlwriter": "*",
  8178. "phar-io/version": "^3.0.1",
  8179. "php": "^7.2 || ^8.0"
  8180. },
  8181. "type": "library",
  8182. "extra": {
  8183. "branch-alias": {
  8184. "dev-master": "2.0.x-dev"
  8185. }
  8186. },
  8187. "autoload": {
  8188. "classmap": [
  8189. "src/"
  8190. ]
  8191. },
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "BSD-3-Clause"
  8195. ],
  8196. "authors": [
  8197. {
  8198. "name": "Arne Blankerts",
  8199. "email": "arne@blankerts.de",
  8200. "role": "Developer"
  8201. },
  8202. {
  8203. "name": "Sebastian Heuer",
  8204. "email": "sebastian@phpeople.de",
  8205. "role": "Developer"
  8206. },
  8207. {
  8208. "name": "Sebastian Bergmann",
  8209. "email": "sebastian@phpunit.de",
  8210. "role": "Developer"
  8211. }
  8212. ],
  8213. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8214. "time": "2020-06-27T14:33:11+00:00"
  8215. },
  8216. {
  8217. "name": "phar-io/version",
  8218. "version": "3.1.0",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/phar-io/version.git",
  8222. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8227. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8228. "shasum": "",
  8229. "mirrors": [
  8230. {
  8231. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8232. "preferred": true
  8233. }
  8234. ]
  8235. },
  8236. "require": {
  8237. "php": "^7.2 || ^8.0"
  8238. },
  8239. "type": "library",
  8240. "autoload": {
  8241. "classmap": [
  8242. "src/"
  8243. ]
  8244. },
  8245. "notification-url": "https://packagist.org/downloads/",
  8246. "license": [
  8247. "BSD-3-Clause"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "Arne Blankerts",
  8252. "email": "arne@blankerts.de",
  8253. "role": "Developer"
  8254. },
  8255. {
  8256. "name": "Sebastian Heuer",
  8257. "email": "sebastian@phpeople.de",
  8258. "role": "Developer"
  8259. },
  8260. {
  8261. "name": "Sebastian Bergmann",
  8262. "email": "sebastian@phpunit.de",
  8263. "role": "Developer"
  8264. }
  8265. ],
  8266. "description": "Library for handling version information and constraints",
  8267. "time": "2021-02-23T14:00:09+00:00"
  8268. },
  8269. {
  8270. "name": "phpspec/prophecy",
  8271. "version": "v1.10.3",
  8272. "source": {
  8273. "type": "git",
  8274. "url": "https://github.com/phpspec/prophecy.git",
  8275. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  8276. },
  8277. "dist": {
  8278. "type": "zip",
  8279. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  8280. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  8281. "shasum": "",
  8282. "mirrors": [
  8283. {
  8284. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8285. "preferred": true
  8286. }
  8287. ]
  8288. },
  8289. "require": {
  8290. "doctrine/instantiator": "^1.0.2",
  8291. "php": "^5.3|^7.0",
  8292. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  8293. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  8294. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  8295. },
  8296. "require-dev": {
  8297. "phpspec/phpspec": "^2.5 || ^3.2",
  8298. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  8299. },
  8300. "type": "library",
  8301. "extra": {
  8302. "branch-alias": {
  8303. "dev-master": "1.10.x-dev"
  8304. }
  8305. },
  8306. "autoload": {
  8307. "psr-4": {
  8308. "Prophecy\\": "src/Prophecy"
  8309. }
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "MIT"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "Konstantin Kudryashov",
  8318. "email": "ever.zet@gmail.com",
  8319. "homepage": "http://everzet.com"
  8320. },
  8321. {
  8322. "name": "Marcello Duarte",
  8323. "email": "marcello.duarte@gmail.com"
  8324. }
  8325. ],
  8326. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8327. "homepage": "https://github.com/phpspec/prophecy",
  8328. "keywords": [
  8329. "Double",
  8330. "Dummy",
  8331. "fake",
  8332. "mock",
  8333. "spy",
  8334. "stub"
  8335. ],
  8336. "time": "2020-03-05T15:02:03+00:00"
  8337. },
  8338. {
  8339. "name": "phpunit/php-code-coverage",
  8340. "version": "7.0.14",
  8341. "source": {
  8342. "type": "git",
  8343. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8344. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8345. },
  8346. "dist": {
  8347. "type": "zip",
  8348. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8349. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8350. "shasum": "",
  8351. "mirrors": [
  8352. {
  8353. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8354. "preferred": true
  8355. }
  8356. ]
  8357. },
  8358. "require": {
  8359. "ext-dom": "*",
  8360. "ext-xmlwriter": "*",
  8361. "php": ">=7.2",
  8362. "phpunit/php-file-iterator": "^2.0.2",
  8363. "phpunit/php-text-template": "^1.2.1",
  8364. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8365. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8366. "sebastian/environment": "^4.2.2",
  8367. "sebastian/version": "^2.0.1",
  8368. "theseer/tokenizer": "^1.1.3"
  8369. },
  8370. "require-dev": {
  8371. "phpunit/phpunit": "^8.2.2"
  8372. },
  8373. "suggest": {
  8374. "ext-xdebug": "^2.7.2"
  8375. },
  8376. "type": "library",
  8377. "extra": {
  8378. "branch-alias": {
  8379. "dev-master": "7.0-dev"
  8380. }
  8381. },
  8382. "autoload": {
  8383. "classmap": [
  8384. "src/"
  8385. ]
  8386. },
  8387. "notification-url": "https://packagist.org/downloads/",
  8388. "license": [
  8389. "BSD-3-Clause"
  8390. ],
  8391. "authors": [
  8392. {
  8393. "name": "Sebastian Bergmann",
  8394. "email": "sebastian@phpunit.de",
  8395. "role": "lead"
  8396. }
  8397. ],
  8398. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8399. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8400. "keywords": [
  8401. "coverage",
  8402. "testing",
  8403. "xunit"
  8404. ],
  8405. "time": "2020-12-02T13:39:03+00:00"
  8406. },
  8407. {
  8408. "name": "phpunit/php-file-iterator",
  8409. "version": "2.0.3",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8413. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8418. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8419. "shasum": "",
  8420. "mirrors": [
  8421. {
  8422. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8423. "preferred": true
  8424. }
  8425. ]
  8426. },
  8427. "require": {
  8428. "php": ">=7.1"
  8429. },
  8430. "require-dev": {
  8431. "phpunit/phpunit": "^8.5"
  8432. },
  8433. "type": "library",
  8434. "extra": {
  8435. "branch-alias": {
  8436. "dev-master": "2.0.x-dev"
  8437. }
  8438. },
  8439. "autoload": {
  8440. "classmap": [
  8441. "src/"
  8442. ]
  8443. },
  8444. "notification-url": "https://packagist.org/downloads/",
  8445. "license": [
  8446. "BSD-3-Clause"
  8447. ],
  8448. "authors": [
  8449. {
  8450. "name": "Sebastian Bergmann",
  8451. "email": "sebastian@phpunit.de",
  8452. "role": "lead"
  8453. }
  8454. ],
  8455. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8456. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8457. "keywords": [
  8458. "filesystem",
  8459. "iterator"
  8460. ],
  8461. "time": "2020-11-30T08:25:21+00:00"
  8462. },
  8463. {
  8464. "name": "phpunit/php-text-template",
  8465. "version": "1.2.1",
  8466. "source": {
  8467. "type": "git",
  8468. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8469. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8470. },
  8471. "dist": {
  8472. "type": "zip",
  8473. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8474. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8475. "shasum": "",
  8476. "mirrors": [
  8477. {
  8478. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8479. "preferred": true
  8480. }
  8481. ]
  8482. },
  8483. "require": {
  8484. "php": ">=5.3.3"
  8485. },
  8486. "type": "library",
  8487. "autoload": {
  8488. "classmap": [
  8489. "src/"
  8490. ]
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "BSD-3-Clause"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "Sebastian Bergmann",
  8499. "email": "sebastian@phpunit.de",
  8500. "role": "lead"
  8501. }
  8502. ],
  8503. "description": "Simple template engine.",
  8504. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8505. "keywords": [
  8506. "template"
  8507. ],
  8508. "time": "2015-06-21T13:50:34+00:00"
  8509. },
  8510. {
  8511. "name": "phpunit/php-timer",
  8512. "version": "2.1.3",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8516. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8521. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8522. "shasum": "",
  8523. "mirrors": [
  8524. {
  8525. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8526. "preferred": true
  8527. }
  8528. ]
  8529. },
  8530. "require": {
  8531. "php": ">=7.1"
  8532. },
  8533. "require-dev": {
  8534. "phpunit/phpunit": "^8.5"
  8535. },
  8536. "type": "library",
  8537. "extra": {
  8538. "branch-alias": {
  8539. "dev-master": "2.1-dev"
  8540. }
  8541. },
  8542. "autoload": {
  8543. "classmap": [
  8544. "src/"
  8545. ]
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "license": [
  8549. "BSD-3-Clause"
  8550. ],
  8551. "authors": [
  8552. {
  8553. "name": "Sebastian Bergmann",
  8554. "email": "sebastian@phpunit.de",
  8555. "role": "lead"
  8556. }
  8557. ],
  8558. "description": "Utility class for timing",
  8559. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8560. "keywords": [
  8561. "timer"
  8562. ],
  8563. "time": "2020-11-30T08:20:02+00:00"
  8564. },
  8565. {
  8566. "name": "phpunit/php-token-stream",
  8567. "version": "4.0.4",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8571. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  8576. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  8577. "shasum": "",
  8578. "mirrors": [
  8579. {
  8580. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8581. "preferred": true
  8582. }
  8583. ]
  8584. },
  8585. "require": {
  8586. "ext-tokenizer": "*",
  8587. "php": "^7.3 || ^8.0"
  8588. },
  8589. "require-dev": {
  8590. "phpunit/phpunit": "^9.0"
  8591. },
  8592. "type": "library",
  8593. "extra": {
  8594. "branch-alias": {
  8595. "dev-master": "4.0-dev"
  8596. }
  8597. },
  8598. "autoload": {
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Sebastian Bergmann",
  8610. "email": "sebastian@phpunit.de"
  8611. }
  8612. ],
  8613. "description": "Wrapper around PHP's tokenizer extension.",
  8614. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8615. "keywords": [
  8616. "tokenizer"
  8617. ],
  8618. "abandoned": true,
  8619. "time": "2020-08-04T08:28:15+00:00"
  8620. },
  8621. {
  8622. "name": "phpunit/phpunit",
  8623. "version": "8.5.15",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8627. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  8632. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  8633. "shasum": "",
  8634. "mirrors": [
  8635. {
  8636. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8637. "preferred": true
  8638. }
  8639. ]
  8640. },
  8641. "require": {
  8642. "doctrine/instantiator": "^1.3.1",
  8643. "ext-dom": "*",
  8644. "ext-json": "*",
  8645. "ext-libxml": "*",
  8646. "ext-mbstring": "*",
  8647. "ext-xml": "*",
  8648. "ext-xmlwriter": "*",
  8649. "myclabs/deep-copy": "^1.10.0",
  8650. "phar-io/manifest": "^2.0.1",
  8651. "phar-io/version": "^3.0.2",
  8652. "php": ">=7.2",
  8653. "phpspec/prophecy": "^1.10.3",
  8654. "phpunit/php-code-coverage": "^7.0.12",
  8655. "phpunit/php-file-iterator": "^2.0.2",
  8656. "phpunit/php-text-template": "^1.2.1",
  8657. "phpunit/php-timer": "^2.1.2",
  8658. "sebastian/comparator": "^3.0.2",
  8659. "sebastian/diff": "^3.0.2",
  8660. "sebastian/environment": "^4.2.3",
  8661. "sebastian/exporter": "^3.1.2",
  8662. "sebastian/global-state": "^3.0.0",
  8663. "sebastian/object-enumerator": "^3.0.3",
  8664. "sebastian/resource-operations": "^2.0.1",
  8665. "sebastian/type": "^1.1.3",
  8666. "sebastian/version": "^2.0.1"
  8667. },
  8668. "require-dev": {
  8669. "ext-pdo": "*"
  8670. },
  8671. "suggest": {
  8672. "ext-soap": "*",
  8673. "ext-xdebug": "*",
  8674. "phpunit/php-invoker": "^2.0.0"
  8675. },
  8676. "bin": [
  8677. "phpunit"
  8678. ],
  8679. "type": "library",
  8680. "extra": {
  8681. "branch-alias": {
  8682. "dev-master": "8.5-dev"
  8683. }
  8684. },
  8685. "autoload": {
  8686. "classmap": [
  8687. "src/"
  8688. ]
  8689. },
  8690. "notification-url": "https://packagist.org/downloads/",
  8691. "license": [
  8692. "BSD-3-Clause"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Sebastian Bergmann",
  8697. "email": "sebastian@phpunit.de",
  8698. "role": "lead"
  8699. }
  8700. ],
  8701. "description": "The PHP Unit Testing framework.",
  8702. "homepage": "https://phpunit.de/",
  8703. "keywords": [
  8704. "phpunit",
  8705. "testing",
  8706. "xunit"
  8707. ],
  8708. "time": "2021-03-17T07:27:54+00:00"
  8709. },
  8710. {
  8711. "name": "sebastian/code-unit-reverse-lookup",
  8712. "version": "1.0.2",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8716. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  8721. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  8722. "shasum": "",
  8723. "mirrors": [
  8724. {
  8725. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8726. "preferred": true
  8727. }
  8728. ]
  8729. },
  8730. "require": {
  8731. "php": ">=5.6"
  8732. },
  8733. "require-dev": {
  8734. "phpunit/phpunit": "^8.5"
  8735. },
  8736. "type": "library",
  8737. "extra": {
  8738. "branch-alias": {
  8739. "dev-master": "1.0.x-dev"
  8740. }
  8741. },
  8742. "autoload": {
  8743. "classmap": [
  8744. "src/"
  8745. ]
  8746. },
  8747. "notification-url": "https://packagist.org/downloads/",
  8748. "license": [
  8749. "BSD-3-Clause"
  8750. ],
  8751. "authors": [
  8752. {
  8753. "name": "Sebastian Bergmann",
  8754. "email": "sebastian@phpunit.de"
  8755. }
  8756. ],
  8757. "description": "Looks up which function or method a line of code belongs to",
  8758. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8759. "time": "2020-11-30T08:15:22+00:00"
  8760. },
  8761. {
  8762. "name": "sebastian/comparator",
  8763. "version": "3.0.3",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/sebastianbergmann/comparator.git",
  8767. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  8772. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  8773. "shasum": "",
  8774. "mirrors": [
  8775. {
  8776. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8777. "preferred": true
  8778. }
  8779. ]
  8780. },
  8781. "require": {
  8782. "php": ">=7.1",
  8783. "sebastian/diff": "^3.0",
  8784. "sebastian/exporter": "^3.1"
  8785. },
  8786. "require-dev": {
  8787. "phpunit/phpunit": "^8.5"
  8788. },
  8789. "type": "library",
  8790. "extra": {
  8791. "branch-alias": {
  8792. "dev-master": "3.0-dev"
  8793. }
  8794. },
  8795. "autoload": {
  8796. "classmap": [
  8797. "src/"
  8798. ]
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "BSD-3-Clause"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Sebastian Bergmann",
  8807. "email": "sebastian@phpunit.de"
  8808. },
  8809. {
  8810. "name": "Jeff Welch",
  8811. "email": "whatthejeff@gmail.com"
  8812. },
  8813. {
  8814. "name": "Volker Dusch",
  8815. "email": "github@wallbash.com"
  8816. },
  8817. {
  8818. "name": "Bernhard Schussek",
  8819. "email": "bschussek@2bepublished.at"
  8820. }
  8821. ],
  8822. "description": "Provides the functionality to compare PHP values for equality",
  8823. "homepage": "https://github.com/sebastianbergmann/comparator",
  8824. "keywords": [
  8825. "comparator",
  8826. "compare",
  8827. "equality"
  8828. ],
  8829. "time": "2020-11-30T08:04:30+00:00"
  8830. },
  8831. {
  8832. "name": "sebastian/diff",
  8833. "version": "3.0.3",
  8834. "source": {
  8835. "type": "git",
  8836. "url": "https://github.com/sebastianbergmann/diff.git",
  8837. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  8838. },
  8839. "dist": {
  8840. "type": "zip",
  8841. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  8842. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  8843. "shasum": "",
  8844. "mirrors": [
  8845. {
  8846. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8847. "preferred": true
  8848. }
  8849. ]
  8850. },
  8851. "require": {
  8852. "php": ">=7.1"
  8853. },
  8854. "require-dev": {
  8855. "phpunit/phpunit": "^7.5 || ^8.0",
  8856. "symfony/process": "^2 || ^3.3 || ^4"
  8857. },
  8858. "type": "library",
  8859. "extra": {
  8860. "branch-alias": {
  8861. "dev-master": "3.0-dev"
  8862. }
  8863. },
  8864. "autoload": {
  8865. "classmap": [
  8866. "src/"
  8867. ]
  8868. },
  8869. "notification-url": "https://packagist.org/downloads/",
  8870. "license": [
  8871. "BSD-3-Clause"
  8872. ],
  8873. "authors": [
  8874. {
  8875. "name": "Sebastian Bergmann",
  8876. "email": "sebastian@phpunit.de"
  8877. },
  8878. {
  8879. "name": "Kore Nordmann",
  8880. "email": "mail@kore-nordmann.de"
  8881. }
  8882. ],
  8883. "description": "Diff implementation",
  8884. "homepage": "https://github.com/sebastianbergmann/diff",
  8885. "keywords": [
  8886. "diff",
  8887. "udiff",
  8888. "unidiff",
  8889. "unified diff"
  8890. ],
  8891. "time": "2020-11-30T07:59:04+00:00"
  8892. },
  8893. {
  8894. "name": "sebastian/environment",
  8895. "version": "4.2.4",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/sebastianbergmann/environment.git",
  8899. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  8904. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  8905. "shasum": "",
  8906. "mirrors": [
  8907. {
  8908. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8909. "preferred": true
  8910. }
  8911. ]
  8912. },
  8913. "require": {
  8914. "php": ">=7.1"
  8915. },
  8916. "require-dev": {
  8917. "phpunit/phpunit": "^7.5"
  8918. },
  8919. "suggest": {
  8920. "ext-posix": "*"
  8921. },
  8922. "type": "library",
  8923. "extra": {
  8924. "branch-alias": {
  8925. "dev-master": "4.2-dev"
  8926. }
  8927. },
  8928. "autoload": {
  8929. "classmap": [
  8930. "src/"
  8931. ]
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "BSD-3-Clause"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Sebastian Bergmann",
  8940. "email": "sebastian@phpunit.de"
  8941. }
  8942. ],
  8943. "description": "Provides functionality to handle HHVM/PHP environments",
  8944. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8945. "keywords": [
  8946. "Xdebug",
  8947. "environment",
  8948. "hhvm"
  8949. ],
  8950. "time": "2020-11-30T07:53:42+00:00"
  8951. },
  8952. {
  8953. "name": "sebastian/exporter",
  8954. "version": "3.1.3",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/sebastianbergmann/exporter.git",
  8958. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  8963. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  8964. "shasum": "",
  8965. "mirrors": [
  8966. {
  8967. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8968. "preferred": true
  8969. }
  8970. ]
  8971. },
  8972. "require": {
  8973. "php": ">=7.0",
  8974. "sebastian/recursion-context": "^3.0"
  8975. },
  8976. "require-dev": {
  8977. "ext-mbstring": "*",
  8978. "phpunit/phpunit": "^6.0"
  8979. },
  8980. "type": "library",
  8981. "extra": {
  8982. "branch-alias": {
  8983. "dev-master": "3.1.x-dev"
  8984. }
  8985. },
  8986. "autoload": {
  8987. "classmap": [
  8988. "src/"
  8989. ]
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "BSD-3-Clause"
  8994. ],
  8995. "authors": [
  8996. {
  8997. "name": "Sebastian Bergmann",
  8998. "email": "sebastian@phpunit.de"
  8999. },
  9000. {
  9001. "name": "Jeff Welch",
  9002. "email": "whatthejeff@gmail.com"
  9003. },
  9004. {
  9005. "name": "Volker Dusch",
  9006. "email": "github@wallbash.com"
  9007. },
  9008. {
  9009. "name": "Adam Harvey",
  9010. "email": "aharvey@php.net"
  9011. },
  9012. {
  9013. "name": "Bernhard Schussek",
  9014. "email": "bschussek@gmail.com"
  9015. }
  9016. ],
  9017. "description": "Provides the functionality to export PHP variables for visualization",
  9018. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9019. "keywords": [
  9020. "export",
  9021. "exporter"
  9022. ],
  9023. "time": "2020-11-30T07:47:53+00:00"
  9024. },
  9025. {
  9026. "name": "sebastian/global-state",
  9027. "version": "3.0.1",
  9028. "source": {
  9029. "type": "git",
  9030. "url": "https://github.com/sebastianbergmann/global-state.git",
  9031. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9032. },
  9033. "dist": {
  9034. "type": "zip",
  9035. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9036. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9037. "shasum": "",
  9038. "mirrors": [
  9039. {
  9040. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9041. "preferred": true
  9042. }
  9043. ]
  9044. },
  9045. "require": {
  9046. "php": ">=7.2",
  9047. "sebastian/object-reflector": "^1.1.1",
  9048. "sebastian/recursion-context": "^3.0"
  9049. },
  9050. "require-dev": {
  9051. "ext-dom": "*",
  9052. "phpunit/phpunit": "^8.0"
  9053. },
  9054. "suggest": {
  9055. "ext-uopz": "*"
  9056. },
  9057. "type": "library",
  9058. "extra": {
  9059. "branch-alias": {
  9060. "dev-master": "3.0-dev"
  9061. }
  9062. },
  9063. "autoload": {
  9064. "classmap": [
  9065. "src/"
  9066. ]
  9067. },
  9068. "notification-url": "https://packagist.org/downloads/",
  9069. "license": [
  9070. "BSD-3-Clause"
  9071. ],
  9072. "authors": [
  9073. {
  9074. "name": "Sebastian Bergmann",
  9075. "email": "sebastian@phpunit.de"
  9076. }
  9077. ],
  9078. "description": "Snapshotting of global state",
  9079. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9080. "keywords": [
  9081. "global state"
  9082. ],
  9083. "time": "2020-11-30T07:43:24+00:00"
  9084. },
  9085. {
  9086. "name": "sebastian/object-enumerator",
  9087. "version": "3.0.4",
  9088. "source": {
  9089. "type": "git",
  9090. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9091. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9092. },
  9093. "dist": {
  9094. "type": "zip",
  9095. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9096. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9097. "shasum": "",
  9098. "mirrors": [
  9099. {
  9100. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9101. "preferred": true
  9102. }
  9103. ]
  9104. },
  9105. "require": {
  9106. "php": ">=7.0",
  9107. "sebastian/object-reflector": "^1.1.1",
  9108. "sebastian/recursion-context": "^3.0"
  9109. },
  9110. "require-dev": {
  9111. "phpunit/phpunit": "^6.0"
  9112. },
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-master": "3.0.x-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "classmap": [
  9121. "src/"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "BSD-3-Clause"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Sebastian Bergmann",
  9131. "email": "sebastian@phpunit.de"
  9132. }
  9133. ],
  9134. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9135. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9136. "time": "2020-11-30T07:40:27+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/object-reflector",
  9140. "version": "1.1.2",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9144. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9149. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9150. "shasum": "",
  9151. "mirrors": [
  9152. {
  9153. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9154. "preferred": true
  9155. }
  9156. ]
  9157. },
  9158. "require": {
  9159. "php": ">=7.0"
  9160. },
  9161. "require-dev": {
  9162. "phpunit/phpunit": "^6.0"
  9163. },
  9164. "type": "library",
  9165. "extra": {
  9166. "branch-alias": {
  9167. "dev-master": "1.1-dev"
  9168. }
  9169. },
  9170. "autoload": {
  9171. "classmap": [
  9172. "src/"
  9173. ]
  9174. },
  9175. "notification-url": "https://packagist.org/downloads/",
  9176. "license": [
  9177. "BSD-3-Clause"
  9178. ],
  9179. "authors": [
  9180. {
  9181. "name": "Sebastian Bergmann",
  9182. "email": "sebastian@phpunit.de"
  9183. }
  9184. ],
  9185. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9186. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9187. "time": "2020-11-30T07:37:18+00:00"
  9188. },
  9189. {
  9190. "name": "sebastian/recursion-context",
  9191. "version": "3.0.1",
  9192. "source": {
  9193. "type": "git",
  9194. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9195. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9196. },
  9197. "dist": {
  9198. "type": "zip",
  9199. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9200. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9201. "shasum": "",
  9202. "mirrors": [
  9203. {
  9204. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9205. "preferred": true
  9206. }
  9207. ]
  9208. },
  9209. "require": {
  9210. "php": ">=7.0"
  9211. },
  9212. "require-dev": {
  9213. "phpunit/phpunit": "^6.0"
  9214. },
  9215. "type": "library",
  9216. "extra": {
  9217. "branch-alias": {
  9218. "dev-master": "3.0.x-dev"
  9219. }
  9220. },
  9221. "autoload": {
  9222. "classmap": [
  9223. "src/"
  9224. ]
  9225. },
  9226. "notification-url": "https://packagist.org/downloads/",
  9227. "license": [
  9228. "BSD-3-Clause"
  9229. ],
  9230. "authors": [
  9231. {
  9232. "name": "Sebastian Bergmann",
  9233. "email": "sebastian@phpunit.de"
  9234. },
  9235. {
  9236. "name": "Jeff Welch",
  9237. "email": "whatthejeff@gmail.com"
  9238. },
  9239. {
  9240. "name": "Adam Harvey",
  9241. "email": "aharvey@php.net"
  9242. }
  9243. ],
  9244. "description": "Provides functionality to recursively process PHP variables",
  9245. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9246. "time": "2020-11-30T07:34:24+00:00"
  9247. },
  9248. {
  9249. "name": "sebastian/resource-operations",
  9250. "version": "2.0.2",
  9251. "source": {
  9252. "type": "git",
  9253. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9254. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9255. },
  9256. "dist": {
  9257. "type": "zip",
  9258. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9259. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9260. "shasum": "",
  9261. "mirrors": [
  9262. {
  9263. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9264. "preferred": true
  9265. }
  9266. ]
  9267. },
  9268. "require": {
  9269. "php": ">=7.1"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "2.0-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Sebastian Bergmann",
  9289. "email": "sebastian@phpunit.de"
  9290. }
  9291. ],
  9292. "description": "Provides a list of PHP built-in functions that operate on resources",
  9293. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9294. "time": "2020-11-30T07:30:19+00:00"
  9295. },
  9296. {
  9297. "name": "sebastian/type",
  9298. "version": "1.1.4",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/sebastianbergmann/type.git",
  9302. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9307. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9308. "shasum": "",
  9309. "mirrors": [
  9310. {
  9311. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9312. "preferred": true
  9313. }
  9314. ]
  9315. },
  9316. "require": {
  9317. "php": ">=7.2"
  9318. },
  9319. "require-dev": {
  9320. "phpunit/phpunit": "^8.2"
  9321. },
  9322. "type": "library",
  9323. "extra": {
  9324. "branch-alias": {
  9325. "dev-master": "1.1-dev"
  9326. }
  9327. },
  9328. "autoload": {
  9329. "classmap": [
  9330. "src/"
  9331. ]
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "BSD-3-Clause"
  9336. ],
  9337. "authors": [
  9338. {
  9339. "name": "Sebastian Bergmann",
  9340. "email": "sebastian@phpunit.de",
  9341. "role": "lead"
  9342. }
  9343. ],
  9344. "description": "Collection of value objects that represent the types of the PHP type system",
  9345. "homepage": "https://github.com/sebastianbergmann/type",
  9346. "time": "2020-11-30T07:25:11+00:00"
  9347. },
  9348. {
  9349. "name": "sebastian/version",
  9350. "version": "2.0.1",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/sebastianbergmann/version.git",
  9354. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9359. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9360. "shasum": "",
  9361. "mirrors": [
  9362. {
  9363. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9364. "preferred": true
  9365. }
  9366. ]
  9367. },
  9368. "require": {
  9369. "php": ">=5.6"
  9370. },
  9371. "type": "library",
  9372. "extra": {
  9373. "branch-alias": {
  9374. "dev-master": "2.0.x-dev"
  9375. }
  9376. },
  9377. "autoload": {
  9378. "classmap": [
  9379. "src/"
  9380. ]
  9381. },
  9382. "notification-url": "https://packagist.org/downloads/",
  9383. "license": [
  9384. "BSD-3-Clause"
  9385. ],
  9386. "authors": [
  9387. {
  9388. "name": "Sebastian Bergmann",
  9389. "email": "sebastian@phpunit.de",
  9390. "role": "lead"
  9391. }
  9392. ],
  9393. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9394. "homepage": "https://github.com/sebastianbergmann/version",
  9395. "time": "2016-10-03T07:35:21+00:00"
  9396. },
  9397. {
  9398. "name": "theseer/tokenizer",
  9399. "version": "1.2.0",
  9400. "source": {
  9401. "type": "git",
  9402. "url": "https://github.com/theseer/tokenizer.git",
  9403. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9404. },
  9405. "dist": {
  9406. "type": "zip",
  9407. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9408. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9409. "shasum": "",
  9410. "mirrors": [
  9411. {
  9412. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9413. "preferred": true
  9414. }
  9415. ]
  9416. },
  9417. "require": {
  9418. "ext-dom": "*",
  9419. "ext-tokenizer": "*",
  9420. "ext-xmlwriter": "*",
  9421. "php": "^7.2 || ^8.0"
  9422. },
  9423. "type": "library",
  9424. "autoload": {
  9425. "classmap": [
  9426. "src/"
  9427. ]
  9428. },
  9429. "notification-url": "https://packagist.org/downloads/",
  9430. "license": [
  9431. "BSD-3-Clause"
  9432. ],
  9433. "authors": [
  9434. {
  9435. "name": "Arne Blankerts",
  9436. "email": "arne@blankerts.de",
  9437. "role": "Developer"
  9438. }
  9439. ],
  9440. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9441. "time": "2020-07-12T23:59:07+00:00"
  9442. }
  9443. ],
  9444. "aliases": [],
  9445. "minimum-stability": "dev",
  9446. "stability-flags": [],
  9447. "prefer-stable": true,
  9448. "prefer-lowest": false,
  9449. "platform": {
  9450. "php": "^7.2"
  9451. },
  9452. "platform-dev": []
  9453. }