composer.lock 407 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349
  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": "548dd2f48d0acda9bdacea7b27aa2826",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.8",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  20. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.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": "^2.1",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  38. "squizlabs/php_codesniffer": "^3.4"
  39. },
  40. "suggest": {
  41. "ext-imagick": "to generate QR code images"
  42. },
  43. "type": "library",
  44. "autoload": {
  45. "psr-4": {
  46. "BaconQrCode\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "BSD-2-Clause"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Ben Scholzen 'DASPRiD'",
  56. "email": "mail@dasprids.de",
  57. "homepage": "https://dasprids.de/",
  58. "role": "Developer"
  59. }
  60. ],
  61. "description": "BaconQrCode is a QR code generator for PHP.",
  62. "homepage": "https://github.com/Bacon/BaconQrCode",
  63. "support": {
  64. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  65. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  66. },
  67. "time": "2022-12-07T17:46:57+00:00"
  68. },
  69. {
  70. "name": "barryvdh/laravel-ide-helper",
  71. "version": "v2.8.2",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  75. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  80. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  81. "shasum": "",
  82. "mirrors": [
  83. {
  84. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  85. "preferred": true
  86. }
  87. ]
  88. },
  89. "require": {
  90. "barryvdh/reflection-docblock": "^2.0.6",
  91. "composer/composer": "^1.6 || ^2",
  92. "doctrine/dbal": "~2.3",
  93. "ext-json": "*",
  94. "illuminate/console": "^6 || ^7 || ^8",
  95. "illuminate/filesystem": "^6 || ^7 || ^8",
  96. "illuminate/support": "^6 || ^7 || ^8",
  97. "php": ">=7.2",
  98. "phpdocumentor/type-resolver": "^1.1.0"
  99. },
  100. "require-dev": {
  101. "ext-pdo_sqlite": "*",
  102. "friendsofphp/php-cs-fixer": "^2",
  103. "illuminate/config": "^6 || ^7 || ^8",
  104. "illuminate/view": "^6 || ^7 || ^8",
  105. "mockery/mockery": "^1.3.3",
  106. "orchestra/testbench": "^4 || ^5 || ^6",
  107. "phpunit/phpunit": "^8.5 || ^9",
  108. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  109. "vimeo/psalm": "^3.12"
  110. },
  111. "type": "library",
  112. "extra": {
  113. "branch-alias": {
  114. "dev-master": "2.8-dev"
  115. },
  116. "laravel": {
  117. "providers": [
  118. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  119. ]
  120. }
  121. },
  122. "autoload": {
  123. "psr-4": {
  124. "Barryvdh\\LaravelIdeHelper\\": "src"
  125. }
  126. },
  127. "notification-url": "https://packagist.org/downloads/",
  128. "license": [
  129. "MIT"
  130. ],
  131. "authors": [
  132. {
  133. "name": "Barry vd. Heuvel",
  134. "email": "barryvdh@gmail.com"
  135. }
  136. ],
  137. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  138. "keywords": [
  139. "autocomplete",
  140. "codeintel",
  141. "helper",
  142. "ide",
  143. "laravel",
  144. "netbeans",
  145. "phpdoc",
  146. "phpstorm",
  147. "sublime"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  151. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  152. },
  153. "funding": [
  154. {
  155. "url": "https://github.com/barryvdh",
  156. "type": "github"
  157. }
  158. ],
  159. "time": "2020-12-06T08:55:05+00:00"
  160. },
  161. {
  162. "name": "barryvdh/reflection-docblock",
  163. "version": "v2.1.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  167. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  172. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  173. "shasum": "",
  174. "mirrors": [
  175. {
  176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  177. "preferred": true
  178. }
  179. ]
  180. },
  181. "require": {
  182. "php": ">=5.3.3"
  183. },
  184. "require-dev": {
  185. "phpunit/phpunit": "^8.5.14|^9"
  186. },
  187. "suggest": {
  188. "dflydev/markdown": "~1.0",
  189. "erusev/parsedown": "~1.0"
  190. },
  191. "type": "library",
  192. "extra": {
  193. "branch-alias": {
  194. "dev-master": "2.0.x-dev"
  195. }
  196. },
  197. "autoload": {
  198. "psr-0": {
  199. "Barryvdh": [
  200. "src/"
  201. ]
  202. }
  203. },
  204. "notification-url": "https://packagist.org/downloads/",
  205. "license": [
  206. "MIT"
  207. ],
  208. "authors": [
  209. {
  210. "name": "Mike van Riel",
  211. "email": "mike.vanriel@naenius.com"
  212. }
  213. ],
  214. "support": {
  215. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  216. },
  217. "time": "2022-10-31T15:35:43+00:00"
  218. },
  219. {
  220. "name": "composer/ca-bundle",
  221. "version": "1.3.5",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/composer/ca-bundle.git",
  225. "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
  230. "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
  231. "shasum": "",
  232. "mirrors": [
  233. {
  234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  235. "preferred": true
  236. }
  237. ]
  238. },
  239. "require": {
  240. "ext-openssl": "*",
  241. "ext-pcre": "*",
  242. "php": "^5.3.2 || ^7.0 || ^8.0"
  243. },
  244. "require-dev": {
  245. "phpstan/phpstan": "^0.12.55",
  246. "psr/log": "^1.0",
  247. "symfony/phpunit-bridge": "^4.2 || ^5",
  248. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-main": "1.x-dev"
  254. }
  255. },
  256. "autoload": {
  257. "psr-4": {
  258. "Composer\\CaBundle\\": "src"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Jordi Boggiano",
  268. "email": "j.boggiano@seld.be",
  269. "homepage": "http://seld.be"
  270. }
  271. ],
  272. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  273. "keywords": [
  274. "cabundle",
  275. "cacert",
  276. "certificate",
  277. "ssl",
  278. "tls"
  279. ],
  280. "support": {
  281. "irc": "irc://irc.freenode.org/composer",
  282. "issues": "https://github.com/composer/ca-bundle/issues",
  283. "source": "https://github.com/composer/ca-bundle/tree/1.3.5"
  284. },
  285. "funding": [
  286. {
  287. "url": "https://packagist.com",
  288. "type": "custom"
  289. },
  290. {
  291. "url": "https://github.com/composer",
  292. "type": "github"
  293. },
  294. {
  295. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  296. "type": "tidelift"
  297. }
  298. ],
  299. "time": "2023-01-11T08:27:00+00:00"
  300. },
  301. {
  302. "name": "composer/composer",
  303. "version": "2.2.20",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/composer/composer.git",
  307. "reference": "b4850827d87688465fc3b775c71b2836187538ac"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/composer/composer/zipball/b4850827d87688465fc3b775c71b2836187538ac",
  312. "reference": "b4850827d87688465fc3b775c71b2836187538ac",
  313. "shasum": "",
  314. "mirrors": [
  315. {
  316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  317. "preferred": true
  318. }
  319. ]
  320. },
  321. "require": {
  322. "composer/ca-bundle": "^1.0",
  323. "composer/metadata-minifier": "^1.0",
  324. "composer/pcre": "^1.0",
  325. "composer/semver": "^3.0",
  326. "composer/spdx-licenses": "^1.2",
  327. "composer/xdebug-handler": "^2.0 || ^3.0",
  328. "justinrainbow/json-schema": "^5.2.11",
  329. "php": "^5.3.2 || ^7.0 || ^8.0",
  330. "psr/log": "^1.0 || ^2.0",
  331. "react/promise": "^1.2 || ^2.7",
  332. "seld/jsonlint": "^1.4",
  333. "seld/phar-utils": "^1.0",
  334. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  335. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  336. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  337. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
  338. },
  339. "require-dev": {
  340. "phpspec/prophecy": "^1.10",
  341. "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
  342. },
  343. "suggest": {
  344. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  345. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  346. "ext-zlib": "Allow gzip compression of HTTP requests"
  347. },
  348. "bin": [
  349. "bin/composer"
  350. ],
  351. "type": "library",
  352. "extra": {
  353. "branch-alias": {
  354. "dev-main": "2.2-dev"
  355. }
  356. },
  357. "autoload": {
  358. "psr-4": {
  359. "Composer\\": "src/Composer"
  360. }
  361. },
  362. "notification-url": "https://packagist.org/downloads/",
  363. "license": [
  364. "MIT"
  365. ],
  366. "authors": [
  367. {
  368. "name": "Nils Adermann",
  369. "email": "naderman@naderman.de",
  370. "homepage": "https://www.naderman.de"
  371. },
  372. {
  373. "name": "Jordi Boggiano",
  374. "email": "j.boggiano@seld.be",
  375. "homepage": "https://seld.be"
  376. }
  377. ],
  378. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  379. "homepage": "https://getcomposer.org/",
  380. "keywords": [
  381. "autoload",
  382. "dependency",
  383. "package"
  384. ],
  385. "support": {
  386. "irc": "ircs://irc.libera.chat:6697/composer",
  387. "issues": "https://github.com/composer/composer/issues",
  388. "source": "https://github.com/composer/composer/tree/2.2.20"
  389. },
  390. "funding": [
  391. {
  392. "url": "https://packagist.com",
  393. "type": "custom"
  394. },
  395. {
  396. "url": "https://github.com/composer",
  397. "type": "github"
  398. },
  399. {
  400. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  401. "type": "tidelift"
  402. }
  403. ],
  404. "time": "2023-02-10T13:11:10+00:00"
  405. },
  406. {
  407. "name": "composer/metadata-minifier",
  408. "version": "1.0.0",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/composer/metadata-minifier.git",
  412. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  417. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  418. "shasum": "",
  419. "mirrors": [
  420. {
  421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  422. "preferred": true
  423. }
  424. ]
  425. },
  426. "require": {
  427. "php": "^5.3.2 || ^7.0 || ^8.0"
  428. },
  429. "require-dev": {
  430. "composer/composer": "^2",
  431. "phpstan/phpstan": "^0.12.55",
  432. "symfony/phpunit-bridge": "^4.2 || ^5"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-main": "1.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Composer\\MetadataMinifier\\": "src"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Jordi Boggiano",
  452. "email": "j.boggiano@seld.be",
  453. "homepage": "http://seld.be"
  454. }
  455. ],
  456. "description": "Small utility library that handles metadata minification and expansion.",
  457. "keywords": [
  458. "composer",
  459. "compression"
  460. ],
  461. "support": {
  462. "issues": "https://github.com/composer/metadata-minifier/issues",
  463. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  464. },
  465. "funding": [
  466. {
  467. "url": "https://packagist.com",
  468. "type": "custom"
  469. },
  470. {
  471. "url": "https://github.com/composer",
  472. "type": "github"
  473. },
  474. {
  475. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  476. "type": "tidelift"
  477. }
  478. ],
  479. "time": "2021-04-07T13:37:33+00:00"
  480. },
  481. {
  482. "name": "composer/pcre",
  483. "version": "1.0.1",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/composer/pcre.git",
  487. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  492. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  493. "shasum": "",
  494. "mirrors": [
  495. {
  496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  497. "preferred": true
  498. }
  499. ]
  500. },
  501. "require": {
  502. "php": "^5.3.2 || ^7.0 || ^8.0"
  503. },
  504. "require-dev": {
  505. "phpstan/phpstan": "^1.3",
  506. "phpstan/phpstan-strict-rules": "^1.1",
  507. "symfony/phpunit-bridge": "^4.2 || ^5"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "1.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Composer\\Pcre\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Jordi Boggiano",
  527. "email": "j.boggiano@seld.be",
  528. "homepage": "http://seld.be"
  529. }
  530. ],
  531. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  532. "keywords": [
  533. "PCRE",
  534. "preg",
  535. "regex",
  536. "regular expression"
  537. ],
  538. "support": {
  539. "issues": "https://github.com/composer/pcre/issues",
  540. "source": "https://github.com/composer/pcre/tree/1.0.1"
  541. },
  542. "funding": [
  543. {
  544. "url": "https://packagist.com",
  545. "type": "custom"
  546. },
  547. {
  548. "url": "https://github.com/composer",
  549. "type": "github"
  550. },
  551. {
  552. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  553. "type": "tidelift"
  554. }
  555. ],
  556. "time": "2022-01-21T20:24:37+00:00"
  557. },
  558. {
  559. "name": "composer/semver",
  560. "version": "3.3.2",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/composer/semver.git",
  564. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  569. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  570. "shasum": "",
  571. "mirrors": [
  572. {
  573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  574. "preferred": true
  575. }
  576. ]
  577. },
  578. "require": {
  579. "php": "^5.3.2 || ^7.0 || ^8.0"
  580. },
  581. "require-dev": {
  582. "phpstan/phpstan": "^1.4",
  583. "symfony/phpunit-bridge": "^4.2 || ^5"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "branch-alias": {
  588. "dev-main": "3.x-dev"
  589. }
  590. },
  591. "autoload": {
  592. "psr-4": {
  593. "Composer\\Semver\\": "src"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Nils Adermann",
  603. "email": "naderman@naderman.de",
  604. "homepage": "http://www.naderman.de"
  605. },
  606. {
  607. "name": "Jordi Boggiano",
  608. "email": "j.boggiano@seld.be",
  609. "homepage": "http://seld.be"
  610. },
  611. {
  612. "name": "Rob Bast",
  613. "email": "rob.bast@gmail.com",
  614. "homepage": "http://robbast.nl"
  615. }
  616. ],
  617. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  618. "keywords": [
  619. "semantic",
  620. "semver",
  621. "validation",
  622. "versioning"
  623. ],
  624. "support": {
  625. "irc": "irc://irc.freenode.org/composer",
  626. "issues": "https://github.com/composer/semver/issues",
  627. "source": "https://github.com/composer/semver/tree/3.3.2"
  628. },
  629. "funding": [
  630. {
  631. "url": "https://packagist.com",
  632. "type": "custom"
  633. },
  634. {
  635. "url": "https://github.com/composer",
  636. "type": "github"
  637. },
  638. {
  639. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  640. "type": "tidelift"
  641. }
  642. ],
  643. "time": "2022-04-01T19:23:25+00:00"
  644. },
  645. {
  646. "name": "composer/spdx-licenses",
  647. "version": "1.5.7",
  648. "source": {
  649. "type": "git",
  650. "url": "https://github.com/composer/spdx-licenses.git",
  651. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  652. },
  653. "dist": {
  654. "type": "zip",
  655. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  656. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  657. "shasum": "",
  658. "mirrors": [
  659. {
  660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  661. "preferred": true
  662. }
  663. ]
  664. },
  665. "require": {
  666. "php": "^5.3.2 || ^7.0 || ^8.0"
  667. },
  668. "require-dev": {
  669. "phpstan/phpstan": "^0.12.55",
  670. "symfony/phpunit-bridge": "^4.2 || ^5"
  671. },
  672. "type": "library",
  673. "extra": {
  674. "branch-alias": {
  675. "dev-main": "1.x-dev"
  676. }
  677. },
  678. "autoload": {
  679. "psr-4": {
  680. "Composer\\Spdx\\": "src"
  681. }
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "MIT"
  686. ],
  687. "authors": [
  688. {
  689. "name": "Nils Adermann",
  690. "email": "naderman@naderman.de",
  691. "homepage": "http://www.naderman.de"
  692. },
  693. {
  694. "name": "Jordi Boggiano",
  695. "email": "j.boggiano@seld.be",
  696. "homepage": "http://seld.be"
  697. },
  698. {
  699. "name": "Rob Bast",
  700. "email": "rob.bast@gmail.com",
  701. "homepage": "http://robbast.nl"
  702. }
  703. ],
  704. "description": "SPDX licenses list and validation library.",
  705. "keywords": [
  706. "license",
  707. "spdx",
  708. "validator"
  709. ],
  710. "support": {
  711. "irc": "irc://irc.freenode.org/composer",
  712. "issues": "https://github.com/composer/spdx-licenses/issues",
  713. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  714. },
  715. "funding": [
  716. {
  717. "url": "https://packagist.com",
  718. "type": "custom"
  719. },
  720. {
  721. "url": "https://github.com/composer",
  722. "type": "github"
  723. },
  724. {
  725. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  726. "type": "tidelift"
  727. }
  728. ],
  729. "time": "2022-05-23T07:37:50+00:00"
  730. },
  731. {
  732. "name": "composer/xdebug-handler",
  733. "version": "3.0.3",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/composer/xdebug-handler.git",
  737. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  742. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  743. "shasum": "",
  744. "mirrors": [
  745. {
  746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  747. "preferred": true
  748. }
  749. ]
  750. },
  751. "require": {
  752. "composer/pcre": "^1 || ^2 || ^3",
  753. "php": "^7.2.5 || ^8.0",
  754. "psr/log": "^1 || ^2 || ^3"
  755. },
  756. "require-dev": {
  757. "phpstan/phpstan": "^1.0",
  758. "phpstan/phpstan-strict-rules": "^1.1",
  759. "symfony/phpunit-bridge": "^6.0"
  760. },
  761. "type": "library",
  762. "autoload": {
  763. "psr-4": {
  764. "Composer\\XdebugHandler\\": "src"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "John Stevenson",
  774. "email": "john-stevenson@blueyonder.co.uk"
  775. }
  776. ],
  777. "description": "Restarts a process without Xdebug.",
  778. "keywords": [
  779. "Xdebug",
  780. "performance"
  781. ],
  782. "support": {
  783. "irc": "irc://irc.freenode.org/composer",
  784. "issues": "https://github.com/composer/xdebug-handler/issues",
  785. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  786. },
  787. "funding": [
  788. {
  789. "url": "https://packagist.com",
  790. "type": "custom"
  791. },
  792. {
  793. "url": "https://github.com/composer",
  794. "type": "github"
  795. },
  796. {
  797. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  798. "type": "tidelift"
  799. }
  800. ],
  801. "time": "2022-02-25T21:32:43+00:00"
  802. },
  803. {
  804. "name": "dasprid/enum",
  805. "version": "1.0.4",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/DASPRiD/Enum.git",
  809. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  814. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "php": ">=7.1 <9.0"
  825. },
  826. "require-dev": {
  827. "phpunit/phpunit": "^7 | ^8 | ^9",
  828. "squizlabs/php_codesniffer": "*"
  829. },
  830. "type": "library",
  831. "autoload": {
  832. "psr-4": {
  833. "DASPRiD\\Enum\\": "src/"
  834. }
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "BSD-2-Clause"
  839. ],
  840. "authors": [
  841. {
  842. "name": "Ben Scholzen 'DASPRiD'",
  843. "email": "mail@dasprids.de",
  844. "homepage": "https://dasprids.de/",
  845. "role": "Developer"
  846. }
  847. ],
  848. "description": "PHP 7.1 enum implementation",
  849. "keywords": [
  850. "enum",
  851. "map"
  852. ],
  853. "support": {
  854. "issues": "https://github.com/DASPRiD/Enum/issues",
  855. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  856. },
  857. "time": "2023-03-01T18:44:03+00:00"
  858. },
  859. {
  860. "name": "dingo/api",
  861. "version": "v2.4.7",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/dingo/api.git",
  865. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  870. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  871. "shasum": "",
  872. "mirrors": [
  873. {
  874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  875. "preferred": true
  876. }
  877. ]
  878. },
  879. "require": {
  880. "dingo/blueprint": "^0.3",
  881. "illuminate/routing": "^5.5 || ^6.0",
  882. "illuminate/support": "^5.5 || ^6.0",
  883. "league/fractal": "^0.17",
  884. "php": "^7.1"
  885. },
  886. "require-dev": {
  887. "friendsofphp/php-cs-fixer": "~2",
  888. "illuminate/auth": "^5.5 || ^6.0",
  889. "illuminate/cache": "^5.5 || ^6.0",
  890. "illuminate/console": "^5.5 || ^6.0",
  891. "illuminate/database": "^5.5 || ^6.0",
  892. "illuminate/events": "^5.5 || ^6.0",
  893. "illuminate/filesystem": "^5.5 || ^6.0",
  894. "illuminate/log": "^5.5 || ^6.0",
  895. "illuminate/pagination": "^5.5 || ^6.0",
  896. "laravel/lumen-framework": "^5.5 || ^6.0",
  897. "mockery/mockery": "~1.0",
  898. "phpdocumentor/reflection-docblock": "3.3.2",
  899. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  900. "squizlabs/php_codesniffer": "~2.0",
  901. "tymon/jwt-auth": "1.0.*"
  902. },
  903. "suggest": {
  904. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  905. },
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "2.0-dev"
  910. },
  911. "laravel": {
  912. "providers": [
  913. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  914. ],
  915. "aliases": {
  916. "API": "Dingo\\Api\\Facade\\API"
  917. }
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Dingo\\Api\\": "src/"
  923. },
  924. "files": [
  925. "src/helpers.php"
  926. ]
  927. },
  928. "notification-url": "https://packagist.org/downloads/",
  929. "license": [
  930. "BSD-3-Clause"
  931. ],
  932. "authors": [
  933. {
  934. "name": "Jason Lewis",
  935. "email": "jason.lewis1991@gmail.com"
  936. }
  937. ],
  938. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  939. "keywords": [
  940. "api",
  941. "dingo",
  942. "laravel",
  943. "restful"
  944. ],
  945. "support": {
  946. "issues": "https://github.com/dingo/api/issues",
  947. "source": "https://github.com/dingo/api/tree/v2"
  948. },
  949. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  950. "time": "2020-03-19T01:36:11+00:00"
  951. },
  952. {
  953. "name": "dingo/blueprint",
  954. "version": "v0.3.1",
  955. "source": {
  956. "type": "git",
  957. "url": "https://github.com/dingo/blueprint.git",
  958. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  959. },
  960. "dist": {
  961. "type": "zip",
  962. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  963. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  964. "shasum": "",
  965. "mirrors": [
  966. {
  967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  968. "preferred": true
  969. }
  970. ]
  971. },
  972. "require": {
  973. "doctrine/annotations": "~1.2",
  974. "illuminate/filesystem": "^5.5 || ^6.0",
  975. "illuminate/support": "^5.5 || ^6.0",
  976. "php": "^7.1",
  977. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  978. },
  979. "require-dev": {
  980. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  981. "squizlabs/php_codesniffer": "~2.0"
  982. },
  983. "type": "library",
  984. "extra": {
  985. "branch-alias": {
  986. "dev-master": "0.2-dev"
  987. }
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "Dingo\\Blueprint\\": "src"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "BSD-3-Clause"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Jason Lewis",
  1001. "email": "jason.lewis1991@gmail.com"
  1002. }
  1003. ],
  1004. "description": "API Blueprint documentation generator.",
  1005. "keywords": [
  1006. "api",
  1007. "blueprint",
  1008. "dingo",
  1009. "docs",
  1010. "laravel"
  1011. ],
  1012. "support": {
  1013. "issues": "https://github.com/dingo/blueprint/issues",
  1014. "source": "https://github.com/dingo/blueprint/tree/v3.0.1"
  1015. },
  1016. "time": "2019-10-07T10:14:17+00:00"
  1017. },
  1018. {
  1019. "name": "doctrine/annotations",
  1020. "version": "1.14.3",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/doctrine/annotations.git",
  1024. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1029. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1030. "shasum": "",
  1031. "mirrors": [
  1032. {
  1033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1034. "preferred": true
  1035. }
  1036. ]
  1037. },
  1038. "require": {
  1039. "doctrine/lexer": "^1 || ^2",
  1040. "ext-tokenizer": "*",
  1041. "php": "^7.1 || ^8.0",
  1042. "psr/cache": "^1 || ^2 || ^3"
  1043. },
  1044. "require-dev": {
  1045. "doctrine/cache": "^1.11 || ^2.0",
  1046. "doctrine/coding-standard": "^9 || ^10",
  1047. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1048. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1049. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1050. "vimeo/psalm": "^4.10"
  1051. },
  1052. "suggest": {
  1053. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1054. },
  1055. "type": "library",
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "Guilherme Blanco",
  1068. "email": "guilhermeblanco@gmail.com"
  1069. },
  1070. {
  1071. "name": "Roman Borschel",
  1072. "email": "roman@code-factory.org"
  1073. },
  1074. {
  1075. "name": "Benjamin Eberlei",
  1076. "email": "kontakt@beberlei.de"
  1077. },
  1078. {
  1079. "name": "Jonathan Wage",
  1080. "email": "jonwage@gmail.com"
  1081. },
  1082. {
  1083. "name": "Johannes Schmitt",
  1084. "email": "schmittjoh@gmail.com"
  1085. }
  1086. ],
  1087. "description": "Docblock Annotations Parser",
  1088. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1089. "keywords": [
  1090. "annotations",
  1091. "docblock",
  1092. "parser"
  1093. ],
  1094. "support": {
  1095. "issues": "https://github.com/doctrine/annotations/issues",
  1096. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1097. },
  1098. "time": "2023-02-01T09:20:38+00:00"
  1099. },
  1100. {
  1101. "name": "doctrine/cache",
  1102. "version": "2.2.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/doctrine/cache.git",
  1106. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1111. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1112. "shasum": "",
  1113. "mirrors": [
  1114. {
  1115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1116. "preferred": true
  1117. }
  1118. ]
  1119. },
  1120. "require": {
  1121. "php": "~7.1 || ^8.0"
  1122. },
  1123. "conflict": {
  1124. "doctrine/common": ">2.2,<2.4"
  1125. },
  1126. "require-dev": {
  1127. "cache/integration-tests": "dev-master",
  1128. "doctrine/coding-standard": "^9",
  1129. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1130. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1131. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1132. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1133. },
  1134. "type": "library",
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Guilherme Blanco",
  1147. "email": "guilhermeblanco@gmail.com"
  1148. },
  1149. {
  1150. "name": "Roman Borschel",
  1151. "email": "roman@code-factory.org"
  1152. },
  1153. {
  1154. "name": "Benjamin Eberlei",
  1155. "email": "kontakt@beberlei.de"
  1156. },
  1157. {
  1158. "name": "Jonathan Wage",
  1159. "email": "jonwage@gmail.com"
  1160. },
  1161. {
  1162. "name": "Johannes Schmitt",
  1163. "email": "schmittjoh@gmail.com"
  1164. }
  1165. ],
  1166. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1167. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1168. "keywords": [
  1169. "abstraction",
  1170. "apcu",
  1171. "cache",
  1172. "caching",
  1173. "couchdb",
  1174. "memcached",
  1175. "php",
  1176. "redis",
  1177. "xcache"
  1178. ],
  1179. "support": {
  1180. "issues": "https://github.com/doctrine/cache/issues",
  1181. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1182. },
  1183. "funding": [
  1184. {
  1185. "url": "https://www.doctrine-project.org/sponsorship.html",
  1186. "type": "custom"
  1187. },
  1188. {
  1189. "url": "https://www.patreon.com/phpdoctrine",
  1190. "type": "patreon"
  1191. },
  1192. {
  1193. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1194. "type": "tidelift"
  1195. }
  1196. ],
  1197. "time": "2022-05-20T20:07:39+00:00"
  1198. },
  1199. {
  1200. "name": "doctrine/dbal",
  1201. "version": "2.13.9",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/doctrine/dbal.git",
  1205. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  1210. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  1211. "shasum": "",
  1212. "mirrors": [
  1213. {
  1214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1215. "preferred": true
  1216. }
  1217. ]
  1218. },
  1219. "require": {
  1220. "doctrine/cache": "^1.0|^2.0",
  1221. "doctrine/deprecations": "^0.5.3|^1",
  1222. "doctrine/event-manager": "^1.0",
  1223. "ext-pdo": "*",
  1224. "php": "^7.1 || ^8"
  1225. },
  1226. "require-dev": {
  1227. "doctrine/coding-standard": "9.0.0",
  1228. "jetbrains/phpstorm-stubs": "2021.1",
  1229. "phpstan/phpstan": "1.4.6",
  1230. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  1231. "psalm/plugin-phpunit": "0.16.1",
  1232. "squizlabs/php_codesniffer": "3.6.2",
  1233. "symfony/cache": "^4.4",
  1234. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  1235. "vimeo/psalm": "4.22.0"
  1236. },
  1237. "suggest": {
  1238. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1239. },
  1240. "bin": [
  1241. "bin/doctrine-dbal"
  1242. ],
  1243. "type": "library",
  1244. "autoload": {
  1245. "psr-4": {
  1246. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Guilherme Blanco",
  1256. "email": "guilhermeblanco@gmail.com"
  1257. },
  1258. {
  1259. "name": "Roman Borschel",
  1260. "email": "roman@code-factory.org"
  1261. },
  1262. {
  1263. "name": "Benjamin Eberlei",
  1264. "email": "kontakt@beberlei.de"
  1265. },
  1266. {
  1267. "name": "Jonathan Wage",
  1268. "email": "jonwage@gmail.com"
  1269. }
  1270. ],
  1271. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1272. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1273. "keywords": [
  1274. "abstraction",
  1275. "database",
  1276. "db2",
  1277. "dbal",
  1278. "mariadb",
  1279. "mssql",
  1280. "mysql",
  1281. "oci8",
  1282. "oracle",
  1283. "pdo",
  1284. "pgsql",
  1285. "postgresql",
  1286. "queryobject",
  1287. "sasql",
  1288. "sql",
  1289. "sqlanywhere",
  1290. "sqlite",
  1291. "sqlserver",
  1292. "sqlsrv"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/doctrine/dbal/issues",
  1296. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  1297. },
  1298. "funding": [
  1299. {
  1300. "url": "https://www.doctrine-project.org/sponsorship.html",
  1301. "type": "custom"
  1302. },
  1303. {
  1304. "url": "https://www.patreon.com/phpdoctrine",
  1305. "type": "patreon"
  1306. },
  1307. {
  1308. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1309. "type": "tidelift"
  1310. }
  1311. ],
  1312. "time": "2022-05-02T20:28:55+00:00"
  1313. },
  1314. {
  1315. "name": "doctrine/deprecations",
  1316. "version": "v1.0.0",
  1317. "source": {
  1318. "type": "git",
  1319. "url": "https://github.com/doctrine/deprecations.git",
  1320. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1321. },
  1322. "dist": {
  1323. "type": "zip",
  1324. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1325. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1326. "shasum": "",
  1327. "mirrors": [
  1328. {
  1329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1330. "preferred": true
  1331. }
  1332. ]
  1333. },
  1334. "require": {
  1335. "php": "^7.1|^8.0"
  1336. },
  1337. "require-dev": {
  1338. "doctrine/coding-standard": "^9",
  1339. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1340. "psr/log": "^1|^2|^3"
  1341. },
  1342. "suggest": {
  1343. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1344. },
  1345. "type": "library",
  1346. "autoload": {
  1347. "psr-4": {
  1348. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "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.",
  1356. "homepage": "https://www.doctrine-project.org/",
  1357. "support": {
  1358. "issues": "https://github.com/doctrine/deprecations/issues",
  1359. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1360. },
  1361. "time": "2022-05-02T15:47:09+00:00"
  1362. },
  1363. {
  1364. "name": "doctrine/event-manager",
  1365. "version": "1.1.1",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/doctrine/event-manager.git",
  1369. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1374. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1375. "shasum": "",
  1376. "mirrors": [
  1377. {
  1378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1379. "preferred": true
  1380. }
  1381. ]
  1382. },
  1383. "require": {
  1384. "php": "^7.1 || ^8.0"
  1385. },
  1386. "conflict": {
  1387. "doctrine/common": "<2.9@dev"
  1388. },
  1389. "require-dev": {
  1390. "doctrine/coding-standard": "^6.0",
  1391. "phpunit/phpunit": "^7.0"
  1392. },
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "1.0.x-dev"
  1397. }
  1398. },
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Guilherme Blanco",
  1411. "email": "guilhermeblanco@gmail.com"
  1412. },
  1413. {
  1414. "name": "Roman Borschel",
  1415. "email": "roman@code-factory.org"
  1416. },
  1417. {
  1418. "name": "Benjamin Eberlei",
  1419. "email": "kontakt@beberlei.de"
  1420. },
  1421. {
  1422. "name": "Jonathan Wage",
  1423. "email": "jonwage@gmail.com"
  1424. },
  1425. {
  1426. "name": "Johannes Schmitt",
  1427. "email": "schmittjoh@gmail.com"
  1428. },
  1429. {
  1430. "name": "Marco Pivetta",
  1431. "email": "ocramius@gmail.com"
  1432. }
  1433. ],
  1434. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1435. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1436. "keywords": [
  1437. "event",
  1438. "event dispatcher",
  1439. "event manager",
  1440. "event system",
  1441. "events"
  1442. ],
  1443. "support": {
  1444. "issues": "https://github.com/doctrine/event-manager/issues",
  1445. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1446. },
  1447. "funding": [
  1448. {
  1449. "url": "https://www.doctrine-project.org/sponsorship.html",
  1450. "type": "custom"
  1451. },
  1452. {
  1453. "url": "https://www.patreon.com/phpdoctrine",
  1454. "type": "patreon"
  1455. },
  1456. {
  1457. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1458. "type": "tidelift"
  1459. }
  1460. ],
  1461. "time": "2020-05-29T18:28:51+00:00"
  1462. },
  1463. {
  1464. "name": "doctrine/inflector",
  1465. "version": "2.0.4",
  1466. "source": {
  1467. "type": "git",
  1468. "url": "https://github.com/doctrine/inflector.git",
  1469. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1470. },
  1471. "dist": {
  1472. "type": "zip",
  1473. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1474. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1475. "shasum": "",
  1476. "mirrors": [
  1477. {
  1478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1479. "preferred": true
  1480. }
  1481. ]
  1482. },
  1483. "require": {
  1484. "php": "^7.2 || ^8.0"
  1485. },
  1486. "require-dev": {
  1487. "doctrine/coding-standard": "^8.2",
  1488. "phpstan/phpstan": "^0.12",
  1489. "phpstan/phpstan-phpunit": "^0.12",
  1490. "phpstan/phpstan-strict-rules": "^0.12",
  1491. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1492. "vimeo/psalm": "^4.10"
  1493. },
  1494. "type": "library",
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "authors": [
  1505. {
  1506. "name": "Guilherme Blanco",
  1507. "email": "guilhermeblanco@gmail.com"
  1508. },
  1509. {
  1510. "name": "Roman Borschel",
  1511. "email": "roman@code-factory.org"
  1512. },
  1513. {
  1514. "name": "Benjamin Eberlei",
  1515. "email": "kontakt@beberlei.de"
  1516. },
  1517. {
  1518. "name": "Jonathan Wage",
  1519. "email": "jonwage@gmail.com"
  1520. },
  1521. {
  1522. "name": "Johannes Schmitt",
  1523. "email": "schmittjoh@gmail.com"
  1524. }
  1525. ],
  1526. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1527. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1528. "keywords": [
  1529. "inflection",
  1530. "inflector",
  1531. "lowercase",
  1532. "manipulation",
  1533. "php",
  1534. "plural",
  1535. "singular",
  1536. "strings",
  1537. "uppercase",
  1538. "words"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/doctrine/inflector/issues",
  1542. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1543. },
  1544. "funding": [
  1545. {
  1546. "url": "https://www.doctrine-project.org/sponsorship.html",
  1547. "type": "custom"
  1548. },
  1549. {
  1550. "url": "https://www.patreon.com/phpdoctrine",
  1551. "type": "patreon"
  1552. },
  1553. {
  1554. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1555. "type": "tidelift"
  1556. }
  1557. ],
  1558. "time": "2021-10-22T20:16:43+00:00"
  1559. },
  1560. {
  1561. "name": "doctrine/lexer",
  1562. "version": "1.2.3",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/doctrine/lexer.git",
  1566. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1571. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1572. "shasum": "",
  1573. "mirrors": [
  1574. {
  1575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1576. "preferred": true
  1577. }
  1578. ]
  1579. },
  1580. "require": {
  1581. "php": "^7.1 || ^8.0"
  1582. },
  1583. "require-dev": {
  1584. "doctrine/coding-standard": "^9.0",
  1585. "phpstan/phpstan": "^1.3",
  1586. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1587. "vimeo/psalm": "^4.11"
  1588. },
  1589. "type": "library",
  1590. "autoload": {
  1591. "psr-4": {
  1592. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Guilherme Blanco",
  1602. "email": "guilhermeblanco@gmail.com"
  1603. },
  1604. {
  1605. "name": "Roman Borschel",
  1606. "email": "roman@code-factory.org"
  1607. },
  1608. {
  1609. "name": "Johannes Schmitt",
  1610. "email": "schmittjoh@gmail.com"
  1611. }
  1612. ],
  1613. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1614. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1615. "keywords": [
  1616. "annotations",
  1617. "docblock",
  1618. "lexer",
  1619. "parser",
  1620. "php"
  1621. ],
  1622. "support": {
  1623. "issues": "https://github.com/doctrine/lexer/issues",
  1624. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1625. },
  1626. "funding": [
  1627. {
  1628. "url": "https://www.doctrine-project.org/sponsorship.html",
  1629. "type": "custom"
  1630. },
  1631. {
  1632. "url": "https://www.patreon.com/phpdoctrine",
  1633. "type": "patreon"
  1634. },
  1635. {
  1636. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1637. "type": "tidelift"
  1638. }
  1639. ],
  1640. "time": "2022-02-28T11:07:21+00:00"
  1641. },
  1642. {
  1643. "name": "dragonmantank/cron-expression",
  1644. "version": "v2.3.1",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://github.com/dragonmantank/cron-expression.git",
  1648. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1653. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1654. "shasum": "",
  1655. "mirrors": [
  1656. {
  1657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1658. "preferred": true
  1659. }
  1660. ]
  1661. },
  1662. "require": {
  1663. "php": "^7.0|^8.0"
  1664. },
  1665. "require-dev": {
  1666. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "2.3-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "Cron\\": "src/Cron/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Michael Dowling",
  1686. "email": "mtdowling@gmail.com",
  1687. "homepage": "https://github.com/mtdowling"
  1688. },
  1689. {
  1690. "name": "Chris Tankersley",
  1691. "email": "chris@ctankersley.com",
  1692. "homepage": "https://github.com/dragonmantank"
  1693. }
  1694. ],
  1695. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1696. "keywords": [
  1697. "cron",
  1698. "schedule"
  1699. ],
  1700. "support": {
  1701. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1702. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  1703. },
  1704. "funding": [
  1705. {
  1706. "url": "https://github.com/dragonmantank",
  1707. "type": "github"
  1708. }
  1709. ],
  1710. "time": "2020-10-13T00:52:37+00:00"
  1711. },
  1712. {
  1713. "name": "easywechat-composer/easywechat-composer",
  1714. "version": "1.4.1",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1718. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1723. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1724. "shasum": "",
  1725. "mirrors": [
  1726. {
  1727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1728. "preferred": true
  1729. }
  1730. ]
  1731. },
  1732. "require": {
  1733. "composer-plugin-api": "^1.0 || ^2.0",
  1734. "php": ">=7.0"
  1735. },
  1736. "require-dev": {
  1737. "composer/composer": "^1.0 || ^2.0",
  1738. "phpunit/phpunit": "^6.5 || ^7.0"
  1739. },
  1740. "type": "composer-plugin",
  1741. "extra": {
  1742. "class": "EasyWeChatComposer\\Plugin"
  1743. },
  1744. "autoload": {
  1745. "psr-4": {
  1746. "EasyWeChatComposer\\": "src/"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "MIT"
  1752. ],
  1753. "authors": [
  1754. {
  1755. "name": "张铭阳",
  1756. "email": "mingyoungcheung@gmail.com"
  1757. }
  1758. ],
  1759. "description": "The composer plugin for EasyWeChat",
  1760. "support": {
  1761. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1762. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1763. },
  1764. "time": "2021-07-05T04:03:22+00:00"
  1765. },
  1766. {
  1767. "name": "egulias/email-validator",
  1768. "version": "2.1.25",
  1769. "source": {
  1770. "type": "git",
  1771. "url": "https://github.com/egulias/EmailValidator.git",
  1772. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1773. },
  1774. "dist": {
  1775. "type": "zip",
  1776. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1777. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1778. "shasum": "",
  1779. "mirrors": [
  1780. {
  1781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1782. "preferred": true
  1783. }
  1784. ]
  1785. },
  1786. "require": {
  1787. "doctrine/lexer": "^1.0.1",
  1788. "php": ">=5.5",
  1789. "symfony/polyfill-intl-idn": "^1.10"
  1790. },
  1791. "require-dev": {
  1792. "dominicsayers/isemail": "^3.0.7",
  1793. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1794. "satooshi/php-coveralls": "^1.0.1"
  1795. },
  1796. "suggest": {
  1797. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1798. },
  1799. "type": "library",
  1800. "extra": {
  1801. "branch-alias": {
  1802. "dev-master": "2.1.x-dev"
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-4": {
  1807. "Egulias\\EmailValidator\\": "src"
  1808. }
  1809. },
  1810. "notification-url": "https://packagist.org/downloads/",
  1811. "license": [
  1812. "MIT"
  1813. ],
  1814. "authors": [
  1815. {
  1816. "name": "Eduardo Gulias Davis"
  1817. }
  1818. ],
  1819. "description": "A library for validating emails against several RFCs",
  1820. "homepage": "https://github.com/egulias/EmailValidator",
  1821. "keywords": [
  1822. "email",
  1823. "emailvalidation",
  1824. "emailvalidator",
  1825. "validation",
  1826. "validator"
  1827. ],
  1828. "support": {
  1829. "issues": "https://github.com/egulias/EmailValidator/issues",
  1830. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1831. },
  1832. "funding": [
  1833. {
  1834. "url": "https://github.com/egulias",
  1835. "type": "github"
  1836. }
  1837. ],
  1838. "time": "2020-12-29T14:50:06+00:00"
  1839. },
  1840. {
  1841. "name": "endroid/qr-code",
  1842. "version": "3.9.7",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/endroid/qr-code.git",
  1846. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1851. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1852. "shasum": "",
  1853. "mirrors": [
  1854. {
  1855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1856. "preferred": true
  1857. }
  1858. ]
  1859. },
  1860. "require": {
  1861. "bacon/bacon-qr-code": "^2.0",
  1862. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1863. "myclabs/php-enum": "^1.5",
  1864. "php": "^7.3||^8.0",
  1865. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1866. "symfony/property-access": "^3.4||^4.4||^5.0"
  1867. },
  1868. "require-dev": {
  1869. "endroid/quality": "^1.5.2",
  1870. "setasign/fpdf": "^1.8"
  1871. },
  1872. "suggest": {
  1873. "ext-gd": "Required for generating PNG images",
  1874. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1875. "setasign/fpdf": "Required to use the FPDF writer.",
  1876. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "3.x-dev"
  1882. }
  1883. },
  1884. "autoload": {
  1885. "psr-4": {
  1886. "Endroid\\QrCode\\": "src/"
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Jeroen van den Enden",
  1896. "email": "info@endroid.nl"
  1897. }
  1898. ],
  1899. "description": "Endroid QR Code",
  1900. "homepage": "https://github.com/endroid/qr-code",
  1901. "keywords": [
  1902. "bundle",
  1903. "code",
  1904. "endroid",
  1905. "php",
  1906. "qr",
  1907. "qrcode"
  1908. ],
  1909. "support": {
  1910. "issues": "https://github.com/endroid/qr-code/issues",
  1911. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://github.com/endroid",
  1916. "type": "github"
  1917. }
  1918. ],
  1919. "time": "2021-04-20T19:10:54+00:00"
  1920. },
  1921. {
  1922. "name": "guzzlehttp/guzzle",
  1923. "version": "6.5.8",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/guzzle/guzzle.git",
  1927. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1932. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1933. "shasum": "",
  1934. "mirrors": [
  1935. {
  1936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1937. "preferred": true
  1938. }
  1939. ]
  1940. },
  1941. "require": {
  1942. "ext-json": "*",
  1943. "guzzlehttp/promises": "^1.0",
  1944. "guzzlehttp/psr7": "^1.9",
  1945. "php": ">=5.5",
  1946. "symfony/polyfill-intl-idn": "^1.17"
  1947. },
  1948. "require-dev": {
  1949. "ext-curl": "*",
  1950. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1951. "psr/log": "^1.1"
  1952. },
  1953. "suggest": {
  1954. "psr/log": "Required for using the Log middleware"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "6.5-dev"
  1960. }
  1961. },
  1962. "autoload": {
  1963. "files": [
  1964. "src/functions_include.php"
  1965. ],
  1966. "psr-4": {
  1967. "GuzzleHttp\\": "src/"
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "MIT"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "Graham Campbell",
  1977. "email": "hello@gjcampbell.co.uk",
  1978. "homepage": "https://github.com/GrahamCampbell"
  1979. },
  1980. {
  1981. "name": "Michael Dowling",
  1982. "email": "mtdowling@gmail.com",
  1983. "homepage": "https://github.com/mtdowling"
  1984. },
  1985. {
  1986. "name": "Jeremy Lindblom",
  1987. "email": "jeremeamia@gmail.com",
  1988. "homepage": "https://github.com/jeremeamia"
  1989. },
  1990. {
  1991. "name": "George Mponos",
  1992. "email": "gmponos@gmail.com",
  1993. "homepage": "https://github.com/gmponos"
  1994. },
  1995. {
  1996. "name": "Tobias Nyholm",
  1997. "email": "tobias.nyholm@gmail.com",
  1998. "homepage": "https://github.com/Nyholm"
  1999. },
  2000. {
  2001. "name": "Márk Sági-Kazár",
  2002. "email": "mark.sagikazar@gmail.com",
  2003. "homepage": "https://github.com/sagikazarmark"
  2004. },
  2005. {
  2006. "name": "Tobias Schultze",
  2007. "email": "webmaster@tubo-world.de",
  2008. "homepage": "https://github.com/Tobion"
  2009. }
  2010. ],
  2011. "description": "Guzzle is a PHP HTTP client library",
  2012. "homepage": "http://guzzlephp.org/",
  2013. "keywords": [
  2014. "client",
  2015. "curl",
  2016. "framework",
  2017. "http",
  2018. "http client",
  2019. "rest",
  2020. "web service"
  2021. ],
  2022. "support": {
  2023. "issues": "https://github.com/guzzle/guzzle/issues",
  2024. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  2025. },
  2026. "funding": [
  2027. {
  2028. "url": "https://github.com/GrahamCampbell",
  2029. "type": "github"
  2030. },
  2031. {
  2032. "url": "https://github.com/Nyholm",
  2033. "type": "github"
  2034. },
  2035. {
  2036. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2037. "type": "tidelift"
  2038. }
  2039. ],
  2040. "time": "2022-06-20T22:16:07+00:00"
  2041. },
  2042. {
  2043. "name": "guzzlehttp/promises",
  2044. "version": "1.5.2",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/guzzle/promises.git",
  2048. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  2053. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  2054. "shasum": "",
  2055. "mirrors": [
  2056. {
  2057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2058. "preferred": true
  2059. }
  2060. ]
  2061. },
  2062. "require": {
  2063. "php": ">=5.5"
  2064. },
  2065. "require-dev": {
  2066. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "branch-alias": {
  2071. "dev-master": "1.5-dev"
  2072. }
  2073. },
  2074. "autoload": {
  2075. "files": [
  2076. "src/functions_include.php"
  2077. ],
  2078. "psr-4": {
  2079. "GuzzleHttp\\Promise\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Graham Campbell",
  2089. "email": "hello@gjcampbell.co.uk",
  2090. "homepage": "https://github.com/GrahamCampbell"
  2091. },
  2092. {
  2093. "name": "Michael Dowling",
  2094. "email": "mtdowling@gmail.com",
  2095. "homepage": "https://github.com/mtdowling"
  2096. },
  2097. {
  2098. "name": "Tobias Nyholm",
  2099. "email": "tobias.nyholm@gmail.com",
  2100. "homepage": "https://github.com/Nyholm"
  2101. },
  2102. {
  2103. "name": "Tobias Schultze",
  2104. "email": "webmaster@tubo-world.de",
  2105. "homepage": "https://github.com/Tobion"
  2106. }
  2107. ],
  2108. "description": "Guzzle promises library",
  2109. "keywords": [
  2110. "promise"
  2111. ],
  2112. "support": {
  2113. "issues": "https://github.com/guzzle/promises/issues",
  2114. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  2115. },
  2116. "funding": [
  2117. {
  2118. "url": "https://github.com/GrahamCampbell",
  2119. "type": "github"
  2120. },
  2121. {
  2122. "url": "https://github.com/Nyholm",
  2123. "type": "github"
  2124. },
  2125. {
  2126. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2127. "type": "tidelift"
  2128. }
  2129. ],
  2130. "time": "2022-08-28T14:55:35+00:00"
  2131. },
  2132. {
  2133. "name": "guzzlehttp/psr7",
  2134. "version": "1.9.0",
  2135. "source": {
  2136. "type": "git",
  2137. "url": "https://github.com/guzzle/psr7.git",
  2138. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  2139. },
  2140. "dist": {
  2141. "type": "zip",
  2142. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  2143. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  2144. "shasum": "",
  2145. "mirrors": [
  2146. {
  2147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2148. "preferred": true
  2149. }
  2150. ]
  2151. },
  2152. "require": {
  2153. "php": ">=5.4.0",
  2154. "psr/http-message": "~1.0",
  2155. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2156. },
  2157. "provide": {
  2158. "psr/http-message-implementation": "1.0"
  2159. },
  2160. "require-dev": {
  2161. "ext-zlib": "*",
  2162. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  2163. },
  2164. "suggest": {
  2165. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2166. },
  2167. "type": "library",
  2168. "extra": {
  2169. "branch-alias": {
  2170. "dev-master": "1.9-dev"
  2171. }
  2172. },
  2173. "autoload": {
  2174. "files": [
  2175. "src/functions_include.php"
  2176. ],
  2177. "psr-4": {
  2178. "GuzzleHttp\\Psr7\\": "src/"
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "Graham Campbell",
  2188. "email": "hello@gjcampbell.co.uk",
  2189. "homepage": "https://github.com/GrahamCampbell"
  2190. },
  2191. {
  2192. "name": "Michael Dowling",
  2193. "email": "mtdowling@gmail.com",
  2194. "homepage": "https://github.com/mtdowling"
  2195. },
  2196. {
  2197. "name": "George Mponos",
  2198. "email": "gmponos@gmail.com",
  2199. "homepage": "https://github.com/gmponos"
  2200. },
  2201. {
  2202. "name": "Tobias Nyholm",
  2203. "email": "tobias.nyholm@gmail.com",
  2204. "homepage": "https://github.com/Nyholm"
  2205. },
  2206. {
  2207. "name": "Márk Sági-Kazár",
  2208. "email": "mark.sagikazar@gmail.com",
  2209. "homepage": "https://github.com/sagikazarmark"
  2210. },
  2211. {
  2212. "name": "Tobias Schultze",
  2213. "email": "webmaster@tubo-world.de",
  2214. "homepage": "https://github.com/Tobion"
  2215. }
  2216. ],
  2217. "description": "PSR-7 message implementation that also provides common utility methods",
  2218. "keywords": [
  2219. "http",
  2220. "message",
  2221. "psr-7",
  2222. "request",
  2223. "response",
  2224. "stream",
  2225. "uri",
  2226. "url"
  2227. ],
  2228. "support": {
  2229. "issues": "https://github.com/guzzle/psr7/issues",
  2230. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  2231. },
  2232. "funding": [
  2233. {
  2234. "url": "https://github.com/GrahamCampbell",
  2235. "type": "github"
  2236. },
  2237. {
  2238. "url": "https://github.com/Nyholm",
  2239. "type": "github"
  2240. },
  2241. {
  2242. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2243. "type": "tidelift"
  2244. }
  2245. ],
  2246. "time": "2022-06-20T21:43:03+00:00"
  2247. },
  2248. {
  2249. "name": "illuminate/auth",
  2250. "version": "v6.20.44",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/illuminate/auth.git",
  2254. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/illuminate/auth/zipball/7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  2259. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  2260. "shasum": "",
  2261. "mirrors": [
  2262. {
  2263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2264. "preferred": true
  2265. }
  2266. ]
  2267. },
  2268. "require": {
  2269. "illuminate/contracts": "^6.0",
  2270. "illuminate/http": "^6.0",
  2271. "illuminate/queue": "^6.0",
  2272. "illuminate/support": "^6.0",
  2273. "php": "^7.2.5|^8.0"
  2274. },
  2275. "suggest": {
  2276. "illuminate/console": "Required to use the auth:clear-resets command (^6.0).",
  2277. "illuminate/queue": "Required to fire login / logout events (^6.0).",
  2278. "illuminate/session": "Required to use the session based guard (^6.0)."
  2279. },
  2280. "type": "library",
  2281. "extra": {
  2282. "branch-alias": {
  2283. "dev-master": "6.x-dev"
  2284. }
  2285. },
  2286. "autoload": {
  2287. "psr-4": {
  2288. "Illuminate\\Auth\\": ""
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Taylor Otwell",
  2298. "email": "taylor@laravel.com"
  2299. }
  2300. ],
  2301. "description": "The Illuminate Auth package.",
  2302. "homepage": "https://laravel.com",
  2303. "support": {
  2304. "issues": "https://github.com/laravel/framework/issues",
  2305. "source": "https://github.com/laravel/framework"
  2306. },
  2307. "time": "2020-10-27T15:05:51+00:00"
  2308. },
  2309. {
  2310. "name": "illuminate/broadcasting",
  2311. "version": "v6.20.44",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/illuminate/broadcasting.git",
  2315. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/e176ec6c65fb4f9d62e501619a361fe5989123d0",
  2320. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0",
  2321. "shasum": "",
  2322. "mirrors": [
  2323. {
  2324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2325. "preferred": true
  2326. }
  2327. ]
  2328. },
  2329. "require": {
  2330. "ext-json": "*",
  2331. "illuminate/bus": "^6.0",
  2332. "illuminate/contracts": "^6.0",
  2333. "illuminate/queue": "^6.0",
  2334. "illuminate/support": "^6.0",
  2335. "php": "^7.2.5|^8.0",
  2336. "psr/log": "^1.0"
  2337. },
  2338. "suggest": {
  2339. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0)."
  2340. },
  2341. "type": "library",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-master": "6.x-dev"
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "Illuminate\\Broadcasting\\": ""
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Taylor Otwell",
  2359. "email": "taylor@laravel.com"
  2360. }
  2361. ],
  2362. "description": "The Illuminate Broadcasting package.",
  2363. "homepage": "https://laravel.com",
  2364. "support": {
  2365. "issues": "https://github.com/laravel/framework/issues",
  2366. "source": "https://github.com/laravel/framework"
  2367. },
  2368. "time": "2020-11-19T14:10:44+00:00"
  2369. },
  2370. {
  2371. "name": "illuminate/bus",
  2372. "version": "v6.20.44",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/illuminate/bus.git",
  2376. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/illuminate/bus/zipball/107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  2381. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  2382. "shasum": "",
  2383. "mirrors": [
  2384. {
  2385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2386. "preferred": true
  2387. }
  2388. ]
  2389. },
  2390. "require": {
  2391. "illuminate/contracts": "^6.0",
  2392. "illuminate/pipeline": "^6.0",
  2393. "illuminate/support": "^6.0",
  2394. "php": "^7.2.5|^8.0"
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-master": "6.x-dev"
  2400. }
  2401. },
  2402. "autoload": {
  2403. "psr-4": {
  2404. "Illuminate\\Bus\\": ""
  2405. }
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "Taylor Otwell",
  2414. "email": "taylor@laravel.com"
  2415. }
  2416. ],
  2417. "description": "The Illuminate Bus package.",
  2418. "homepage": "https://laravel.com",
  2419. "support": {
  2420. "issues": "https://github.com/laravel/framework/issues",
  2421. "source": "https://github.com/laravel/framework"
  2422. },
  2423. "time": "2020-10-27T15:05:51+00:00"
  2424. },
  2425. {
  2426. "name": "illuminate/cache",
  2427. "version": "v6.20.44",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/illuminate/cache.git",
  2431. "reference": "e2a8b917575fa7da7f6a5dac0d51da4b78b20090"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/illuminate/cache/zipball/e2a8b917575fa7da7f6a5dac0d51da4b78b20090",
  2436. "reference": "e2a8b917575fa7da7f6a5dac0d51da4b78b20090",
  2437. "shasum": "",
  2438. "mirrors": [
  2439. {
  2440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2441. "preferred": true
  2442. }
  2443. ]
  2444. },
  2445. "require": {
  2446. "illuminate/contracts": "^6.0",
  2447. "illuminate/support": "^6.0",
  2448. "php": "^7.2.5|^8.0"
  2449. },
  2450. "suggest": {
  2451. "ext-memcached": "Required to use the memcache cache driver.",
  2452. "illuminate/database": "Required to use the database cache driver (^6.0).",
  2453. "illuminate/filesystem": "Required to use the file cache driver (^6.0).",
  2454. "illuminate/redis": "Required to use the redis cache driver (^6.0).",
  2455. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4)."
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "branch-alias": {
  2460. "dev-master": "6.x-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "psr-4": {
  2465. "Illuminate\\Cache\\": ""
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Taylor Otwell",
  2475. "email": "taylor@laravel.com"
  2476. }
  2477. ],
  2478. "description": "The Illuminate Cache package.",
  2479. "homepage": "https://laravel.com",
  2480. "support": {
  2481. "issues": "https://github.com/laravel/framework/issues",
  2482. "source": "https://github.com/laravel/framework"
  2483. },
  2484. "time": "2021-12-01T12:53:22+00:00"
  2485. },
  2486. {
  2487. "name": "illuminate/config",
  2488. "version": "v6.20.44",
  2489. "source": {
  2490. "type": "git",
  2491. "url": "https://github.com/illuminate/config.git",
  2492. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892"
  2493. },
  2494. "dist": {
  2495. "type": "zip",
  2496. "url": "https://api.github.com/repos/illuminate/config/zipball/e52084805fcfc0d36f891121dd14c64ce388a892",
  2497. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892",
  2498. "shasum": "",
  2499. "mirrors": [
  2500. {
  2501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2502. "preferred": true
  2503. }
  2504. ]
  2505. },
  2506. "require": {
  2507. "illuminate/contracts": "^6.0",
  2508. "illuminate/support": "^6.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\\Config\\": ""
  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 Config package.",
  2533. "homepage": "https://laravel.com",
  2534. "support": {
  2535. "issues": "https://github.com/laravel/framework/issues",
  2536. "source": "https://github.com/laravel/framework"
  2537. },
  2538. "time": "2020-10-27T15:05:51+00:00"
  2539. },
  2540. {
  2541. "name": "illuminate/console",
  2542. "version": "v6.20.44",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/illuminate/console.git",
  2546. "reference": "ab9e7fdececbdaedbc8594c211d00c18e9f98948"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/illuminate/console/zipball/ab9e7fdececbdaedbc8594c211d00c18e9f98948",
  2551. "reference": "ab9e7fdececbdaedbc8594c211d00c18e9f98948",
  2552. "shasum": "",
  2553. "mirrors": [
  2554. {
  2555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2556. "preferred": true
  2557. }
  2558. ]
  2559. },
  2560. "require": {
  2561. "illuminate/contracts": "^6.0",
  2562. "illuminate/support": "^6.0",
  2563. "php": "^7.2.5|^8.0",
  2564. "symfony/console": "^4.3.4",
  2565. "symfony/process": "^4.3.4"
  2566. },
  2567. "suggest": {
  2568. "dragonmantank/cron-expression": "Required to use scheduler (^2.3.1).",
  2569. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.3.1|^7.0.1).",
  2570. "illuminate/bus": "Required to use the scheduled job dispatcher (^6.0)",
  2571. "illuminate/container": "Required to use the scheduler (^6.0)",
  2572. "illuminate/filesystem": "Required to use the generator command (^6.0)",
  2573. "illuminate/queue": "Required to use closures for scheduled jobs (^6.0)"
  2574. },
  2575. "type": "library",
  2576. "extra": {
  2577. "branch-alias": {
  2578. "dev-master": "6.x-dev"
  2579. }
  2580. },
  2581. "autoload": {
  2582. "psr-4": {
  2583. "Illuminate\\Console\\": ""
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "authors": [
  2591. {
  2592. "name": "Taylor Otwell",
  2593. "email": "taylor@laravel.com"
  2594. }
  2595. ],
  2596. "description": "The Illuminate Console package.",
  2597. "homepage": "https://laravel.com",
  2598. "support": {
  2599. "issues": "https://github.com/laravel/framework/issues",
  2600. "source": "https://github.com/laravel/framework"
  2601. },
  2602. "time": "2021-12-09T12:55:48+00:00"
  2603. },
  2604. {
  2605. "name": "illuminate/container",
  2606. "version": "v6.20.44",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/illuminate/container.git",
  2610. "reference": "a3bf42e3cd9956774d5f8b0b7bbb612ed289e910"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/illuminate/container/zipball/a3bf42e3cd9956774d5f8b0b7bbb612ed289e910",
  2615. "reference": "a3bf42e3cd9956774d5f8b0b7bbb612ed289e910",
  2616. "shasum": "",
  2617. "mirrors": [
  2618. {
  2619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2620. "preferred": true
  2621. }
  2622. ]
  2623. },
  2624. "require": {
  2625. "illuminate/contracts": "^6.0",
  2626. "php": "^7.2.5|^8.0",
  2627. "psr/container": "^1.0"
  2628. },
  2629. "type": "library",
  2630. "extra": {
  2631. "branch-alias": {
  2632. "dev-master": "6.x-dev"
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Illuminate\\Container\\": ""
  2638. }
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "Taylor Otwell",
  2647. "email": "taylor@laravel.com"
  2648. }
  2649. ],
  2650. "description": "The Illuminate Container package.",
  2651. "homepage": "https://laravel.com",
  2652. "support": {
  2653. "issues": "https://github.com/laravel/framework/issues",
  2654. "source": "https://github.com/laravel/framework"
  2655. },
  2656. "time": "2021-09-09T13:53:17+00:00"
  2657. },
  2658. {
  2659. "name": "illuminate/contracts",
  2660. "version": "v6.20.44",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/illuminate/contracts.git",
  2664. "reference": "2aeb1ea8985f7a79abaf7186234c94b543a04165"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/illuminate/contracts/zipball/2aeb1ea8985f7a79abaf7186234c94b543a04165",
  2669. "reference": "2aeb1ea8985f7a79abaf7186234c94b543a04165",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "php": "^7.2.5|^8.0",
  2680. "psr/container": "^1.0",
  2681. "psr/simple-cache": "^1.0"
  2682. },
  2683. "type": "library",
  2684. "extra": {
  2685. "branch-alias": {
  2686. "dev-master": "6.x-dev"
  2687. }
  2688. },
  2689. "autoload": {
  2690. "psr-4": {
  2691. "Illuminate\\Contracts\\": ""
  2692. }
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "MIT"
  2697. ],
  2698. "authors": [
  2699. {
  2700. "name": "Taylor Otwell",
  2701. "email": "taylor@laravel.com"
  2702. }
  2703. ],
  2704. "description": "The Illuminate Contracts package.",
  2705. "homepage": "https://laravel.com",
  2706. "support": {
  2707. "issues": "https://github.com/laravel/framework/issues",
  2708. "source": "https://github.com/laravel/framework"
  2709. },
  2710. "time": "2021-12-01T12:53:22+00:00"
  2711. },
  2712. {
  2713. "name": "illuminate/database",
  2714. "version": "v6.20.44",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/illuminate/database.git",
  2718. "reference": "8eb6281d4109cebc993e0d541b671c4cdb5b3f2e"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/illuminate/database/zipball/8eb6281d4109cebc993e0d541b671c4cdb5b3f2e",
  2723. "reference": "8eb6281d4109cebc993e0d541b671c4cdb5b3f2e",
  2724. "shasum": "",
  2725. "mirrors": [
  2726. {
  2727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2728. "preferred": true
  2729. }
  2730. ]
  2731. },
  2732. "require": {
  2733. "ext-json": "*",
  2734. "illuminate/container": "^6.0",
  2735. "illuminate/contracts": "^6.0",
  2736. "illuminate/support": "^6.0",
  2737. "php": "^7.2.5|^8.0"
  2738. },
  2739. "suggest": {
  2740. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2741. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2742. "illuminate/console": "Required to use the database commands (^6.0).",
  2743. "illuminate/events": "Required to use the observers with Eloquent (^6.0).",
  2744. "illuminate/filesystem": "Required to use the migrations (^6.0).",
  2745. "illuminate/pagination": "Required to paginate the result set (^6.0).",
  2746. "symfony/finder": "Required to use Eloquent model factories (^4.3.4)."
  2747. },
  2748. "type": "library",
  2749. "extra": {
  2750. "branch-alias": {
  2751. "dev-master": "6.x-dev"
  2752. }
  2753. },
  2754. "autoload": {
  2755. "psr-4": {
  2756. "Illuminate\\Database\\": ""
  2757. }
  2758. },
  2759. "notification-url": "https://packagist.org/downloads/",
  2760. "license": [
  2761. "MIT"
  2762. ],
  2763. "authors": [
  2764. {
  2765. "name": "Taylor Otwell",
  2766. "email": "taylor@laravel.com"
  2767. }
  2768. ],
  2769. "description": "The Illuminate Database package.",
  2770. "homepage": "https://laravel.com",
  2771. "keywords": [
  2772. "database",
  2773. "laravel",
  2774. "orm",
  2775. "sql"
  2776. ],
  2777. "support": {
  2778. "issues": "https://github.com/laravel/framework/issues",
  2779. "source": "https://github.com/laravel/framework"
  2780. },
  2781. "time": "2021-12-06T14:14:42+00:00"
  2782. },
  2783. {
  2784. "name": "illuminate/encryption",
  2785. "version": "v6.20.44",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/illuminate/encryption.git",
  2789. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/illuminate/encryption/zipball/b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2794. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2795. "shasum": "",
  2796. "mirrors": [
  2797. {
  2798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2799. "preferred": true
  2800. }
  2801. ]
  2802. },
  2803. "require": {
  2804. "ext-json": "*",
  2805. "ext-mbstring": "*",
  2806. "ext-openssl": "*",
  2807. "illuminate/contracts": "^6.0",
  2808. "illuminate/support": "^6.0",
  2809. "php": "^7.2.5|^8.0"
  2810. },
  2811. "type": "library",
  2812. "extra": {
  2813. "branch-alias": {
  2814. "dev-master": "6.x-dev"
  2815. }
  2816. },
  2817. "autoload": {
  2818. "psr-4": {
  2819. "Illuminate\\Encryption\\": ""
  2820. }
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Taylor Otwell",
  2829. "email": "taylor@laravel.com"
  2830. }
  2831. ],
  2832. "description": "The Illuminate Encryption package.",
  2833. "homepage": "https://laravel.com",
  2834. "support": {
  2835. "issues": "https://github.com/laravel/framework/issues",
  2836. "source": "https://github.com/laravel/framework"
  2837. },
  2838. "time": "2020-10-27T15:05:51+00:00"
  2839. },
  2840. {
  2841. "name": "illuminate/events",
  2842. "version": "v6.20.44",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/illuminate/events.git",
  2846. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/illuminate/events/zipball/668581e3c31f9d499dc6919fe873003969a88e6c",
  2851. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c",
  2852. "shasum": "",
  2853. "mirrors": [
  2854. {
  2855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2856. "preferred": true
  2857. }
  2858. ]
  2859. },
  2860. "require": {
  2861. "illuminate/container": "^6.0",
  2862. "illuminate/contracts": "^6.0",
  2863. "illuminate/support": "^6.0",
  2864. "php": "^7.2.5|^8.0"
  2865. },
  2866. "type": "library",
  2867. "extra": {
  2868. "branch-alias": {
  2869. "dev-master": "6.x-dev"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Illuminate\\Events\\": ""
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Taylor Otwell",
  2884. "email": "taylor@laravel.com"
  2885. }
  2886. ],
  2887. "description": "The Illuminate Events package.",
  2888. "homepage": "https://laravel.com",
  2889. "support": {
  2890. "issues": "https://github.com/laravel/framework/issues",
  2891. "source": "https://github.com/laravel/framework"
  2892. },
  2893. "time": "2020-10-27T15:05:51+00:00"
  2894. },
  2895. {
  2896. "name": "illuminate/filesystem",
  2897. "version": "v6.20.44",
  2898. "source": {
  2899. "type": "git",
  2900. "url": "https://github.com/illuminate/filesystem.git",
  2901. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24"
  2902. },
  2903. "dist": {
  2904. "type": "zip",
  2905. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/5355953da41db06aac064a3d08dfa1f9bafffd24",
  2906. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24",
  2907. "shasum": "",
  2908. "mirrors": [
  2909. {
  2910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2911. "preferred": true
  2912. }
  2913. ]
  2914. },
  2915. "require": {
  2916. "illuminate/contracts": "^6.0",
  2917. "illuminate/support": "^6.0",
  2918. "php": "^7.2.5|^8.0",
  2919. "symfony/finder": "^4.3.4"
  2920. },
  2921. "suggest": {
  2922. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2923. "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.1).",
  2924. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2925. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2926. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2927. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)."
  2928. },
  2929. "type": "library",
  2930. "extra": {
  2931. "branch-alias": {
  2932. "dev-master": "6.x-dev"
  2933. }
  2934. },
  2935. "autoload": {
  2936. "psr-4": {
  2937. "Illuminate\\Filesystem\\": ""
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Taylor Otwell",
  2947. "email": "taylor@laravel.com"
  2948. }
  2949. ],
  2950. "description": "The Illuminate Filesystem package.",
  2951. "homepage": "https://laravel.com",
  2952. "support": {
  2953. "issues": "https://github.com/laravel/framework/issues",
  2954. "source": "https://github.com/laravel/framework"
  2955. },
  2956. "time": "2020-10-27T15:05:51+00:00"
  2957. },
  2958. {
  2959. "name": "illuminate/hashing",
  2960. "version": "v6.20.44",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/illuminate/hashing.git",
  2964. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/illuminate/hashing/zipball/d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2969. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2970. "shasum": "",
  2971. "mirrors": [
  2972. {
  2973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2974. "preferred": true
  2975. }
  2976. ]
  2977. },
  2978. "require": {
  2979. "illuminate/contracts": "^6.0",
  2980. "illuminate/support": "^6.0",
  2981. "php": "^7.2.5|^8.0"
  2982. },
  2983. "type": "library",
  2984. "extra": {
  2985. "branch-alias": {
  2986. "dev-master": "6.x-dev"
  2987. }
  2988. },
  2989. "autoload": {
  2990. "psr-4": {
  2991. "Illuminate\\Hashing\\": ""
  2992. }
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "MIT"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Taylor Otwell",
  3001. "email": "taylor@laravel.com"
  3002. }
  3003. ],
  3004. "description": "The Illuminate Hashing package.",
  3005. "homepage": "https://laravel.com",
  3006. "support": {
  3007. "issues": "https://github.com/laravel/framework/issues",
  3008. "source": "https://github.com/laravel/framework"
  3009. },
  3010. "time": "2020-10-27T15:05:51+00:00"
  3011. },
  3012. {
  3013. "name": "illuminate/http",
  3014. "version": "v6.20.44",
  3015. "source": {
  3016. "type": "git",
  3017. "url": "https://github.com/illuminate/http.git",
  3018. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929"
  3019. },
  3020. "dist": {
  3021. "type": "zip",
  3022. "url": "https://api.github.com/repos/illuminate/http/zipball/c20a51c83af75a335b7e97beb168a860bfe2f929",
  3023. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929",
  3024. "shasum": "",
  3025. "mirrors": [
  3026. {
  3027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3028. "preferred": true
  3029. }
  3030. ]
  3031. },
  3032. "require": {
  3033. "ext-json": "*",
  3034. "illuminate/session": "^6.0",
  3035. "illuminate/support": "^6.0",
  3036. "php": "^7.2.5|^8.0",
  3037. "symfony/http-foundation": "^4.3.4",
  3038. "symfony/http-kernel": "^4.3.4"
  3039. },
  3040. "suggest": {
  3041. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image()."
  3042. },
  3043. "type": "library",
  3044. "extra": {
  3045. "branch-alias": {
  3046. "dev-master": "6.x-dev"
  3047. }
  3048. },
  3049. "autoload": {
  3050. "psr-4": {
  3051. "Illuminate\\Http\\": ""
  3052. }
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Taylor Otwell",
  3061. "email": "taylor@laravel.com"
  3062. }
  3063. ],
  3064. "description": "The Illuminate Http package.",
  3065. "homepage": "https://laravel.com",
  3066. "support": {
  3067. "issues": "https://github.com/laravel/framework/issues",
  3068. "source": "https://github.com/laravel/framework"
  3069. },
  3070. "time": "2021-01-20T13:50:36+00:00"
  3071. },
  3072. {
  3073. "name": "illuminate/log",
  3074. "version": "v6.20.44",
  3075. "source": {
  3076. "type": "git",
  3077. "url": "https://github.com/illuminate/log.git",
  3078. "reference": "b0ed1cc187f0249f5c851e901e0984b885f5de95"
  3079. },
  3080. "dist": {
  3081. "type": "zip",
  3082. "url": "https://api.github.com/repos/illuminate/log/zipball/b0ed1cc187f0249f5c851e901e0984b885f5de95",
  3083. "reference": "b0ed1cc187f0249f5c851e901e0984b885f5de95",
  3084. "shasum": "",
  3085. "mirrors": [
  3086. {
  3087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3088. "preferred": true
  3089. }
  3090. ]
  3091. },
  3092. "require": {
  3093. "illuminate/contracts": "^6.0",
  3094. "illuminate/support": "^6.0",
  3095. "monolog/monolog": "^1.12|^2.0",
  3096. "php": "^7.2.5|^8.0"
  3097. },
  3098. "type": "library",
  3099. "extra": {
  3100. "branch-alias": {
  3101. "dev-master": "6.x-dev"
  3102. }
  3103. },
  3104. "autoload": {
  3105. "psr-4": {
  3106. "Illuminate\\Log\\": ""
  3107. }
  3108. },
  3109. "notification-url": "https://packagist.org/downloads/",
  3110. "license": [
  3111. "MIT"
  3112. ],
  3113. "authors": [
  3114. {
  3115. "name": "Taylor Otwell",
  3116. "email": "taylor@laravel.com"
  3117. }
  3118. ],
  3119. "description": "The Illuminate Log package.",
  3120. "homepage": "https://laravel.com",
  3121. "support": {
  3122. "issues": "https://github.com/laravel/framework/issues",
  3123. "source": "https://github.com/laravel/framework"
  3124. },
  3125. "time": "2021-09-09T13:53:17+00:00"
  3126. },
  3127. {
  3128. "name": "illuminate/pagination",
  3129. "version": "v6.20.44",
  3130. "source": {
  3131. "type": "git",
  3132. "url": "https://github.com/illuminate/pagination.git",
  3133. "reference": "ebccd0aae58f205dc0a4ce95d8683a6c8eb14ecf"
  3134. },
  3135. "dist": {
  3136. "type": "zip",
  3137. "url": "https://api.github.com/repos/illuminate/pagination/zipball/ebccd0aae58f205dc0a4ce95d8683a6c8eb14ecf",
  3138. "reference": "ebccd0aae58f205dc0a4ce95d8683a6c8eb14ecf",
  3139. "shasum": "",
  3140. "mirrors": [
  3141. {
  3142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3143. "preferred": true
  3144. }
  3145. ]
  3146. },
  3147. "require": {
  3148. "ext-json": "*",
  3149. "illuminate/contracts": "^6.0",
  3150. "illuminate/support": "^6.0",
  3151. "php": "^7.2.5|^8.0"
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "branch-alias": {
  3156. "dev-master": "6.x-dev"
  3157. }
  3158. },
  3159. "autoload": {
  3160. "psr-4": {
  3161. "Illuminate\\Pagination\\": ""
  3162. }
  3163. },
  3164. "notification-url": "https://packagist.org/downloads/",
  3165. "license": [
  3166. "MIT"
  3167. ],
  3168. "authors": [
  3169. {
  3170. "name": "Taylor Otwell",
  3171. "email": "taylor@laravel.com"
  3172. }
  3173. ],
  3174. "description": "The Illuminate Pagination package.",
  3175. "homepage": "https://laravel.com",
  3176. "support": {
  3177. "issues": "https://github.com/laravel/framework/issues",
  3178. "source": "https://github.com/laravel/framework"
  3179. },
  3180. "time": "2021-09-08T12:07:35+00:00"
  3181. },
  3182. {
  3183. "name": "illuminate/pipeline",
  3184. "version": "v6.20.44",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/illuminate/pipeline.git",
  3188. "reference": "01063d3605efd22453316d771802cf5075ed848e"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/01063d3605efd22453316d771802cf5075ed848e",
  3193. "reference": "01063d3605efd22453316d771802cf5075ed848e",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "illuminate/contracts": "^6.0",
  3204. "illuminate/support": "^6.0",
  3205. "php": "^7.2.5|^8.0",
  3206. "symfony/debug": "^4.3.4"
  3207. },
  3208. "type": "library",
  3209. "extra": {
  3210. "branch-alias": {
  3211. "dev-master": "6.x-dev"
  3212. }
  3213. },
  3214. "autoload": {
  3215. "psr-4": {
  3216. "Illuminate\\Pipeline\\": ""
  3217. }
  3218. },
  3219. "notification-url": "https://packagist.org/downloads/",
  3220. "license": [
  3221. "MIT"
  3222. ],
  3223. "authors": [
  3224. {
  3225. "name": "Taylor Otwell",
  3226. "email": "taylor@laravel.com"
  3227. }
  3228. ],
  3229. "description": "The Illuminate Pipeline package.",
  3230. "homepage": "https://laravel.com",
  3231. "support": {
  3232. "issues": "https://github.com/laravel/framework/issues",
  3233. "source": "https://github.com/laravel/framework"
  3234. },
  3235. "time": "2020-10-27T15:05:51+00:00"
  3236. },
  3237. {
  3238. "name": "illuminate/queue",
  3239. "version": "v6.20.44",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/illuminate/queue.git",
  3243. "reference": "527b06cb1400267367c14406669557800a095b35"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/illuminate/queue/zipball/527b06cb1400267367c14406669557800a095b35",
  3248. "reference": "527b06cb1400267367c14406669557800a095b35",
  3249. "shasum": "",
  3250. "mirrors": [
  3251. {
  3252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3253. "preferred": true
  3254. }
  3255. ]
  3256. },
  3257. "require": {
  3258. "ext-json": "*",
  3259. "illuminate/console": "^6.0",
  3260. "illuminate/container": "^6.0",
  3261. "illuminate/contracts": "^6.0",
  3262. "illuminate/database": "^6.0",
  3263. "illuminate/filesystem": "^6.0",
  3264. "illuminate/pipeline": "^6.0",
  3265. "illuminate/support": "^6.0",
  3266. "opis/closure": "^3.6",
  3267. "php": "^7.2.5|^8.0",
  3268. "symfony/debug": "^4.3.4",
  3269. "symfony/process": "^4.3.4"
  3270. },
  3271. "suggest": {
  3272. "aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.155).",
  3273. "ext-pcntl": "Required to use all features of the queue worker.",
  3274. "ext-posix": "Required to use all features of the queue worker.",
  3275. "illuminate/redis": "Required to use the Redis queue driver (^6.0).",
  3276. "pda/pheanstalk": "Required to use the Beanstalk queue driver (^4.0)."
  3277. },
  3278. "type": "library",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "6.x-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Illuminate\\Queue\\": ""
  3287. }
  3288. },
  3289. "notification-url": "https://packagist.org/downloads/",
  3290. "license": [
  3291. "MIT"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "Taylor Otwell",
  3296. "email": "taylor@laravel.com"
  3297. }
  3298. ],
  3299. "description": "The Illuminate Queue package.",
  3300. "homepage": "https://laravel.com",
  3301. "support": {
  3302. "issues": "https://github.com/laravel/framework/issues",
  3303. "source": "https://github.com/laravel/framework"
  3304. },
  3305. "time": "2021-09-08T12:07:35+00:00"
  3306. },
  3307. {
  3308. "name": "illuminate/redis",
  3309. "version": "v6.0.0",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/illuminate/redis.git",
  3313. "reference": "c5e0c8796e107df27190c11f42935f8776d6afa7"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/illuminate/redis/zipball/c5e0c8796e107df27190c11f42935f8776d6afa7",
  3318. "reference": "c5e0c8796e107df27190c11f42935f8776d6afa7",
  3319. "shasum": "",
  3320. "mirrors": [
  3321. {
  3322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3323. "preferred": true
  3324. }
  3325. ]
  3326. },
  3327. "require": {
  3328. "illuminate/contracts": "^6.0",
  3329. "illuminate/support": "^6.0",
  3330. "php": "^7.2"
  3331. },
  3332. "suggest": {
  3333. "ext-redis": "Required to use the phpredis connector.",
  3334. "predis/predis": "Required to use the predis connector (^1.0)."
  3335. },
  3336. "type": "library",
  3337. "extra": {
  3338. "branch-alias": {
  3339. "dev-master": "6.0-dev"
  3340. }
  3341. },
  3342. "autoload": {
  3343. "psr-4": {
  3344. "Illuminate\\Redis\\": ""
  3345. }
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "Taylor Otwell",
  3354. "email": "taylor@laravel.com"
  3355. }
  3356. ],
  3357. "description": "The Illuminate Redis package.",
  3358. "homepage": "https://laravel.com",
  3359. "support": {
  3360. "issues": "https://github.com/laravel/framework/issues",
  3361. "source": "https://github.com/laravel/framework"
  3362. },
  3363. "time": "2019-09-03T11:25:18+00:00"
  3364. },
  3365. {
  3366. "name": "illuminate/routing",
  3367. "version": "v6.20.44",
  3368. "source": {
  3369. "type": "git",
  3370. "url": "https://github.com/illuminate/routing.git",
  3371. "reference": "4e9c499c206ba5dc2a17c78fe7205fdc0c88736d"
  3372. },
  3373. "dist": {
  3374. "type": "zip",
  3375. "url": "https://api.github.com/repos/illuminate/routing/zipball/4e9c499c206ba5dc2a17c78fe7205fdc0c88736d",
  3376. "reference": "4e9c499c206ba5dc2a17c78fe7205fdc0c88736d",
  3377. "shasum": "",
  3378. "mirrors": [
  3379. {
  3380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3381. "preferred": true
  3382. }
  3383. ]
  3384. },
  3385. "require": {
  3386. "ext-json": "*",
  3387. "illuminate/container": "^6.0",
  3388. "illuminate/contracts": "^6.0",
  3389. "illuminate/http": "^6.0",
  3390. "illuminate/pipeline": "^6.0",
  3391. "illuminate/session": "^6.0",
  3392. "illuminate/support": "^6.0",
  3393. "php": "^7.2.5|^8.0",
  3394. "symfony/debug": "^4.3.4",
  3395. "symfony/http-foundation": "^4.3.4",
  3396. "symfony/http-kernel": "^4.3.4",
  3397. "symfony/routing": "^4.3.4"
  3398. },
  3399. "suggest": {
  3400. "illuminate/console": "Required to use the make commands (^6.0).",
  3401. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3402. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  3403. },
  3404. "type": "library",
  3405. "extra": {
  3406. "branch-alias": {
  3407. "dev-master": "6.x-dev"
  3408. }
  3409. },
  3410. "autoload": {
  3411. "psr-4": {
  3412. "Illuminate\\Routing\\": ""
  3413. }
  3414. },
  3415. "notification-url": "https://packagist.org/downloads/",
  3416. "license": [
  3417. "MIT"
  3418. ],
  3419. "authors": [
  3420. {
  3421. "name": "Taylor Otwell",
  3422. "email": "taylor@laravel.com"
  3423. }
  3424. ],
  3425. "description": "The Illuminate Routing package.",
  3426. "homepage": "https://laravel.com",
  3427. "support": {
  3428. "issues": "https://github.com/laravel/framework/issues",
  3429. "source": "https://github.com/laravel/framework"
  3430. },
  3431. "time": "2021-07-23T12:54:40+00:00"
  3432. },
  3433. {
  3434. "name": "illuminate/session",
  3435. "version": "v6.20.44",
  3436. "source": {
  3437. "type": "git",
  3438. "url": "https://github.com/illuminate/session.git",
  3439. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03"
  3440. },
  3441. "dist": {
  3442. "type": "zip",
  3443. "url": "https://api.github.com/repos/illuminate/session/zipball/3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  3444. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  3445. "shasum": "",
  3446. "mirrors": [
  3447. {
  3448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3449. "preferred": true
  3450. }
  3451. ]
  3452. },
  3453. "require": {
  3454. "ext-json": "*",
  3455. "illuminate/contracts": "^6.0",
  3456. "illuminate/filesystem": "^6.0",
  3457. "illuminate/support": "^6.0",
  3458. "php": "^7.2.5|^8.0",
  3459. "symfony/finder": "^4.3.4",
  3460. "symfony/http-foundation": "^4.3.4"
  3461. },
  3462. "suggest": {
  3463. "illuminate/console": "Required to use the session:table command (^6.0)."
  3464. },
  3465. "type": "library",
  3466. "extra": {
  3467. "branch-alias": {
  3468. "dev-master": "6.x-dev"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "psr-4": {
  3473. "Illuminate\\Session\\": ""
  3474. }
  3475. },
  3476. "notification-url": "https://packagist.org/downloads/",
  3477. "license": [
  3478. "MIT"
  3479. ],
  3480. "authors": [
  3481. {
  3482. "name": "Taylor Otwell",
  3483. "email": "taylor@laravel.com"
  3484. }
  3485. ],
  3486. "description": "The Illuminate Session package.",
  3487. "homepage": "https://laravel.com",
  3488. "support": {
  3489. "issues": "https://github.com/laravel/framework/issues",
  3490. "source": "https://github.com/laravel/framework"
  3491. },
  3492. "time": "2020-10-27T15:05:51+00:00"
  3493. },
  3494. {
  3495. "name": "illuminate/support",
  3496. "version": "v6.20.44",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/illuminate/support.git",
  3500. "reference": "c625fd884620c41ea6c5d84ccdb6a39fe555282d"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/illuminate/support/zipball/c625fd884620c41ea6c5d84ccdb6a39fe555282d",
  3505. "reference": "c625fd884620c41ea6c5d84ccdb6a39fe555282d",
  3506. "shasum": "",
  3507. "mirrors": [
  3508. {
  3509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3510. "preferred": true
  3511. }
  3512. ]
  3513. },
  3514. "require": {
  3515. "doctrine/inflector": "^1.4|^2.0",
  3516. "ext-json": "*",
  3517. "ext-mbstring": "*",
  3518. "illuminate/contracts": "^6.0",
  3519. "nesbot/carbon": "^2.31",
  3520. "php": "^7.2.5|^8.0"
  3521. },
  3522. "conflict": {
  3523. "tightenco/collect": "<5.5.33"
  3524. },
  3525. "suggest": {
  3526. "illuminate/filesystem": "Required to use the composer class (^6.0).",
  3527. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  3528. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  3529. "symfony/process": "Required to use the composer class (^4.3.4).",
  3530. "symfony/var-dumper": "Required to use the dd function (^4.3.4).",
  3531. "vlucas/phpdotenv": "Required to use the Env class and env helper (^3.3)."
  3532. },
  3533. "type": "library",
  3534. "extra": {
  3535. "branch-alias": {
  3536. "dev-master": "6.x-dev"
  3537. }
  3538. },
  3539. "autoload": {
  3540. "files": [
  3541. "helpers.php"
  3542. ],
  3543. "psr-4": {
  3544. "Illuminate\\Support\\": ""
  3545. }
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "MIT"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "Taylor Otwell",
  3554. "email": "taylor@laravel.com"
  3555. }
  3556. ],
  3557. "description": "The Illuminate Support package.",
  3558. "homepage": "https://laravel.com",
  3559. "support": {
  3560. "issues": "https://github.com/laravel/framework/issues",
  3561. "source": "https://github.com/laravel/framework"
  3562. },
  3563. "time": "2021-09-08T12:07:35+00:00"
  3564. },
  3565. {
  3566. "name": "illuminate/translation",
  3567. "version": "v6.20.44",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/illuminate/translation.git",
  3571. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/illuminate/translation/zipball/717fad58c8451b86c7b5644bc652430a3369d7b3",
  3576. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3",
  3577. "shasum": "",
  3578. "mirrors": [
  3579. {
  3580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3581. "preferred": true
  3582. }
  3583. ]
  3584. },
  3585. "require": {
  3586. "ext-json": "*",
  3587. "illuminate/contracts": "^6.0",
  3588. "illuminate/filesystem": "^6.0",
  3589. "illuminate/support": "^6.0",
  3590. "php": "^7.2.5|^8.0"
  3591. },
  3592. "type": "library",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-master": "6.x-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-4": {
  3600. "Illuminate\\Translation\\": ""
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "Taylor Otwell",
  3610. "email": "taylor@laravel.com"
  3611. }
  3612. ],
  3613. "description": "The Illuminate Translation package.",
  3614. "homepage": "https://laravel.com",
  3615. "support": {
  3616. "issues": "https://github.com/laravel/framework/issues",
  3617. "source": "https://github.com/laravel/framework"
  3618. },
  3619. "time": "2020-10-27T15:05:51+00:00"
  3620. },
  3621. {
  3622. "name": "illuminate/validation",
  3623. "version": "v6.20.44",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/illuminate/validation.git",
  3627. "reference": "934f75b6afd5b731881e3226df429470c62a9f3a"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/illuminate/validation/zipball/934f75b6afd5b731881e3226df429470c62a9f3a",
  3632. "reference": "934f75b6afd5b731881e3226df429470c62a9f3a",
  3633. "shasum": "",
  3634. "mirrors": [
  3635. {
  3636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3637. "preferred": true
  3638. }
  3639. ]
  3640. },
  3641. "require": {
  3642. "egulias/email-validator": "^2.1.10",
  3643. "ext-json": "*",
  3644. "illuminate/container": "^6.0",
  3645. "illuminate/contracts": "^6.0",
  3646. "illuminate/support": "^6.0",
  3647. "illuminate/translation": "^6.0",
  3648. "php": "^7.2.5|^8.0",
  3649. "symfony/http-foundation": "^4.3.4"
  3650. },
  3651. "suggest": {
  3652. "illuminate/database": "Required to use the database presence verifier (^6.0)."
  3653. },
  3654. "type": "library",
  3655. "extra": {
  3656. "branch-alias": {
  3657. "dev-master": "6.x-dev"
  3658. }
  3659. },
  3660. "autoload": {
  3661. "psr-4": {
  3662. "Illuminate\\Validation\\": ""
  3663. }
  3664. },
  3665. "notification-url": "https://packagist.org/downloads/",
  3666. "license": [
  3667. "MIT"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Taylor Otwell",
  3672. "email": "taylor@laravel.com"
  3673. }
  3674. ],
  3675. "description": "The Illuminate Validation package.",
  3676. "homepage": "https://laravel.com",
  3677. "support": {
  3678. "issues": "https://github.com/laravel/framework/issues",
  3679. "source": "https://github.com/laravel/framework"
  3680. },
  3681. "time": "2022-01-06T14:39:02+00:00"
  3682. },
  3683. {
  3684. "name": "illuminate/view",
  3685. "version": "v6.20.44",
  3686. "source": {
  3687. "type": "git",
  3688. "url": "https://github.com/illuminate/view.git",
  3689. "reference": "3318d941e1c1a0f561bbd471426d042f7666e798"
  3690. },
  3691. "dist": {
  3692. "type": "zip",
  3693. "url": "https://api.github.com/repos/illuminate/view/zipball/3318d941e1c1a0f561bbd471426d042f7666e798",
  3694. "reference": "3318d941e1c1a0f561bbd471426d042f7666e798",
  3695. "shasum": "",
  3696. "mirrors": [
  3697. {
  3698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3699. "preferred": true
  3700. }
  3701. ]
  3702. },
  3703. "require": {
  3704. "ext-json": "*",
  3705. "illuminate/container": "^6.0",
  3706. "illuminate/contracts": "^6.0",
  3707. "illuminate/events": "^6.0",
  3708. "illuminate/filesystem": "^6.0",
  3709. "illuminate/support": "^6.0",
  3710. "php": "^7.2.5|^8.0",
  3711. "symfony/debug": "^4.3.4"
  3712. },
  3713. "type": "library",
  3714. "extra": {
  3715. "branch-alias": {
  3716. "dev-master": "6.x-dev"
  3717. }
  3718. },
  3719. "autoload": {
  3720. "psr-4": {
  3721. "Illuminate\\View\\": ""
  3722. }
  3723. },
  3724. "notification-url": "https://packagist.org/downloads/",
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "Taylor Otwell",
  3731. "email": "taylor@laravel.com"
  3732. }
  3733. ],
  3734. "description": "The Illuminate View package.",
  3735. "homepage": "https://laravel.com",
  3736. "support": {
  3737. "issues": "https://github.com/laravel/framework/issues",
  3738. "source": "https://github.com/laravel/framework"
  3739. },
  3740. "time": "2021-12-06T17:14:03+00:00"
  3741. },
  3742. {
  3743. "name": "intervention/image",
  3744. "version": "2.7.2",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/Intervention/image.git",
  3748. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  3753. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  3754. "shasum": "",
  3755. "mirrors": [
  3756. {
  3757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3758. "preferred": true
  3759. }
  3760. ]
  3761. },
  3762. "require": {
  3763. "ext-fileinfo": "*",
  3764. "guzzlehttp/psr7": "~1.1 || ^2.0",
  3765. "php": ">=5.4.0"
  3766. },
  3767. "require-dev": {
  3768. "mockery/mockery": "~0.9.2",
  3769. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  3770. },
  3771. "suggest": {
  3772. "ext-gd": "to use GD library based image processing.",
  3773. "ext-imagick": "to use Imagick based image processing.",
  3774. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3775. },
  3776. "type": "library",
  3777. "extra": {
  3778. "branch-alias": {
  3779. "dev-master": "2.4-dev"
  3780. },
  3781. "laravel": {
  3782. "providers": [
  3783. "Intervention\\Image\\ImageServiceProvider"
  3784. ],
  3785. "aliases": {
  3786. "Image": "Intervention\\Image\\Facades\\Image"
  3787. }
  3788. }
  3789. },
  3790. "autoload": {
  3791. "psr-4": {
  3792. "Intervention\\Image\\": "src/Intervention/Image"
  3793. }
  3794. },
  3795. "notification-url": "https://packagist.org/downloads/",
  3796. "license": [
  3797. "MIT"
  3798. ],
  3799. "authors": [
  3800. {
  3801. "name": "Oliver Vogel",
  3802. "email": "oliver@intervention.io",
  3803. "homepage": "https://intervention.io/"
  3804. }
  3805. ],
  3806. "description": "Image handling and manipulation library with support for Laravel integration",
  3807. "homepage": "http://image.intervention.io/",
  3808. "keywords": [
  3809. "gd",
  3810. "image",
  3811. "imagick",
  3812. "laravel",
  3813. "thumbnail",
  3814. "watermark"
  3815. ],
  3816. "support": {
  3817. "issues": "https://github.com/Intervention/image/issues",
  3818. "source": "https://github.com/Intervention/image/tree/2.7.2"
  3819. },
  3820. "funding": [
  3821. {
  3822. "url": "https://paypal.me/interventionio",
  3823. "type": "custom"
  3824. },
  3825. {
  3826. "url": "https://github.com/Intervention",
  3827. "type": "github"
  3828. }
  3829. ],
  3830. "time": "2022-05-21T17:30:32+00:00"
  3831. },
  3832. {
  3833. "name": "jaybizzle/crawler-detect",
  3834. "version": "v1.2.112",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3838. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  3843. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  3844. "shasum": "",
  3845. "mirrors": [
  3846. {
  3847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3848. "preferred": true
  3849. }
  3850. ]
  3851. },
  3852. "require": {
  3853. "php": ">=5.3.0"
  3854. },
  3855. "require-dev": {
  3856. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3857. },
  3858. "type": "library",
  3859. "autoload": {
  3860. "psr-4": {
  3861. "Jaybizzle\\CrawlerDetect\\": "src/"
  3862. }
  3863. },
  3864. "notification-url": "https://packagist.org/downloads/",
  3865. "license": [
  3866. "MIT"
  3867. ],
  3868. "authors": [
  3869. {
  3870. "name": "Mark Beech",
  3871. "email": "m@rkbee.ch",
  3872. "role": "Developer"
  3873. }
  3874. ],
  3875. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3876. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3877. "keywords": [
  3878. "crawler",
  3879. "crawler detect",
  3880. "crawler detector",
  3881. "crawlerdetect",
  3882. "php crawler detect"
  3883. ],
  3884. "support": {
  3885. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  3886. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112"
  3887. },
  3888. "time": "2022-10-05T21:52:44+00:00"
  3889. },
  3890. {
  3891. "name": "jenssegers/agent",
  3892. "version": "v2.6.4",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/jenssegers/agent.git",
  3896. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  3901. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  3902. "shasum": "",
  3903. "mirrors": [
  3904. {
  3905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3906. "preferred": true
  3907. }
  3908. ]
  3909. },
  3910. "require": {
  3911. "jaybizzle/crawler-detect": "^1.2",
  3912. "mobiledetect/mobiledetectlib": "^2.7.6",
  3913. "php": ">=5.6"
  3914. },
  3915. "require-dev": {
  3916. "php-coveralls/php-coveralls": "^2.1",
  3917. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  3918. },
  3919. "suggest": {
  3920. "illuminate/support": "Required for laravel service providers"
  3921. },
  3922. "type": "library",
  3923. "extra": {
  3924. "branch-alias": {
  3925. "dev-master": "3.0-dev"
  3926. },
  3927. "laravel": {
  3928. "providers": [
  3929. "Jenssegers\\Agent\\AgentServiceProvider"
  3930. ],
  3931. "aliases": {
  3932. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  3933. }
  3934. }
  3935. },
  3936. "autoload": {
  3937. "psr-4": {
  3938. "Jenssegers\\Agent\\": "src/"
  3939. }
  3940. },
  3941. "notification-url": "https://packagist.org/downloads/",
  3942. "license": [
  3943. "MIT"
  3944. ],
  3945. "authors": [
  3946. {
  3947. "name": "Jens Segers",
  3948. "homepage": "https://jenssegers.com"
  3949. }
  3950. ],
  3951. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  3952. "homepage": "https://github.com/jenssegers/agent",
  3953. "keywords": [
  3954. "Agent",
  3955. "browser",
  3956. "desktop",
  3957. "laravel",
  3958. "mobile",
  3959. "platform",
  3960. "user agent",
  3961. "useragent"
  3962. ],
  3963. "support": {
  3964. "issues": "https://github.com/jenssegers/agent/issues",
  3965. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  3966. },
  3967. "funding": [
  3968. {
  3969. "url": "https://github.com/jenssegers",
  3970. "type": "github"
  3971. },
  3972. {
  3973. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  3974. "type": "tidelift"
  3975. }
  3976. ],
  3977. "time": "2020-06-13T08:05:20+00:00"
  3978. },
  3979. {
  3980. "name": "justinrainbow/json-schema",
  3981. "version": "5.2.12",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/justinrainbow/json-schema.git",
  3985. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  3990. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  3991. "shasum": "",
  3992. "mirrors": [
  3993. {
  3994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3995. "preferred": true
  3996. }
  3997. ]
  3998. },
  3999. "require": {
  4000. "php": ">=5.3.3"
  4001. },
  4002. "require-dev": {
  4003. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  4004. "json-schema/json-schema-test-suite": "1.2.0",
  4005. "phpunit/phpunit": "^4.8.35"
  4006. },
  4007. "bin": [
  4008. "bin/validate-json"
  4009. ],
  4010. "type": "library",
  4011. "extra": {
  4012. "branch-alias": {
  4013. "dev-master": "5.0.x-dev"
  4014. }
  4015. },
  4016. "autoload": {
  4017. "psr-4": {
  4018. "JsonSchema\\": "src/JsonSchema/"
  4019. }
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Bruno Prieto Reis",
  4028. "email": "bruno.p.reis@gmail.com"
  4029. },
  4030. {
  4031. "name": "Justin Rainbow",
  4032. "email": "justin.rainbow@gmail.com"
  4033. },
  4034. {
  4035. "name": "Igor Wiedler",
  4036. "email": "igor@wiedler.ch"
  4037. },
  4038. {
  4039. "name": "Robert Schönthal",
  4040. "email": "seroscho@googlemail.com"
  4041. }
  4042. ],
  4043. "description": "A library to validate a json schema.",
  4044. "homepage": "https://github.com/justinrainbow/json-schema",
  4045. "keywords": [
  4046. "json",
  4047. "schema"
  4048. ],
  4049. "support": {
  4050. "issues": "https://github.com/justinrainbow/json-schema/issues",
  4051. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  4052. },
  4053. "time": "2022-04-13T08:02:27+00:00"
  4054. },
  4055. {
  4056. "name": "khanamiryan/qrcode-detector-decoder",
  4057. "version": "1.0.6",
  4058. "source": {
  4059. "type": "git",
  4060. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  4061. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569"
  4062. },
  4063. "dist": {
  4064. "type": "zip",
  4065. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/45326fb83a2a375065dbb3a134b5b8a5872da569",
  4066. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569",
  4067. "shasum": "",
  4068. "mirrors": [
  4069. {
  4070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4071. "preferred": true
  4072. }
  4073. ]
  4074. },
  4075. "require": {
  4076. "php": ">=5.6"
  4077. },
  4078. "require-dev": {
  4079. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
  4080. "rector/rector": "^0.13.6",
  4081. "symplify/easy-coding-standard": "^11.0"
  4082. },
  4083. "type": "library",
  4084. "autoload": {
  4085. "files": [
  4086. "lib/Common/customFunctions.php"
  4087. ],
  4088. "psr-4": {
  4089. "Zxing\\": "lib/"
  4090. }
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT",
  4095. "Apache-2.0"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Ashot Khanamiryan",
  4100. "email": "a.khanamiryan@gmail.com",
  4101. "homepage": "https://github.com/khanamiryan",
  4102. "role": "Developer"
  4103. }
  4104. ],
  4105. "description": "QR code decoder / reader",
  4106. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  4107. "keywords": [
  4108. "barcode",
  4109. "qr",
  4110. "zxing"
  4111. ],
  4112. "support": {
  4113. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  4114. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.6"
  4115. },
  4116. "time": "2022-06-29T09:25:13+00:00"
  4117. },
  4118. {
  4119. "name": "laravel/lumen-framework",
  4120. "version": "v6.3.5",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/laravel/lumen-framework.git",
  4124. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/74d61ebf4f022a874bcea560054a2a2050d0e75d",
  4129. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "dragonmantank/cron-expression": "^2.0",
  4140. "illuminate/auth": "^6.0",
  4141. "illuminate/broadcasting": "^6.0",
  4142. "illuminate/bus": "^6.0",
  4143. "illuminate/cache": "^6.0",
  4144. "illuminate/config": "^6.0",
  4145. "illuminate/container": "^6.0",
  4146. "illuminate/contracts": "^6.0",
  4147. "illuminate/database": "^6.0",
  4148. "illuminate/encryption": "^6.0",
  4149. "illuminate/events": "^6.0",
  4150. "illuminate/filesystem": "^6.0",
  4151. "illuminate/hashing": "^6.0",
  4152. "illuminate/http": "^6.0",
  4153. "illuminate/log": "^6.0",
  4154. "illuminate/pagination": "^6.0",
  4155. "illuminate/pipeline": "^6.0",
  4156. "illuminate/queue": "^6.0",
  4157. "illuminate/support": "^6.0",
  4158. "illuminate/translation": "^6.0",
  4159. "illuminate/validation": "^6.0",
  4160. "illuminate/view": "^6.0",
  4161. "nikic/fast-route": "^1.3",
  4162. "php": "^7.2",
  4163. "symfony/http-foundation": "^4.3",
  4164. "symfony/http-kernel": "^4.3",
  4165. "symfony/var-dumper": "^4.3",
  4166. "vlucas/phpdotenv": "^3.3"
  4167. },
  4168. "require-dev": {
  4169. "mockery/mockery": "^1.0",
  4170. "phpunit/phpunit": "^7.5|^8.0"
  4171. },
  4172. "suggest": {
  4173. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  4174. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  4175. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  4176. },
  4177. "type": "library",
  4178. "extra": {
  4179. "branch-alias": {
  4180. "dev-master": "6.x-dev"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "files": [
  4185. "src/helpers.php"
  4186. ],
  4187. "psr-4": {
  4188. "Laravel\\Lumen\\": "src/"
  4189. }
  4190. },
  4191. "notification-url": "https://packagist.org/downloads/",
  4192. "license": [
  4193. "MIT"
  4194. ],
  4195. "authors": [
  4196. {
  4197. "name": "Taylor Otwell",
  4198. "email": "taylorotwell@gmail.com"
  4199. }
  4200. ],
  4201. "description": "The Laravel Lumen Framework.",
  4202. "homepage": "https://lumen.laravel.com",
  4203. "keywords": [
  4204. "framework",
  4205. "laravel",
  4206. "lumen"
  4207. ],
  4208. "support": {
  4209. "issues": "https://github.com/laravel/lumen-framework/issues",
  4210. "source": "https://github.com/laravel/lumen-framework"
  4211. },
  4212. "time": "2020-03-13T20:24:43+00:00"
  4213. },
  4214. {
  4215. "name": "lcobucci/jwt",
  4216. "version": "3.3.3",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/lcobucci/jwt.git",
  4220. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  4225. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  4226. "shasum": "",
  4227. "mirrors": [
  4228. {
  4229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4230. "preferred": true
  4231. }
  4232. ]
  4233. },
  4234. "require": {
  4235. "ext-mbstring": "*",
  4236. "ext-openssl": "*",
  4237. "php": "^5.6 || ^7.0"
  4238. },
  4239. "require-dev": {
  4240. "mikey179/vfsstream": "~1.5",
  4241. "phpmd/phpmd": "~2.2",
  4242. "phpunit/php-invoker": "~1.1",
  4243. "phpunit/phpunit": "^5.7 || ^7.3",
  4244. "squizlabs/php_codesniffer": "~2.3"
  4245. },
  4246. "type": "library",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-master": "3.1-dev"
  4250. }
  4251. },
  4252. "autoload": {
  4253. "psr-4": {
  4254. "Lcobucci\\JWT\\": "src"
  4255. }
  4256. },
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "BSD-3-Clause"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "Luís Otávio Cobucci Oblonczyk",
  4264. "email": "lcobucci@gmail.com",
  4265. "role": "Developer"
  4266. }
  4267. ],
  4268. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  4269. "keywords": [
  4270. "JWS",
  4271. "jwt"
  4272. ],
  4273. "support": {
  4274. "issues": "https://github.com/lcobucci/jwt/issues",
  4275. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  4276. },
  4277. "funding": [
  4278. {
  4279. "url": "https://github.com/lcobucci",
  4280. "type": "github"
  4281. },
  4282. {
  4283. "url": "https://www.patreon.com/lcobucci",
  4284. "type": "patreon"
  4285. }
  4286. ],
  4287. "time": "2020-08-20T13:22:28+00:00"
  4288. },
  4289. {
  4290. "name": "league/flysystem",
  4291. "version": "1.1.10",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/thephpleague/flysystem.git",
  4295. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  4300. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  4301. "shasum": "",
  4302. "mirrors": [
  4303. {
  4304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4305. "preferred": true
  4306. }
  4307. ]
  4308. },
  4309. "require": {
  4310. "ext-fileinfo": "*",
  4311. "league/mime-type-detection": "^1.3",
  4312. "php": "^7.2.5 || ^8.0"
  4313. },
  4314. "conflict": {
  4315. "league/flysystem-sftp": "<1.0.6"
  4316. },
  4317. "require-dev": {
  4318. "phpspec/prophecy": "^1.11.1",
  4319. "phpunit/phpunit": "^8.5.8"
  4320. },
  4321. "suggest": {
  4322. "ext-ftp": "Allows you to use FTP server storage",
  4323. "ext-openssl": "Allows you to use FTPS server storage",
  4324. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  4325. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  4326. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  4327. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  4328. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  4329. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  4330. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  4331. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  4332. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  4333. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  4334. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-master": "1.1-dev"
  4340. }
  4341. },
  4342. "autoload": {
  4343. "psr-4": {
  4344. "League\\Flysystem\\": "src/"
  4345. }
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "Frank de Jonge",
  4354. "email": "info@frenky.net"
  4355. }
  4356. ],
  4357. "description": "Filesystem abstraction: Many filesystems, one API.",
  4358. "keywords": [
  4359. "Cloud Files",
  4360. "WebDAV",
  4361. "abstraction",
  4362. "aws",
  4363. "cloud",
  4364. "copy.com",
  4365. "dropbox",
  4366. "file systems",
  4367. "files",
  4368. "filesystem",
  4369. "filesystems",
  4370. "ftp",
  4371. "rackspace",
  4372. "remote",
  4373. "s3",
  4374. "sftp",
  4375. "storage"
  4376. ],
  4377. "support": {
  4378. "issues": "https://github.com/thephpleague/flysystem/issues",
  4379. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  4380. },
  4381. "funding": [
  4382. {
  4383. "url": "https://offset.earth/frankdejonge",
  4384. "type": "other"
  4385. }
  4386. ],
  4387. "time": "2022-10-04T09:16:37+00:00"
  4388. },
  4389. {
  4390. "name": "league/fractal",
  4391. "version": "0.17.0",
  4392. "source": {
  4393. "type": "git",
  4394. "url": "https://github.com/thephpleague/fractal.git",
  4395. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  4396. },
  4397. "dist": {
  4398. "type": "zip",
  4399. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  4400. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  4401. "shasum": "",
  4402. "mirrors": [
  4403. {
  4404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4405. "preferred": true
  4406. }
  4407. ]
  4408. },
  4409. "require": {
  4410. "php": ">=5.4"
  4411. },
  4412. "require-dev": {
  4413. "doctrine/orm": "^2.5",
  4414. "illuminate/contracts": "~5.0",
  4415. "mockery/mockery": "~0.9",
  4416. "pagerfanta/pagerfanta": "~1.0.0",
  4417. "phpunit/phpunit": "~4.0",
  4418. "squizlabs/php_codesniffer": "~1.5",
  4419. "zendframework/zend-paginator": "~2.3"
  4420. },
  4421. "suggest": {
  4422. "illuminate/pagination": "The Illuminate Pagination component.",
  4423. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  4424. "zendframework/zend-paginator": "Zend Framework Paginator"
  4425. },
  4426. "type": "library",
  4427. "extra": {
  4428. "branch-alias": {
  4429. "dev-master": "0.13-dev"
  4430. }
  4431. },
  4432. "autoload": {
  4433. "psr-4": {
  4434. "League\\Fractal\\": "src"
  4435. }
  4436. },
  4437. "notification-url": "https://packagist.org/downloads/",
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Phil Sturgeon",
  4444. "email": "me@philsturgeon.uk",
  4445. "homepage": "http://philsturgeon.uk/",
  4446. "role": "Developer"
  4447. }
  4448. ],
  4449. "description": "Handle the output of complex data structures ready for API output.",
  4450. "homepage": "http://fractal.thephpleague.com/",
  4451. "keywords": [
  4452. "api",
  4453. "json",
  4454. "league",
  4455. "rest"
  4456. ],
  4457. "support": {
  4458. "issues": "https://github.com/thephpleague/fractal/issues",
  4459. "source": "https://github.com/thephpleague/fractal/tree/master"
  4460. },
  4461. "time": "2017-06-12T11:04:56+00:00"
  4462. },
  4463. {
  4464. "name": "league/mime-type-detection",
  4465. "version": "1.11.0",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4469. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  4474. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  4475. "shasum": "",
  4476. "mirrors": [
  4477. {
  4478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4479. "preferred": true
  4480. }
  4481. ]
  4482. },
  4483. "require": {
  4484. "ext-fileinfo": "*",
  4485. "php": "^7.2 || ^8.0"
  4486. },
  4487. "require-dev": {
  4488. "friendsofphp/php-cs-fixer": "^3.2",
  4489. "phpstan/phpstan": "^0.12.68",
  4490. "phpunit/phpunit": "^8.5.8 || ^9.3"
  4491. },
  4492. "type": "library",
  4493. "autoload": {
  4494. "psr-4": {
  4495. "League\\MimeTypeDetection\\": "src"
  4496. }
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Frank de Jonge",
  4505. "email": "info@frankdejonge.nl"
  4506. }
  4507. ],
  4508. "description": "Mime-type detection for Flysystem",
  4509. "support": {
  4510. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4511. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4512. },
  4513. "funding": [
  4514. {
  4515. "url": "https://github.com/frankdejonge",
  4516. "type": "github"
  4517. },
  4518. {
  4519. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4520. "type": "tidelift"
  4521. }
  4522. ],
  4523. "time": "2022-04-17T13:12:02+00:00"
  4524. },
  4525. {
  4526. "name": "mobiledetect/mobiledetectlib",
  4527. "version": "2.8.41",
  4528. "source": {
  4529. "type": "git",
  4530. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4531. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  4532. },
  4533. "dist": {
  4534. "type": "zip",
  4535. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  4536. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  4537. "shasum": "",
  4538. "mirrors": [
  4539. {
  4540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4541. "preferred": true
  4542. }
  4543. ]
  4544. },
  4545. "require": {
  4546. "php": ">=5.0.0"
  4547. },
  4548. "require-dev": {
  4549. "phpunit/phpunit": "~4.8.35||~5.7"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-0": {
  4554. "Detection": "namespaced/"
  4555. },
  4556. "classmap": [
  4557. "Mobile_Detect.php"
  4558. ]
  4559. },
  4560. "notification-url": "https://packagist.org/downloads/",
  4561. "license": [
  4562. "MIT"
  4563. ],
  4564. "authors": [
  4565. {
  4566. "name": "Serban Ghita",
  4567. "email": "serbanghita@gmail.com",
  4568. "homepage": "http://mobiledetect.net",
  4569. "role": "Developer"
  4570. }
  4571. ],
  4572. "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.",
  4573. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4574. "keywords": [
  4575. "detect mobile devices",
  4576. "mobile",
  4577. "mobile detect",
  4578. "mobile detector",
  4579. "php mobile detect"
  4580. ],
  4581. "support": {
  4582. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4583. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  4584. },
  4585. "time": "2022-11-08T18:31:26+00:00"
  4586. },
  4587. {
  4588. "name": "monolog/monolog",
  4589. "version": "2.9.0",
  4590. "source": {
  4591. "type": "git",
  4592. "url": "https://github.com/Seldaek/monolog.git",
  4593. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  4594. },
  4595. "dist": {
  4596. "type": "zip",
  4597. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  4598. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  4599. "shasum": "",
  4600. "mirrors": [
  4601. {
  4602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4603. "preferred": true
  4604. }
  4605. ]
  4606. },
  4607. "require": {
  4608. "php": ">=7.2",
  4609. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4610. },
  4611. "provide": {
  4612. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4613. },
  4614. "require-dev": {
  4615. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4616. "doctrine/couchdb": "~1.0@dev",
  4617. "elasticsearch/elasticsearch": "^7 || ^8",
  4618. "ext-json": "*",
  4619. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  4620. "guzzlehttp/guzzle": "^7.4",
  4621. "guzzlehttp/psr7": "^2.2",
  4622. "mongodb/mongodb": "^1.8",
  4623. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4624. "phpspec/prophecy": "^1.15",
  4625. "phpstan/phpstan": "^0.12.91",
  4626. "phpunit/phpunit": "^8.5.14",
  4627. "predis/predis": "^1.1 || ^2.0",
  4628. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4629. "ruflin/elastica": "^7",
  4630. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4631. "symfony/mailer": "^5.4 || ^6",
  4632. "symfony/mime": "^5.4 || ^6"
  4633. },
  4634. "suggest": {
  4635. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4636. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4637. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4638. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4639. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4640. "ext-mbstring": "Allow to work properly with unicode symbols",
  4641. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4642. "ext-openssl": "Required to send log messages using SSL",
  4643. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4644. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4645. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4646. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4647. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4648. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4649. },
  4650. "type": "library",
  4651. "extra": {
  4652. "branch-alias": {
  4653. "dev-main": "2.x-dev"
  4654. }
  4655. },
  4656. "autoload": {
  4657. "psr-4": {
  4658. "Monolog\\": "src/Monolog"
  4659. }
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Jordi Boggiano",
  4668. "email": "j.boggiano@seld.be",
  4669. "homepage": "https://seld.be"
  4670. }
  4671. ],
  4672. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4673. "homepage": "https://github.com/Seldaek/monolog",
  4674. "keywords": [
  4675. "log",
  4676. "logging",
  4677. "psr-3"
  4678. ],
  4679. "support": {
  4680. "issues": "https://github.com/Seldaek/monolog/issues",
  4681. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  4682. },
  4683. "funding": [
  4684. {
  4685. "url": "https://github.com/Seldaek",
  4686. "type": "github"
  4687. },
  4688. {
  4689. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4690. "type": "tidelift"
  4691. }
  4692. ],
  4693. "time": "2023-02-05T13:07:32+00:00"
  4694. },
  4695. {
  4696. "name": "myclabs/php-enum",
  4697. "version": "1.6.6",
  4698. "source": {
  4699. "type": "git",
  4700. "url": "https://github.com/myclabs/php-enum.git",
  4701. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  4702. },
  4703. "dist": {
  4704. "type": "zip",
  4705. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  4706. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  4707. "shasum": "",
  4708. "mirrors": [
  4709. {
  4710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4711. "preferred": true
  4712. }
  4713. ]
  4714. },
  4715. "require": {
  4716. "ext-json": "*",
  4717. "php": ">=5.4"
  4718. },
  4719. "require-dev": {
  4720. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  4721. "squizlabs/php_codesniffer": "1.*"
  4722. },
  4723. "type": "library",
  4724. "autoload": {
  4725. "psr-4": {
  4726. "MyCLabs\\Enum\\": "src/"
  4727. }
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "PHP Enum contributors",
  4736. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4737. }
  4738. ],
  4739. "description": "PHP Enum implementation",
  4740. "homepage": "http://github.com/myclabs/php-enum",
  4741. "keywords": [
  4742. "enum"
  4743. ],
  4744. "support": {
  4745. "issues": "https://github.com/myclabs/php-enum/issues",
  4746. "source": "https://github.com/myclabs/php-enum/tree/master"
  4747. },
  4748. "time": "2019-02-04T21:18:49+00:00"
  4749. },
  4750. {
  4751. "name": "namshi/jose",
  4752. "version": "7.2.3",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/namshi/jose.git",
  4756. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4761. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4762. "shasum": "",
  4763. "mirrors": [
  4764. {
  4765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4766. "preferred": true
  4767. }
  4768. ]
  4769. },
  4770. "require": {
  4771. "ext-date": "*",
  4772. "ext-hash": "*",
  4773. "ext-json": "*",
  4774. "ext-pcre": "*",
  4775. "ext-spl": "*",
  4776. "php": ">=5.5",
  4777. "symfony/polyfill-php56": "^1.0"
  4778. },
  4779. "require-dev": {
  4780. "phpseclib/phpseclib": "^2.0",
  4781. "phpunit/phpunit": "^4.5|^5.0",
  4782. "satooshi/php-coveralls": "^1.0"
  4783. },
  4784. "suggest": {
  4785. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4786. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4787. },
  4788. "type": "library",
  4789. "autoload": {
  4790. "psr-4": {
  4791. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4792. }
  4793. },
  4794. "notification-url": "https://packagist.org/downloads/",
  4795. "license": [
  4796. "MIT"
  4797. ],
  4798. "authors": [
  4799. {
  4800. "name": "Alessandro Nadalin",
  4801. "email": "alessandro.nadalin@gmail.com"
  4802. },
  4803. {
  4804. "name": "Alessandro Cinelli (cirpo)",
  4805. "email": "alessandro.cinelli@gmail.com"
  4806. }
  4807. ],
  4808. "description": "JSON Object Signing and Encryption library for PHP.",
  4809. "keywords": [
  4810. "JSON Web Signature",
  4811. "JSON Web Token",
  4812. "JWS",
  4813. "json",
  4814. "jwt",
  4815. "token"
  4816. ],
  4817. "support": {
  4818. "issues": "https://github.com/namshi/jose/issues",
  4819. "source": "https://github.com/namshi/jose/tree/master"
  4820. },
  4821. "time": "2016-12-05T07:27:31+00:00"
  4822. },
  4823. {
  4824. "name": "nesbot/carbon",
  4825. "version": "2.66.0",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://github.com/briannesbitt/Carbon.git",
  4829. "reference": "496712849902241f04902033b0441b269effe001"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  4834. "reference": "496712849902241f04902033b0441b269effe001",
  4835. "shasum": "",
  4836. "mirrors": [
  4837. {
  4838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4839. "preferred": true
  4840. }
  4841. ]
  4842. },
  4843. "require": {
  4844. "ext-json": "*",
  4845. "php": "^7.1.8 || ^8.0",
  4846. "symfony/polyfill-mbstring": "^1.0",
  4847. "symfony/polyfill-php80": "^1.16",
  4848. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4849. },
  4850. "require-dev": {
  4851. "doctrine/dbal": "^2.0 || ^3.1.4",
  4852. "doctrine/orm": "^2.7",
  4853. "friendsofphp/php-cs-fixer": "^3.0",
  4854. "kylekatarnls/multi-tester": "^2.0",
  4855. "ondrejmirtes/better-reflection": "*",
  4856. "phpmd/phpmd": "^2.9",
  4857. "phpstan/extension-installer": "^1.0",
  4858. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4859. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4860. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4861. "squizlabs/php_codesniffer": "^3.4"
  4862. },
  4863. "bin": [
  4864. "bin/carbon"
  4865. ],
  4866. "type": "library",
  4867. "extra": {
  4868. "branch-alias": {
  4869. "dev-3.x": "3.x-dev",
  4870. "dev-master": "2.x-dev"
  4871. },
  4872. "laravel": {
  4873. "providers": [
  4874. "Carbon\\Laravel\\ServiceProvider"
  4875. ]
  4876. },
  4877. "phpstan": {
  4878. "includes": [
  4879. "extension.neon"
  4880. ]
  4881. }
  4882. },
  4883. "autoload": {
  4884. "psr-4": {
  4885. "Carbon\\": "src/Carbon/"
  4886. }
  4887. },
  4888. "notification-url": "https://packagist.org/downloads/",
  4889. "license": [
  4890. "MIT"
  4891. ],
  4892. "authors": [
  4893. {
  4894. "name": "Brian Nesbitt",
  4895. "email": "brian@nesbot.com",
  4896. "homepage": "https://markido.com"
  4897. },
  4898. {
  4899. "name": "kylekatarnls",
  4900. "homepage": "https://github.com/kylekatarnls"
  4901. }
  4902. ],
  4903. "description": "An API extension for DateTime that supports 281 different languages.",
  4904. "homepage": "https://carbon.nesbot.com",
  4905. "keywords": [
  4906. "date",
  4907. "datetime",
  4908. "time"
  4909. ],
  4910. "support": {
  4911. "docs": "https://carbon.nesbot.com/docs",
  4912. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4913. "source": "https://github.com/briannesbitt/Carbon"
  4914. },
  4915. "funding": [
  4916. {
  4917. "url": "https://github.com/sponsors/kylekatarnls",
  4918. "type": "github"
  4919. },
  4920. {
  4921. "url": "https://opencollective.com/Carbon#sponsor",
  4922. "type": "opencollective"
  4923. },
  4924. {
  4925. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4926. "type": "tidelift"
  4927. }
  4928. ],
  4929. "time": "2023-01-29T18:53:47+00:00"
  4930. },
  4931. {
  4932. "name": "nikic/fast-route",
  4933. "version": "v1.3.0",
  4934. "source": {
  4935. "type": "git",
  4936. "url": "https://github.com/nikic/FastRoute.git",
  4937. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4938. },
  4939. "dist": {
  4940. "type": "zip",
  4941. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4942. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4943. "shasum": "",
  4944. "mirrors": [
  4945. {
  4946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4947. "preferred": true
  4948. }
  4949. ]
  4950. },
  4951. "require": {
  4952. "php": ">=5.4.0"
  4953. },
  4954. "require-dev": {
  4955. "phpunit/phpunit": "^4.8.35|~5.7"
  4956. },
  4957. "type": "library",
  4958. "autoload": {
  4959. "files": [
  4960. "src/functions.php"
  4961. ],
  4962. "psr-4": {
  4963. "FastRoute\\": "src/"
  4964. }
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "BSD-3-Clause"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Nikita Popov",
  4973. "email": "nikic@php.net"
  4974. }
  4975. ],
  4976. "description": "Fast request router for PHP",
  4977. "keywords": [
  4978. "router",
  4979. "routing"
  4980. ],
  4981. "support": {
  4982. "issues": "https://github.com/nikic/FastRoute/issues",
  4983. "source": "https://github.com/nikic/FastRoute/tree/master"
  4984. },
  4985. "time": "2018-02-13T20:26:39+00:00"
  4986. },
  4987. {
  4988. "name": "opis/closure",
  4989. "version": "3.6.3",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/opis/closure.git",
  4993. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4998. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4999. "shasum": "",
  5000. "mirrors": [
  5001. {
  5002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5003. "preferred": true
  5004. }
  5005. ]
  5006. },
  5007. "require": {
  5008. "php": "^5.4 || ^7.0 || ^8.0"
  5009. },
  5010. "require-dev": {
  5011. "jeremeamia/superclosure": "^2.0",
  5012. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5013. },
  5014. "type": "library",
  5015. "extra": {
  5016. "branch-alias": {
  5017. "dev-master": "3.6.x-dev"
  5018. }
  5019. },
  5020. "autoload": {
  5021. "files": [
  5022. "functions.php"
  5023. ],
  5024. "psr-4": {
  5025. "Opis\\Closure\\": "src/"
  5026. }
  5027. },
  5028. "notification-url": "https://packagist.org/downloads/",
  5029. "license": [
  5030. "MIT"
  5031. ],
  5032. "authors": [
  5033. {
  5034. "name": "Marius Sarca",
  5035. "email": "marius.sarca@gmail.com"
  5036. },
  5037. {
  5038. "name": "Sorin Sarca",
  5039. "email": "sarca_sorin@hotmail.com"
  5040. }
  5041. ],
  5042. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5043. "homepage": "https://opis.io/closure",
  5044. "keywords": [
  5045. "anonymous functions",
  5046. "closure",
  5047. "function",
  5048. "serializable",
  5049. "serialization",
  5050. "serialize"
  5051. ],
  5052. "support": {
  5053. "issues": "https://github.com/opis/closure/issues",
  5054. "source": "https://github.com/opis/closure/tree/3.6.3"
  5055. },
  5056. "time": "2022-01-27T09:35:39+00:00"
  5057. },
  5058. {
  5059. "name": "overtrue/easy-sms",
  5060. "version": "1.3.2",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/overtrue/easy-sms.git",
  5064. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  5069. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  5070. "shasum": "",
  5071. "mirrors": [
  5072. {
  5073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5074. "preferred": true
  5075. }
  5076. ]
  5077. },
  5078. "require": {
  5079. "ext-json": "*",
  5080. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5081. "php": ">=5.6"
  5082. },
  5083. "require-dev": {
  5084. "mockery/mockery": "1.3.1",
  5085. "phpunit/phpunit": "^5.7 || ^7.5"
  5086. },
  5087. "type": "library",
  5088. "autoload": {
  5089. "psr-4": {
  5090. "Overtrue\\EasySms\\": "src"
  5091. }
  5092. },
  5093. "notification-url": "https://packagist.org/downloads/",
  5094. "license": [
  5095. "MIT"
  5096. ],
  5097. "authors": [
  5098. {
  5099. "name": "overtrue",
  5100. "email": "i@overtrue.me"
  5101. }
  5102. ],
  5103. "description": "The easiest way to send short message.",
  5104. "support": {
  5105. "issues": "https://github.com/overtrue/easy-sms/issues",
  5106. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  5107. },
  5108. "time": "2021-01-22T06:52:59+00:00"
  5109. },
  5110. {
  5111. "name": "overtrue/laravel-wechat",
  5112. "version": "5.1.0",
  5113. "source": {
  5114. "type": "git",
  5115. "url": "https://github.com/overtrue/laravel-wechat.git",
  5116. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  5117. },
  5118. "dist": {
  5119. "type": "zip",
  5120. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  5121. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  5122. "shasum": "",
  5123. "mirrors": [
  5124. {
  5125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5126. "preferred": true
  5127. }
  5128. ]
  5129. },
  5130. "require": {
  5131. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  5132. "overtrue/wechat": "^4.0"
  5133. },
  5134. "require-dev": {
  5135. "friendsofphp/php-cs-fixer": "^2.16",
  5136. "laravel/framework": "^8.5"
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "laravel": {
  5141. "providers": [
  5142. "Overtrue\\LaravelWeChat\\ServiceProvider"
  5143. ],
  5144. "aliases": {
  5145. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  5146. }
  5147. }
  5148. },
  5149. "autoload": {
  5150. "psr-4": {
  5151. "Overtrue\\LaravelWeChat\\": "src/"
  5152. }
  5153. },
  5154. "notification-url": "https://packagist.org/downloads/",
  5155. "license": [
  5156. "MIT"
  5157. ],
  5158. "authors": [
  5159. {
  5160. "name": "overtrue",
  5161. "email": "anzhengchao@gmail.com"
  5162. }
  5163. ],
  5164. "description": "微信 SDK for Laravel",
  5165. "keywords": [
  5166. "laravel",
  5167. "sdk",
  5168. "wechat",
  5169. "weixin"
  5170. ],
  5171. "support": {
  5172. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  5173. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  5174. },
  5175. "time": "2020-09-27T08:32:30+00:00"
  5176. },
  5177. {
  5178. "name": "overtrue/socialite",
  5179. "version": "2.0.24",
  5180. "source": {
  5181. "type": "git",
  5182. "url": "https://github.com/overtrue/socialite.git",
  5183. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  5184. },
  5185. "dist": {
  5186. "type": "zip",
  5187. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5188. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5189. "shasum": "",
  5190. "mirrors": [
  5191. {
  5192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5193. "preferred": true
  5194. }
  5195. ]
  5196. },
  5197. "require": {
  5198. "ext-json": "*",
  5199. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  5200. "php": ">=5.6",
  5201. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  5202. },
  5203. "require-dev": {
  5204. "mockery/mockery": "~1.2",
  5205. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  5206. },
  5207. "type": "library",
  5208. "autoload": {
  5209. "psr-4": {
  5210. "Overtrue\\Socialite\\": "src/"
  5211. }
  5212. },
  5213. "notification-url": "https://packagist.org/downloads/",
  5214. "license": [
  5215. "MIT"
  5216. ],
  5217. "authors": [
  5218. {
  5219. "name": "overtrue",
  5220. "email": "anzhengchao@gmail.com"
  5221. }
  5222. ],
  5223. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5224. "keywords": [
  5225. "login",
  5226. "oauth",
  5227. "qq",
  5228. "social",
  5229. "wechat",
  5230. "weibo"
  5231. ],
  5232. "support": {
  5233. "issues": "https://github.com/overtrue/socialite/issues",
  5234. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5235. },
  5236. "funding": [
  5237. {
  5238. "url": "https://www.patreon.com/overtrue",
  5239. "type": "patreon"
  5240. }
  5241. ],
  5242. "time": "2021-05-13T16:04:48+00:00"
  5243. },
  5244. {
  5245. "name": "overtrue/wechat",
  5246. "version": "4.6.0",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://github.com/w7corp/easywechat.git",
  5250. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1"
  5251. },
  5252. "dist": {
  5253. "type": "zip",
  5254. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/52af4cbe777cd4aea307beafa0a4518c347467b1",
  5255. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1",
  5256. "shasum": "",
  5257. "mirrors": [
  5258. {
  5259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5260. "preferred": true
  5261. }
  5262. ]
  5263. },
  5264. "require": {
  5265. "easywechat-composer/easywechat-composer": "^1.1",
  5266. "ext-fileinfo": "*",
  5267. "ext-openssl": "*",
  5268. "ext-simplexml": "*",
  5269. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5270. "monolog/monolog": "^1.22 || ^2.0",
  5271. "overtrue/socialite": "~2.0",
  5272. "php": ">=7.2",
  5273. "pimple/pimple": "^3.0",
  5274. "psr/simple-cache": "^1.0",
  5275. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5276. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5277. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5278. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5279. },
  5280. "require-dev": {
  5281. "friendsofphp/php-cs-fixer": "^2.15",
  5282. "mikey179/vfsstream": "^1.6",
  5283. "mockery/mockery": "^1.2.3",
  5284. "phpstan/phpstan": "^0.12.0",
  5285. "phpunit/phpunit": "^7.5"
  5286. },
  5287. "type": "library",
  5288. "autoload": {
  5289. "files": [
  5290. "src/Kernel/Support/Helpers.php",
  5291. "src/Kernel/Helpers.php"
  5292. ],
  5293. "psr-4": {
  5294. "EasyWeChat\\": "src/"
  5295. }
  5296. },
  5297. "notification-url": "https://packagist.org/downloads/",
  5298. "license": [
  5299. "MIT"
  5300. ],
  5301. "authors": [
  5302. {
  5303. "name": "overtrue",
  5304. "email": "anzhengchao@gmail.com"
  5305. }
  5306. ],
  5307. "description": "微信SDK",
  5308. "keywords": [
  5309. "easywechat",
  5310. "sdk",
  5311. "wechat",
  5312. "weixin",
  5313. "weixin-sdk"
  5314. ],
  5315. "support": {
  5316. "issues": "https://github.com/w7corp/easywechat/issues",
  5317. "source": "https://github.com/w7corp/easywechat/tree/4.6.0"
  5318. },
  5319. "funding": [
  5320. {
  5321. "url": "https://github.com/overtrue",
  5322. "type": "github"
  5323. }
  5324. ],
  5325. "abandoned": "w7corp/easywechat",
  5326. "time": "2022-08-24T07:30:42+00:00"
  5327. },
  5328. {
  5329. "name": "phpdocumentor/reflection-common",
  5330. "version": "2.2.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5334. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5339. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5340. "shasum": "",
  5341. "mirrors": [
  5342. {
  5343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5344. "preferred": true
  5345. }
  5346. ]
  5347. },
  5348. "require": {
  5349. "php": "^7.2 || ^8.0"
  5350. },
  5351. "type": "library",
  5352. "extra": {
  5353. "branch-alias": {
  5354. "dev-2.x": "2.x-dev"
  5355. }
  5356. },
  5357. "autoload": {
  5358. "psr-4": {
  5359. "phpDocumentor\\Reflection\\": "src/"
  5360. }
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "MIT"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "Jaap van Otterdijk",
  5369. "email": "opensource@ijaap.nl"
  5370. }
  5371. ],
  5372. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5373. "homepage": "http://www.phpdoc.org",
  5374. "keywords": [
  5375. "FQSEN",
  5376. "phpDocumentor",
  5377. "phpdoc",
  5378. "reflection",
  5379. "static analysis"
  5380. ],
  5381. "support": {
  5382. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5383. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5384. },
  5385. "time": "2020-06-27T09:03:43+00:00"
  5386. },
  5387. {
  5388. "name": "phpdocumentor/reflection-docblock",
  5389. "version": "4.3.4",
  5390. "source": {
  5391. "type": "git",
  5392. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5393. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  5394. },
  5395. "dist": {
  5396. "type": "zip",
  5397. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  5398. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  5399. "shasum": "",
  5400. "mirrors": [
  5401. {
  5402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5403. "preferred": true
  5404. }
  5405. ]
  5406. },
  5407. "require": {
  5408. "php": "^7.0",
  5409. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  5410. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  5411. "webmozart/assert": "^1.0"
  5412. },
  5413. "require-dev": {
  5414. "doctrine/instantiator": "^1.0.5",
  5415. "mockery/mockery": "^1.0",
  5416. "phpdocumentor/type-resolver": "0.4.*",
  5417. "phpunit/phpunit": "^6.4"
  5418. },
  5419. "type": "library",
  5420. "extra": {
  5421. "branch-alias": {
  5422. "dev-master": "4.x-dev"
  5423. }
  5424. },
  5425. "autoload": {
  5426. "psr-4": {
  5427. "phpDocumentor\\Reflection\\": [
  5428. "src/"
  5429. ]
  5430. }
  5431. },
  5432. "notification-url": "https://packagist.org/downloads/",
  5433. "license": [
  5434. "MIT"
  5435. ],
  5436. "authors": [
  5437. {
  5438. "name": "Mike van Riel",
  5439. "email": "me@mikevanriel.com"
  5440. }
  5441. ],
  5442. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5443. "support": {
  5444. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5445. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/4.x"
  5446. },
  5447. "time": "2019-12-28T18:55:12+00:00"
  5448. },
  5449. {
  5450. "name": "phpdocumentor/type-resolver",
  5451. "version": "1.6.1",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5455. "reference": "77a32518733312af16a44300404e945338981de3"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5460. "reference": "77a32518733312af16a44300404e945338981de3",
  5461. "shasum": "",
  5462. "mirrors": [
  5463. {
  5464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5465. "preferred": true
  5466. }
  5467. ]
  5468. },
  5469. "require": {
  5470. "php": "^7.2 || ^8.0",
  5471. "phpdocumentor/reflection-common": "^2.0"
  5472. },
  5473. "require-dev": {
  5474. "ext-tokenizer": "*",
  5475. "psalm/phar": "^4.8"
  5476. },
  5477. "type": "library",
  5478. "extra": {
  5479. "branch-alias": {
  5480. "dev-1.x": "1.x-dev"
  5481. }
  5482. },
  5483. "autoload": {
  5484. "psr-4": {
  5485. "phpDocumentor\\Reflection\\": "src"
  5486. }
  5487. },
  5488. "notification-url": "https://packagist.org/downloads/",
  5489. "license": [
  5490. "MIT"
  5491. ],
  5492. "authors": [
  5493. {
  5494. "name": "Mike van Riel",
  5495. "email": "me@mikevanriel.com"
  5496. }
  5497. ],
  5498. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5499. "support": {
  5500. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5501. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5502. },
  5503. "time": "2022-03-15T21:29:03+00:00"
  5504. },
  5505. {
  5506. "name": "phpoption/phpoption",
  5507. "version": "1.9.1",
  5508. "source": {
  5509. "type": "git",
  5510. "url": "https://github.com/schmittjoh/php-option.git",
  5511. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  5512. },
  5513. "dist": {
  5514. "type": "zip",
  5515. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  5516. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  5517. "shasum": "",
  5518. "mirrors": [
  5519. {
  5520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5521. "preferred": true
  5522. }
  5523. ]
  5524. },
  5525. "require": {
  5526. "php": "^7.2.5 || ^8.0"
  5527. },
  5528. "require-dev": {
  5529. "bamarni/composer-bin-plugin": "^1.8.2",
  5530. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  5531. },
  5532. "type": "library",
  5533. "extra": {
  5534. "bamarni-bin": {
  5535. "bin-links": true,
  5536. "forward-command": true
  5537. },
  5538. "branch-alias": {
  5539. "dev-master": "1.9-dev"
  5540. }
  5541. },
  5542. "autoload": {
  5543. "psr-4": {
  5544. "PhpOption\\": "src/PhpOption/"
  5545. }
  5546. },
  5547. "notification-url": "https://packagist.org/downloads/",
  5548. "license": [
  5549. "Apache-2.0"
  5550. ],
  5551. "authors": [
  5552. {
  5553. "name": "Johannes M. Schmitt",
  5554. "email": "schmittjoh@gmail.com",
  5555. "homepage": "https://github.com/schmittjoh"
  5556. },
  5557. {
  5558. "name": "Graham Campbell",
  5559. "email": "hello@gjcampbell.co.uk",
  5560. "homepage": "https://github.com/GrahamCampbell"
  5561. }
  5562. ],
  5563. "description": "Option Type for PHP",
  5564. "keywords": [
  5565. "language",
  5566. "option",
  5567. "php",
  5568. "type"
  5569. ],
  5570. "support": {
  5571. "issues": "https://github.com/schmittjoh/php-option/issues",
  5572. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  5573. },
  5574. "funding": [
  5575. {
  5576. "url": "https://github.com/GrahamCampbell",
  5577. "type": "github"
  5578. },
  5579. {
  5580. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5581. "type": "tidelift"
  5582. }
  5583. ],
  5584. "time": "2023-02-25T19:38:58+00:00"
  5585. },
  5586. {
  5587. "name": "pimple/pimple",
  5588. "version": "v3.5.0",
  5589. "source": {
  5590. "type": "git",
  5591. "url": "https://github.com/silexphp/Pimple.git",
  5592. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5593. },
  5594. "dist": {
  5595. "type": "zip",
  5596. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5597. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5598. "shasum": "",
  5599. "mirrors": [
  5600. {
  5601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5602. "preferred": true
  5603. }
  5604. ]
  5605. },
  5606. "require": {
  5607. "php": ">=7.2.5",
  5608. "psr/container": "^1.1 || ^2.0"
  5609. },
  5610. "require-dev": {
  5611. "symfony/phpunit-bridge": "^5.4@dev"
  5612. },
  5613. "type": "library",
  5614. "extra": {
  5615. "branch-alias": {
  5616. "dev-master": "3.4.x-dev"
  5617. }
  5618. },
  5619. "autoload": {
  5620. "psr-0": {
  5621. "Pimple": "src/"
  5622. }
  5623. },
  5624. "notification-url": "https://packagist.org/downloads/",
  5625. "license": [
  5626. "MIT"
  5627. ],
  5628. "authors": [
  5629. {
  5630. "name": "Fabien Potencier",
  5631. "email": "fabien@symfony.com"
  5632. }
  5633. ],
  5634. "description": "Pimple, a simple Dependency Injection Container",
  5635. "homepage": "https://pimple.symfony.com",
  5636. "keywords": [
  5637. "container",
  5638. "dependency injection"
  5639. ],
  5640. "support": {
  5641. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5642. },
  5643. "time": "2021-10-28T11:13:42+00:00"
  5644. },
  5645. {
  5646. "name": "psr/cache",
  5647. "version": "1.0.1",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://github.com/php-fig/cache.git",
  5651. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5656. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5657. "shasum": "",
  5658. "mirrors": [
  5659. {
  5660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5661. "preferred": true
  5662. }
  5663. ]
  5664. },
  5665. "require": {
  5666. "php": ">=5.3.0"
  5667. },
  5668. "type": "library",
  5669. "extra": {
  5670. "branch-alias": {
  5671. "dev-master": "1.0.x-dev"
  5672. }
  5673. },
  5674. "autoload": {
  5675. "psr-4": {
  5676. "Psr\\Cache\\": "src/"
  5677. }
  5678. },
  5679. "notification-url": "https://packagist.org/downloads/",
  5680. "license": [
  5681. "MIT"
  5682. ],
  5683. "authors": [
  5684. {
  5685. "name": "PHP-FIG",
  5686. "homepage": "http://www.php-fig.org/"
  5687. }
  5688. ],
  5689. "description": "Common interface for caching libraries",
  5690. "keywords": [
  5691. "cache",
  5692. "psr",
  5693. "psr-6"
  5694. ],
  5695. "support": {
  5696. "source": "https://github.com/php-fig/cache/tree/master"
  5697. },
  5698. "time": "2016-08-06T20:24:11+00:00"
  5699. },
  5700. {
  5701. "name": "psr/container",
  5702. "version": "1.1.1",
  5703. "source": {
  5704. "type": "git",
  5705. "url": "https://github.com/php-fig/container.git",
  5706. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  5707. },
  5708. "dist": {
  5709. "type": "zip",
  5710. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  5711. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  5712. "shasum": "",
  5713. "mirrors": [
  5714. {
  5715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5716. "preferred": true
  5717. }
  5718. ]
  5719. },
  5720. "require": {
  5721. "php": ">=7.2.0"
  5722. },
  5723. "type": "library",
  5724. "autoload": {
  5725. "psr-4": {
  5726. "Psr\\Container\\": "src/"
  5727. }
  5728. },
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "PHP-FIG",
  5736. "homepage": "https://www.php-fig.org/"
  5737. }
  5738. ],
  5739. "description": "Common Container Interface (PHP FIG PSR-11)",
  5740. "homepage": "https://github.com/php-fig/container",
  5741. "keywords": [
  5742. "PSR-11",
  5743. "container",
  5744. "container-interface",
  5745. "container-interop",
  5746. "psr"
  5747. ],
  5748. "support": {
  5749. "issues": "https://github.com/php-fig/container/issues",
  5750. "source": "https://github.com/php-fig/container/tree/1.1.1"
  5751. },
  5752. "time": "2021-03-05T17:36:06+00:00"
  5753. },
  5754. {
  5755. "name": "psr/http-message",
  5756. "version": "1.0.1",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/php-fig/http-message.git",
  5760. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5765. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5766. "shasum": "",
  5767. "mirrors": [
  5768. {
  5769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5770. "preferred": true
  5771. }
  5772. ]
  5773. },
  5774. "require": {
  5775. "php": ">=5.3.0"
  5776. },
  5777. "type": "library",
  5778. "extra": {
  5779. "branch-alias": {
  5780. "dev-master": "1.0.x-dev"
  5781. }
  5782. },
  5783. "autoload": {
  5784. "psr-4": {
  5785. "Psr\\Http\\Message\\": "src/"
  5786. }
  5787. },
  5788. "notification-url": "https://packagist.org/downloads/",
  5789. "license": [
  5790. "MIT"
  5791. ],
  5792. "authors": [
  5793. {
  5794. "name": "PHP-FIG",
  5795. "homepage": "http://www.php-fig.org/"
  5796. }
  5797. ],
  5798. "description": "Common interface for HTTP messages",
  5799. "homepage": "https://github.com/php-fig/http-message",
  5800. "keywords": [
  5801. "http",
  5802. "http-message",
  5803. "psr",
  5804. "psr-7",
  5805. "request",
  5806. "response"
  5807. ],
  5808. "support": {
  5809. "source": "https://github.com/php-fig/http-message/tree/master"
  5810. },
  5811. "time": "2016-08-06T14:39:51+00:00"
  5812. },
  5813. {
  5814. "name": "psr/log",
  5815. "version": "1.1.4",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/php-fig/log.git",
  5819. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5824. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5825. "shasum": "",
  5826. "mirrors": [
  5827. {
  5828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5829. "preferred": true
  5830. }
  5831. ]
  5832. },
  5833. "require": {
  5834. "php": ">=5.3.0"
  5835. },
  5836. "type": "library",
  5837. "extra": {
  5838. "branch-alias": {
  5839. "dev-master": "1.1.x-dev"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Psr\\Log\\": "Psr/Log/"
  5845. }
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "MIT"
  5850. ],
  5851. "authors": [
  5852. {
  5853. "name": "PHP-FIG",
  5854. "homepage": "https://www.php-fig.org/"
  5855. }
  5856. ],
  5857. "description": "Common interface for logging libraries",
  5858. "homepage": "https://github.com/php-fig/log",
  5859. "keywords": [
  5860. "log",
  5861. "psr",
  5862. "psr-3"
  5863. ],
  5864. "support": {
  5865. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5866. },
  5867. "time": "2021-05-03T11:20:27+00:00"
  5868. },
  5869. {
  5870. "name": "psr/simple-cache",
  5871. "version": "1.0.1",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/php-fig/simple-cache.git",
  5875. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5880. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5881. "shasum": "",
  5882. "mirrors": [
  5883. {
  5884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5885. "preferred": true
  5886. }
  5887. ]
  5888. },
  5889. "require": {
  5890. "php": ">=5.3.0"
  5891. },
  5892. "type": "library",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-master": "1.0.x-dev"
  5896. }
  5897. },
  5898. "autoload": {
  5899. "psr-4": {
  5900. "Psr\\SimpleCache\\": "src/"
  5901. }
  5902. },
  5903. "notification-url": "https://packagist.org/downloads/",
  5904. "license": [
  5905. "MIT"
  5906. ],
  5907. "authors": [
  5908. {
  5909. "name": "PHP-FIG",
  5910. "homepage": "http://www.php-fig.org/"
  5911. }
  5912. ],
  5913. "description": "Common interfaces for simple caching",
  5914. "keywords": [
  5915. "cache",
  5916. "caching",
  5917. "psr",
  5918. "psr-16",
  5919. "simple-cache"
  5920. ],
  5921. "support": {
  5922. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5923. },
  5924. "time": "2017-10-23T01:57:42+00:00"
  5925. },
  5926. {
  5927. "name": "qiniu/php-sdk",
  5928. "version": "v7.7.0",
  5929. "source": {
  5930. "type": "git",
  5931. "url": "https://github.com/qiniu/php-sdk.git",
  5932. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1"
  5933. },
  5934. "dist": {
  5935. "type": "zip",
  5936. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  5937. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  5938. "shasum": "",
  5939. "mirrors": [
  5940. {
  5941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5942. "preferred": true
  5943. }
  5944. ]
  5945. },
  5946. "require": {
  5947. "myclabs/php-enum": "1.6.6",
  5948. "php": ">=5.3.3"
  5949. },
  5950. "require-dev": {
  5951. "paragonie/random_compat": ">=2",
  5952. "phpunit/phpunit": "~4.0",
  5953. "squizlabs/php_codesniffer": "~3.6"
  5954. },
  5955. "type": "library",
  5956. "autoload": {
  5957. "files": [
  5958. "src/Qiniu/functions.php"
  5959. ],
  5960. "psr-4": {
  5961. "Qiniu\\": "src/Qiniu"
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Qiniu",
  5971. "email": "sdk@qiniu.com",
  5972. "homepage": "http://www.qiniu.com"
  5973. }
  5974. ],
  5975. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  5976. "homepage": "http://developer.qiniu.com/",
  5977. "keywords": [
  5978. "cloud",
  5979. "qiniu",
  5980. "sdk",
  5981. "storage"
  5982. ],
  5983. "support": {
  5984. "issues": "https://github.com/qiniu/php-sdk/issues",
  5985. "source": "https://github.com/qiniu/php-sdk/tree/v7.7.0"
  5986. },
  5987. "time": "2022-09-02T10:53:05+00:00"
  5988. },
  5989. {
  5990. "name": "ralouphie/getallheaders",
  5991. "version": "3.0.3",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://github.com/ralouphie/getallheaders.git",
  5995. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6000. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6001. "shasum": "",
  6002. "mirrors": [
  6003. {
  6004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6005. "preferred": true
  6006. }
  6007. ]
  6008. },
  6009. "require": {
  6010. "php": ">=5.6"
  6011. },
  6012. "require-dev": {
  6013. "php-coveralls/php-coveralls": "^2.1",
  6014. "phpunit/phpunit": "^5 || ^6.5"
  6015. },
  6016. "type": "library",
  6017. "autoload": {
  6018. "files": [
  6019. "src/getallheaders.php"
  6020. ]
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Ralph Khattar",
  6029. "email": "ralph.khattar@gmail.com"
  6030. }
  6031. ],
  6032. "description": "A polyfill for getallheaders.",
  6033. "support": {
  6034. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6035. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6036. },
  6037. "time": "2019-03-08T08:55:37+00:00"
  6038. },
  6039. {
  6040. "name": "react/promise",
  6041. "version": "v2.9.0",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/reactphp/promise.git",
  6045. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  6050. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  6051. "shasum": "",
  6052. "mirrors": [
  6053. {
  6054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6055. "preferred": true
  6056. }
  6057. ]
  6058. },
  6059. "require": {
  6060. "php": ">=5.4.0"
  6061. },
  6062. "require-dev": {
  6063. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  6064. },
  6065. "type": "library",
  6066. "autoload": {
  6067. "files": [
  6068. "src/functions_include.php"
  6069. ],
  6070. "psr-4": {
  6071. "React\\Promise\\": "src/"
  6072. }
  6073. },
  6074. "notification-url": "https://packagist.org/downloads/",
  6075. "license": [
  6076. "MIT"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "Jan Sorgalla",
  6081. "email": "jsorgalla@gmail.com",
  6082. "homepage": "https://sorgalla.com/"
  6083. },
  6084. {
  6085. "name": "Christian Lück",
  6086. "email": "christian@clue.engineering",
  6087. "homepage": "https://clue.engineering/"
  6088. },
  6089. {
  6090. "name": "Cees-Jan Kiewiet",
  6091. "email": "reactphp@ceesjankiewiet.nl",
  6092. "homepage": "https://wyrihaximus.net/"
  6093. },
  6094. {
  6095. "name": "Chris Boden",
  6096. "email": "cboden@gmail.com",
  6097. "homepage": "https://cboden.dev/"
  6098. }
  6099. ],
  6100. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6101. "keywords": [
  6102. "promise",
  6103. "promises"
  6104. ],
  6105. "support": {
  6106. "issues": "https://github.com/reactphp/promise/issues",
  6107. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  6108. },
  6109. "funding": [
  6110. {
  6111. "url": "https://github.com/WyriHaximus",
  6112. "type": "github"
  6113. },
  6114. {
  6115. "url": "https://github.com/clue",
  6116. "type": "github"
  6117. }
  6118. ],
  6119. "time": "2022-02-11T10:27:51+00:00"
  6120. },
  6121. {
  6122. "name": "seld/jsonlint",
  6123. "version": "1.9.0",
  6124. "source": {
  6125. "type": "git",
  6126. "url": "https://github.com/Seldaek/jsonlint.git",
  6127. "reference": "4211420d25eba80712bff236a98960ef68b866b7"
  6128. },
  6129. "dist": {
  6130. "type": "zip",
  6131. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
  6132. "reference": "4211420d25eba80712bff236a98960ef68b866b7",
  6133. "shasum": "",
  6134. "mirrors": [
  6135. {
  6136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6137. "preferred": true
  6138. }
  6139. ]
  6140. },
  6141. "require": {
  6142. "php": "^5.3 || ^7.0 || ^8.0"
  6143. },
  6144. "require-dev": {
  6145. "phpstan/phpstan": "^1.5",
  6146. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  6147. },
  6148. "bin": [
  6149. "bin/jsonlint"
  6150. ],
  6151. "type": "library",
  6152. "autoload": {
  6153. "psr-4": {
  6154. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  6155. }
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "MIT"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "Jordi Boggiano",
  6164. "email": "j.boggiano@seld.be",
  6165. "homepage": "http://seld.be"
  6166. }
  6167. ],
  6168. "description": "JSON Linter",
  6169. "keywords": [
  6170. "json",
  6171. "linter",
  6172. "parser",
  6173. "validator"
  6174. ],
  6175. "support": {
  6176. "issues": "https://github.com/Seldaek/jsonlint/issues",
  6177. "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
  6178. },
  6179. "funding": [
  6180. {
  6181. "url": "https://github.com/Seldaek",
  6182. "type": "github"
  6183. },
  6184. {
  6185. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  6186. "type": "tidelift"
  6187. }
  6188. ],
  6189. "time": "2022-04-01T13:37:23+00:00"
  6190. },
  6191. {
  6192. "name": "seld/phar-utils",
  6193. "version": "1.2.1",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/Seldaek/phar-utils.git",
  6197. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  6202. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  6203. "shasum": "",
  6204. "mirrors": [
  6205. {
  6206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6207. "preferred": true
  6208. }
  6209. ]
  6210. },
  6211. "require": {
  6212. "php": ">=5.3"
  6213. },
  6214. "type": "library",
  6215. "extra": {
  6216. "branch-alias": {
  6217. "dev-master": "1.x-dev"
  6218. }
  6219. },
  6220. "autoload": {
  6221. "psr-4": {
  6222. "Seld\\PharUtils\\": "src/"
  6223. }
  6224. },
  6225. "notification-url": "https://packagist.org/downloads/",
  6226. "license": [
  6227. "MIT"
  6228. ],
  6229. "authors": [
  6230. {
  6231. "name": "Jordi Boggiano",
  6232. "email": "j.boggiano@seld.be"
  6233. }
  6234. ],
  6235. "description": "PHAR file format utilities, for when PHP phars you up",
  6236. "keywords": [
  6237. "phar"
  6238. ],
  6239. "support": {
  6240. "issues": "https://github.com/Seldaek/phar-utils/issues",
  6241. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
  6242. },
  6243. "time": "2022-08-31T10:31:18+00:00"
  6244. },
  6245. {
  6246. "name": "symfony/cache",
  6247. "version": "v5.4.21",
  6248. "source": {
  6249. "type": "git",
  6250. "url": "https://github.com/symfony/cache.git",
  6251. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed"
  6252. },
  6253. "dist": {
  6254. "type": "zip",
  6255. "url": "https://api.github.com/repos/symfony/cache/zipball/32cab695bf99c63aff7d27ac67919944c00530ed",
  6256. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed",
  6257. "shasum": "",
  6258. "mirrors": [
  6259. {
  6260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6261. "preferred": true
  6262. }
  6263. ]
  6264. },
  6265. "require": {
  6266. "php": ">=7.2.5",
  6267. "psr/cache": "^1.0|^2.0",
  6268. "psr/log": "^1.1|^2|^3",
  6269. "symfony/cache-contracts": "^1.1.7|^2",
  6270. "symfony/deprecation-contracts": "^2.1|^3",
  6271. "symfony/polyfill-php73": "^1.9",
  6272. "symfony/polyfill-php80": "^1.16",
  6273. "symfony/service-contracts": "^1.1|^2|^3",
  6274. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6275. },
  6276. "conflict": {
  6277. "doctrine/dbal": "<2.13.1",
  6278. "symfony/dependency-injection": "<4.4",
  6279. "symfony/http-kernel": "<4.4",
  6280. "symfony/var-dumper": "<4.4"
  6281. },
  6282. "provide": {
  6283. "psr/cache-implementation": "1.0|2.0",
  6284. "psr/simple-cache-implementation": "1.0|2.0",
  6285. "symfony/cache-implementation": "1.0|2.0"
  6286. },
  6287. "require-dev": {
  6288. "cache/integration-tests": "dev-master",
  6289. "doctrine/cache": "^1.6|^2.0",
  6290. "doctrine/dbal": "^2.13.1|^3.0",
  6291. "predis/predis": "^1.1",
  6292. "psr/simple-cache": "^1.0|^2.0",
  6293. "symfony/config": "^4.4|^5.0|^6.0",
  6294. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6295. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6296. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6297. "symfony/messenger": "^4.4|^5.0|^6.0",
  6298. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6299. },
  6300. "type": "library",
  6301. "autoload": {
  6302. "psr-4": {
  6303. "Symfony\\Component\\Cache\\": ""
  6304. },
  6305. "exclude-from-classmap": [
  6306. "/Tests/"
  6307. ]
  6308. },
  6309. "notification-url": "https://packagist.org/downloads/",
  6310. "license": [
  6311. "MIT"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "Nicolas Grekas",
  6316. "email": "p@tchwork.com"
  6317. },
  6318. {
  6319. "name": "Symfony Community",
  6320. "homepage": "https://symfony.com/contributors"
  6321. }
  6322. ],
  6323. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6324. "homepage": "https://symfony.com",
  6325. "keywords": [
  6326. "caching",
  6327. "psr6"
  6328. ],
  6329. "support": {
  6330. "source": "https://github.com/symfony/cache/tree/v5.4.21"
  6331. },
  6332. "funding": [
  6333. {
  6334. "url": "https://symfony.com/sponsor",
  6335. "type": "custom"
  6336. },
  6337. {
  6338. "url": "https://github.com/fabpot",
  6339. "type": "github"
  6340. },
  6341. {
  6342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6343. "type": "tidelift"
  6344. }
  6345. ],
  6346. "time": "2023-02-21T12:11:13+00:00"
  6347. },
  6348. {
  6349. "name": "symfony/cache-contracts",
  6350. "version": "v2.5.2",
  6351. "source": {
  6352. "type": "git",
  6353. "url": "https://github.com/symfony/cache-contracts.git",
  6354. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  6355. },
  6356. "dist": {
  6357. "type": "zip",
  6358. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  6359. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  6360. "shasum": "",
  6361. "mirrors": [
  6362. {
  6363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6364. "preferred": true
  6365. }
  6366. ]
  6367. },
  6368. "require": {
  6369. "php": ">=7.2.5",
  6370. "psr/cache": "^1.0|^2.0|^3.0"
  6371. },
  6372. "suggest": {
  6373. "symfony/cache-implementation": ""
  6374. },
  6375. "type": "library",
  6376. "extra": {
  6377. "branch-alias": {
  6378. "dev-main": "2.5-dev"
  6379. },
  6380. "thanks": {
  6381. "name": "symfony/contracts",
  6382. "url": "https://github.com/symfony/contracts"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "psr-4": {
  6387. "Symfony\\Contracts\\Cache\\": ""
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Nicolas Grekas",
  6397. "email": "p@tchwork.com"
  6398. },
  6399. {
  6400. "name": "Symfony Community",
  6401. "homepage": "https://symfony.com/contributors"
  6402. }
  6403. ],
  6404. "description": "Generic abstractions related to caching",
  6405. "homepage": "https://symfony.com",
  6406. "keywords": [
  6407. "abstractions",
  6408. "contracts",
  6409. "decoupling",
  6410. "interfaces",
  6411. "interoperability",
  6412. "standards"
  6413. ],
  6414. "support": {
  6415. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  6416. },
  6417. "funding": [
  6418. {
  6419. "url": "https://symfony.com/sponsor",
  6420. "type": "custom"
  6421. },
  6422. {
  6423. "url": "https://github.com/fabpot",
  6424. "type": "github"
  6425. },
  6426. {
  6427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6428. "type": "tidelift"
  6429. }
  6430. ],
  6431. "time": "2022-01-02T09:53:40+00:00"
  6432. },
  6433. {
  6434. "name": "symfony/console",
  6435. "version": "v4.4.49",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/symfony/console.git",
  6439. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  6444. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  6445. "shasum": "",
  6446. "mirrors": [
  6447. {
  6448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6449. "preferred": true
  6450. }
  6451. ]
  6452. },
  6453. "require": {
  6454. "php": ">=7.1.3",
  6455. "symfony/polyfill-mbstring": "~1.0",
  6456. "symfony/polyfill-php73": "^1.8",
  6457. "symfony/polyfill-php80": "^1.16",
  6458. "symfony/service-contracts": "^1.1|^2"
  6459. },
  6460. "conflict": {
  6461. "psr/log": ">=3",
  6462. "symfony/dependency-injection": "<3.4",
  6463. "symfony/event-dispatcher": "<4.3|>=5",
  6464. "symfony/lock": "<4.4",
  6465. "symfony/process": "<3.3"
  6466. },
  6467. "provide": {
  6468. "psr/log-implementation": "1.0|2.0"
  6469. },
  6470. "require-dev": {
  6471. "psr/log": "^1|^2",
  6472. "symfony/config": "^3.4|^4.0|^5.0",
  6473. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6474. "symfony/event-dispatcher": "^4.3",
  6475. "symfony/lock": "^4.4|^5.0",
  6476. "symfony/process": "^3.4|^4.0|^5.0",
  6477. "symfony/var-dumper": "^4.3|^5.0"
  6478. },
  6479. "suggest": {
  6480. "psr/log": "For using the console logger",
  6481. "symfony/event-dispatcher": "",
  6482. "symfony/lock": "",
  6483. "symfony/process": ""
  6484. },
  6485. "type": "library",
  6486. "autoload": {
  6487. "psr-4": {
  6488. "Symfony\\Component\\Console\\": ""
  6489. },
  6490. "exclude-from-classmap": [
  6491. "/Tests/"
  6492. ]
  6493. },
  6494. "notification-url": "https://packagist.org/downloads/",
  6495. "license": [
  6496. "MIT"
  6497. ],
  6498. "authors": [
  6499. {
  6500. "name": "Fabien Potencier",
  6501. "email": "fabien@symfony.com"
  6502. },
  6503. {
  6504. "name": "Symfony Community",
  6505. "homepage": "https://symfony.com/contributors"
  6506. }
  6507. ],
  6508. "description": "Eases the creation of beautiful and testable command line interfaces",
  6509. "homepage": "https://symfony.com",
  6510. "support": {
  6511. "source": "https://github.com/symfony/console/tree/v4.4.49"
  6512. },
  6513. "funding": [
  6514. {
  6515. "url": "https://symfony.com/sponsor",
  6516. "type": "custom"
  6517. },
  6518. {
  6519. "url": "https://github.com/fabpot",
  6520. "type": "github"
  6521. },
  6522. {
  6523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6524. "type": "tidelift"
  6525. }
  6526. ],
  6527. "time": "2022-11-05T17:10:16+00:00"
  6528. },
  6529. {
  6530. "name": "symfony/debug",
  6531. "version": "v4.4.41",
  6532. "source": {
  6533. "type": "git",
  6534. "url": "https://github.com/symfony/debug.git",
  6535. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
  6536. },
  6537. "dist": {
  6538. "type": "zip",
  6539. "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
  6540. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
  6541. "shasum": "",
  6542. "mirrors": [
  6543. {
  6544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6545. "preferred": true
  6546. }
  6547. ]
  6548. },
  6549. "require": {
  6550. "php": ">=7.1.3",
  6551. "psr/log": "^1|^2|^3"
  6552. },
  6553. "conflict": {
  6554. "symfony/http-kernel": "<3.4"
  6555. },
  6556. "require-dev": {
  6557. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  6558. },
  6559. "type": "library",
  6560. "autoload": {
  6561. "psr-4": {
  6562. "Symfony\\Component\\Debug\\": ""
  6563. },
  6564. "exclude-from-classmap": [
  6565. "/Tests/"
  6566. ]
  6567. },
  6568. "notification-url": "https://packagist.org/downloads/",
  6569. "license": [
  6570. "MIT"
  6571. ],
  6572. "authors": [
  6573. {
  6574. "name": "Fabien Potencier",
  6575. "email": "fabien@symfony.com"
  6576. },
  6577. {
  6578. "name": "Symfony Community",
  6579. "homepage": "https://symfony.com/contributors"
  6580. }
  6581. ],
  6582. "description": "Provides tools to ease debugging PHP code",
  6583. "homepage": "https://symfony.com",
  6584. "support": {
  6585. "source": "https://github.com/symfony/debug/tree/v4.4.41"
  6586. },
  6587. "funding": [
  6588. {
  6589. "url": "https://symfony.com/sponsor",
  6590. "type": "custom"
  6591. },
  6592. {
  6593. "url": "https://github.com/fabpot",
  6594. "type": "github"
  6595. },
  6596. {
  6597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6598. "type": "tidelift"
  6599. }
  6600. ],
  6601. "abandoned": "symfony/error-handler",
  6602. "time": "2022-04-12T15:19:55+00:00"
  6603. },
  6604. {
  6605. "name": "symfony/deprecation-contracts",
  6606. "version": "v2.5.2",
  6607. "source": {
  6608. "type": "git",
  6609. "url": "https://github.com/symfony/deprecation-contracts.git",
  6610. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  6611. },
  6612. "dist": {
  6613. "type": "zip",
  6614. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6615. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6616. "shasum": "",
  6617. "mirrors": [
  6618. {
  6619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6620. "preferred": true
  6621. }
  6622. ]
  6623. },
  6624. "require": {
  6625. "php": ">=7.1"
  6626. },
  6627. "type": "library",
  6628. "extra": {
  6629. "branch-alias": {
  6630. "dev-main": "2.5-dev"
  6631. },
  6632. "thanks": {
  6633. "name": "symfony/contracts",
  6634. "url": "https://github.com/symfony/contracts"
  6635. }
  6636. },
  6637. "autoload": {
  6638. "files": [
  6639. "function.php"
  6640. ]
  6641. },
  6642. "notification-url": "https://packagist.org/downloads/",
  6643. "license": [
  6644. "MIT"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "Nicolas Grekas",
  6649. "email": "p@tchwork.com"
  6650. },
  6651. {
  6652. "name": "Symfony Community",
  6653. "homepage": "https://symfony.com/contributors"
  6654. }
  6655. ],
  6656. "description": "A generic function and convention to trigger deprecation notices",
  6657. "homepage": "https://symfony.com",
  6658. "support": {
  6659. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  6660. },
  6661. "funding": [
  6662. {
  6663. "url": "https://symfony.com/sponsor",
  6664. "type": "custom"
  6665. },
  6666. {
  6667. "url": "https://github.com/fabpot",
  6668. "type": "github"
  6669. },
  6670. {
  6671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6672. "type": "tidelift"
  6673. }
  6674. ],
  6675. "time": "2022-01-02T09:53:40+00:00"
  6676. },
  6677. {
  6678. "name": "symfony/error-handler",
  6679. "version": "v4.4.44",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/symfony/error-handler.git",
  6683. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  6688. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  6689. "shasum": "",
  6690. "mirrors": [
  6691. {
  6692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6693. "preferred": true
  6694. }
  6695. ]
  6696. },
  6697. "require": {
  6698. "php": ">=7.1.3",
  6699. "psr/log": "^1|^2|^3",
  6700. "symfony/debug": "^4.4.5",
  6701. "symfony/var-dumper": "^4.4|^5.0"
  6702. },
  6703. "require-dev": {
  6704. "symfony/http-kernel": "^4.4|^5.0",
  6705. "symfony/serializer": "^4.4|^5.0"
  6706. },
  6707. "type": "library",
  6708. "autoload": {
  6709. "psr-4": {
  6710. "Symfony\\Component\\ErrorHandler\\": ""
  6711. },
  6712. "exclude-from-classmap": [
  6713. "/Tests/"
  6714. ]
  6715. },
  6716. "notification-url": "https://packagist.org/downloads/",
  6717. "license": [
  6718. "MIT"
  6719. ],
  6720. "authors": [
  6721. {
  6722. "name": "Fabien Potencier",
  6723. "email": "fabien@symfony.com"
  6724. },
  6725. {
  6726. "name": "Symfony Community",
  6727. "homepage": "https://symfony.com/contributors"
  6728. }
  6729. ],
  6730. "description": "Provides tools to manage errors and ease debugging PHP code",
  6731. "homepage": "https://symfony.com",
  6732. "support": {
  6733. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  6734. },
  6735. "funding": [
  6736. {
  6737. "url": "https://symfony.com/sponsor",
  6738. "type": "custom"
  6739. },
  6740. {
  6741. "url": "https://github.com/fabpot",
  6742. "type": "github"
  6743. },
  6744. {
  6745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6746. "type": "tidelift"
  6747. }
  6748. ],
  6749. "time": "2022-07-28T16:29:46+00:00"
  6750. },
  6751. {
  6752. "name": "symfony/event-dispatcher",
  6753. "version": "v4.4.44",
  6754. "source": {
  6755. "type": "git",
  6756. "url": "https://github.com/symfony/event-dispatcher.git",
  6757. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  6758. },
  6759. "dist": {
  6760. "type": "zip",
  6761. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  6762. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  6763. "shasum": "",
  6764. "mirrors": [
  6765. {
  6766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6767. "preferred": true
  6768. }
  6769. ]
  6770. },
  6771. "require": {
  6772. "php": ">=7.1.3",
  6773. "symfony/event-dispatcher-contracts": "^1.1",
  6774. "symfony/polyfill-php80": "^1.16"
  6775. },
  6776. "conflict": {
  6777. "symfony/dependency-injection": "<3.4"
  6778. },
  6779. "provide": {
  6780. "psr/event-dispatcher-implementation": "1.0",
  6781. "symfony/event-dispatcher-implementation": "1.1"
  6782. },
  6783. "require-dev": {
  6784. "psr/log": "^1|^2|^3",
  6785. "symfony/config": "^3.4|^4.0|^5.0",
  6786. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6787. "symfony/error-handler": "~3.4|~4.4",
  6788. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6789. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  6790. "symfony/service-contracts": "^1.1|^2",
  6791. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  6792. },
  6793. "suggest": {
  6794. "symfony/dependency-injection": "",
  6795. "symfony/http-kernel": ""
  6796. },
  6797. "type": "library",
  6798. "autoload": {
  6799. "psr-4": {
  6800. "Symfony\\Component\\EventDispatcher\\": ""
  6801. },
  6802. "exclude-from-classmap": [
  6803. "/Tests/"
  6804. ]
  6805. },
  6806. "notification-url": "https://packagist.org/downloads/",
  6807. "license": [
  6808. "MIT"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Fabien Potencier",
  6813. "email": "fabien@symfony.com"
  6814. },
  6815. {
  6816. "name": "Symfony Community",
  6817. "homepage": "https://symfony.com/contributors"
  6818. }
  6819. ],
  6820. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6821. "homepage": "https://symfony.com",
  6822. "support": {
  6823. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  6824. },
  6825. "funding": [
  6826. {
  6827. "url": "https://symfony.com/sponsor",
  6828. "type": "custom"
  6829. },
  6830. {
  6831. "url": "https://github.com/fabpot",
  6832. "type": "github"
  6833. },
  6834. {
  6835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6836. "type": "tidelift"
  6837. }
  6838. ],
  6839. "time": "2022-07-20T09:59:04+00:00"
  6840. },
  6841. {
  6842. "name": "symfony/event-dispatcher-contracts",
  6843. "version": "v1.1.13",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6847. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  6852. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  6853. "shasum": "",
  6854. "mirrors": [
  6855. {
  6856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6857. "preferred": true
  6858. }
  6859. ]
  6860. },
  6861. "require": {
  6862. "php": ">=7.1.3"
  6863. },
  6864. "suggest": {
  6865. "psr/event-dispatcher": "",
  6866. "symfony/event-dispatcher-implementation": ""
  6867. },
  6868. "type": "library",
  6869. "extra": {
  6870. "branch-alias": {
  6871. "dev-main": "1.1-dev"
  6872. },
  6873. "thanks": {
  6874. "name": "symfony/contracts",
  6875. "url": "https://github.com/symfony/contracts"
  6876. }
  6877. },
  6878. "autoload": {
  6879. "psr-4": {
  6880. "Symfony\\Contracts\\EventDispatcher\\": ""
  6881. }
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Nicolas Grekas",
  6890. "email": "p@tchwork.com"
  6891. },
  6892. {
  6893. "name": "Symfony Community",
  6894. "homepage": "https://symfony.com/contributors"
  6895. }
  6896. ],
  6897. "description": "Generic abstractions related to dispatching event",
  6898. "homepage": "https://symfony.com",
  6899. "keywords": [
  6900. "abstractions",
  6901. "contracts",
  6902. "decoupling",
  6903. "interfaces",
  6904. "interoperability",
  6905. "standards"
  6906. ],
  6907. "support": {
  6908. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  6909. },
  6910. "funding": [
  6911. {
  6912. "url": "https://symfony.com/sponsor",
  6913. "type": "custom"
  6914. },
  6915. {
  6916. "url": "https://github.com/fabpot",
  6917. "type": "github"
  6918. },
  6919. {
  6920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6921. "type": "tidelift"
  6922. }
  6923. ],
  6924. "time": "2022-01-02T09:41:36+00:00"
  6925. },
  6926. {
  6927. "name": "symfony/filesystem",
  6928. "version": "v5.4.21",
  6929. "source": {
  6930. "type": "git",
  6931. "url": "https://github.com/symfony/filesystem.git",
  6932. "reference": "e75960b1bbfd2b8c9e483e0d74811d555ca3de9f"
  6933. },
  6934. "dist": {
  6935. "type": "zip",
  6936. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e75960b1bbfd2b8c9e483e0d74811d555ca3de9f",
  6937. "reference": "e75960b1bbfd2b8c9e483e0d74811d555ca3de9f",
  6938. "shasum": "",
  6939. "mirrors": [
  6940. {
  6941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6942. "preferred": true
  6943. }
  6944. ]
  6945. },
  6946. "require": {
  6947. "php": ">=7.2.5",
  6948. "symfony/polyfill-ctype": "~1.8",
  6949. "symfony/polyfill-mbstring": "~1.8",
  6950. "symfony/polyfill-php80": "^1.16"
  6951. },
  6952. "type": "library",
  6953. "autoload": {
  6954. "psr-4": {
  6955. "Symfony\\Component\\Filesystem\\": ""
  6956. },
  6957. "exclude-from-classmap": [
  6958. "/Tests/"
  6959. ]
  6960. },
  6961. "notification-url": "https://packagist.org/downloads/",
  6962. "license": [
  6963. "MIT"
  6964. ],
  6965. "authors": [
  6966. {
  6967. "name": "Fabien Potencier",
  6968. "email": "fabien@symfony.com"
  6969. },
  6970. {
  6971. "name": "Symfony Community",
  6972. "homepage": "https://symfony.com/contributors"
  6973. }
  6974. ],
  6975. "description": "Provides basic utilities for the filesystem",
  6976. "homepage": "https://symfony.com",
  6977. "support": {
  6978. "source": "https://github.com/symfony/filesystem/tree/v5.4.21"
  6979. },
  6980. "funding": [
  6981. {
  6982. "url": "https://symfony.com/sponsor",
  6983. "type": "custom"
  6984. },
  6985. {
  6986. "url": "https://github.com/fabpot",
  6987. "type": "github"
  6988. },
  6989. {
  6990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6991. "type": "tidelift"
  6992. }
  6993. ],
  6994. "time": "2023-02-14T08:03:56+00:00"
  6995. },
  6996. {
  6997. "name": "symfony/finder",
  6998. "version": "v4.4.44",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/symfony/finder.git",
  7002. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  7007. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  7008. "shasum": "",
  7009. "mirrors": [
  7010. {
  7011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7012. "preferred": true
  7013. }
  7014. ]
  7015. },
  7016. "require": {
  7017. "php": ">=7.1.3",
  7018. "symfony/polyfill-php80": "^1.16"
  7019. },
  7020. "type": "library",
  7021. "autoload": {
  7022. "psr-4": {
  7023. "Symfony\\Component\\Finder\\": ""
  7024. },
  7025. "exclude-from-classmap": [
  7026. "/Tests/"
  7027. ]
  7028. },
  7029. "notification-url": "https://packagist.org/downloads/",
  7030. "license": [
  7031. "MIT"
  7032. ],
  7033. "authors": [
  7034. {
  7035. "name": "Fabien Potencier",
  7036. "email": "fabien@symfony.com"
  7037. },
  7038. {
  7039. "name": "Symfony Community",
  7040. "homepage": "https://symfony.com/contributors"
  7041. }
  7042. ],
  7043. "description": "Finds files and directories via an intuitive fluent interface",
  7044. "homepage": "https://symfony.com",
  7045. "support": {
  7046. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  7047. },
  7048. "funding": [
  7049. {
  7050. "url": "https://symfony.com/sponsor",
  7051. "type": "custom"
  7052. },
  7053. {
  7054. "url": "https://github.com/fabpot",
  7055. "type": "github"
  7056. },
  7057. {
  7058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7059. "type": "tidelift"
  7060. }
  7061. ],
  7062. "time": "2022-07-29T07:35:46+00:00"
  7063. },
  7064. {
  7065. "name": "symfony/http-client-contracts",
  7066. "version": "v2.5.2",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/symfony/http-client-contracts.git",
  7070. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  7075. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  7076. "shasum": "",
  7077. "mirrors": [
  7078. {
  7079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7080. "preferred": true
  7081. }
  7082. ]
  7083. },
  7084. "require": {
  7085. "php": ">=7.2.5"
  7086. },
  7087. "suggest": {
  7088. "symfony/http-client-implementation": ""
  7089. },
  7090. "type": "library",
  7091. "extra": {
  7092. "branch-alias": {
  7093. "dev-main": "2.5-dev"
  7094. },
  7095. "thanks": {
  7096. "name": "symfony/contracts",
  7097. "url": "https://github.com/symfony/contracts"
  7098. }
  7099. },
  7100. "autoload": {
  7101. "psr-4": {
  7102. "Symfony\\Contracts\\HttpClient\\": ""
  7103. }
  7104. },
  7105. "notification-url": "https://packagist.org/downloads/",
  7106. "license": [
  7107. "MIT"
  7108. ],
  7109. "authors": [
  7110. {
  7111. "name": "Nicolas Grekas",
  7112. "email": "p@tchwork.com"
  7113. },
  7114. {
  7115. "name": "Symfony Community",
  7116. "homepage": "https://symfony.com/contributors"
  7117. }
  7118. ],
  7119. "description": "Generic abstractions related to HTTP clients",
  7120. "homepage": "https://symfony.com",
  7121. "keywords": [
  7122. "abstractions",
  7123. "contracts",
  7124. "decoupling",
  7125. "interfaces",
  7126. "interoperability",
  7127. "standards"
  7128. ],
  7129. "support": {
  7130. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  7131. },
  7132. "funding": [
  7133. {
  7134. "url": "https://symfony.com/sponsor",
  7135. "type": "custom"
  7136. },
  7137. {
  7138. "url": "https://github.com/fabpot",
  7139. "type": "github"
  7140. },
  7141. {
  7142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7143. "type": "tidelift"
  7144. }
  7145. ],
  7146. "time": "2022-04-12T15:48:08+00:00"
  7147. },
  7148. {
  7149. "name": "symfony/http-foundation",
  7150. "version": "v4.4.49",
  7151. "source": {
  7152. "type": "git",
  7153. "url": "https://github.com/symfony/http-foundation.git",
  7154. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  7155. },
  7156. "dist": {
  7157. "type": "zip",
  7158. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  7159. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  7160. "shasum": "",
  7161. "mirrors": [
  7162. {
  7163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7164. "preferred": true
  7165. }
  7166. ]
  7167. },
  7168. "require": {
  7169. "php": ">=7.1.3",
  7170. "symfony/mime": "^4.3|^5.0",
  7171. "symfony/polyfill-mbstring": "~1.1",
  7172. "symfony/polyfill-php80": "^1.16"
  7173. },
  7174. "require-dev": {
  7175. "predis/predis": "~1.0",
  7176. "symfony/expression-language": "^3.4|^4.0|^5.0"
  7177. },
  7178. "type": "library",
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Symfony\\Component\\HttpFoundation\\": ""
  7182. },
  7183. "exclude-from-classmap": [
  7184. "/Tests/"
  7185. ]
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Fabien Potencier",
  7194. "email": "fabien@symfony.com"
  7195. },
  7196. {
  7197. "name": "Symfony Community",
  7198. "homepage": "https://symfony.com/contributors"
  7199. }
  7200. ],
  7201. "description": "Defines an object-oriented layer for the HTTP specification",
  7202. "homepage": "https://symfony.com",
  7203. "support": {
  7204. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://symfony.com/sponsor",
  7209. "type": "custom"
  7210. },
  7211. {
  7212. "url": "https://github.com/fabpot",
  7213. "type": "github"
  7214. },
  7215. {
  7216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7217. "type": "tidelift"
  7218. }
  7219. ],
  7220. "time": "2022-11-04T16:17:57+00:00"
  7221. },
  7222. {
  7223. "name": "symfony/http-kernel",
  7224. "version": "v4.4.50",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/symfony/http-kernel.git",
  7228. "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/aa6df6c045f034aa13ac752fc234bb300b9488ef",
  7233. "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef",
  7234. "shasum": "",
  7235. "mirrors": [
  7236. {
  7237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7238. "preferred": true
  7239. }
  7240. ]
  7241. },
  7242. "require": {
  7243. "php": ">=7.1.3",
  7244. "psr/log": "^1|^2",
  7245. "symfony/error-handler": "^4.4",
  7246. "symfony/event-dispatcher": "^4.4",
  7247. "symfony/http-client-contracts": "^1.1|^2",
  7248. "symfony/http-foundation": "^4.4.30|^5.3.7",
  7249. "symfony/polyfill-ctype": "^1.8",
  7250. "symfony/polyfill-php73": "^1.9",
  7251. "symfony/polyfill-php80": "^1.16"
  7252. },
  7253. "conflict": {
  7254. "symfony/browser-kit": "<4.3",
  7255. "symfony/config": "<3.4",
  7256. "symfony/console": ">=5",
  7257. "symfony/dependency-injection": "<4.3",
  7258. "symfony/translation": "<4.2",
  7259. "twig/twig": "<1.43|<2.13,>=2"
  7260. },
  7261. "provide": {
  7262. "psr/log-implementation": "1.0|2.0"
  7263. },
  7264. "require-dev": {
  7265. "psr/cache": "^1.0|^2.0|^3.0",
  7266. "symfony/browser-kit": "^4.3|^5.0",
  7267. "symfony/config": "^3.4|^4.0|^5.0",
  7268. "symfony/console": "^3.4|^4.0",
  7269. "symfony/css-selector": "^3.4|^4.0|^5.0",
  7270. "symfony/dependency-injection": "^4.3|^5.0",
  7271. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  7272. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7273. "symfony/finder": "^3.4|^4.0|^5.0",
  7274. "symfony/process": "^3.4|^4.0|^5.0",
  7275. "symfony/routing": "^3.4|^4.0|^5.0",
  7276. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  7277. "symfony/templating": "^3.4|^4.0|^5.0",
  7278. "symfony/translation": "^4.2|^5.0",
  7279. "symfony/translation-contracts": "^1.1|^2",
  7280. "twig/twig": "^1.43|^2.13|^3.0.4"
  7281. },
  7282. "suggest": {
  7283. "symfony/browser-kit": "",
  7284. "symfony/config": "",
  7285. "symfony/console": "",
  7286. "symfony/dependency-injection": ""
  7287. },
  7288. "type": "library",
  7289. "autoload": {
  7290. "psr-4": {
  7291. "Symfony\\Component\\HttpKernel\\": ""
  7292. },
  7293. "exclude-from-classmap": [
  7294. "/Tests/"
  7295. ]
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Fabien Potencier",
  7304. "email": "fabien@symfony.com"
  7305. },
  7306. {
  7307. "name": "Symfony Community",
  7308. "homepage": "https://symfony.com/contributors"
  7309. }
  7310. ],
  7311. "description": "Provides a structured process for converting a Request into a Response",
  7312. "homepage": "https://symfony.com",
  7313. "support": {
  7314. "source": "https://github.com/symfony/http-kernel/tree/v4.4.50"
  7315. },
  7316. "funding": [
  7317. {
  7318. "url": "https://symfony.com/sponsor",
  7319. "type": "custom"
  7320. },
  7321. {
  7322. "url": "https://github.com/fabpot",
  7323. "type": "github"
  7324. },
  7325. {
  7326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7327. "type": "tidelift"
  7328. }
  7329. ],
  7330. "time": "2023-02-01T08:01:31+00:00"
  7331. },
  7332. {
  7333. "name": "symfony/mime",
  7334. "version": "v5.4.21",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/symfony/mime.git",
  7338. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/symfony/mime/zipball/ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  7343. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  7344. "shasum": "",
  7345. "mirrors": [
  7346. {
  7347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7348. "preferred": true
  7349. }
  7350. ]
  7351. },
  7352. "require": {
  7353. "php": ">=7.2.5",
  7354. "symfony/deprecation-contracts": "^2.1|^3",
  7355. "symfony/polyfill-intl-idn": "^1.10",
  7356. "symfony/polyfill-mbstring": "^1.0",
  7357. "symfony/polyfill-php80": "^1.16"
  7358. },
  7359. "conflict": {
  7360. "egulias/email-validator": "~3.0.0",
  7361. "phpdocumentor/reflection-docblock": "<3.2.2",
  7362. "phpdocumentor/type-resolver": "<1.4.0",
  7363. "symfony/mailer": "<4.4",
  7364. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  7365. },
  7366. "require-dev": {
  7367. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7368. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7369. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7370. "symfony/property-access": "^4.4|^5.1|^6.0",
  7371. "symfony/property-info": "^4.4|^5.1|^6.0",
  7372. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  7373. },
  7374. "type": "library",
  7375. "autoload": {
  7376. "psr-4": {
  7377. "Symfony\\Component\\Mime\\": ""
  7378. },
  7379. "exclude-from-classmap": [
  7380. "/Tests/"
  7381. ]
  7382. },
  7383. "notification-url": "https://packagist.org/downloads/",
  7384. "license": [
  7385. "MIT"
  7386. ],
  7387. "authors": [
  7388. {
  7389. "name": "Fabien Potencier",
  7390. "email": "fabien@symfony.com"
  7391. },
  7392. {
  7393. "name": "Symfony Community",
  7394. "homepage": "https://symfony.com/contributors"
  7395. }
  7396. ],
  7397. "description": "Allows manipulating MIME messages",
  7398. "homepage": "https://symfony.com",
  7399. "keywords": [
  7400. "mime",
  7401. "mime-type"
  7402. ],
  7403. "support": {
  7404. "source": "https://github.com/symfony/mime/tree/v5.4.21"
  7405. },
  7406. "funding": [
  7407. {
  7408. "url": "https://symfony.com/sponsor",
  7409. "type": "custom"
  7410. },
  7411. {
  7412. "url": "https://github.com/fabpot",
  7413. "type": "github"
  7414. },
  7415. {
  7416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7417. "type": "tidelift"
  7418. }
  7419. ],
  7420. "time": "2023-02-21T19:46:44+00:00"
  7421. },
  7422. {
  7423. "name": "symfony/options-resolver",
  7424. "version": "v5.4.21",
  7425. "source": {
  7426. "type": "git",
  7427. "url": "https://github.com/symfony/options-resolver.git",
  7428. "reference": "4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9"
  7429. },
  7430. "dist": {
  7431. "type": "zip",
  7432. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9",
  7433. "reference": "4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9",
  7434. "shasum": "",
  7435. "mirrors": [
  7436. {
  7437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7438. "preferred": true
  7439. }
  7440. ]
  7441. },
  7442. "require": {
  7443. "php": ">=7.2.5",
  7444. "symfony/deprecation-contracts": "^2.1|^3",
  7445. "symfony/polyfill-php73": "~1.0",
  7446. "symfony/polyfill-php80": "^1.16"
  7447. },
  7448. "type": "library",
  7449. "autoload": {
  7450. "psr-4": {
  7451. "Symfony\\Component\\OptionsResolver\\": ""
  7452. },
  7453. "exclude-from-classmap": [
  7454. "/Tests/"
  7455. ]
  7456. },
  7457. "notification-url": "https://packagist.org/downloads/",
  7458. "license": [
  7459. "MIT"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Fabien Potencier",
  7464. "email": "fabien@symfony.com"
  7465. },
  7466. {
  7467. "name": "Symfony Community",
  7468. "homepage": "https://symfony.com/contributors"
  7469. }
  7470. ],
  7471. "description": "Provides an improved replacement for the array_replace PHP function",
  7472. "homepage": "https://symfony.com",
  7473. "keywords": [
  7474. "config",
  7475. "configuration",
  7476. "options"
  7477. ],
  7478. "support": {
  7479. "source": "https://github.com/symfony/options-resolver/tree/v5.4.21"
  7480. },
  7481. "funding": [
  7482. {
  7483. "url": "https://symfony.com/sponsor",
  7484. "type": "custom"
  7485. },
  7486. {
  7487. "url": "https://github.com/fabpot",
  7488. "type": "github"
  7489. },
  7490. {
  7491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7492. "type": "tidelift"
  7493. }
  7494. ],
  7495. "time": "2023-02-14T08:03:56+00:00"
  7496. },
  7497. {
  7498. "name": "symfony/polyfill-ctype",
  7499. "version": "v1.27.0",
  7500. "source": {
  7501. "type": "git",
  7502. "url": "https://github.com/symfony/polyfill-ctype.git",
  7503. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  7504. },
  7505. "dist": {
  7506. "type": "zip",
  7507. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  7508. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  7509. "shasum": "",
  7510. "mirrors": [
  7511. {
  7512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7513. "preferred": true
  7514. }
  7515. ]
  7516. },
  7517. "require": {
  7518. "php": ">=7.1"
  7519. },
  7520. "provide": {
  7521. "ext-ctype": "*"
  7522. },
  7523. "suggest": {
  7524. "ext-ctype": "For best performance"
  7525. },
  7526. "type": "library",
  7527. "extra": {
  7528. "branch-alias": {
  7529. "dev-main": "1.27-dev"
  7530. },
  7531. "thanks": {
  7532. "name": "symfony/polyfill",
  7533. "url": "https://github.com/symfony/polyfill"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "files": [
  7538. "bootstrap.php"
  7539. ],
  7540. "psr-4": {
  7541. "Symfony\\Polyfill\\Ctype\\": ""
  7542. }
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "MIT"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "Gert de Pagter",
  7551. "email": "BackEndTea@gmail.com"
  7552. },
  7553. {
  7554. "name": "Symfony Community",
  7555. "homepage": "https://symfony.com/contributors"
  7556. }
  7557. ],
  7558. "description": "Symfony polyfill for ctype functions",
  7559. "homepage": "https://symfony.com",
  7560. "keywords": [
  7561. "compatibility",
  7562. "ctype",
  7563. "polyfill",
  7564. "portable"
  7565. ],
  7566. "support": {
  7567. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  7568. },
  7569. "funding": [
  7570. {
  7571. "url": "https://symfony.com/sponsor",
  7572. "type": "custom"
  7573. },
  7574. {
  7575. "url": "https://github.com/fabpot",
  7576. "type": "github"
  7577. },
  7578. {
  7579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7580. "type": "tidelift"
  7581. }
  7582. ],
  7583. "time": "2022-11-03T14:55:06+00:00"
  7584. },
  7585. {
  7586. "name": "symfony/polyfill-intl-grapheme",
  7587. "version": "v1.27.0",
  7588. "source": {
  7589. "type": "git",
  7590. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7591. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  7592. },
  7593. "dist": {
  7594. "type": "zip",
  7595. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  7596. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  7597. "shasum": "",
  7598. "mirrors": [
  7599. {
  7600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7601. "preferred": true
  7602. }
  7603. ]
  7604. },
  7605. "require": {
  7606. "php": ">=7.1"
  7607. },
  7608. "suggest": {
  7609. "ext-intl": "For best performance"
  7610. },
  7611. "type": "library",
  7612. "extra": {
  7613. "branch-alias": {
  7614. "dev-main": "1.27-dev"
  7615. },
  7616. "thanks": {
  7617. "name": "symfony/polyfill",
  7618. "url": "https://github.com/symfony/polyfill"
  7619. }
  7620. },
  7621. "autoload": {
  7622. "files": [
  7623. "bootstrap.php"
  7624. ],
  7625. "psr-4": {
  7626. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7627. }
  7628. },
  7629. "notification-url": "https://packagist.org/downloads/",
  7630. "license": [
  7631. "MIT"
  7632. ],
  7633. "authors": [
  7634. {
  7635. "name": "Nicolas Grekas",
  7636. "email": "p@tchwork.com"
  7637. },
  7638. {
  7639. "name": "Symfony Community",
  7640. "homepage": "https://symfony.com/contributors"
  7641. }
  7642. ],
  7643. "description": "Symfony polyfill for intl's grapheme_* functions",
  7644. "homepage": "https://symfony.com",
  7645. "keywords": [
  7646. "compatibility",
  7647. "grapheme",
  7648. "intl",
  7649. "polyfill",
  7650. "portable",
  7651. "shim"
  7652. ],
  7653. "support": {
  7654. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  7655. },
  7656. "funding": [
  7657. {
  7658. "url": "https://symfony.com/sponsor",
  7659. "type": "custom"
  7660. },
  7661. {
  7662. "url": "https://github.com/fabpot",
  7663. "type": "github"
  7664. },
  7665. {
  7666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7667. "type": "tidelift"
  7668. }
  7669. ],
  7670. "time": "2022-11-03T14:55:06+00:00"
  7671. },
  7672. {
  7673. "name": "symfony/polyfill-intl-idn",
  7674. "version": "v1.27.0",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7678. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  7683. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  7684. "shasum": "",
  7685. "mirrors": [
  7686. {
  7687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7688. "preferred": true
  7689. }
  7690. ]
  7691. },
  7692. "require": {
  7693. "php": ">=7.1",
  7694. "symfony/polyfill-intl-normalizer": "^1.10",
  7695. "symfony/polyfill-php72": "^1.10"
  7696. },
  7697. "suggest": {
  7698. "ext-intl": "For best performance"
  7699. },
  7700. "type": "library",
  7701. "extra": {
  7702. "branch-alias": {
  7703. "dev-main": "1.27-dev"
  7704. },
  7705. "thanks": {
  7706. "name": "symfony/polyfill",
  7707. "url": "https://github.com/symfony/polyfill"
  7708. }
  7709. },
  7710. "autoload": {
  7711. "files": [
  7712. "bootstrap.php"
  7713. ],
  7714. "psr-4": {
  7715. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7716. }
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "MIT"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Laurent Bassin",
  7725. "email": "laurent@bassin.info"
  7726. },
  7727. {
  7728. "name": "Trevor Rowbotham",
  7729. "email": "trevor.rowbotham@pm.me"
  7730. },
  7731. {
  7732. "name": "Symfony Community",
  7733. "homepage": "https://symfony.com/contributors"
  7734. }
  7735. ],
  7736. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7737. "homepage": "https://symfony.com",
  7738. "keywords": [
  7739. "compatibility",
  7740. "idn",
  7741. "intl",
  7742. "polyfill",
  7743. "portable",
  7744. "shim"
  7745. ],
  7746. "support": {
  7747. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  7748. },
  7749. "funding": [
  7750. {
  7751. "url": "https://symfony.com/sponsor",
  7752. "type": "custom"
  7753. },
  7754. {
  7755. "url": "https://github.com/fabpot",
  7756. "type": "github"
  7757. },
  7758. {
  7759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7760. "type": "tidelift"
  7761. }
  7762. ],
  7763. "time": "2022-11-03T14:55:06+00:00"
  7764. },
  7765. {
  7766. "name": "symfony/polyfill-intl-normalizer",
  7767. "version": "v1.27.0",
  7768. "source": {
  7769. "type": "git",
  7770. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7771. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  7772. },
  7773. "dist": {
  7774. "type": "zip",
  7775. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7776. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7777. "shasum": "",
  7778. "mirrors": [
  7779. {
  7780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7781. "preferred": true
  7782. }
  7783. ]
  7784. },
  7785. "require": {
  7786. "php": ">=7.1"
  7787. },
  7788. "suggest": {
  7789. "ext-intl": "For best performance"
  7790. },
  7791. "type": "library",
  7792. "extra": {
  7793. "branch-alias": {
  7794. "dev-main": "1.27-dev"
  7795. },
  7796. "thanks": {
  7797. "name": "symfony/polyfill",
  7798. "url": "https://github.com/symfony/polyfill"
  7799. }
  7800. },
  7801. "autoload": {
  7802. "files": [
  7803. "bootstrap.php"
  7804. ],
  7805. "psr-4": {
  7806. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7807. },
  7808. "classmap": [
  7809. "Resources/stubs"
  7810. ]
  7811. },
  7812. "notification-url": "https://packagist.org/downloads/",
  7813. "license": [
  7814. "MIT"
  7815. ],
  7816. "authors": [
  7817. {
  7818. "name": "Nicolas Grekas",
  7819. "email": "p@tchwork.com"
  7820. },
  7821. {
  7822. "name": "Symfony Community",
  7823. "homepage": "https://symfony.com/contributors"
  7824. }
  7825. ],
  7826. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7827. "homepage": "https://symfony.com",
  7828. "keywords": [
  7829. "compatibility",
  7830. "intl",
  7831. "normalizer",
  7832. "polyfill",
  7833. "portable",
  7834. "shim"
  7835. ],
  7836. "support": {
  7837. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://symfony.com/sponsor",
  7842. "type": "custom"
  7843. },
  7844. {
  7845. "url": "https://github.com/fabpot",
  7846. "type": "github"
  7847. },
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "time": "2022-11-03T14:55:06+00:00"
  7854. },
  7855. {
  7856. "name": "symfony/polyfill-mbstring",
  7857. "version": "v1.27.0",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7861. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7866. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7867. "shasum": "",
  7868. "mirrors": [
  7869. {
  7870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7871. "preferred": true
  7872. }
  7873. ]
  7874. },
  7875. "require": {
  7876. "php": ">=7.1"
  7877. },
  7878. "provide": {
  7879. "ext-mbstring": "*"
  7880. },
  7881. "suggest": {
  7882. "ext-mbstring": "For best performance"
  7883. },
  7884. "type": "library",
  7885. "extra": {
  7886. "branch-alias": {
  7887. "dev-main": "1.27-dev"
  7888. },
  7889. "thanks": {
  7890. "name": "symfony/polyfill",
  7891. "url": "https://github.com/symfony/polyfill"
  7892. }
  7893. },
  7894. "autoload": {
  7895. "files": [
  7896. "bootstrap.php"
  7897. ],
  7898. "psr-4": {
  7899. "Symfony\\Polyfill\\Mbstring\\": ""
  7900. }
  7901. },
  7902. "notification-url": "https://packagist.org/downloads/",
  7903. "license": [
  7904. "MIT"
  7905. ],
  7906. "authors": [
  7907. {
  7908. "name": "Nicolas Grekas",
  7909. "email": "p@tchwork.com"
  7910. },
  7911. {
  7912. "name": "Symfony Community",
  7913. "homepage": "https://symfony.com/contributors"
  7914. }
  7915. ],
  7916. "description": "Symfony polyfill for the Mbstring extension",
  7917. "homepage": "https://symfony.com",
  7918. "keywords": [
  7919. "compatibility",
  7920. "mbstring",
  7921. "polyfill",
  7922. "portable",
  7923. "shim"
  7924. ],
  7925. "support": {
  7926. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  7927. },
  7928. "funding": [
  7929. {
  7930. "url": "https://symfony.com/sponsor",
  7931. "type": "custom"
  7932. },
  7933. {
  7934. "url": "https://github.com/fabpot",
  7935. "type": "github"
  7936. },
  7937. {
  7938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7939. "type": "tidelift"
  7940. }
  7941. ],
  7942. "time": "2022-11-03T14:55:06+00:00"
  7943. },
  7944. {
  7945. "name": "symfony/polyfill-php56",
  7946. "version": "v1.20.0",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/symfony/polyfill-php56.git",
  7950. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7955. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7956. "shasum": "",
  7957. "mirrors": [
  7958. {
  7959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7960. "preferred": true
  7961. }
  7962. ]
  7963. },
  7964. "require": {
  7965. "php": ">=7.1"
  7966. },
  7967. "type": "metapackage",
  7968. "extra": {
  7969. "branch-alias": {
  7970. "dev-main": "1.20-dev"
  7971. },
  7972. "thanks": {
  7973. "name": "symfony/polyfill",
  7974. "url": "https://github.com/symfony/polyfill"
  7975. }
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "Nicolas Grekas",
  7984. "email": "p@tchwork.com"
  7985. },
  7986. {
  7987. "name": "Symfony Community",
  7988. "homepage": "https://symfony.com/contributors"
  7989. }
  7990. ],
  7991. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  7992. "homepage": "https://symfony.com",
  7993. "keywords": [
  7994. "compatibility",
  7995. "polyfill",
  7996. "portable",
  7997. "shim"
  7998. ],
  7999. "support": {
  8000. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8001. },
  8002. "funding": [
  8003. {
  8004. "url": "https://symfony.com/sponsor",
  8005. "type": "custom"
  8006. },
  8007. {
  8008. "url": "https://github.com/fabpot",
  8009. "type": "github"
  8010. },
  8011. {
  8012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8013. "type": "tidelift"
  8014. }
  8015. ],
  8016. "time": "2020-10-23T14:02:19+00:00"
  8017. },
  8018. {
  8019. "name": "symfony/polyfill-php72",
  8020. "version": "v1.27.0",
  8021. "source": {
  8022. "type": "git",
  8023. "url": "https://github.com/symfony/polyfill-php72.git",
  8024. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  8025. },
  8026. "dist": {
  8027. "type": "zip",
  8028. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  8029. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  8030. "shasum": "",
  8031. "mirrors": [
  8032. {
  8033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8034. "preferred": true
  8035. }
  8036. ]
  8037. },
  8038. "require": {
  8039. "php": ">=7.1"
  8040. },
  8041. "type": "library",
  8042. "extra": {
  8043. "branch-alias": {
  8044. "dev-main": "1.27-dev"
  8045. },
  8046. "thanks": {
  8047. "name": "symfony/polyfill",
  8048. "url": "https://github.com/symfony/polyfill"
  8049. }
  8050. },
  8051. "autoload": {
  8052. "files": [
  8053. "bootstrap.php"
  8054. ],
  8055. "psr-4": {
  8056. "Symfony\\Polyfill\\Php72\\": ""
  8057. }
  8058. },
  8059. "notification-url": "https://packagist.org/downloads/",
  8060. "license": [
  8061. "MIT"
  8062. ],
  8063. "authors": [
  8064. {
  8065. "name": "Nicolas Grekas",
  8066. "email": "p@tchwork.com"
  8067. },
  8068. {
  8069. "name": "Symfony Community",
  8070. "homepage": "https://symfony.com/contributors"
  8071. }
  8072. ],
  8073. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8074. "homepage": "https://symfony.com",
  8075. "keywords": [
  8076. "compatibility",
  8077. "polyfill",
  8078. "portable",
  8079. "shim"
  8080. ],
  8081. "support": {
  8082. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  8083. },
  8084. "funding": [
  8085. {
  8086. "url": "https://symfony.com/sponsor",
  8087. "type": "custom"
  8088. },
  8089. {
  8090. "url": "https://github.com/fabpot",
  8091. "type": "github"
  8092. },
  8093. {
  8094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8095. "type": "tidelift"
  8096. }
  8097. ],
  8098. "time": "2022-11-03T14:55:06+00:00"
  8099. },
  8100. {
  8101. "name": "symfony/polyfill-php73",
  8102. "version": "v1.27.0",
  8103. "source": {
  8104. "type": "git",
  8105. "url": "https://github.com/symfony/polyfill-php73.git",
  8106. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  8107. },
  8108. "dist": {
  8109. "type": "zip",
  8110. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  8111. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  8112. "shasum": "",
  8113. "mirrors": [
  8114. {
  8115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8116. "preferred": true
  8117. }
  8118. ]
  8119. },
  8120. "require": {
  8121. "php": ">=7.1"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "branch-alias": {
  8126. "dev-main": "1.27-dev"
  8127. },
  8128. "thanks": {
  8129. "name": "symfony/polyfill",
  8130. "url": "https://github.com/symfony/polyfill"
  8131. }
  8132. },
  8133. "autoload": {
  8134. "files": [
  8135. "bootstrap.php"
  8136. ],
  8137. "psr-4": {
  8138. "Symfony\\Polyfill\\Php73\\": ""
  8139. },
  8140. "classmap": [
  8141. "Resources/stubs"
  8142. ]
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "MIT"
  8147. ],
  8148. "authors": [
  8149. {
  8150. "name": "Nicolas Grekas",
  8151. "email": "p@tchwork.com"
  8152. },
  8153. {
  8154. "name": "Symfony Community",
  8155. "homepage": "https://symfony.com/contributors"
  8156. }
  8157. ],
  8158. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8159. "homepage": "https://symfony.com",
  8160. "keywords": [
  8161. "compatibility",
  8162. "polyfill",
  8163. "portable",
  8164. "shim"
  8165. ],
  8166. "support": {
  8167. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  8168. },
  8169. "funding": [
  8170. {
  8171. "url": "https://symfony.com/sponsor",
  8172. "type": "custom"
  8173. },
  8174. {
  8175. "url": "https://github.com/fabpot",
  8176. "type": "github"
  8177. },
  8178. {
  8179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8180. "type": "tidelift"
  8181. }
  8182. ],
  8183. "time": "2022-11-03T14:55:06+00:00"
  8184. },
  8185. {
  8186. "name": "symfony/polyfill-php80",
  8187. "version": "v1.27.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/symfony/polyfill-php80.git",
  8191. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  8196. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  8197. "shasum": "",
  8198. "mirrors": [
  8199. {
  8200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8201. "preferred": true
  8202. }
  8203. ]
  8204. },
  8205. "require": {
  8206. "php": ">=7.1"
  8207. },
  8208. "type": "library",
  8209. "extra": {
  8210. "branch-alias": {
  8211. "dev-main": "1.27-dev"
  8212. },
  8213. "thanks": {
  8214. "name": "symfony/polyfill",
  8215. "url": "https://github.com/symfony/polyfill"
  8216. }
  8217. },
  8218. "autoload": {
  8219. "files": [
  8220. "bootstrap.php"
  8221. ],
  8222. "psr-4": {
  8223. "Symfony\\Polyfill\\Php80\\": ""
  8224. },
  8225. "classmap": [
  8226. "Resources/stubs"
  8227. ]
  8228. },
  8229. "notification-url": "https://packagist.org/downloads/",
  8230. "license": [
  8231. "MIT"
  8232. ],
  8233. "authors": [
  8234. {
  8235. "name": "Ion Bazan",
  8236. "email": "ion.bazan@gmail.com"
  8237. },
  8238. {
  8239. "name": "Nicolas Grekas",
  8240. "email": "p@tchwork.com"
  8241. },
  8242. {
  8243. "name": "Symfony Community",
  8244. "homepage": "https://symfony.com/contributors"
  8245. }
  8246. ],
  8247. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8248. "homepage": "https://symfony.com",
  8249. "keywords": [
  8250. "compatibility",
  8251. "polyfill",
  8252. "portable",
  8253. "shim"
  8254. ],
  8255. "support": {
  8256. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  8257. },
  8258. "funding": [
  8259. {
  8260. "url": "https://symfony.com/sponsor",
  8261. "type": "custom"
  8262. },
  8263. {
  8264. "url": "https://github.com/fabpot",
  8265. "type": "github"
  8266. },
  8267. {
  8268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8269. "type": "tidelift"
  8270. }
  8271. ],
  8272. "time": "2022-11-03T14:55:06+00:00"
  8273. },
  8274. {
  8275. "name": "symfony/process",
  8276. "version": "v4.4.44",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/symfony/process.git",
  8280. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  8285. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  8286. "shasum": "",
  8287. "mirrors": [
  8288. {
  8289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8290. "preferred": true
  8291. }
  8292. ]
  8293. },
  8294. "require": {
  8295. "php": ">=7.1.3",
  8296. "symfony/polyfill-php80": "^1.16"
  8297. },
  8298. "type": "library",
  8299. "autoload": {
  8300. "psr-4": {
  8301. "Symfony\\Component\\Process\\": ""
  8302. },
  8303. "exclude-from-classmap": [
  8304. "/Tests/"
  8305. ]
  8306. },
  8307. "notification-url": "https://packagist.org/downloads/",
  8308. "license": [
  8309. "MIT"
  8310. ],
  8311. "authors": [
  8312. {
  8313. "name": "Fabien Potencier",
  8314. "email": "fabien@symfony.com"
  8315. },
  8316. {
  8317. "name": "Symfony Community",
  8318. "homepage": "https://symfony.com/contributors"
  8319. }
  8320. ],
  8321. "description": "Executes commands in sub-processes",
  8322. "homepage": "https://symfony.com",
  8323. "support": {
  8324. "source": "https://github.com/symfony/process/tree/v4.4.44"
  8325. },
  8326. "funding": [
  8327. {
  8328. "url": "https://symfony.com/sponsor",
  8329. "type": "custom"
  8330. },
  8331. {
  8332. "url": "https://github.com/fabpot",
  8333. "type": "github"
  8334. },
  8335. {
  8336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8337. "type": "tidelift"
  8338. }
  8339. ],
  8340. "time": "2022-06-27T13:16:42+00:00"
  8341. },
  8342. {
  8343. "name": "symfony/property-access",
  8344. "version": "v5.4.21",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/symfony/property-access.git",
  8348. "reference": "bbd4442bfbdf3992550772539ba743d6d834534f"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/symfony/property-access/zipball/bbd4442bfbdf3992550772539ba743d6d834534f",
  8353. "reference": "bbd4442bfbdf3992550772539ba743d6d834534f",
  8354. "shasum": "",
  8355. "mirrors": [
  8356. {
  8357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8358. "preferred": true
  8359. }
  8360. ]
  8361. },
  8362. "require": {
  8363. "php": ">=7.2.5",
  8364. "symfony/deprecation-contracts": "^2.1|^3",
  8365. "symfony/polyfill-php80": "^1.16",
  8366. "symfony/property-info": "^5.2|^6.0"
  8367. },
  8368. "require-dev": {
  8369. "symfony/cache": "^4.4|^5.0|^6.0"
  8370. },
  8371. "suggest": {
  8372. "psr/cache-implementation": "To cache access methods."
  8373. },
  8374. "type": "library",
  8375. "autoload": {
  8376. "psr-4": {
  8377. "Symfony\\Component\\PropertyAccess\\": ""
  8378. },
  8379. "exclude-from-classmap": [
  8380. "/Tests/"
  8381. ]
  8382. },
  8383. "notification-url": "https://packagist.org/downloads/",
  8384. "license": [
  8385. "MIT"
  8386. ],
  8387. "authors": [
  8388. {
  8389. "name": "Fabien Potencier",
  8390. "email": "fabien@symfony.com"
  8391. },
  8392. {
  8393. "name": "Symfony Community",
  8394. "homepage": "https://symfony.com/contributors"
  8395. }
  8396. ],
  8397. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  8398. "homepage": "https://symfony.com",
  8399. "keywords": [
  8400. "access",
  8401. "array",
  8402. "extraction",
  8403. "index",
  8404. "injection",
  8405. "object",
  8406. "property",
  8407. "property path",
  8408. "reflection"
  8409. ],
  8410. "support": {
  8411. "source": "https://github.com/symfony/property-access/tree/v5.4.21"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://symfony.com/sponsor",
  8416. "type": "custom"
  8417. },
  8418. {
  8419. "url": "https://github.com/fabpot",
  8420. "type": "github"
  8421. },
  8422. {
  8423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8424. "type": "tidelift"
  8425. }
  8426. ],
  8427. "time": "2023-02-16T09:33:00+00:00"
  8428. },
  8429. {
  8430. "name": "symfony/property-info",
  8431. "version": "v5.4.21",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/symfony/property-info.git",
  8435. "reference": "722737086d76b4edabfc2d50a48cebd4b8cd5546"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/symfony/property-info/zipball/722737086d76b4edabfc2d50a48cebd4b8cd5546",
  8440. "reference": "722737086d76b4edabfc2d50a48cebd4b8cd5546",
  8441. "shasum": "",
  8442. "mirrors": [
  8443. {
  8444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8445. "preferred": true
  8446. }
  8447. ]
  8448. },
  8449. "require": {
  8450. "php": ">=7.2.5",
  8451. "symfony/deprecation-contracts": "^2.1|^3",
  8452. "symfony/polyfill-php80": "^1.16",
  8453. "symfony/string": "^5.1|^6.0"
  8454. },
  8455. "conflict": {
  8456. "phpdocumentor/reflection-docblock": "<3.2.2",
  8457. "phpdocumentor/type-resolver": "<1.4.0",
  8458. "symfony/dependency-injection": "<4.4"
  8459. },
  8460. "require-dev": {
  8461. "doctrine/annotations": "^1.10.4|^2",
  8462. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8463. "phpstan/phpdoc-parser": "^1.0",
  8464. "symfony/cache": "^4.4|^5.0|^6.0",
  8465. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8466. "symfony/serializer": "^4.4|^5.0|^6.0"
  8467. },
  8468. "suggest": {
  8469. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  8470. "psr/cache-implementation": "To cache results",
  8471. "symfony/doctrine-bridge": "To use Doctrine metadata",
  8472. "symfony/serializer": "To use Serializer metadata"
  8473. },
  8474. "type": "library",
  8475. "autoload": {
  8476. "psr-4": {
  8477. "Symfony\\Component\\PropertyInfo\\": ""
  8478. },
  8479. "exclude-from-classmap": [
  8480. "/Tests/"
  8481. ]
  8482. },
  8483. "notification-url": "https://packagist.org/downloads/",
  8484. "license": [
  8485. "MIT"
  8486. ],
  8487. "authors": [
  8488. {
  8489. "name": "Kévin Dunglas",
  8490. "email": "dunglas@gmail.com"
  8491. },
  8492. {
  8493. "name": "Symfony Community",
  8494. "homepage": "https://symfony.com/contributors"
  8495. }
  8496. ],
  8497. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  8498. "homepage": "https://symfony.com",
  8499. "keywords": [
  8500. "doctrine",
  8501. "phpdoc",
  8502. "property",
  8503. "symfony",
  8504. "type",
  8505. "validator"
  8506. ],
  8507. "support": {
  8508. "source": "https://github.com/symfony/property-info/tree/v5.4.21"
  8509. },
  8510. "funding": [
  8511. {
  8512. "url": "https://symfony.com/sponsor",
  8513. "type": "custom"
  8514. },
  8515. {
  8516. "url": "https://github.com/fabpot",
  8517. "type": "github"
  8518. },
  8519. {
  8520. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8521. "type": "tidelift"
  8522. }
  8523. ],
  8524. "time": "2023-02-16T09:33:00+00:00"
  8525. },
  8526. {
  8527. "name": "symfony/psr-http-message-bridge",
  8528. "version": "v2.1.3",
  8529. "source": {
  8530. "type": "git",
  8531. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8532. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840"
  8533. },
  8534. "dist": {
  8535. "type": "zip",
  8536. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  8537. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  8538. "shasum": "",
  8539. "mirrors": [
  8540. {
  8541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8542. "preferred": true
  8543. }
  8544. ]
  8545. },
  8546. "require": {
  8547. "php": ">=7.1",
  8548. "psr/http-message": "^1.0",
  8549. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  8550. },
  8551. "require-dev": {
  8552. "nyholm/psr7": "^1.1",
  8553. "psr/log": "^1.1 || ^2 || ^3",
  8554. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  8555. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8556. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  8557. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8558. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8559. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  8560. },
  8561. "suggest": {
  8562. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8563. },
  8564. "type": "symfony-bridge",
  8565. "extra": {
  8566. "branch-alias": {
  8567. "dev-main": "2.1-dev"
  8568. }
  8569. },
  8570. "autoload": {
  8571. "psr-4": {
  8572. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8573. },
  8574. "exclude-from-classmap": [
  8575. "/Tests/"
  8576. ]
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Fabien Potencier",
  8585. "email": "fabien@symfony.com"
  8586. },
  8587. {
  8588. "name": "Symfony Community",
  8589. "homepage": "http://symfony.com/contributors"
  8590. }
  8591. ],
  8592. "description": "PSR HTTP message bridge",
  8593. "homepage": "http://symfony.com",
  8594. "keywords": [
  8595. "http",
  8596. "http-message",
  8597. "psr-17",
  8598. "psr-7"
  8599. ],
  8600. "support": {
  8601. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8602. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.3"
  8603. },
  8604. "funding": [
  8605. {
  8606. "url": "https://symfony.com/sponsor",
  8607. "type": "custom"
  8608. },
  8609. {
  8610. "url": "https://github.com/fabpot",
  8611. "type": "github"
  8612. },
  8613. {
  8614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8615. "type": "tidelift"
  8616. }
  8617. ],
  8618. "time": "2022-09-05T10:34:54+00:00"
  8619. },
  8620. {
  8621. "name": "symfony/routing",
  8622. "version": "v4.4.44",
  8623. "source": {
  8624. "type": "git",
  8625. "url": "https://github.com/symfony/routing.git",
  8626. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  8627. },
  8628. "dist": {
  8629. "type": "zip",
  8630. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  8631. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  8632. "shasum": "",
  8633. "mirrors": [
  8634. {
  8635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8636. "preferred": true
  8637. }
  8638. ]
  8639. },
  8640. "require": {
  8641. "php": ">=7.1.3",
  8642. "symfony/polyfill-php80": "^1.16"
  8643. },
  8644. "conflict": {
  8645. "symfony/config": "<4.2",
  8646. "symfony/dependency-injection": "<3.4",
  8647. "symfony/yaml": "<3.4"
  8648. },
  8649. "require-dev": {
  8650. "doctrine/annotations": "^1.10.4",
  8651. "psr/log": "^1|^2|^3",
  8652. "symfony/config": "^4.2|^5.0",
  8653. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8654. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8655. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8656. "symfony/yaml": "^3.4|^4.0|^5.0"
  8657. },
  8658. "suggest": {
  8659. "doctrine/annotations": "For using the annotation loader",
  8660. "symfony/config": "For using the all-in-one router or any loader",
  8661. "symfony/expression-language": "For using expression matching",
  8662. "symfony/http-foundation": "For using a Symfony Request object",
  8663. "symfony/yaml": "For using the YAML loader"
  8664. },
  8665. "type": "library",
  8666. "autoload": {
  8667. "psr-4": {
  8668. "Symfony\\Component\\Routing\\": ""
  8669. },
  8670. "exclude-from-classmap": [
  8671. "/Tests/"
  8672. ]
  8673. },
  8674. "notification-url": "https://packagist.org/downloads/",
  8675. "license": [
  8676. "MIT"
  8677. ],
  8678. "authors": [
  8679. {
  8680. "name": "Fabien Potencier",
  8681. "email": "fabien@symfony.com"
  8682. },
  8683. {
  8684. "name": "Symfony Community",
  8685. "homepage": "https://symfony.com/contributors"
  8686. }
  8687. ],
  8688. "description": "Maps an HTTP request to a set of configuration variables",
  8689. "homepage": "https://symfony.com",
  8690. "keywords": [
  8691. "router",
  8692. "routing",
  8693. "uri",
  8694. "url"
  8695. ],
  8696. "support": {
  8697. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  8698. },
  8699. "funding": [
  8700. {
  8701. "url": "https://symfony.com/sponsor",
  8702. "type": "custom"
  8703. },
  8704. {
  8705. "url": "https://github.com/fabpot",
  8706. "type": "github"
  8707. },
  8708. {
  8709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8710. "type": "tidelift"
  8711. }
  8712. ],
  8713. "time": "2022-07-20T09:59:04+00:00"
  8714. },
  8715. {
  8716. "name": "symfony/service-contracts",
  8717. "version": "v2.5.2",
  8718. "source": {
  8719. "type": "git",
  8720. "url": "https://github.com/symfony/service-contracts.git",
  8721. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  8722. },
  8723. "dist": {
  8724. "type": "zip",
  8725. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8726. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8727. "shasum": "",
  8728. "mirrors": [
  8729. {
  8730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8731. "preferred": true
  8732. }
  8733. ]
  8734. },
  8735. "require": {
  8736. "php": ">=7.2.5",
  8737. "psr/container": "^1.1",
  8738. "symfony/deprecation-contracts": "^2.1|^3"
  8739. },
  8740. "conflict": {
  8741. "ext-psr": "<1.1|>=2"
  8742. },
  8743. "suggest": {
  8744. "symfony/service-implementation": ""
  8745. },
  8746. "type": "library",
  8747. "extra": {
  8748. "branch-alias": {
  8749. "dev-main": "2.5-dev"
  8750. },
  8751. "thanks": {
  8752. "name": "symfony/contracts",
  8753. "url": "https://github.com/symfony/contracts"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "psr-4": {
  8758. "Symfony\\Contracts\\Service\\": ""
  8759. }
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "MIT"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Nicolas Grekas",
  8768. "email": "p@tchwork.com"
  8769. },
  8770. {
  8771. "name": "Symfony Community",
  8772. "homepage": "https://symfony.com/contributors"
  8773. }
  8774. ],
  8775. "description": "Generic abstractions related to writing services",
  8776. "homepage": "https://symfony.com",
  8777. "keywords": [
  8778. "abstractions",
  8779. "contracts",
  8780. "decoupling",
  8781. "interfaces",
  8782. "interoperability",
  8783. "standards"
  8784. ],
  8785. "support": {
  8786. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  8787. },
  8788. "funding": [
  8789. {
  8790. "url": "https://symfony.com/sponsor",
  8791. "type": "custom"
  8792. },
  8793. {
  8794. "url": "https://github.com/fabpot",
  8795. "type": "github"
  8796. },
  8797. {
  8798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8799. "type": "tidelift"
  8800. }
  8801. ],
  8802. "time": "2022-05-30T19:17:29+00:00"
  8803. },
  8804. {
  8805. "name": "symfony/string",
  8806. "version": "v5.4.21",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/symfony/string.git",
  8810. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/symfony/string/zipball/edac10d167b78b1d90f46a80320d632de0bd9f2f",
  8815. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f",
  8816. "shasum": "",
  8817. "mirrors": [
  8818. {
  8819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8820. "preferred": true
  8821. }
  8822. ]
  8823. },
  8824. "require": {
  8825. "php": ">=7.2.5",
  8826. "symfony/polyfill-ctype": "~1.8",
  8827. "symfony/polyfill-intl-grapheme": "~1.0",
  8828. "symfony/polyfill-intl-normalizer": "~1.0",
  8829. "symfony/polyfill-mbstring": "~1.0",
  8830. "symfony/polyfill-php80": "~1.15"
  8831. },
  8832. "conflict": {
  8833. "symfony/translation-contracts": ">=3.0"
  8834. },
  8835. "require-dev": {
  8836. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8837. "symfony/http-client": "^4.4|^5.0|^6.0",
  8838. "symfony/translation-contracts": "^1.1|^2",
  8839. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8840. },
  8841. "type": "library",
  8842. "autoload": {
  8843. "files": [
  8844. "Resources/functions.php"
  8845. ],
  8846. "psr-4": {
  8847. "Symfony\\Component\\String\\": ""
  8848. },
  8849. "exclude-from-classmap": [
  8850. "/Tests/"
  8851. ]
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Nicolas Grekas",
  8860. "email": "p@tchwork.com"
  8861. },
  8862. {
  8863. "name": "Symfony Community",
  8864. "homepage": "https://symfony.com/contributors"
  8865. }
  8866. ],
  8867. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8868. "homepage": "https://symfony.com",
  8869. "keywords": [
  8870. "grapheme",
  8871. "i18n",
  8872. "string",
  8873. "unicode",
  8874. "utf-8",
  8875. "utf8"
  8876. ],
  8877. "support": {
  8878. "source": "https://github.com/symfony/string/tree/v5.4.21"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://symfony.com/sponsor",
  8883. "type": "custom"
  8884. },
  8885. {
  8886. "url": "https://github.com/fabpot",
  8887. "type": "github"
  8888. },
  8889. {
  8890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8891. "type": "tidelift"
  8892. }
  8893. ],
  8894. "time": "2023-02-22T08:00:55+00:00"
  8895. },
  8896. {
  8897. "name": "symfony/translation",
  8898. "version": "v4.4.47",
  8899. "source": {
  8900. "type": "git",
  8901. "url": "https://github.com/symfony/translation.git",
  8902. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  8903. },
  8904. "dist": {
  8905. "type": "zip",
  8906. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  8907. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  8908. "shasum": "",
  8909. "mirrors": [
  8910. {
  8911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8912. "preferred": true
  8913. }
  8914. ]
  8915. },
  8916. "require": {
  8917. "php": ">=7.1.3",
  8918. "symfony/polyfill-mbstring": "~1.0",
  8919. "symfony/polyfill-php80": "^1.16",
  8920. "symfony/translation-contracts": "^1.1.6|^2"
  8921. },
  8922. "conflict": {
  8923. "symfony/config": "<3.4",
  8924. "symfony/dependency-injection": "<3.4",
  8925. "symfony/http-kernel": "<4.4",
  8926. "symfony/yaml": "<3.4"
  8927. },
  8928. "provide": {
  8929. "symfony/translation-implementation": "1.0|2.0"
  8930. },
  8931. "require-dev": {
  8932. "psr/log": "^1|^2|^3",
  8933. "symfony/config": "^3.4|^4.0|^5.0",
  8934. "symfony/console": "^3.4|^4.0|^5.0",
  8935. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8936. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  8937. "symfony/http-kernel": "^4.4",
  8938. "symfony/intl": "^3.4|^4.0|^5.0",
  8939. "symfony/service-contracts": "^1.1.2|^2",
  8940. "symfony/yaml": "^3.4|^4.0|^5.0"
  8941. },
  8942. "suggest": {
  8943. "psr/log-implementation": "To use logging capability in translator",
  8944. "symfony/config": "",
  8945. "symfony/yaml": ""
  8946. },
  8947. "type": "library",
  8948. "autoload": {
  8949. "psr-4": {
  8950. "Symfony\\Component\\Translation\\": ""
  8951. },
  8952. "exclude-from-classmap": [
  8953. "/Tests/"
  8954. ]
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "MIT"
  8959. ],
  8960. "authors": [
  8961. {
  8962. "name": "Fabien Potencier",
  8963. "email": "fabien@symfony.com"
  8964. },
  8965. {
  8966. "name": "Symfony Community",
  8967. "homepage": "https://symfony.com/contributors"
  8968. }
  8969. ],
  8970. "description": "Provides tools to internationalize your application",
  8971. "homepage": "https://symfony.com",
  8972. "support": {
  8973. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  8974. },
  8975. "funding": [
  8976. {
  8977. "url": "https://symfony.com/sponsor",
  8978. "type": "custom"
  8979. },
  8980. {
  8981. "url": "https://github.com/fabpot",
  8982. "type": "github"
  8983. },
  8984. {
  8985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8986. "type": "tidelift"
  8987. }
  8988. ],
  8989. "time": "2022-10-03T15:15:11+00:00"
  8990. },
  8991. {
  8992. "name": "symfony/translation-contracts",
  8993. "version": "v2.5.2",
  8994. "source": {
  8995. "type": "git",
  8996. "url": "https://github.com/symfony/translation-contracts.git",
  8997. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  8998. },
  8999. "dist": {
  9000. "type": "zip",
  9001. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  9002. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  9003. "shasum": "",
  9004. "mirrors": [
  9005. {
  9006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9007. "preferred": true
  9008. }
  9009. ]
  9010. },
  9011. "require": {
  9012. "php": ">=7.2.5"
  9013. },
  9014. "suggest": {
  9015. "symfony/translation-implementation": ""
  9016. },
  9017. "type": "library",
  9018. "extra": {
  9019. "branch-alias": {
  9020. "dev-main": "2.5-dev"
  9021. },
  9022. "thanks": {
  9023. "name": "symfony/contracts",
  9024. "url": "https://github.com/symfony/contracts"
  9025. }
  9026. },
  9027. "autoload": {
  9028. "psr-4": {
  9029. "Symfony\\Contracts\\Translation\\": ""
  9030. }
  9031. },
  9032. "notification-url": "https://packagist.org/downloads/",
  9033. "license": [
  9034. "MIT"
  9035. ],
  9036. "authors": [
  9037. {
  9038. "name": "Nicolas Grekas",
  9039. "email": "p@tchwork.com"
  9040. },
  9041. {
  9042. "name": "Symfony Community",
  9043. "homepage": "https://symfony.com/contributors"
  9044. }
  9045. ],
  9046. "description": "Generic abstractions related to translation",
  9047. "homepage": "https://symfony.com",
  9048. "keywords": [
  9049. "abstractions",
  9050. "contracts",
  9051. "decoupling",
  9052. "interfaces",
  9053. "interoperability",
  9054. "standards"
  9055. ],
  9056. "support": {
  9057. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  9058. },
  9059. "funding": [
  9060. {
  9061. "url": "https://symfony.com/sponsor",
  9062. "type": "custom"
  9063. },
  9064. {
  9065. "url": "https://github.com/fabpot",
  9066. "type": "github"
  9067. },
  9068. {
  9069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9070. "type": "tidelift"
  9071. }
  9072. ],
  9073. "time": "2022-06-27T16:58:25+00:00"
  9074. },
  9075. {
  9076. "name": "symfony/var-dumper",
  9077. "version": "v4.4.47",
  9078. "source": {
  9079. "type": "git",
  9080. "url": "https://github.com/symfony/var-dumper.git",
  9081. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9082. },
  9083. "dist": {
  9084. "type": "zip",
  9085. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9086. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9087. "shasum": "",
  9088. "mirrors": [
  9089. {
  9090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9091. "preferred": true
  9092. }
  9093. ]
  9094. },
  9095. "require": {
  9096. "php": ">=7.1.3",
  9097. "symfony/polyfill-mbstring": "~1.0",
  9098. "symfony/polyfill-php72": "~1.5",
  9099. "symfony/polyfill-php80": "^1.16"
  9100. },
  9101. "conflict": {
  9102. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9103. "symfony/console": "<3.4"
  9104. },
  9105. "require-dev": {
  9106. "ext-iconv": "*",
  9107. "symfony/console": "^3.4|^4.0|^5.0",
  9108. "symfony/process": "^4.4|^5.0",
  9109. "twig/twig": "^1.43|^2.13|^3.0.4"
  9110. },
  9111. "suggest": {
  9112. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9113. "ext-intl": "To show region name in time zone dump",
  9114. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9115. },
  9116. "bin": [
  9117. "Resources/bin/var-dump-server"
  9118. ],
  9119. "type": "library",
  9120. "autoload": {
  9121. "files": [
  9122. "Resources/functions/dump.php"
  9123. ],
  9124. "psr-4": {
  9125. "Symfony\\Component\\VarDumper\\": ""
  9126. },
  9127. "exclude-from-classmap": [
  9128. "/Tests/"
  9129. ]
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "MIT"
  9134. ],
  9135. "authors": [
  9136. {
  9137. "name": "Nicolas Grekas",
  9138. "email": "p@tchwork.com"
  9139. },
  9140. {
  9141. "name": "Symfony Community",
  9142. "homepage": "https://symfony.com/contributors"
  9143. }
  9144. ],
  9145. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9146. "homepage": "https://symfony.com",
  9147. "keywords": [
  9148. "debug",
  9149. "dump"
  9150. ],
  9151. "support": {
  9152. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9153. },
  9154. "funding": [
  9155. {
  9156. "url": "https://symfony.com/sponsor",
  9157. "type": "custom"
  9158. },
  9159. {
  9160. "url": "https://github.com/fabpot",
  9161. "type": "github"
  9162. },
  9163. {
  9164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9165. "type": "tidelift"
  9166. }
  9167. ],
  9168. "time": "2022-10-03T15:15:11+00:00"
  9169. },
  9170. {
  9171. "name": "symfony/var-exporter",
  9172. "version": "v5.4.21",
  9173. "source": {
  9174. "type": "git",
  9175. "url": "https://github.com/symfony/var-exporter.git",
  9176. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4"
  9177. },
  9178. "dist": {
  9179. "type": "zip",
  9180. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/be74908a6942fdd331554b3cec27ff41b45ccad4",
  9181. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4",
  9182. "shasum": "",
  9183. "mirrors": [
  9184. {
  9185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9186. "preferred": true
  9187. }
  9188. ]
  9189. },
  9190. "require": {
  9191. "php": ">=7.2.5",
  9192. "symfony/polyfill-php80": "^1.16"
  9193. },
  9194. "require-dev": {
  9195. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  9196. },
  9197. "type": "library",
  9198. "autoload": {
  9199. "psr-4": {
  9200. "Symfony\\Component\\VarExporter\\": ""
  9201. },
  9202. "exclude-from-classmap": [
  9203. "/Tests/"
  9204. ]
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Nicolas Grekas",
  9213. "email": "p@tchwork.com"
  9214. },
  9215. {
  9216. "name": "Symfony Community",
  9217. "homepage": "https://symfony.com/contributors"
  9218. }
  9219. ],
  9220. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9221. "homepage": "https://symfony.com",
  9222. "keywords": [
  9223. "clone",
  9224. "construct",
  9225. "export",
  9226. "hydrate",
  9227. "instantiate",
  9228. "serialize"
  9229. ],
  9230. "support": {
  9231. "source": "https://github.com/symfony/var-exporter/tree/v5.4.21"
  9232. },
  9233. "funding": [
  9234. {
  9235. "url": "https://symfony.com/sponsor",
  9236. "type": "custom"
  9237. },
  9238. {
  9239. "url": "https://github.com/fabpot",
  9240. "type": "github"
  9241. },
  9242. {
  9243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9244. "type": "tidelift"
  9245. }
  9246. ],
  9247. "time": "2023-02-21T19:46:44+00:00"
  9248. },
  9249. {
  9250. "name": "tencentcloud/tencentcloud-sdk-php",
  9251. "version": "3.0.841",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  9255. "reference": "2e1e3494880dce11de07c8aa691d1bac40d1a2cf"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/2e1e3494880dce11de07c8aa691d1bac40d1a2cf",
  9260. "reference": "2e1e3494880dce11de07c8aa691d1bac40d1a2cf",
  9261. "shasum": "",
  9262. "mirrors": [
  9263. {
  9264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9265. "preferred": true
  9266. }
  9267. ]
  9268. },
  9269. "require": {
  9270. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  9271. "php": ">=5.6.0"
  9272. },
  9273. "require-dev": {
  9274. "phpunit/phpunit": "^9.5"
  9275. },
  9276. "type": "library",
  9277. "autoload": {
  9278. "psr-4": {
  9279. "TencentCloud\\": "./src/TencentCloud"
  9280. },
  9281. "classmap": [
  9282. "src/QcloudApi/QcloudApi.php"
  9283. ]
  9284. },
  9285. "notification-url": "https://packagist.org/downloads/",
  9286. "license": [
  9287. "Apache-2.0"
  9288. ],
  9289. "authors": [
  9290. {
  9291. "name": "coolli",
  9292. "email": "tencentcloudapi@tencent.com",
  9293. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  9294. "role": "Developer"
  9295. }
  9296. ],
  9297. "description": "TencentCloudApi php sdk",
  9298. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  9299. "support": {
  9300. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  9301. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.841"
  9302. },
  9303. "time": "2023-03-10T02:05:06+00:00"
  9304. },
  9305. {
  9306. "name": "tymon/jwt-auth",
  9307. "version": "1.0.0-rc.5",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/tymondesigns/jwt-auth.git",
  9311. "reference": "103739700dc0358039a33b5bc91247570bb83529"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/103739700dc0358039a33b5bc91247570bb83529",
  9316. "reference": "103739700dc0358039a33b5bc91247570bb83529",
  9317. "shasum": "",
  9318. "mirrors": [
  9319. {
  9320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9321. "preferred": true
  9322. }
  9323. ]
  9324. },
  9325. "require": {
  9326. "illuminate/auth": "^5.1|^6",
  9327. "illuminate/contracts": "^5.1|^6",
  9328. "illuminate/http": "^5.1|^6",
  9329. "illuminate/support": "^5.1|^6",
  9330. "lcobucci/jwt": "^3.2",
  9331. "namshi/jose": "^7.0",
  9332. "nesbot/carbon": "^1.0|^2.0",
  9333. "php": "^5.5.9|^7.0"
  9334. },
  9335. "require-dev": {
  9336. "cartalyst/sentinel": "^2|^3",
  9337. "illuminate/console": "^5.1|^6",
  9338. "illuminate/database": "^5.1|^6",
  9339. "illuminate/routing": "^5.1|^6",
  9340. "mockery/mockery": ">=0.9.9",
  9341. "phpunit/phpunit": "~4.8|~6.0"
  9342. },
  9343. "type": "library",
  9344. "extra": {
  9345. "branch-alias": {
  9346. "dev-develop": "1.0-dev"
  9347. },
  9348. "laravel": {
  9349. "aliases": {
  9350. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  9351. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  9352. },
  9353. "providers": [
  9354. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  9355. ]
  9356. }
  9357. },
  9358. "autoload": {
  9359. "psr-4": {
  9360. "Tymon\\JWTAuth\\": "src/"
  9361. }
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "MIT"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Sean Tymon",
  9370. "email": "tymon148@gmail.com",
  9371. "homepage": "https://tymon.xyz",
  9372. "role": "Developer"
  9373. }
  9374. ],
  9375. "description": "JSON Web Token Authentication for Laravel and Lumen",
  9376. "homepage": "https://github.com/tymondesigns/jwt-auth",
  9377. "keywords": [
  9378. "Authentication",
  9379. "JSON Web Token",
  9380. "auth",
  9381. "jwt",
  9382. "laravel"
  9383. ],
  9384. "support": {
  9385. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  9386. "source": "https://github.com/tymondesigns/jwt-auth"
  9387. },
  9388. "time": "2019-09-09T03:33:47+00:00"
  9389. },
  9390. {
  9391. "name": "vlucas/phpdotenv",
  9392. "version": "v3.6.10",
  9393. "source": {
  9394. "type": "git",
  9395. "url": "https://github.com/vlucas/phpdotenv.git",
  9396. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e"
  9397. },
  9398. "dist": {
  9399. "type": "zip",
  9400. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5b547cdb25825f10251370f57ba5d9d924e6f68e",
  9401. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  9402. "shasum": "",
  9403. "mirrors": [
  9404. {
  9405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9406. "preferred": true
  9407. }
  9408. ]
  9409. },
  9410. "require": {
  9411. "php": "^5.4 || ^7.0 || ^8.0",
  9412. "phpoption/phpoption": "^1.5.2",
  9413. "symfony/polyfill-ctype": "^1.17"
  9414. },
  9415. "require-dev": {
  9416. "ext-filter": "*",
  9417. "ext-pcre": "*",
  9418. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  9419. },
  9420. "suggest": {
  9421. "ext-filter": "Required to use the boolean validator.",
  9422. "ext-pcre": "Required to use most of the library."
  9423. },
  9424. "type": "library",
  9425. "extra": {
  9426. "branch-alias": {
  9427. "dev-master": "3.6-dev"
  9428. }
  9429. },
  9430. "autoload": {
  9431. "psr-4": {
  9432. "Dotenv\\": "src/"
  9433. }
  9434. },
  9435. "notification-url": "https://packagist.org/downloads/",
  9436. "license": [
  9437. "BSD-3-Clause"
  9438. ],
  9439. "authors": [
  9440. {
  9441. "name": "Graham Campbell",
  9442. "email": "hello@gjcampbell.co.uk",
  9443. "homepage": "https://github.com/GrahamCampbell"
  9444. },
  9445. {
  9446. "name": "Vance Lucas",
  9447. "email": "vance@vancelucas.com",
  9448. "homepage": "https://github.com/vlucas"
  9449. }
  9450. ],
  9451. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9452. "keywords": [
  9453. "dotenv",
  9454. "env",
  9455. "environment"
  9456. ],
  9457. "support": {
  9458. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9459. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.10"
  9460. },
  9461. "funding": [
  9462. {
  9463. "url": "https://github.com/GrahamCampbell",
  9464. "type": "github"
  9465. },
  9466. {
  9467. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9468. "type": "tidelift"
  9469. }
  9470. ],
  9471. "time": "2021-12-12T23:02:06+00:00"
  9472. },
  9473. {
  9474. "name": "webmozart/assert",
  9475. "version": "1.11.0",
  9476. "source": {
  9477. "type": "git",
  9478. "url": "https://github.com/webmozarts/assert.git",
  9479. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9480. },
  9481. "dist": {
  9482. "type": "zip",
  9483. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9484. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9485. "shasum": "",
  9486. "mirrors": [
  9487. {
  9488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9489. "preferred": true
  9490. }
  9491. ]
  9492. },
  9493. "require": {
  9494. "ext-ctype": "*",
  9495. "php": "^7.2 || ^8.0"
  9496. },
  9497. "conflict": {
  9498. "phpstan/phpstan": "<0.12.20",
  9499. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9500. },
  9501. "require-dev": {
  9502. "phpunit/phpunit": "^8.5.13"
  9503. },
  9504. "type": "library",
  9505. "extra": {
  9506. "branch-alias": {
  9507. "dev-master": "1.10-dev"
  9508. }
  9509. },
  9510. "autoload": {
  9511. "psr-4": {
  9512. "Webmozart\\Assert\\": "src/"
  9513. }
  9514. },
  9515. "notification-url": "https://packagist.org/downloads/",
  9516. "license": [
  9517. "MIT"
  9518. ],
  9519. "authors": [
  9520. {
  9521. "name": "Bernhard Schussek",
  9522. "email": "bschussek@gmail.com"
  9523. }
  9524. ],
  9525. "description": "Assertions to validate method input/output with nice error messages.",
  9526. "keywords": [
  9527. "assert",
  9528. "check",
  9529. "validate"
  9530. ],
  9531. "support": {
  9532. "issues": "https://github.com/webmozarts/assert/issues",
  9533. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9534. },
  9535. "time": "2022-06-03T18:03:27+00:00"
  9536. },
  9537. {
  9538. "name": "wubuwei/php-apple-signin",
  9539. "version": "2.0.1",
  9540. "source": {
  9541. "type": "git",
  9542. "url": "https://github.com/wubuwei/php-apple-signin.git",
  9543. "reference": "5d0e75b30f78179ed63fda3f527195ac8b404458"
  9544. },
  9545. "dist": {
  9546. "type": "zip",
  9547. "url": "https://api.github.com/repos/wubuwei/php-apple-signin/zipball/5d0e75b30f78179ed63fda3f527195ac8b404458",
  9548. "reference": "5d0e75b30f78179ed63fda3f527195ac8b404458",
  9549. "shasum": "",
  9550. "mirrors": [
  9551. {
  9552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9553. "preferred": true
  9554. }
  9555. ]
  9556. },
  9557. "type": "library",
  9558. "autoload": {
  9559. "psr-4": {
  9560. "AppleSignIn\\": ""
  9561. }
  9562. },
  9563. "notification-url": "https://packagist.org/downloads/",
  9564. "license": [
  9565. "MIT"
  9566. ],
  9567. "authors": [
  9568. {
  9569. "name": "wubuwei",
  9570. "email": "wubuwei.dev@gmail.com",
  9571. "role": "Developer"
  9572. }
  9573. ],
  9574. "description": "A simple library to decode and parse Apple Sign In client tokens.",
  9575. "keywords": [
  9576. "JWK",
  9577. "apple",
  9578. "in",
  9579. "ios",
  9580. "jwt",
  9581. "php",
  9582. "sign"
  9583. ],
  9584. "support": {
  9585. "source": "https://github.com/wubuwei/php-apple-signin/tree/master"
  9586. },
  9587. "time": "2020-04-24T10:09:03+00:00"
  9588. }
  9589. ],
  9590. "packages-dev": [
  9591. {
  9592. "name": "doctrine/instantiator",
  9593. "version": "1.5.0",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/doctrine/instantiator.git",
  9597. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9602. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9603. "shasum": "",
  9604. "mirrors": [
  9605. {
  9606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9607. "preferred": true
  9608. }
  9609. ]
  9610. },
  9611. "require": {
  9612. "php": "^7.1 || ^8.0"
  9613. },
  9614. "require-dev": {
  9615. "doctrine/coding-standard": "^9 || ^11",
  9616. "ext-pdo": "*",
  9617. "ext-phar": "*",
  9618. "phpbench/phpbench": "^0.16 || ^1",
  9619. "phpstan/phpstan": "^1.4",
  9620. "phpstan/phpstan-phpunit": "^1",
  9621. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9622. "vimeo/psalm": "^4.30 || ^5.4"
  9623. },
  9624. "type": "library",
  9625. "autoload": {
  9626. "psr-4": {
  9627. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9628. }
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "MIT"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Marco Pivetta",
  9637. "email": "ocramius@gmail.com",
  9638. "homepage": "https://ocramius.github.io/"
  9639. }
  9640. ],
  9641. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9642. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9643. "keywords": [
  9644. "constructor",
  9645. "instantiate"
  9646. ],
  9647. "support": {
  9648. "issues": "https://github.com/doctrine/instantiator/issues",
  9649. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9650. },
  9651. "funding": [
  9652. {
  9653. "url": "https://www.doctrine-project.org/sponsorship.html",
  9654. "type": "custom"
  9655. },
  9656. {
  9657. "url": "https://www.patreon.com/phpdoctrine",
  9658. "type": "patreon"
  9659. },
  9660. {
  9661. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9662. "type": "tidelift"
  9663. }
  9664. ],
  9665. "time": "2022-12-30T00:15:36+00:00"
  9666. },
  9667. {
  9668. "name": "fzaninotto/faker",
  9669. "version": "v1.9.2",
  9670. "source": {
  9671. "type": "git",
  9672. "url": "https://github.com/fzaninotto/Faker.git",
  9673. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  9674. },
  9675. "dist": {
  9676. "type": "zip",
  9677. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9678. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9679. "shasum": "",
  9680. "mirrors": [
  9681. {
  9682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9683. "preferred": true
  9684. }
  9685. ]
  9686. },
  9687. "require": {
  9688. "php": "^5.3.3 || ^7.0"
  9689. },
  9690. "require-dev": {
  9691. "ext-intl": "*",
  9692. "phpunit/phpunit": "^4.8.35 || ^5.7",
  9693. "squizlabs/php_codesniffer": "^2.9.2"
  9694. },
  9695. "type": "library",
  9696. "extra": {
  9697. "branch-alias": {
  9698. "dev-master": "1.9-dev"
  9699. }
  9700. },
  9701. "autoload": {
  9702. "psr-4": {
  9703. "Faker\\": "src/Faker/"
  9704. }
  9705. },
  9706. "notification-url": "https://packagist.org/downloads/",
  9707. "license": [
  9708. "MIT"
  9709. ],
  9710. "authors": [
  9711. {
  9712. "name": "François Zaninotto"
  9713. }
  9714. ],
  9715. "description": "Faker is a PHP library that generates fake data for you.",
  9716. "keywords": [
  9717. "data",
  9718. "faker",
  9719. "fixtures"
  9720. ],
  9721. "support": {
  9722. "issues": "https://github.com/fzaninotto/Faker/issues",
  9723. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  9724. },
  9725. "abandoned": true,
  9726. "time": "2020-12-11T09:56:16+00:00"
  9727. },
  9728. {
  9729. "name": "hamcrest/hamcrest-php",
  9730. "version": "v2.0.1",
  9731. "source": {
  9732. "type": "git",
  9733. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9734. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9735. },
  9736. "dist": {
  9737. "type": "zip",
  9738. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9739. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9740. "shasum": "",
  9741. "mirrors": [
  9742. {
  9743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9744. "preferred": true
  9745. }
  9746. ]
  9747. },
  9748. "require": {
  9749. "php": "^5.3|^7.0|^8.0"
  9750. },
  9751. "replace": {
  9752. "cordoval/hamcrest-php": "*",
  9753. "davedevelopment/hamcrest-php": "*",
  9754. "kodova/hamcrest-php": "*"
  9755. },
  9756. "require-dev": {
  9757. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9758. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9759. },
  9760. "type": "library",
  9761. "extra": {
  9762. "branch-alias": {
  9763. "dev-master": "2.1-dev"
  9764. }
  9765. },
  9766. "autoload": {
  9767. "classmap": [
  9768. "hamcrest"
  9769. ]
  9770. },
  9771. "notification-url": "https://packagist.org/downloads/",
  9772. "license": [
  9773. "BSD-3-Clause"
  9774. ],
  9775. "description": "This is the PHP port of Hamcrest Matchers",
  9776. "keywords": [
  9777. "test"
  9778. ],
  9779. "support": {
  9780. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9781. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9782. },
  9783. "time": "2020-07-09T08:09:16+00:00"
  9784. },
  9785. {
  9786. "name": "mockery/mockery",
  9787. "version": "1.5.1",
  9788. "source": {
  9789. "type": "git",
  9790. "url": "https://github.com/mockery/mockery.git",
  9791. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  9792. },
  9793. "dist": {
  9794. "type": "zip",
  9795. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  9796. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  9797. "shasum": "",
  9798. "mirrors": [
  9799. {
  9800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9801. "preferred": true
  9802. }
  9803. ]
  9804. },
  9805. "require": {
  9806. "hamcrest/hamcrest-php": "^2.0.1",
  9807. "lib-pcre": ">=7.0",
  9808. "php": "^7.3 || ^8.0"
  9809. },
  9810. "conflict": {
  9811. "phpunit/phpunit": "<8.0"
  9812. },
  9813. "require-dev": {
  9814. "phpunit/phpunit": "^8.5 || ^9.3"
  9815. },
  9816. "type": "library",
  9817. "extra": {
  9818. "branch-alias": {
  9819. "dev-master": "1.4.x-dev"
  9820. }
  9821. },
  9822. "autoload": {
  9823. "psr-0": {
  9824. "Mockery": "library/"
  9825. }
  9826. },
  9827. "notification-url": "https://packagist.org/downloads/",
  9828. "license": [
  9829. "BSD-3-Clause"
  9830. ],
  9831. "authors": [
  9832. {
  9833. "name": "Pádraic Brady",
  9834. "email": "padraic.brady@gmail.com",
  9835. "homepage": "http://blog.astrumfutura.com"
  9836. },
  9837. {
  9838. "name": "Dave Marshall",
  9839. "email": "dave.marshall@atstsolutions.co.uk",
  9840. "homepage": "http://davedevelopment.co.uk"
  9841. }
  9842. ],
  9843. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9844. "homepage": "https://github.com/mockery/mockery",
  9845. "keywords": [
  9846. "BDD",
  9847. "TDD",
  9848. "library",
  9849. "mock",
  9850. "mock objects",
  9851. "mockery",
  9852. "stub",
  9853. "test",
  9854. "test double",
  9855. "testing"
  9856. ],
  9857. "support": {
  9858. "issues": "https://github.com/mockery/mockery/issues",
  9859. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  9860. },
  9861. "time": "2022-09-07T15:32:08+00:00"
  9862. },
  9863. {
  9864. "name": "myclabs/deep-copy",
  9865. "version": "1.11.1",
  9866. "source": {
  9867. "type": "git",
  9868. "url": "https://github.com/myclabs/DeepCopy.git",
  9869. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9870. },
  9871. "dist": {
  9872. "type": "zip",
  9873. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9874. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9875. "shasum": "",
  9876. "mirrors": [
  9877. {
  9878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9879. "preferred": true
  9880. }
  9881. ]
  9882. },
  9883. "require": {
  9884. "php": "^7.1 || ^8.0"
  9885. },
  9886. "conflict": {
  9887. "doctrine/collections": "<1.6.8",
  9888. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9889. },
  9890. "require-dev": {
  9891. "doctrine/collections": "^1.6.8",
  9892. "doctrine/common": "^2.13.3 || ^3.2.2",
  9893. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9894. },
  9895. "type": "library",
  9896. "autoload": {
  9897. "files": [
  9898. "src/DeepCopy/deep_copy.php"
  9899. ],
  9900. "psr-4": {
  9901. "DeepCopy\\": "src/DeepCopy/"
  9902. }
  9903. },
  9904. "notification-url": "https://packagist.org/downloads/",
  9905. "license": [
  9906. "MIT"
  9907. ],
  9908. "description": "Create deep copies (clones) of your objects",
  9909. "keywords": [
  9910. "clone",
  9911. "copy",
  9912. "duplicate",
  9913. "object",
  9914. "object graph"
  9915. ],
  9916. "support": {
  9917. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9918. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9923. "type": "tidelift"
  9924. }
  9925. ],
  9926. "time": "2023-03-08T13:26:56+00:00"
  9927. },
  9928. {
  9929. "name": "phar-io/manifest",
  9930. "version": "2.0.3",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/phar-io/manifest.git",
  9934. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9939. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9940. "shasum": "",
  9941. "mirrors": [
  9942. {
  9943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9944. "preferred": true
  9945. }
  9946. ]
  9947. },
  9948. "require": {
  9949. "ext-dom": "*",
  9950. "ext-phar": "*",
  9951. "ext-xmlwriter": "*",
  9952. "phar-io/version": "^3.0.1",
  9953. "php": "^7.2 || ^8.0"
  9954. },
  9955. "type": "library",
  9956. "extra": {
  9957. "branch-alias": {
  9958. "dev-master": "2.0.x-dev"
  9959. }
  9960. },
  9961. "autoload": {
  9962. "classmap": [
  9963. "src/"
  9964. ]
  9965. },
  9966. "notification-url": "https://packagist.org/downloads/",
  9967. "license": [
  9968. "BSD-3-Clause"
  9969. ],
  9970. "authors": [
  9971. {
  9972. "name": "Arne Blankerts",
  9973. "email": "arne@blankerts.de",
  9974. "role": "Developer"
  9975. },
  9976. {
  9977. "name": "Sebastian Heuer",
  9978. "email": "sebastian@phpeople.de",
  9979. "role": "Developer"
  9980. },
  9981. {
  9982. "name": "Sebastian Bergmann",
  9983. "email": "sebastian@phpunit.de",
  9984. "role": "Developer"
  9985. }
  9986. ],
  9987. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9988. "support": {
  9989. "issues": "https://github.com/phar-io/manifest/issues",
  9990. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9991. },
  9992. "time": "2021-07-20T11:28:43+00:00"
  9993. },
  9994. {
  9995. "name": "phar-io/version",
  9996. "version": "3.2.1",
  9997. "source": {
  9998. "type": "git",
  9999. "url": "https://github.com/phar-io/version.git",
  10000. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10001. },
  10002. "dist": {
  10003. "type": "zip",
  10004. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10005. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10006. "shasum": "",
  10007. "mirrors": [
  10008. {
  10009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10010. "preferred": true
  10011. }
  10012. ]
  10013. },
  10014. "require": {
  10015. "php": "^7.2 || ^8.0"
  10016. },
  10017. "type": "library",
  10018. "autoload": {
  10019. "classmap": [
  10020. "src/"
  10021. ]
  10022. },
  10023. "notification-url": "https://packagist.org/downloads/",
  10024. "license": [
  10025. "BSD-3-Clause"
  10026. ],
  10027. "authors": [
  10028. {
  10029. "name": "Arne Blankerts",
  10030. "email": "arne@blankerts.de",
  10031. "role": "Developer"
  10032. },
  10033. {
  10034. "name": "Sebastian Heuer",
  10035. "email": "sebastian@phpeople.de",
  10036. "role": "Developer"
  10037. },
  10038. {
  10039. "name": "Sebastian Bergmann",
  10040. "email": "sebastian@phpunit.de",
  10041. "role": "Developer"
  10042. }
  10043. ],
  10044. "description": "Library for handling version information and constraints",
  10045. "support": {
  10046. "issues": "https://github.com/phar-io/version/issues",
  10047. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10048. },
  10049. "time": "2022-02-21T01:04:05+00:00"
  10050. },
  10051. {
  10052. "name": "phpunit/php-code-coverage",
  10053. "version": "7.0.15",
  10054. "source": {
  10055. "type": "git",
  10056. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10057. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  10058. },
  10059. "dist": {
  10060. "type": "zip",
  10061. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  10062. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  10063. "shasum": "",
  10064. "mirrors": [
  10065. {
  10066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10067. "preferred": true
  10068. }
  10069. ]
  10070. },
  10071. "require": {
  10072. "ext-dom": "*",
  10073. "ext-xmlwriter": "*",
  10074. "php": ">=7.2",
  10075. "phpunit/php-file-iterator": "^2.0.2",
  10076. "phpunit/php-text-template": "^1.2.1",
  10077. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  10078. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  10079. "sebastian/environment": "^4.2.2",
  10080. "sebastian/version": "^2.0.1",
  10081. "theseer/tokenizer": "^1.1.3"
  10082. },
  10083. "require-dev": {
  10084. "phpunit/phpunit": "^8.2.2"
  10085. },
  10086. "suggest": {
  10087. "ext-xdebug": "^2.7.2"
  10088. },
  10089. "type": "library",
  10090. "extra": {
  10091. "branch-alias": {
  10092. "dev-master": "7.0-dev"
  10093. }
  10094. },
  10095. "autoload": {
  10096. "classmap": [
  10097. "src/"
  10098. ]
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "BSD-3-Clause"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Sebastian Bergmann",
  10107. "email": "sebastian@phpunit.de",
  10108. "role": "lead"
  10109. }
  10110. ],
  10111. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10112. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10113. "keywords": [
  10114. "coverage",
  10115. "testing",
  10116. "xunit"
  10117. ],
  10118. "support": {
  10119. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10120. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  10121. },
  10122. "funding": [
  10123. {
  10124. "url": "https://github.com/sebastianbergmann",
  10125. "type": "github"
  10126. }
  10127. ],
  10128. "time": "2021-07-26T12:20:09+00:00"
  10129. },
  10130. {
  10131. "name": "phpunit/php-file-iterator",
  10132. "version": "2.0.5",
  10133. "source": {
  10134. "type": "git",
  10135. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10136. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  10137. },
  10138. "dist": {
  10139. "type": "zip",
  10140. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  10141. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  10142. "shasum": "",
  10143. "mirrors": [
  10144. {
  10145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10146. "preferred": true
  10147. }
  10148. ]
  10149. },
  10150. "require": {
  10151. "php": ">=7.1"
  10152. },
  10153. "require-dev": {
  10154. "phpunit/phpunit": "^8.5"
  10155. },
  10156. "type": "library",
  10157. "extra": {
  10158. "branch-alias": {
  10159. "dev-master": "2.0.x-dev"
  10160. }
  10161. },
  10162. "autoload": {
  10163. "classmap": [
  10164. "src/"
  10165. ]
  10166. },
  10167. "notification-url": "https://packagist.org/downloads/",
  10168. "license": [
  10169. "BSD-3-Clause"
  10170. ],
  10171. "authors": [
  10172. {
  10173. "name": "Sebastian Bergmann",
  10174. "email": "sebastian@phpunit.de",
  10175. "role": "lead"
  10176. }
  10177. ],
  10178. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10179. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10180. "keywords": [
  10181. "filesystem",
  10182. "iterator"
  10183. ],
  10184. "support": {
  10185. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10186. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  10187. },
  10188. "funding": [
  10189. {
  10190. "url": "https://github.com/sebastianbergmann",
  10191. "type": "github"
  10192. }
  10193. ],
  10194. "time": "2021-12-02T12:42:26+00:00"
  10195. },
  10196. {
  10197. "name": "phpunit/php-text-template",
  10198. "version": "1.2.1",
  10199. "source": {
  10200. "type": "git",
  10201. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10202. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10203. },
  10204. "dist": {
  10205. "type": "zip",
  10206. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10207. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10208. "shasum": "",
  10209. "mirrors": [
  10210. {
  10211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10212. "preferred": true
  10213. }
  10214. ]
  10215. },
  10216. "require": {
  10217. "php": ">=5.3.3"
  10218. },
  10219. "type": "library",
  10220. "autoload": {
  10221. "classmap": [
  10222. "src/"
  10223. ]
  10224. },
  10225. "notification-url": "https://packagist.org/downloads/",
  10226. "license": [
  10227. "BSD-3-Clause"
  10228. ],
  10229. "authors": [
  10230. {
  10231. "name": "Sebastian Bergmann",
  10232. "email": "sebastian@phpunit.de",
  10233. "role": "lead"
  10234. }
  10235. ],
  10236. "description": "Simple template engine.",
  10237. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10238. "keywords": [
  10239. "template"
  10240. ],
  10241. "support": {
  10242. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10243. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  10244. },
  10245. "time": "2015-06-21T13:50:34+00:00"
  10246. },
  10247. {
  10248. "name": "phpunit/php-timer",
  10249. "version": "2.1.3",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10253. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  10258. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  10259. "shasum": "",
  10260. "mirrors": [
  10261. {
  10262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10263. "preferred": true
  10264. }
  10265. ]
  10266. },
  10267. "require": {
  10268. "php": ">=7.1"
  10269. },
  10270. "require-dev": {
  10271. "phpunit/phpunit": "^8.5"
  10272. },
  10273. "type": "library",
  10274. "extra": {
  10275. "branch-alias": {
  10276. "dev-master": "2.1-dev"
  10277. }
  10278. },
  10279. "autoload": {
  10280. "classmap": [
  10281. "src/"
  10282. ]
  10283. },
  10284. "notification-url": "https://packagist.org/downloads/",
  10285. "license": [
  10286. "BSD-3-Clause"
  10287. ],
  10288. "authors": [
  10289. {
  10290. "name": "Sebastian Bergmann",
  10291. "email": "sebastian@phpunit.de",
  10292. "role": "lead"
  10293. }
  10294. ],
  10295. "description": "Utility class for timing",
  10296. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10297. "keywords": [
  10298. "timer"
  10299. ],
  10300. "support": {
  10301. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10302. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  10303. },
  10304. "funding": [
  10305. {
  10306. "url": "https://github.com/sebastianbergmann",
  10307. "type": "github"
  10308. }
  10309. ],
  10310. "time": "2020-11-30T08:20:02+00:00"
  10311. },
  10312. {
  10313. "name": "phpunit/php-token-stream",
  10314. "version": "4.0.4",
  10315. "source": {
  10316. "type": "git",
  10317. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10318. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  10319. },
  10320. "dist": {
  10321. "type": "zip",
  10322. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  10323. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  10324. "shasum": "",
  10325. "mirrors": [
  10326. {
  10327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10328. "preferred": true
  10329. }
  10330. ]
  10331. },
  10332. "require": {
  10333. "ext-tokenizer": "*",
  10334. "php": "^7.3 || ^8.0"
  10335. },
  10336. "require-dev": {
  10337. "phpunit/phpunit": "^9.0"
  10338. },
  10339. "type": "library",
  10340. "extra": {
  10341. "branch-alias": {
  10342. "dev-master": "4.0-dev"
  10343. }
  10344. },
  10345. "autoload": {
  10346. "classmap": [
  10347. "src/"
  10348. ]
  10349. },
  10350. "notification-url": "https://packagist.org/downloads/",
  10351. "license": [
  10352. "BSD-3-Clause"
  10353. ],
  10354. "authors": [
  10355. {
  10356. "name": "Sebastian Bergmann",
  10357. "email": "sebastian@phpunit.de"
  10358. }
  10359. ],
  10360. "description": "Wrapper around PHP's tokenizer extension.",
  10361. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10362. "keywords": [
  10363. "tokenizer"
  10364. ],
  10365. "support": {
  10366. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  10367. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  10368. },
  10369. "funding": [
  10370. {
  10371. "url": "https://github.com/sebastianbergmann",
  10372. "type": "github"
  10373. }
  10374. ],
  10375. "abandoned": true,
  10376. "time": "2020-08-04T08:28:15+00:00"
  10377. },
  10378. {
  10379. "name": "phpunit/phpunit",
  10380. "version": "8.5.33",
  10381. "source": {
  10382. "type": "git",
  10383. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10384. "reference": "7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e"
  10385. },
  10386. "dist": {
  10387. "type": "zip",
  10388. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e",
  10389. "reference": "7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e",
  10390. "shasum": "",
  10391. "mirrors": [
  10392. {
  10393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10394. "preferred": true
  10395. }
  10396. ]
  10397. },
  10398. "require": {
  10399. "doctrine/instantiator": "^1.3.1",
  10400. "ext-dom": "*",
  10401. "ext-json": "*",
  10402. "ext-libxml": "*",
  10403. "ext-mbstring": "*",
  10404. "ext-xml": "*",
  10405. "ext-xmlwriter": "*",
  10406. "myclabs/deep-copy": "^1.10.0",
  10407. "phar-io/manifest": "^2.0.3",
  10408. "phar-io/version": "^3.0.2",
  10409. "php": ">=7.2",
  10410. "phpunit/php-code-coverage": "^7.0.12",
  10411. "phpunit/php-file-iterator": "^2.0.4",
  10412. "phpunit/php-text-template": "^1.2.1",
  10413. "phpunit/php-timer": "^2.1.2",
  10414. "sebastian/comparator": "^3.0.5",
  10415. "sebastian/diff": "^3.0.2",
  10416. "sebastian/environment": "^4.2.3",
  10417. "sebastian/exporter": "^3.1.5",
  10418. "sebastian/global-state": "^3.0.0",
  10419. "sebastian/object-enumerator": "^3.0.3",
  10420. "sebastian/resource-operations": "^2.0.1",
  10421. "sebastian/type": "^1.1.3",
  10422. "sebastian/version": "^2.0.1"
  10423. },
  10424. "suggest": {
  10425. "ext-soap": "*",
  10426. "ext-xdebug": "*",
  10427. "phpunit/php-invoker": "^2.0.0"
  10428. },
  10429. "bin": [
  10430. "phpunit"
  10431. ],
  10432. "type": "library",
  10433. "extra": {
  10434. "branch-alias": {
  10435. "dev-master": "8.5-dev"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "classmap": [
  10440. "src/"
  10441. ]
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "BSD-3-Clause"
  10446. ],
  10447. "authors": [
  10448. {
  10449. "name": "Sebastian Bergmann",
  10450. "email": "sebastian@phpunit.de",
  10451. "role": "lead"
  10452. }
  10453. ],
  10454. "description": "The PHP Unit Testing framework.",
  10455. "homepage": "https://phpunit.de/",
  10456. "keywords": [
  10457. "phpunit",
  10458. "testing",
  10459. "xunit"
  10460. ],
  10461. "support": {
  10462. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10463. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.33"
  10464. },
  10465. "funding": [
  10466. {
  10467. "url": "https://phpunit.de/sponsors.html",
  10468. "type": "custom"
  10469. },
  10470. {
  10471. "url": "https://github.com/sebastianbergmann",
  10472. "type": "github"
  10473. },
  10474. {
  10475. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10476. "type": "tidelift"
  10477. }
  10478. ],
  10479. "time": "2023-02-27T13:04:50+00:00"
  10480. },
  10481. {
  10482. "name": "sebastian/code-unit-reverse-lookup",
  10483. "version": "1.0.2",
  10484. "source": {
  10485. "type": "git",
  10486. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10487. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  10488. },
  10489. "dist": {
  10490. "type": "zip",
  10491. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  10492. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  10493. "shasum": "",
  10494. "mirrors": [
  10495. {
  10496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10497. "preferred": true
  10498. }
  10499. ]
  10500. },
  10501. "require": {
  10502. "php": ">=5.6"
  10503. },
  10504. "require-dev": {
  10505. "phpunit/phpunit": "^8.5"
  10506. },
  10507. "type": "library",
  10508. "extra": {
  10509. "branch-alias": {
  10510. "dev-master": "1.0.x-dev"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "classmap": [
  10515. "src/"
  10516. ]
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "BSD-3-Clause"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Sebastian Bergmann",
  10525. "email": "sebastian@phpunit.de"
  10526. }
  10527. ],
  10528. "description": "Looks up which function or method a line of code belongs to",
  10529. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10530. "support": {
  10531. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10532. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  10533. },
  10534. "funding": [
  10535. {
  10536. "url": "https://github.com/sebastianbergmann",
  10537. "type": "github"
  10538. }
  10539. ],
  10540. "time": "2020-11-30T08:15:22+00:00"
  10541. },
  10542. {
  10543. "name": "sebastian/comparator",
  10544. "version": "3.0.5",
  10545. "source": {
  10546. "type": "git",
  10547. "url": "https://github.com/sebastianbergmann/comparator.git",
  10548. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770"
  10549. },
  10550. "dist": {
  10551. "type": "zip",
  10552. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  10553. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  10554. "shasum": "",
  10555. "mirrors": [
  10556. {
  10557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10558. "preferred": true
  10559. }
  10560. ]
  10561. },
  10562. "require": {
  10563. "php": ">=7.1",
  10564. "sebastian/diff": "^3.0",
  10565. "sebastian/exporter": "^3.1"
  10566. },
  10567. "require-dev": {
  10568. "phpunit/phpunit": "^8.5"
  10569. },
  10570. "type": "library",
  10571. "extra": {
  10572. "branch-alias": {
  10573. "dev-master": "3.0-dev"
  10574. }
  10575. },
  10576. "autoload": {
  10577. "classmap": [
  10578. "src/"
  10579. ]
  10580. },
  10581. "notification-url": "https://packagist.org/downloads/",
  10582. "license": [
  10583. "BSD-3-Clause"
  10584. ],
  10585. "authors": [
  10586. {
  10587. "name": "Sebastian Bergmann",
  10588. "email": "sebastian@phpunit.de"
  10589. },
  10590. {
  10591. "name": "Jeff Welch",
  10592. "email": "whatthejeff@gmail.com"
  10593. },
  10594. {
  10595. "name": "Volker Dusch",
  10596. "email": "github@wallbash.com"
  10597. },
  10598. {
  10599. "name": "Bernhard Schussek",
  10600. "email": "bschussek@2bepublished.at"
  10601. }
  10602. ],
  10603. "description": "Provides the functionality to compare PHP values for equality",
  10604. "homepage": "https://github.com/sebastianbergmann/comparator",
  10605. "keywords": [
  10606. "comparator",
  10607. "compare",
  10608. "equality"
  10609. ],
  10610. "support": {
  10611. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10612. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5"
  10613. },
  10614. "funding": [
  10615. {
  10616. "url": "https://github.com/sebastianbergmann",
  10617. "type": "github"
  10618. }
  10619. ],
  10620. "time": "2022-09-14T12:31:48+00:00"
  10621. },
  10622. {
  10623. "name": "sebastian/diff",
  10624. "version": "3.0.3",
  10625. "source": {
  10626. "type": "git",
  10627. "url": "https://github.com/sebastianbergmann/diff.git",
  10628. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  10629. },
  10630. "dist": {
  10631. "type": "zip",
  10632. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  10633. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  10634. "shasum": "",
  10635. "mirrors": [
  10636. {
  10637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10638. "preferred": true
  10639. }
  10640. ]
  10641. },
  10642. "require": {
  10643. "php": ">=7.1"
  10644. },
  10645. "require-dev": {
  10646. "phpunit/phpunit": "^7.5 || ^8.0",
  10647. "symfony/process": "^2 || ^3.3 || ^4"
  10648. },
  10649. "type": "library",
  10650. "extra": {
  10651. "branch-alias": {
  10652. "dev-master": "3.0-dev"
  10653. }
  10654. },
  10655. "autoload": {
  10656. "classmap": [
  10657. "src/"
  10658. ]
  10659. },
  10660. "notification-url": "https://packagist.org/downloads/",
  10661. "license": [
  10662. "BSD-3-Clause"
  10663. ],
  10664. "authors": [
  10665. {
  10666. "name": "Sebastian Bergmann",
  10667. "email": "sebastian@phpunit.de"
  10668. },
  10669. {
  10670. "name": "Kore Nordmann",
  10671. "email": "mail@kore-nordmann.de"
  10672. }
  10673. ],
  10674. "description": "Diff implementation",
  10675. "homepage": "https://github.com/sebastianbergmann/diff",
  10676. "keywords": [
  10677. "diff",
  10678. "udiff",
  10679. "unidiff",
  10680. "unified diff"
  10681. ],
  10682. "support": {
  10683. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10684. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  10685. },
  10686. "funding": [
  10687. {
  10688. "url": "https://github.com/sebastianbergmann",
  10689. "type": "github"
  10690. }
  10691. ],
  10692. "time": "2020-11-30T07:59:04+00:00"
  10693. },
  10694. {
  10695. "name": "sebastian/environment",
  10696. "version": "4.2.4",
  10697. "source": {
  10698. "type": "git",
  10699. "url": "https://github.com/sebastianbergmann/environment.git",
  10700. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  10701. },
  10702. "dist": {
  10703. "type": "zip",
  10704. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  10705. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  10706. "shasum": "",
  10707. "mirrors": [
  10708. {
  10709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10710. "preferred": true
  10711. }
  10712. ]
  10713. },
  10714. "require": {
  10715. "php": ">=7.1"
  10716. },
  10717. "require-dev": {
  10718. "phpunit/phpunit": "^7.5"
  10719. },
  10720. "suggest": {
  10721. "ext-posix": "*"
  10722. },
  10723. "type": "library",
  10724. "extra": {
  10725. "branch-alias": {
  10726. "dev-master": "4.2-dev"
  10727. }
  10728. },
  10729. "autoload": {
  10730. "classmap": [
  10731. "src/"
  10732. ]
  10733. },
  10734. "notification-url": "https://packagist.org/downloads/",
  10735. "license": [
  10736. "BSD-3-Clause"
  10737. ],
  10738. "authors": [
  10739. {
  10740. "name": "Sebastian Bergmann",
  10741. "email": "sebastian@phpunit.de"
  10742. }
  10743. ],
  10744. "description": "Provides functionality to handle HHVM/PHP environments",
  10745. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10746. "keywords": [
  10747. "Xdebug",
  10748. "environment",
  10749. "hhvm"
  10750. ],
  10751. "support": {
  10752. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10753. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  10754. },
  10755. "funding": [
  10756. {
  10757. "url": "https://github.com/sebastianbergmann",
  10758. "type": "github"
  10759. }
  10760. ],
  10761. "time": "2020-11-30T07:53:42+00:00"
  10762. },
  10763. {
  10764. "name": "sebastian/exporter",
  10765. "version": "3.1.5",
  10766. "source": {
  10767. "type": "git",
  10768. "url": "https://github.com/sebastianbergmann/exporter.git",
  10769. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6"
  10770. },
  10771. "dist": {
  10772. "type": "zip",
  10773. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6",
  10774. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6",
  10775. "shasum": "",
  10776. "mirrors": [
  10777. {
  10778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10779. "preferred": true
  10780. }
  10781. ]
  10782. },
  10783. "require": {
  10784. "php": ">=7.0",
  10785. "sebastian/recursion-context": "^3.0"
  10786. },
  10787. "require-dev": {
  10788. "ext-mbstring": "*",
  10789. "phpunit/phpunit": "^8.5"
  10790. },
  10791. "type": "library",
  10792. "extra": {
  10793. "branch-alias": {
  10794. "dev-master": "3.1.x-dev"
  10795. }
  10796. },
  10797. "autoload": {
  10798. "classmap": [
  10799. "src/"
  10800. ]
  10801. },
  10802. "notification-url": "https://packagist.org/downloads/",
  10803. "license": [
  10804. "BSD-3-Clause"
  10805. ],
  10806. "authors": [
  10807. {
  10808. "name": "Sebastian Bergmann",
  10809. "email": "sebastian@phpunit.de"
  10810. },
  10811. {
  10812. "name": "Jeff Welch",
  10813. "email": "whatthejeff@gmail.com"
  10814. },
  10815. {
  10816. "name": "Volker Dusch",
  10817. "email": "github@wallbash.com"
  10818. },
  10819. {
  10820. "name": "Adam Harvey",
  10821. "email": "aharvey@php.net"
  10822. },
  10823. {
  10824. "name": "Bernhard Schussek",
  10825. "email": "bschussek@gmail.com"
  10826. }
  10827. ],
  10828. "description": "Provides the functionality to export PHP variables for visualization",
  10829. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10830. "keywords": [
  10831. "export",
  10832. "exporter"
  10833. ],
  10834. "support": {
  10835. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10836. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5"
  10837. },
  10838. "funding": [
  10839. {
  10840. "url": "https://github.com/sebastianbergmann",
  10841. "type": "github"
  10842. }
  10843. ],
  10844. "time": "2022-09-14T06:00:17+00:00"
  10845. },
  10846. {
  10847. "name": "sebastian/global-state",
  10848. "version": "3.0.2",
  10849. "source": {
  10850. "type": "git",
  10851. "url": "https://github.com/sebastianbergmann/global-state.git",
  10852. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921"
  10853. },
  10854. "dist": {
  10855. "type": "zip",
  10856. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  10857. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  10858. "shasum": "",
  10859. "mirrors": [
  10860. {
  10861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10862. "preferred": true
  10863. }
  10864. ]
  10865. },
  10866. "require": {
  10867. "php": ">=7.2",
  10868. "sebastian/object-reflector": "^1.1.1",
  10869. "sebastian/recursion-context": "^3.0"
  10870. },
  10871. "require-dev": {
  10872. "ext-dom": "*",
  10873. "phpunit/phpunit": "^8.0"
  10874. },
  10875. "suggest": {
  10876. "ext-uopz": "*"
  10877. },
  10878. "type": "library",
  10879. "extra": {
  10880. "branch-alias": {
  10881. "dev-master": "3.0-dev"
  10882. }
  10883. },
  10884. "autoload": {
  10885. "classmap": [
  10886. "src/"
  10887. ]
  10888. },
  10889. "notification-url": "https://packagist.org/downloads/",
  10890. "license": [
  10891. "BSD-3-Clause"
  10892. ],
  10893. "authors": [
  10894. {
  10895. "name": "Sebastian Bergmann",
  10896. "email": "sebastian@phpunit.de"
  10897. }
  10898. ],
  10899. "description": "Snapshotting of global state",
  10900. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10901. "keywords": [
  10902. "global state"
  10903. ],
  10904. "support": {
  10905. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10906. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.2"
  10907. },
  10908. "funding": [
  10909. {
  10910. "url": "https://github.com/sebastianbergmann",
  10911. "type": "github"
  10912. }
  10913. ],
  10914. "time": "2022-02-10T06:55:38+00:00"
  10915. },
  10916. {
  10917. "name": "sebastian/object-enumerator",
  10918. "version": "3.0.4",
  10919. "source": {
  10920. "type": "git",
  10921. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10922. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  10923. },
  10924. "dist": {
  10925. "type": "zip",
  10926. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10927. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10928. "shasum": "",
  10929. "mirrors": [
  10930. {
  10931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10932. "preferred": true
  10933. }
  10934. ]
  10935. },
  10936. "require": {
  10937. "php": ">=7.0",
  10938. "sebastian/object-reflector": "^1.1.1",
  10939. "sebastian/recursion-context": "^3.0"
  10940. },
  10941. "require-dev": {
  10942. "phpunit/phpunit": "^6.0"
  10943. },
  10944. "type": "library",
  10945. "extra": {
  10946. "branch-alias": {
  10947. "dev-master": "3.0.x-dev"
  10948. }
  10949. },
  10950. "autoload": {
  10951. "classmap": [
  10952. "src/"
  10953. ]
  10954. },
  10955. "notification-url": "https://packagist.org/downloads/",
  10956. "license": [
  10957. "BSD-3-Clause"
  10958. ],
  10959. "authors": [
  10960. {
  10961. "name": "Sebastian Bergmann",
  10962. "email": "sebastian@phpunit.de"
  10963. }
  10964. ],
  10965. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10966. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10967. "support": {
  10968. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10969. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10970. },
  10971. "funding": [
  10972. {
  10973. "url": "https://github.com/sebastianbergmann",
  10974. "type": "github"
  10975. }
  10976. ],
  10977. "time": "2020-11-30T07:40:27+00:00"
  10978. },
  10979. {
  10980. "name": "sebastian/object-reflector",
  10981. "version": "1.1.2",
  10982. "source": {
  10983. "type": "git",
  10984. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10985. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10986. },
  10987. "dist": {
  10988. "type": "zip",
  10989. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10990. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10991. "shasum": "",
  10992. "mirrors": [
  10993. {
  10994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10995. "preferred": true
  10996. }
  10997. ]
  10998. },
  10999. "require": {
  11000. "php": ">=7.0"
  11001. },
  11002. "require-dev": {
  11003. "phpunit/phpunit": "^6.0"
  11004. },
  11005. "type": "library",
  11006. "extra": {
  11007. "branch-alias": {
  11008. "dev-master": "1.1-dev"
  11009. }
  11010. },
  11011. "autoload": {
  11012. "classmap": [
  11013. "src/"
  11014. ]
  11015. },
  11016. "notification-url": "https://packagist.org/downloads/",
  11017. "license": [
  11018. "BSD-3-Clause"
  11019. ],
  11020. "authors": [
  11021. {
  11022. "name": "Sebastian Bergmann",
  11023. "email": "sebastian@phpunit.de"
  11024. }
  11025. ],
  11026. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11027. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11028. "support": {
  11029. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11030. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  11031. },
  11032. "funding": [
  11033. {
  11034. "url": "https://github.com/sebastianbergmann",
  11035. "type": "github"
  11036. }
  11037. ],
  11038. "time": "2020-11-30T07:37:18+00:00"
  11039. },
  11040. {
  11041. "name": "sebastian/recursion-context",
  11042. "version": "3.0.1",
  11043. "source": {
  11044. "type": "git",
  11045. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11046. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  11047. },
  11048. "dist": {
  11049. "type": "zip",
  11050. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  11051. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  11052. "shasum": "",
  11053. "mirrors": [
  11054. {
  11055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11056. "preferred": true
  11057. }
  11058. ]
  11059. },
  11060. "require": {
  11061. "php": ">=7.0"
  11062. },
  11063. "require-dev": {
  11064. "phpunit/phpunit": "^6.0"
  11065. },
  11066. "type": "library",
  11067. "extra": {
  11068. "branch-alias": {
  11069. "dev-master": "3.0.x-dev"
  11070. }
  11071. },
  11072. "autoload": {
  11073. "classmap": [
  11074. "src/"
  11075. ]
  11076. },
  11077. "notification-url": "https://packagist.org/downloads/",
  11078. "license": [
  11079. "BSD-3-Clause"
  11080. ],
  11081. "authors": [
  11082. {
  11083. "name": "Sebastian Bergmann",
  11084. "email": "sebastian@phpunit.de"
  11085. },
  11086. {
  11087. "name": "Jeff Welch",
  11088. "email": "whatthejeff@gmail.com"
  11089. },
  11090. {
  11091. "name": "Adam Harvey",
  11092. "email": "aharvey@php.net"
  11093. }
  11094. ],
  11095. "description": "Provides functionality to recursively process PHP variables",
  11096. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11097. "support": {
  11098. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11099. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  11100. },
  11101. "funding": [
  11102. {
  11103. "url": "https://github.com/sebastianbergmann",
  11104. "type": "github"
  11105. }
  11106. ],
  11107. "time": "2020-11-30T07:34:24+00:00"
  11108. },
  11109. {
  11110. "name": "sebastian/resource-operations",
  11111. "version": "2.0.2",
  11112. "source": {
  11113. "type": "git",
  11114. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11115. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  11116. },
  11117. "dist": {
  11118. "type": "zip",
  11119. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  11120. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  11121. "shasum": "",
  11122. "mirrors": [
  11123. {
  11124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11125. "preferred": true
  11126. }
  11127. ]
  11128. },
  11129. "require": {
  11130. "php": ">=7.1"
  11131. },
  11132. "type": "library",
  11133. "extra": {
  11134. "branch-alias": {
  11135. "dev-master": "2.0-dev"
  11136. }
  11137. },
  11138. "autoload": {
  11139. "classmap": [
  11140. "src/"
  11141. ]
  11142. },
  11143. "notification-url": "https://packagist.org/downloads/",
  11144. "license": [
  11145. "BSD-3-Clause"
  11146. ],
  11147. "authors": [
  11148. {
  11149. "name": "Sebastian Bergmann",
  11150. "email": "sebastian@phpunit.de"
  11151. }
  11152. ],
  11153. "description": "Provides a list of PHP built-in functions that operate on resources",
  11154. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11155. "support": {
  11156. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11157. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  11158. },
  11159. "funding": [
  11160. {
  11161. "url": "https://github.com/sebastianbergmann",
  11162. "type": "github"
  11163. }
  11164. ],
  11165. "time": "2020-11-30T07:30:19+00:00"
  11166. },
  11167. {
  11168. "name": "sebastian/type",
  11169. "version": "1.1.4",
  11170. "source": {
  11171. "type": "git",
  11172. "url": "https://github.com/sebastianbergmann/type.git",
  11173. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  11174. },
  11175. "dist": {
  11176. "type": "zip",
  11177. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  11178. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  11179. "shasum": "",
  11180. "mirrors": [
  11181. {
  11182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11183. "preferred": true
  11184. }
  11185. ]
  11186. },
  11187. "require": {
  11188. "php": ">=7.2"
  11189. },
  11190. "require-dev": {
  11191. "phpunit/phpunit": "^8.2"
  11192. },
  11193. "type": "library",
  11194. "extra": {
  11195. "branch-alias": {
  11196. "dev-master": "1.1-dev"
  11197. }
  11198. },
  11199. "autoload": {
  11200. "classmap": [
  11201. "src/"
  11202. ]
  11203. },
  11204. "notification-url": "https://packagist.org/downloads/",
  11205. "license": [
  11206. "BSD-3-Clause"
  11207. ],
  11208. "authors": [
  11209. {
  11210. "name": "Sebastian Bergmann",
  11211. "email": "sebastian@phpunit.de",
  11212. "role": "lead"
  11213. }
  11214. ],
  11215. "description": "Collection of value objects that represent the types of the PHP type system",
  11216. "homepage": "https://github.com/sebastianbergmann/type",
  11217. "support": {
  11218. "issues": "https://github.com/sebastianbergmann/type/issues",
  11219. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  11220. },
  11221. "funding": [
  11222. {
  11223. "url": "https://github.com/sebastianbergmann",
  11224. "type": "github"
  11225. }
  11226. ],
  11227. "time": "2020-11-30T07:25:11+00:00"
  11228. },
  11229. {
  11230. "name": "sebastian/version",
  11231. "version": "2.0.1",
  11232. "source": {
  11233. "type": "git",
  11234. "url": "https://github.com/sebastianbergmann/version.git",
  11235. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  11236. },
  11237. "dist": {
  11238. "type": "zip",
  11239. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  11240. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  11241. "shasum": "",
  11242. "mirrors": [
  11243. {
  11244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11245. "preferred": true
  11246. }
  11247. ]
  11248. },
  11249. "require": {
  11250. "php": ">=5.6"
  11251. },
  11252. "type": "library",
  11253. "extra": {
  11254. "branch-alias": {
  11255. "dev-master": "2.0.x-dev"
  11256. }
  11257. },
  11258. "autoload": {
  11259. "classmap": [
  11260. "src/"
  11261. ]
  11262. },
  11263. "notification-url": "https://packagist.org/downloads/",
  11264. "license": [
  11265. "BSD-3-Clause"
  11266. ],
  11267. "authors": [
  11268. {
  11269. "name": "Sebastian Bergmann",
  11270. "email": "sebastian@phpunit.de",
  11271. "role": "lead"
  11272. }
  11273. ],
  11274. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11275. "homepage": "https://github.com/sebastianbergmann/version",
  11276. "support": {
  11277. "issues": "https://github.com/sebastianbergmann/version/issues",
  11278. "source": "https://github.com/sebastianbergmann/version/tree/master"
  11279. },
  11280. "time": "2016-10-03T07:35:21+00:00"
  11281. },
  11282. {
  11283. "name": "theseer/tokenizer",
  11284. "version": "1.2.1",
  11285. "source": {
  11286. "type": "git",
  11287. "url": "https://github.com/theseer/tokenizer.git",
  11288. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11289. },
  11290. "dist": {
  11291. "type": "zip",
  11292. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11293. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11294. "shasum": "",
  11295. "mirrors": [
  11296. {
  11297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11298. "preferred": true
  11299. }
  11300. ]
  11301. },
  11302. "require": {
  11303. "ext-dom": "*",
  11304. "ext-tokenizer": "*",
  11305. "ext-xmlwriter": "*",
  11306. "php": "^7.2 || ^8.0"
  11307. },
  11308. "type": "library",
  11309. "autoload": {
  11310. "classmap": [
  11311. "src/"
  11312. ]
  11313. },
  11314. "notification-url": "https://packagist.org/downloads/",
  11315. "license": [
  11316. "BSD-3-Clause"
  11317. ],
  11318. "authors": [
  11319. {
  11320. "name": "Arne Blankerts",
  11321. "email": "arne@blankerts.de",
  11322. "role": "Developer"
  11323. }
  11324. ],
  11325. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11326. "support": {
  11327. "issues": "https://github.com/theseer/tokenizer/issues",
  11328. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11329. },
  11330. "funding": [
  11331. {
  11332. "url": "https://github.com/theseer",
  11333. "type": "github"
  11334. }
  11335. ],
  11336. "time": "2021-07-28T10:34:58+00:00"
  11337. }
  11338. ],
  11339. "aliases": [],
  11340. "minimum-stability": "dev",
  11341. "stability-flags": [],
  11342. "prefer-stable": true,
  11343. "prefer-lowest": false,
  11344. "platform": {
  11345. "php": "^7.2"
  11346. },
  11347. "platform-dev": [],
  11348. "plugin-api-version": "2.3.0"
  11349. }