composer.lock 311 KB

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