composer.lock 419 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634
  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": "a4fc7e55709094c5a3d32d5480f1b7ff",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  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. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/tea",
  70. "version": "3.2.1",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/tea-php.git",
  74. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  79. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.4",
  90. "ext-curl": "*",
  91. "ext-json": "*",
  92. "ext-libxml": "*",
  93. "ext-mbstring": "*",
  94. "ext-openssl": "*",
  95. "ext-simplexml": "*",
  96. "ext-xmlwriter": "*",
  97. "guzzlehttp/guzzle": "^6.3|^7.0",
  98. "php": ">=5.5"
  99. },
  100. "require-dev": {
  101. "phpunit/phpunit": "*",
  102. "symfony/dotenv": "^3.4",
  103. "symfony/var-dumper": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-sockets": "To use client-side monitoring"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "AlibabaCloud\\Tea\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "Apache-2.0"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Alibaba Cloud SDK",
  121. "email": "sdk-team@alibabacloud.com",
  122. "homepage": "http://www.alibabacloud.com"
  123. }
  124. ],
  125. "description": "Client of Tea for PHP",
  126. "homepage": "https://www.alibabacloud.com/",
  127. "keywords": [
  128. "alibabacloud",
  129. "client",
  130. "cloud",
  131. "tea"
  132. ],
  133. "support": {
  134. "issues": "https://github.com/aliyun/tea-php/issues",
  135. "source": "https://github.com/aliyun/tea-php"
  136. },
  137. "time": "2023-05-16T06:43:41+00:00"
  138. },
  139. {
  140. "name": "alibabacloud/tea-fileform",
  141. "version": "0.3.4",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  145. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  150. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  151. "shasum": "",
  152. "mirrors": [
  153. {
  154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  155. "preferred": true
  156. }
  157. ]
  158. },
  159. "require": {
  160. "alibabacloud/tea": "^3.0",
  161. "php": ">5.5"
  162. },
  163. "require-dev": {
  164. "phpunit/phpunit": "^4.8.35|^5.4.3"
  165. },
  166. "type": "library",
  167. "autoload": {
  168. "psr-4": {
  169. "AlibabaCloud\\Tea\\FileForm\\": "src"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "Apache-2.0"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Alibaba Cloud SDK",
  179. "email": "sdk-team@alibabacloud.com"
  180. }
  181. ],
  182. "description": "Alibaba Cloud Tea File Library for PHP",
  183. "support": {
  184. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  185. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  186. },
  187. "time": "2020-12-01T07:24:35+00:00"
  188. },
  189. {
  190. "name": "alipaysdk/easysdk",
  191. "version": "2.2.3",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/alipay/alipay-easysdk.git",
  195. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/c6008839a22a5fca08e9f8536730f7abfed522d5",
  200. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5",
  201. "shasum": "",
  202. "mirrors": [
  203. {
  204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  205. "preferred": true
  206. }
  207. ]
  208. },
  209. "require": {
  210. "alibabacloud/tea": "^3.1",
  211. "alibabacloud/tea-fileform": "^0.3.2",
  212. "ext-ctype": "*",
  213. "ext-curl": "*",
  214. "ext-dom": "*",
  215. "ext-fileinfo": "*",
  216. "ext-json": "*",
  217. "ext-libxml": "*",
  218. "ext-mbstring": "*",
  219. "ext-openssl": "*",
  220. "ext-simplexml": "*",
  221. "ext-xmlwriter": "*",
  222. "guzzlehttp/guzzle": ">=6.3",
  223. "php": ">=7.0"
  224. },
  225. "require-dev": {
  226. "phpunit/phpunit": "^7.5"
  227. },
  228. "type": "library",
  229. "autoload": {
  230. "psr-4": {
  231. "Alipay\\EasySDK\\": "php/src/"
  232. }
  233. },
  234. "notification-url": "https://packagist.org/downloads/",
  235. "license": [
  236. "Apache-2.0"
  237. ],
  238. "authors": [
  239. {
  240. "name": "junying.wjy",
  241. "email": "junying.wjy@antfin.com"
  242. }
  243. ],
  244. "description": "支付宝官方 Alipay Easy SDK",
  245. "support": {
  246. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.3"
  247. },
  248. "time": "2022-11-28T14:04:57+00:00"
  249. },
  250. {
  251. "name": "bacon/bacon-qr-code",
  252. "version": "2.0.8",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/Bacon/BaconQrCode.git",
  256. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  261. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  262. "shasum": "",
  263. "mirrors": [
  264. {
  265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  266. "preferred": true
  267. }
  268. ]
  269. },
  270. "require": {
  271. "dasprid/enum": "^1.0.3",
  272. "ext-iconv": "*",
  273. "php": "^7.1 || ^8.0"
  274. },
  275. "require-dev": {
  276. "phly/keep-a-changelog": "^2.1",
  277. "phpunit/phpunit": "^7 | ^8 | ^9",
  278. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  279. "squizlabs/php_codesniffer": "^3.4"
  280. },
  281. "suggest": {
  282. "ext-imagick": "to generate QR code images"
  283. },
  284. "type": "library",
  285. "autoload": {
  286. "psr-4": {
  287. "BaconQrCode\\": "src/"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "BSD-2-Clause"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Ben Scholzen 'DASPRiD'",
  297. "email": "mail@dasprids.de",
  298. "homepage": "https://dasprids.de/",
  299. "role": "Developer"
  300. }
  301. ],
  302. "description": "BaconQrCode is a QR code generator for PHP.",
  303. "homepage": "https://github.com/Bacon/BaconQrCode",
  304. "support": {
  305. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  306. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  307. },
  308. "time": "2022-12-07T17:46:57+00:00"
  309. },
  310. {
  311. "name": "brick/math",
  312. "version": "0.11.0",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/brick/math.git",
  316. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  321. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  322. "shasum": "",
  323. "mirrors": [
  324. {
  325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  326. "preferred": true
  327. }
  328. ]
  329. },
  330. "require": {
  331. "php": "^8.0"
  332. },
  333. "require-dev": {
  334. "php-coveralls/php-coveralls": "^2.2",
  335. "phpunit/phpunit": "^9.0",
  336. "vimeo/psalm": "5.0.0"
  337. },
  338. "type": "library",
  339. "autoload": {
  340. "psr-4": {
  341. "Brick\\Math\\": "src/"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "description": "Arbitrary-precision arithmetic library",
  349. "keywords": [
  350. "Arbitrary-precision",
  351. "BigInteger",
  352. "BigRational",
  353. "arithmetic",
  354. "bigdecimal",
  355. "bignum",
  356. "brick",
  357. "math"
  358. ],
  359. "support": {
  360. "issues": "https://github.com/brick/math/issues",
  361. "source": "https://github.com/brick/math/tree/0.11.0"
  362. },
  363. "funding": [
  364. {
  365. "url": "https://github.com/BenMorel",
  366. "type": "github"
  367. }
  368. ],
  369. "time": "2023-01-15T23:15:59+00:00"
  370. },
  371. {
  372. "name": "carbonphp/carbon-doctrine-types",
  373. "version": "2.1.0",
  374. "source": {
  375. "type": "git",
  376. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  377. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  378. },
  379. "dist": {
  380. "type": "zip",
  381. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  382. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  383. "shasum": "",
  384. "mirrors": [
  385. {
  386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  387. "preferred": true
  388. }
  389. ]
  390. },
  391. "require": {
  392. "php": "^7.4 || ^8.0"
  393. },
  394. "conflict": {
  395. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  396. },
  397. "require-dev": {
  398. "doctrine/dbal": "^3.7.0",
  399. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  400. "phpunit/phpunit": "^10.3"
  401. },
  402. "type": "library",
  403. "autoload": {
  404. "psr-4": {
  405. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  406. }
  407. },
  408. "notification-url": "https://packagist.org/downloads/",
  409. "license": [
  410. "MIT"
  411. ],
  412. "authors": [
  413. {
  414. "name": "KyleKatarn",
  415. "email": "kylekatarnls@gmail.com"
  416. }
  417. ],
  418. "description": "Types to use Carbon in Doctrine",
  419. "keywords": [
  420. "carbon",
  421. "date",
  422. "datetime",
  423. "doctrine",
  424. "time"
  425. ],
  426. "support": {
  427. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  428. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  429. },
  430. "funding": [
  431. {
  432. "url": "https://github.com/kylekatarnls",
  433. "type": "github"
  434. },
  435. {
  436. "url": "https://opencollective.com/Carbon",
  437. "type": "open_collective"
  438. },
  439. {
  440. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  441. "type": "tidelift"
  442. }
  443. ],
  444. "time": "2023-12-11T17:09:12+00:00"
  445. },
  446. {
  447. "name": "dasprid/enum",
  448. "version": "1.0.5",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/DASPRiD/Enum.git",
  452. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  457. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  458. "shasum": "",
  459. "mirrors": [
  460. {
  461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  462. "preferred": true
  463. }
  464. ]
  465. },
  466. "require": {
  467. "php": ">=7.1 <9.0"
  468. },
  469. "require-dev": {
  470. "phpunit/phpunit": "^7 | ^8 | ^9",
  471. "squizlabs/php_codesniffer": "*"
  472. },
  473. "type": "library",
  474. "autoload": {
  475. "psr-4": {
  476. "DASPRiD\\Enum\\": "src/"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "BSD-2-Clause"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Ben Scholzen 'DASPRiD'",
  486. "email": "mail@dasprids.de",
  487. "homepage": "https://dasprids.de/",
  488. "role": "Developer"
  489. }
  490. ],
  491. "description": "PHP 7.1 enum implementation",
  492. "keywords": [
  493. "enum",
  494. "map"
  495. ],
  496. "support": {
  497. "issues": "https://github.com/DASPRiD/Enum/issues",
  498. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  499. },
  500. "time": "2023-08-25T16:18:39+00:00"
  501. },
  502. {
  503. "name": "dflydev/dot-access-data",
  504. "version": "v3.0.2",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  508. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  513. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  514. "shasum": "",
  515. "mirrors": [
  516. {
  517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  518. "preferred": true
  519. }
  520. ]
  521. },
  522. "require": {
  523. "php": "^7.1 || ^8.0"
  524. },
  525. "require-dev": {
  526. "phpstan/phpstan": "^0.12.42",
  527. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  528. "scrutinizer/ocular": "1.6.0",
  529. "squizlabs/php_codesniffer": "^3.5",
  530. "vimeo/psalm": "^4.0.0"
  531. },
  532. "type": "library",
  533. "extra": {
  534. "branch-alias": {
  535. "dev-main": "3.x-dev"
  536. }
  537. },
  538. "autoload": {
  539. "psr-4": {
  540. "Dflydev\\DotAccessData\\": "src/"
  541. }
  542. },
  543. "notification-url": "https://packagist.org/downloads/",
  544. "license": [
  545. "MIT"
  546. ],
  547. "authors": [
  548. {
  549. "name": "Dragonfly Development Inc.",
  550. "email": "info@dflydev.com",
  551. "homepage": "http://dflydev.com"
  552. },
  553. {
  554. "name": "Beau Simensen",
  555. "email": "beau@dflydev.com",
  556. "homepage": "http://beausimensen.com"
  557. },
  558. {
  559. "name": "Carlos Frutos",
  560. "email": "carlos@kiwing.it",
  561. "homepage": "https://github.com/cfrutos"
  562. },
  563. {
  564. "name": "Colin O'Dell",
  565. "email": "colinodell@gmail.com",
  566. "homepage": "https://www.colinodell.com"
  567. }
  568. ],
  569. "description": "Given a deep data structure, access data by dot notation.",
  570. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  571. "keywords": [
  572. "access",
  573. "data",
  574. "dot",
  575. "notation"
  576. ],
  577. "support": {
  578. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  579. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  580. },
  581. "time": "2022-10-27T11:44:00+00:00"
  582. },
  583. {
  584. "name": "doctrine/cache",
  585. "version": "2.2.0",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/doctrine/cache.git",
  589. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  594. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  595. "shasum": "",
  596. "mirrors": [
  597. {
  598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  599. "preferred": true
  600. }
  601. ]
  602. },
  603. "require": {
  604. "php": "~7.1 || ^8.0"
  605. },
  606. "conflict": {
  607. "doctrine/common": ">2.2,<2.4"
  608. },
  609. "require-dev": {
  610. "cache/integration-tests": "dev-master",
  611. "doctrine/coding-standard": "^9",
  612. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  613. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  614. "symfony/cache": "^4.4 || ^5.4 || ^6",
  615. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  616. },
  617. "type": "library",
  618. "autoload": {
  619. "psr-4": {
  620. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "authors": [
  628. {
  629. "name": "Guilherme Blanco",
  630. "email": "guilhermeblanco@gmail.com"
  631. },
  632. {
  633. "name": "Roman Borschel",
  634. "email": "roman@code-factory.org"
  635. },
  636. {
  637. "name": "Benjamin Eberlei",
  638. "email": "kontakt@beberlei.de"
  639. },
  640. {
  641. "name": "Jonathan Wage",
  642. "email": "jonwage@gmail.com"
  643. },
  644. {
  645. "name": "Johannes Schmitt",
  646. "email": "schmittjoh@gmail.com"
  647. }
  648. ],
  649. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  650. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  651. "keywords": [
  652. "abstraction",
  653. "apcu",
  654. "cache",
  655. "caching",
  656. "couchdb",
  657. "memcached",
  658. "php",
  659. "redis",
  660. "xcache"
  661. ],
  662. "support": {
  663. "issues": "https://github.com/doctrine/cache/issues",
  664. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  665. },
  666. "funding": [
  667. {
  668. "url": "https://www.doctrine-project.org/sponsorship.html",
  669. "type": "custom"
  670. },
  671. {
  672. "url": "https://www.patreon.com/phpdoctrine",
  673. "type": "patreon"
  674. },
  675. {
  676. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  677. "type": "tidelift"
  678. }
  679. ],
  680. "time": "2022-05-20T20:07:39+00:00"
  681. },
  682. {
  683. "name": "doctrine/dbal",
  684. "version": "3.7.2",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/doctrine/dbal.git",
  688. "reference": "0ac3c270590e54910715e9a1a044cc368df282b2"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2",
  693. "reference": "0ac3c270590e54910715e9a1a044cc368df282b2",
  694. "shasum": "",
  695. "mirrors": [
  696. {
  697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  698. "preferred": true
  699. }
  700. ]
  701. },
  702. "require": {
  703. "composer-runtime-api": "^2",
  704. "doctrine/cache": "^1.11|^2.0",
  705. "doctrine/deprecations": "^0.5.3|^1",
  706. "doctrine/event-manager": "^1|^2",
  707. "php": "^7.4 || ^8.0",
  708. "psr/cache": "^1|^2|^3",
  709. "psr/log": "^1|^2|^3"
  710. },
  711. "require-dev": {
  712. "doctrine/coding-standard": "12.0.0",
  713. "fig/log-test": "^1",
  714. "jetbrains/phpstorm-stubs": "2023.1",
  715. "phpstan/phpstan": "1.10.42",
  716. "phpstan/phpstan-strict-rules": "^1.5",
  717. "phpunit/phpunit": "9.6.13",
  718. "psalm/plugin-phpunit": "0.18.4",
  719. "slevomat/coding-standard": "8.13.1",
  720. "squizlabs/php_codesniffer": "3.7.2",
  721. "symfony/cache": "^5.4|^6.0",
  722. "symfony/console": "^4.4|^5.4|^6.0",
  723. "vimeo/psalm": "4.30.0"
  724. },
  725. "suggest": {
  726. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  727. },
  728. "bin": [
  729. "bin/doctrine-dbal"
  730. ],
  731. "type": "library",
  732. "autoload": {
  733. "psr-4": {
  734. "Doctrine\\DBAL\\": "src"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Guilherme Blanco",
  744. "email": "guilhermeblanco@gmail.com"
  745. },
  746. {
  747. "name": "Roman Borschel",
  748. "email": "roman@code-factory.org"
  749. },
  750. {
  751. "name": "Benjamin Eberlei",
  752. "email": "kontakt@beberlei.de"
  753. },
  754. {
  755. "name": "Jonathan Wage",
  756. "email": "jonwage@gmail.com"
  757. }
  758. ],
  759. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  760. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  761. "keywords": [
  762. "abstraction",
  763. "database",
  764. "db2",
  765. "dbal",
  766. "mariadb",
  767. "mssql",
  768. "mysql",
  769. "oci8",
  770. "oracle",
  771. "pdo",
  772. "pgsql",
  773. "postgresql",
  774. "queryobject",
  775. "sasql",
  776. "sql",
  777. "sqlite",
  778. "sqlserver",
  779. "sqlsrv"
  780. ],
  781. "support": {
  782. "issues": "https://github.com/doctrine/dbal/issues",
  783. "source": "https://github.com/doctrine/dbal/tree/3.7.2"
  784. },
  785. "funding": [
  786. {
  787. "url": "https://www.doctrine-project.org/sponsorship.html",
  788. "type": "custom"
  789. },
  790. {
  791. "url": "https://www.patreon.com/phpdoctrine",
  792. "type": "patreon"
  793. },
  794. {
  795. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  796. "type": "tidelift"
  797. }
  798. ],
  799. "time": "2023-11-19T08:06:58+00:00"
  800. },
  801. {
  802. "name": "doctrine/deprecations",
  803. "version": "v1.1.1",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/doctrine/deprecations.git",
  807. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  812. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  813. "shasum": "",
  814. "mirrors": [
  815. {
  816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  817. "preferred": true
  818. }
  819. ]
  820. },
  821. "require": {
  822. "php": "^7.1 || ^8.0"
  823. },
  824. "require-dev": {
  825. "doctrine/coding-standard": "^9",
  826. "phpstan/phpstan": "1.4.10 || 1.10.15",
  827. "phpstan/phpstan-phpunit": "^1.0",
  828. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  829. "psalm/plugin-phpunit": "0.18.4",
  830. "psr/log": "^1 || ^2 || ^3",
  831. "vimeo/psalm": "4.30.0 || 5.12.0"
  832. },
  833. "suggest": {
  834. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  835. },
  836. "type": "library",
  837. "autoload": {
  838. "psr-4": {
  839. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  840. }
  841. },
  842. "notification-url": "https://packagist.org/downloads/",
  843. "license": [
  844. "MIT"
  845. ],
  846. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  847. "homepage": "https://www.doctrine-project.org/",
  848. "support": {
  849. "issues": "https://github.com/doctrine/deprecations/issues",
  850. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  851. },
  852. "time": "2023-06-03T09:27:29+00:00"
  853. },
  854. {
  855. "name": "doctrine/event-manager",
  856. "version": "2.0.0",
  857. "source": {
  858. "type": "git",
  859. "url": "https://github.com/doctrine/event-manager.git",
  860. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  861. },
  862. "dist": {
  863. "type": "zip",
  864. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  865. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  866. "shasum": "",
  867. "mirrors": [
  868. {
  869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  870. "preferred": true
  871. }
  872. ]
  873. },
  874. "require": {
  875. "php": "^8.1"
  876. },
  877. "conflict": {
  878. "doctrine/common": "<2.9"
  879. },
  880. "require-dev": {
  881. "doctrine/coding-standard": "^10",
  882. "phpstan/phpstan": "^1.8.8",
  883. "phpunit/phpunit": "^9.5",
  884. "vimeo/psalm": "^4.28"
  885. },
  886. "type": "library",
  887. "autoload": {
  888. "psr-4": {
  889. "Doctrine\\Common\\": "src"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Guilherme Blanco",
  899. "email": "guilhermeblanco@gmail.com"
  900. },
  901. {
  902. "name": "Roman Borschel",
  903. "email": "roman@code-factory.org"
  904. },
  905. {
  906. "name": "Benjamin Eberlei",
  907. "email": "kontakt@beberlei.de"
  908. },
  909. {
  910. "name": "Jonathan Wage",
  911. "email": "jonwage@gmail.com"
  912. },
  913. {
  914. "name": "Johannes Schmitt",
  915. "email": "schmittjoh@gmail.com"
  916. },
  917. {
  918. "name": "Marco Pivetta",
  919. "email": "ocramius@gmail.com"
  920. }
  921. ],
  922. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  923. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  924. "keywords": [
  925. "event",
  926. "event dispatcher",
  927. "event manager",
  928. "event system",
  929. "events"
  930. ],
  931. "support": {
  932. "issues": "https://github.com/doctrine/event-manager/issues",
  933. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  934. },
  935. "funding": [
  936. {
  937. "url": "https://www.doctrine-project.org/sponsorship.html",
  938. "type": "custom"
  939. },
  940. {
  941. "url": "https://www.patreon.com/phpdoctrine",
  942. "type": "patreon"
  943. },
  944. {
  945. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  946. "type": "tidelift"
  947. }
  948. ],
  949. "time": "2022-10-12T20:59:15+00:00"
  950. },
  951. {
  952. "name": "doctrine/inflector",
  953. "version": "2.0.8",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/doctrine/inflector.git",
  957. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  962. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  963. "shasum": "",
  964. "mirrors": [
  965. {
  966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  967. "preferred": true
  968. }
  969. ]
  970. },
  971. "require": {
  972. "php": "^7.2 || ^8.0"
  973. },
  974. "require-dev": {
  975. "doctrine/coding-standard": "^11.0",
  976. "phpstan/phpstan": "^1.8",
  977. "phpstan/phpstan-phpunit": "^1.1",
  978. "phpstan/phpstan-strict-rules": "^1.3",
  979. "phpunit/phpunit": "^8.5 || ^9.5",
  980. "vimeo/psalm": "^4.25 || ^5.4"
  981. },
  982. "type": "library",
  983. "autoload": {
  984. "psr-4": {
  985. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "MIT"
  991. ],
  992. "authors": [
  993. {
  994. "name": "Guilherme Blanco",
  995. "email": "guilhermeblanco@gmail.com"
  996. },
  997. {
  998. "name": "Roman Borschel",
  999. "email": "roman@code-factory.org"
  1000. },
  1001. {
  1002. "name": "Benjamin Eberlei",
  1003. "email": "kontakt@beberlei.de"
  1004. },
  1005. {
  1006. "name": "Jonathan Wage",
  1007. "email": "jonwage@gmail.com"
  1008. },
  1009. {
  1010. "name": "Johannes Schmitt",
  1011. "email": "schmittjoh@gmail.com"
  1012. }
  1013. ],
  1014. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1015. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1016. "keywords": [
  1017. "inflection",
  1018. "inflector",
  1019. "lowercase",
  1020. "manipulation",
  1021. "php",
  1022. "plural",
  1023. "singular",
  1024. "strings",
  1025. "uppercase",
  1026. "words"
  1027. ],
  1028. "support": {
  1029. "issues": "https://github.com/doctrine/inflector/issues",
  1030. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1031. },
  1032. "funding": [
  1033. {
  1034. "url": "https://www.doctrine-project.org/sponsorship.html",
  1035. "type": "custom"
  1036. },
  1037. {
  1038. "url": "https://www.patreon.com/phpdoctrine",
  1039. "type": "patreon"
  1040. },
  1041. {
  1042. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1043. "type": "tidelift"
  1044. }
  1045. ],
  1046. "time": "2023-06-16T13:40:37+00:00"
  1047. },
  1048. {
  1049. "name": "doctrine/lexer",
  1050. "version": "3.0.0",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/doctrine/lexer.git",
  1054. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  1059. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  1060. "shasum": "",
  1061. "mirrors": [
  1062. {
  1063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1064. "preferred": true
  1065. }
  1066. ]
  1067. },
  1068. "require": {
  1069. "php": "^8.1"
  1070. },
  1071. "require-dev": {
  1072. "doctrine/coding-standard": "^10",
  1073. "phpstan/phpstan": "^1.9",
  1074. "phpunit/phpunit": "^9.5",
  1075. "psalm/plugin-phpunit": "^0.18.3",
  1076. "vimeo/psalm": "^5.0"
  1077. },
  1078. "type": "library",
  1079. "autoload": {
  1080. "psr-4": {
  1081. "Doctrine\\Common\\Lexer\\": "src"
  1082. }
  1083. },
  1084. "notification-url": "https://packagist.org/downloads/",
  1085. "license": [
  1086. "MIT"
  1087. ],
  1088. "authors": [
  1089. {
  1090. "name": "Guilherme Blanco",
  1091. "email": "guilhermeblanco@gmail.com"
  1092. },
  1093. {
  1094. "name": "Roman Borschel",
  1095. "email": "roman@code-factory.org"
  1096. },
  1097. {
  1098. "name": "Johannes Schmitt",
  1099. "email": "schmittjoh@gmail.com"
  1100. }
  1101. ],
  1102. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1103. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1104. "keywords": [
  1105. "annotations",
  1106. "docblock",
  1107. "lexer",
  1108. "parser",
  1109. "php"
  1110. ],
  1111. "support": {
  1112. "issues": "https://github.com/doctrine/lexer/issues",
  1113. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  1114. },
  1115. "funding": [
  1116. {
  1117. "url": "https://www.doctrine-project.org/sponsorship.html",
  1118. "type": "custom"
  1119. },
  1120. {
  1121. "url": "https://www.patreon.com/phpdoctrine",
  1122. "type": "patreon"
  1123. },
  1124. {
  1125. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1126. "type": "tidelift"
  1127. }
  1128. ],
  1129. "time": "2022-12-15T16:57:16+00:00"
  1130. },
  1131. {
  1132. "name": "dragonmantank/cron-expression",
  1133. "version": "v3.3.3",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/dragonmantank/cron-expression.git",
  1137. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1142. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1143. "shasum": "",
  1144. "mirrors": [
  1145. {
  1146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1147. "preferred": true
  1148. }
  1149. ]
  1150. },
  1151. "require": {
  1152. "php": "^7.2|^8.0",
  1153. "webmozart/assert": "^1.0"
  1154. },
  1155. "replace": {
  1156. "mtdowling/cron-expression": "^1.0"
  1157. },
  1158. "require-dev": {
  1159. "phpstan/extension-installer": "^1.0",
  1160. "phpstan/phpstan": "^1.0",
  1161. "phpstan/phpstan-webmozart-assert": "^1.0",
  1162. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1163. },
  1164. "type": "library",
  1165. "autoload": {
  1166. "psr-4": {
  1167. "Cron\\": "src/Cron/"
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Chris Tankersley",
  1177. "email": "chris@ctankersley.com",
  1178. "homepage": "https://github.com/dragonmantank"
  1179. }
  1180. ],
  1181. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1182. "keywords": [
  1183. "cron",
  1184. "schedule"
  1185. ],
  1186. "support": {
  1187. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1188. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1189. },
  1190. "funding": [
  1191. {
  1192. "url": "https://github.com/dragonmantank",
  1193. "type": "github"
  1194. }
  1195. ],
  1196. "time": "2023-08-10T19:36:49+00:00"
  1197. },
  1198. {
  1199. "name": "easywechat-composer/easywechat-composer",
  1200. "version": "1.4.1",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1204. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1209. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1210. "shasum": "",
  1211. "mirrors": [
  1212. {
  1213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1214. "preferred": true
  1215. }
  1216. ]
  1217. },
  1218. "require": {
  1219. "composer-plugin-api": "^1.0 || ^2.0",
  1220. "php": ">=7.0"
  1221. },
  1222. "require-dev": {
  1223. "composer/composer": "^1.0 || ^2.0",
  1224. "phpunit/phpunit": "^6.5 || ^7.0"
  1225. },
  1226. "type": "composer-plugin",
  1227. "extra": {
  1228. "class": "EasyWeChatComposer\\Plugin"
  1229. },
  1230. "autoload": {
  1231. "psr-4": {
  1232. "EasyWeChatComposer\\": "src/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "MIT"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "张铭阳",
  1242. "email": "mingyoungcheung@gmail.com"
  1243. }
  1244. ],
  1245. "description": "The composer plugin for EasyWeChat",
  1246. "support": {
  1247. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1248. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1249. },
  1250. "time": "2021-07-05T04:03:22+00:00"
  1251. },
  1252. {
  1253. "name": "egulias/email-validator",
  1254. "version": "4.0.1",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/egulias/EmailValidator.git",
  1258. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1263. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1264. "shasum": "",
  1265. "mirrors": [
  1266. {
  1267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1268. "preferred": true
  1269. }
  1270. ]
  1271. },
  1272. "require": {
  1273. "doctrine/lexer": "^2.0 || ^3.0",
  1274. "php": ">=8.1",
  1275. "symfony/polyfill-intl-idn": "^1.26"
  1276. },
  1277. "require-dev": {
  1278. "phpunit/phpunit": "^9.5.27",
  1279. "vimeo/psalm": "^4.30"
  1280. },
  1281. "suggest": {
  1282. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1283. },
  1284. "type": "library",
  1285. "extra": {
  1286. "branch-alias": {
  1287. "dev-master": "4.0.x-dev"
  1288. }
  1289. },
  1290. "autoload": {
  1291. "psr-4": {
  1292. "Egulias\\EmailValidator\\": "src"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Eduardo Gulias Davis"
  1302. }
  1303. ],
  1304. "description": "A library for validating emails against several RFCs",
  1305. "homepage": "https://github.com/egulias/EmailValidator",
  1306. "keywords": [
  1307. "email",
  1308. "emailvalidation",
  1309. "emailvalidator",
  1310. "validation",
  1311. "validator"
  1312. ],
  1313. "support": {
  1314. "issues": "https://github.com/egulias/EmailValidator/issues",
  1315. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1316. },
  1317. "funding": [
  1318. {
  1319. "url": "https://github.com/egulias",
  1320. "type": "github"
  1321. }
  1322. ],
  1323. "time": "2023-01-14T14:17:03+00:00"
  1324. },
  1325. {
  1326. "name": "elastic/transport",
  1327. "version": "v8.7.0",
  1328. "source": {
  1329. "type": "git",
  1330. "url": "git@github.com:elastic/elastic-transport-php.git",
  1331. "reference": "4d7937f026393186f48b2e4fba6d8db85ca0dba6"
  1332. },
  1333. "dist": {
  1334. "type": "zip",
  1335. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/4d7937f026393186f48b2e4fba6d8db85ca0dba6",
  1336. "reference": "4d7937f026393186f48b2e4fba6d8db85ca0dba6",
  1337. "shasum": "",
  1338. "mirrors": [
  1339. {
  1340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1341. "preferred": true
  1342. }
  1343. ]
  1344. },
  1345. "require": {
  1346. "composer-runtime-api": "^2.0",
  1347. "php": "^7.4 || ^8.0",
  1348. "php-http/discovery": "^1.14",
  1349. "php-http/httplug": "^2.3",
  1350. "psr/http-client": "^1.0",
  1351. "psr/http-factory": "^1.0",
  1352. "psr/http-message": "^1.0 || ^2.0",
  1353. "psr/log": "^1 || ^2 || ^3"
  1354. },
  1355. "require-dev": {
  1356. "nyholm/psr7": "^1.5",
  1357. "php-http/mock-client": "^1.5",
  1358. "phpstan/phpstan": "^1.4",
  1359. "phpunit/phpunit": "^9.5"
  1360. },
  1361. "type": "library",
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Elastic\\Transport\\": "src/"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "description": "HTTP transport PHP library for Elastic products",
  1372. "keywords": [
  1373. "PSR_17",
  1374. "elastic",
  1375. "http",
  1376. "psr-18",
  1377. "psr-7",
  1378. "transport"
  1379. ],
  1380. "time": "2023-05-23T08:44:23+00:00"
  1381. },
  1382. {
  1383. "name": "elasticsearch/elasticsearch",
  1384. "version": "v8.10.0",
  1385. "source": {
  1386. "type": "git",
  1387. "url": "git@github.com:elastic/elasticsearch-php.git",
  1388. "reference": "4237d7e125582cfa7560d97dd8c3baee622875f1"
  1389. },
  1390. "dist": {
  1391. "type": "zip",
  1392. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/4237d7e125582cfa7560d97dd8c3baee622875f1",
  1393. "reference": "4237d7e125582cfa7560d97dd8c3baee622875f1",
  1394. "shasum": "",
  1395. "mirrors": [
  1396. {
  1397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1398. "preferred": true
  1399. }
  1400. ]
  1401. },
  1402. "require": {
  1403. "elastic/transport": "^8.7",
  1404. "guzzlehttp/guzzle": "^7.0",
  1405. "php": "^7.4 || ^8.0",
  1406. "psr/http-client": "^1.0",
  1407. "psr/http-message": "^1.1 || ^2.0",
  1408. "psr/log": "^1|^2|^3"
  1409. },
  1410. "require-dev": {
  1411. "ext-yaml": "*",
  1412. "ext-zip": "*",
  1413. "mockery/mockery": "^1.5",
  1414. "nyholm/psr7": "^1.5",
  1415. "php-http/message-factory": "^1.1",
  1416. "php-http/mock-client": "^1.5",
  1417. "phpstan/phpstan": "^1.4",
  1418. "phpunit/phpunit": "^9.5",
  1419. "symfony/finder": "~4.0",
  1420. "symfony/http-client": "^5.0|^6.0"
  1421. },
  1422. "type": "library",
  1423. "autoload": {
  1424. "psr-4": {
  1425. "Elastic\\Elasticsearch\\": "src/"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "description": "PHP Client for Elasticsearch",
  1433. "keywords": [
  1434. "client",
  1435. "elastic",
  1436. "elasticsearch",
  1437. "search"
  1438. ],
  1439. "time": "2023-09-28T10:38:34+00:00"
  1440. },
  1441. {
  1442. "name": "endroid/qr-code",
  1443. "version": "3.9.7",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/endroid/qr-code.git",
  1447. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1452. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1453. "shasum": "",
  1454. "mirrors": [
  1455. {
  1456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1457. "preferred": true
  1458. }
  1459. ]
  1460. },
  1461. "require": {
  1462. "bacon/bacon-qr-code": "^2.0",
  1463. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1464. "myclabs/php-enum": "^1.5",
  1465. "php": "^7.3||^8.0",
  1466. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1467. "symfony/property-access": "^3.4||^4.4||^5.0"
  1468. },
  1469. "require-dev": {
  1470. "endroid/quality": "^1.5.2",
  1471. "setasign/fpdf": "^1.8"
  1472. },
  1473. "suggest": {
  1474. "ext-gd": "Required for generating PNG images",
  1475. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1476. "setasign/fpdf": "Required to use the FPDF writer.",
  1477. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "3.x-dev"
  1483. }
  1484. },
  1485. "autoload": {
  1486. "psr-4": {
  1487. "Endroid\\QrCode\\": "src/"
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "MIT"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Jeroen van den Enden",
  1497. "email": "info@endroid.nl"
  1498. }
  1499. ],
  1500. "description": "Endroid QR Code",
  1501. "homepage": "https://github.com/endroid/qr-code",
  1502. "keywords": [
  1503. "bundle",
  1504. "code",
  1505. "endroid",
  1506. "php",
  1507. "qr",
  1508. "qrcode"
  1509. ],
  1510. "support": {
  1511. "issues": "https://github.com/endroid/qr-code/issues",
  1512. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1513. },
  1514. "funding": [
  1515. {
  1516. "url": "https://github.com/endroid",
  1517. "type": "github"
  1518. }
  1519. ],
  1520. "time": "2021-04-20T19:10:54+00:00"
  1521. },
  1522. {
  1523. "name": "ezyang/htmlpurifier",
  1524. "version": "v4.16.0",
  1525. "source": {
  1526. "type": "git",
  1527. "url": "https://github.com/ezyang/htmlpurifier.git",
  1528. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1529. },
  1530. "dist": {
  1531. "type": "zip",
  1532. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1533. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1534. "shasum": "",
  1535. "mirrors": [
  1536. {
  1537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1538. "preferred": true
  1539. }
  1540. ]
  1541. },
  1542. "require": {
  1543. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  1544. },
  1545. "require-dev": {
  1546. "cerdic/css-tidy": "^1.7 || ^2.0",
  1547. "simpletest/simpletest": "dev-master"
  1548. },
  1549. "suggest": {
  1550. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1551. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1552. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1553. "ext-tidy": "Used for pretty-printing HTML"
  1554. },
  1555. "type": "library",
  1556. "autoload": {
  1557. "files": [
  1558. "library/HTMLPurifier.composer.php"
  1559. ],
  1560. "psr-0": {
  1561. "HTMLPurifier": "library/"
  1562. },
  1563. "exclude-from-classmap": [
  1564. "/library/HTMLPurifier/Language/"
  1565. ]
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "LGPL-2.1-or-later"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "Edward Z. Yang",
  1574. "email": "admin@htmlpurifier.org",
  1575. "homepage": "http://ezyang.com"
  1576. }
  1577. ],
  1578. "description": "Standards compliant HTML filter written in PHP",
  1579. "homepage": "http://htmlpurifier.org/",
  1580. "keywords": [
  1581. "html"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1585. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1586. },
  1587. "time": "2022-09-18T07:06:19+00:00"
  1588. },
  1589. {
  1590. "name": "fruitcake/php-cors",
  1591. "version": "v1.2.0",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/fruitcake/php-cors.git",
  1595. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1600. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1601. "shasum": "",
  1602. "mirrors": [
  1603. {
  1604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1605. "preferred": true
  1606. }
  1607. ]
  1608. },
  1609. "require": {
  1610. "php": "^7.4|^8.0",
  1611. "symfony/http-foundation": "^4.4|^5.4|^6"
  1612. },
  1613. "require-dev": {
  1614. "phpstan/phpstan": "^1.4",
  1615. "phpunit/phpunit": "^9",
  1616. "squizlabs/php_codesniffer": "^3.5"
  1617. },
  1618. "type": "library",
  1619. "extra": {
  1620. "branch-alias": {
  1621. "dev-main": "1.1-dev"
  1622. }
  1623. },
  1624. "autoload": {
  1625. "psr-4": {
  1626. "Fruitcake\\Cors\\": "src/"
  1627. }
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "MIT"
  1632. ],
  1633. "authors": [
  1634. {
  1635. "name": "Fruitcake",
  1636. "homepage": "https://fruitcake.nl"
  1637. },
  1638. {
  1639. "name": "Barryvdh",
  1640. "email": "barryvdh@gmail.com"
  1641. }
  1642. ],
  1643. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1644. "homepage": "https://github.com/fruitcake/php-cors",
  1645. "keywords": [
  1646. "cors",
  1647. "laravel",
  1648. "symfony"
  1649. ],
  1650. "support": {
  1651. "issues": "https://github.com/fruitcake/php-cors/issues",
  1652. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://fruitcake.nl",
  1657. "type": "custom"
  1658. },
  1659. {
  1660. "url": "https://github.com/barryvdh",
  1661. "type": "github"
  1662. }
  1663. ],
  1664. "time": "2022-02-20T15:07:15+00:00"
  1665. },
  1666. {
  1667. "name": "graham-campbell/result-type",
  1668. "version": "v1.1.2",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1672. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1677. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1678. "shasum": "",
  1679. "mirrors": [
  1680. {
  1681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1682. "preferred": true
  1683. }
  1684. ]
  1685. },
  1686. "require": {
  1687. "php": "^7.2.5 || ^8.0",
  1688. "phpoption/phpoption": "^1.9.2"
  1689. },
  1690. "require-dev": {
  1691. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1692. },
  1693. "type": "library",
  1694. "autoload": {
  1695. "psr-4": {
  1696. "GrahamCampbell\\ResultType\\": "src/"
  1697. }
  1698. },
  1699. "notification-url": "https://packagist.org/downloads/",
  1700. "license": [
  1701. "MIT"
  1702. ],
  1703. "authors": [
  1704. {
  1705. "name": "Graham Campbell",
  1706. "email": "hello@gjcampbell.co.uk",
  1707. "homepage": "https://github.com/GrahamCampbell"
  1708. }
  1709. ],
  1710. "description": "An Implementation Of The Result Type",
  1711. "keywords": [
  1712. "Graham Campbell",
  1713. "GrahamCampbell",
  1714. "Result Type",
  1715. "Result-Type",
  1716. "result"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1720. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1721. },
  1722. "funding": [
  1723. {
  1724. "url": "https://github.com/GrahamCampbell",
  1725. "type": "github"
  1726. },
  1727. {
  1728. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1729. "type": "tidelift"
  1730. }
  1731. ],
  1732. "time": "2023-11-12T22:16:48+00:00"
  1733. },
  1734. {
  1735. "name": "gregwar/captcha",
  1736. "version": "v1.2.0",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/Gregwar/Captcha.git",
  1740. "reference": "6e5b61b66ac89885b505153f4ef9a74ffa5b3074"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/6e5b61b66ac89885b505153f4ef9a74ffa5b3074",
  1745. "reference": "6e5b61b66ac89885b505153f4ef9a74ffa5b3074",
  1746. "shasum": "",
  1747. "mirrors": [
  1748. {
  1749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1750. "preferred": true
  1751. }
  1752. ]
  1753. },
  1754. "require": {
  1755. "ext-gd": "*",
  1756. "ext-mbstring": "*",
  1757. "php": ">=5.3.0",
  1758. "symfony/finder": "*"
  1759. },
  1760. "require-dev": {
  1761. "phpunit/phpunit": "^6.4"
  1762. },
  1763. "type": "library",
  1764. "autoload": {
  1765. "psr-4": {
  1766. "Gregwar\\": "src/Gregwar"
  1767. }
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "MIT"
  1772. ],
  1773. "authors": [
  1774. {
  1775. "name": "Grégoire Passault",
  1776. "email": "g.passault@gmail.com",
  1777. "homepage": "http://www.gregwar.com/"
  1778. },
  1779. {
  1780. "name": "Jeremy Livingston",
  1781. "email": "jeremy.j.livingston@gmail.com"
  1782. }
  1783. ],
  1784. "description": "Captcha generator",
  1785. "homepage": "https://github.com/Gregwar/Captcha",
  1786. "keywords": [
  1787. "bot",
  1788. "captcha",
  1789. "spam"
  1790. ],
  1791. "support": {
  1792. "issues": "https://github.com/Gregwar/Captcha/issues",
  1793. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.0"
  1794. },
  1795. "time": "2023-03-24T22:12:41+00:00"
  1796. },
  1797. {
  1798. "name": "guzzlehttp/guzzle",
  1799. "version": "7.8.1",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/guzzle/guzzle.git",
  1803. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1808. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1809. "shasum": "",
  1810. "mirrors": [
  1811. {
  1812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1813. "preferred": true
  1814. }
  1815. ]
  1816. },
  1817. "require": {
  1818. "ext-json": "*",
  1819. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1820. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1821. "php": "^7.2.5 || ^8.0",
  1822. "psr/http-client": "^1.0",
  1823. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1824. },
  1825. "provide": {
  1826. "psr/http-client-implementation": "1.0"
  1827. },
  1828. "require-dev": {
  1829. "bamarni/composer-bin-plugin": "^1.8.2",
  1830. "ext-curl": "*",
  1831. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1832. "php-http/message-factory": "^1.1",
  1833. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1834. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1835. },
  1836. "suggest": {
  1837. "ext-curl": "Required for CURL handler support",
  1838. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1839. "psr/log": "Required for using the Log middleware"
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "bamarni-bin": {
  1844. "bin-links": true,
  1845. "forward-command": false
  1846. }
  1847. },
  1848. "autoload": {
  1849. "files": [
  1850. "src/functions_include.php"
  1851. ],
  1852. "psr-4": {
  1853. "GuzzleHttp\\": "src/"
  1854. }
  1855. },
  1856. "notification-url": "https://packagist.org/downloads/",
  1857. "license": [
  1858. "MIT"
  1859. ],
  1860. "authors": [
  1861. {
  1862. "name": "Graham Campbell",
  1863. "email": "hello@gjcampbell.co.uk",
  1864. "homepage": "https://github.com/GrahamCampbell"
  1865. },
  1866. {
  1867. "name": "Michael Dowling",
  1868. "email": "mtdowling@gmail.com",
  1869. "homepage": "https://github.com/mtdowling"
  1870. },
  1871. {
  1872. "name": "Jeremy Lindblom",
  1873. "email": "jeremeamia@gmail.com",
  1874. "homepage": "https://github.com/jeremeamia"
  1875. },
  1876. {
  1877. "name": "George Mponos",
  1878. "email": "gmponos@gmail.com",
  1879. "homepage": "https://github.com/gmponos"
  1880. },
  1881. {
  1882. "name": "Tobias Nyholm",
  1883. "email": "tobias.nyholm@gmail.com",
  1884. "homepage": "https://github.com/Nyholm"
  1885. },
  1886. {
  1887. "name": "Márk Sági-Kazár",
  1888. "email": "mark.sagikazar@gmail.com",
  1889. "homepage": "https://github.com/sagikazarmark"
  1890. },
  1891. {
  1892. "name": "Tobias Schultze",
  1893. "email": "webmaster@tubo-world.de",
  1894. "homepage": "https://github.com/Tobion"
  1895. }
  1896. ],
  1897. "description": "Guzzle is a PHP HTTP client library",
  1898. "keywords": [
  1899. "client",
  1900. "curl",
  1901. "framework",
  1902. "http",
  1903. "http client",
  1904. "psr-18",
  1905. "psr-7",
  1906. "rest",
  1907. "web service"
  1908. ],
  1909. "support": {
  1910. "issues": "https://github.com/guzzle/guzzle/issues",
  1911. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://github.com/GrahamCampbell",
  1916. "type": "github"
  1917. },
  1918. {
  1919. "url": "https://github.com/Nyholm",
  1920. "type": "github"
  1921. },
  1922. {
  1923. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1924. "type": "tidelift"
  1925. }
  1926. ],
  1927. "time": "2023-12-03T20:35:24+00:00"
  1928. },
  1929. {
  1930. "name": "guzzlehttp/promises",
  1931. "version": "2.0.1",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/guzzle/promises.git",
  1935. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1940. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1941. "shasum": "",
  1942. "mirrors": [
  1943. {
  1944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1945. "preferred": true
  1946. }
  1947. ]
  1948. },
  1949. "require": {
  1950. "php": "^7.2.5 || ^8.0"
  1951. },
  1952. "require-dev": {
  1953. "bamarni/composer-bin-plugin": "^1.8.1",
  1954. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "bamarni-bin": {
  1959. "bin-links": true,
  1960. "forward-command": false
  1961. }
  1962. },
  1963. "autoload": {
  1964. "psr-4": {
  1965. "GuzzleHttp\\Promise\\": "src/"
  1966. }
  1967. },
  1968. "notification-url": "https://packagist.org/downloads/",
  1969. "license": [
  1970. "MIT"
  1971. ],
  1972. "authors": [
  1973. {
  1974. "name": "Graham Campbell",
  1975. "email": "hello@gjcampbell.co.uk",
  1976. "homepage": "https://github.com/GrahamCampbell"
  1977. },
  1978. {
  1979. "name": "Michael Dowling",
  1980. "email": "mtdowling@gmail.com",
  1981. "homepage": "https://github.com/mtdowling"
  1982. },
  1983. {
  1984. "name": "Tobias Nyholm",
  1985. "email": "tobias.nyholm@gmail.com",
  1986. "homepage": "https://github.com/Nyholm"
  1987. },
  1988. {
  1989. "name": "Tobias Schultze",
  1990. "email": "webmaster@tubo-world.de",
  1991. "homepage": "https://github.com/Tobion"
  1992. }
  1993. ],
  1994. "description": "Guzzle promises library",
  1995. "keywords": [
  1996. "promise"
  1997. ],
  1998. "support": {
  1999. "issues": "https://github.com/guzzle/promises/issues",
  2000. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  2001. },
  2002. "funding": [
  2003. {
  2004. "url": "https://github.com/GrahamCampbell",
  2005. "type": "github"
  2006. },
  2007. {
  2008. "url": "https://github.com/Nyholm",
  2009. "type": "github"
  2010. },
  2011. {
  2012. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2013. "type": "tidelift"
  2014. }
  2015. ],
  2016. "time": "2023-08-03T15:11:55+00:00"
  2017. },
  2018. {
  2019. "name": "guzzlehttp/psr7",
  2020. "version": "2.6.2",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/guzzle/psr7.git",
  2024. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2029. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  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. "php": "^7.2.5 || ^8.0",
  2040. "psr/http-factory": "^1.0",
  2041. "psr/http-message": "^1.1 || ^2.0",
  2042. "ralouphie/getallheaders": "^3.0"
  2043. },
  2044. "provide": {
  2045. "psr/http-factory-implementation": "1.0",
  2046. "psr/http-message-implementation": "1.0"
  2047. },
  2048. "require-dev": {
  2049. "bamarni/composer-bin-plugin": "^1.8.2",
  2050. "http-interop/http-factory-tests": "^0.9",
  2051. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2052. },
  2053. "suggest": {
  2054. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2055. },
  2056. "type": "library",
  2057. "extra": {
  2058. "bamarni-bin": {
  2059. "bin-links": true,
  2060. "forward-command": false
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "GuzzleHttp\\Psr7\\": "src/"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Graham Campbell",
  2075. "email": "hello@gjcampbell.co.uk",
  2076. "homepage": "https://github.com/GrahamCampbell"
  2077. },
  2078. {
  2079. "name": "Michael Dowling",
  2080. "email": "mtdowling@gmail.com",
  2081. "homepage": "https://github.com/mtdowling"
  2082. },
  2083. {
  2084. "name": "George Mponos",
  2085. "email": "gmponos@gmail.com",
  2086. "homepage": "https://github.com/gmponos"
  2087. },
  2088. {
  2089. "name": "Tobias Nyholm",
  2090. "email": "tobias.nyholm@gmail.com",
  2091. "homepage": "https://github.com/Nyholm"
  2092. },
  2093. {
  2094. "name": "Márk Sági-Kazár",
  2095. "email": "mark.sagikazar@gmail.com",
  2096. "homepage": "https://github.com/sagikazarmark"
  2097. },
  2098. {
  2099. "name": "Tobias Schultze",
  2100. "email": "webmaster@tubo-world.de",
  2101. "homepage": "https://github.com/Tobion"
  2102. },
  2103. {
  2104. "name": "Márk Sági-Kazár",
  2105. "email": "mark.sagikazar@gmail.com",
  2106. "homepage": "https://sagikazarmark.hu"
  2107. }
  2108. ],
  2109. "description": "PSR-7 message implementation that also provides common utility methods",
  2110. "keywords": [
  2111. "http",
  2112. "message",
  2113. "psr-7",
  2114. "request",
  2115. "response",
  2116. "stream",
  2117. "uri",
  2118. "url"
  2119. ],
  2120. "support": {
  2121. "issues": "https://github.com/guzzle/psr7/issues",
  2122. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2123. },
  2124. "funding": [
  2125. {
  2126. "url": "https://github.com/GrahamCampbell",
  2127. "type": "github"
  2128. },
  2129. {
  2130. "url": "https://github.com/Nyholm",
  2131. "type": "github"
  2132. },
  2133. {
  2134. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2135. "type": "tidelift"
  2136. }
  2137. ],
  2138. "time": "2023-12-03T20:05:35+00:00"
  2139. },
  2140. {
  2141. "name": "guzzlehttp/uri-template",
  2142. "version": "v1.0.2",
  2143. "source": {
  2144. "type": "git",
  2145. "url": "https://github.com/guzzle/uri-template.git",
  2146. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d"
  2147. },
  2148. "dist": {
  2149. "type": "zip",
  2150. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d",
  2151. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d",
  2152. "shasum": "",
  2153. "mirrors": [
  2154. {
  2155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2156. "preferred": true
  2157. }
  2158. ]
  2159. },
  2160. "require": {
  2161. "php": "^7.2.5 || ^8.0",
  2162. "symfony/polyfill-php80": "^1.17"
  2163. },
  2164. "require-dev": {
  2165. "bamarni/composer-bin-plugin": "^1.8.1",
  2166. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  2167. "uri-template/tests": "1.0.0"
  2168. },
  2169. "type": "library",
  2170. "autoload": {
  2171. "psr-4": {
  2172. "GuzzleHttp\\UriTemplate\\": "src"
  2173. }
  2174. },
  2175. "notification-url": "https://packagist.org/downloads/",
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "Graham Campbell",
  2182. "email": "hello@gjcampbell.co.uk",
  2183. "homepage": "https://github.com/GrahamCampbell"
  2184. },
  2185. {
  2186. "name": "Michael Dowling",
  2187. "email": "mtdowling@gmail.com",
  2188. "homepage": "https://github.com/mtdowling"
  2189. },
  2190. {
  2191. "name": "George Mponos",
  2192. "email": "gmponos@gmail.com",
  2193. "homepage": "https://github.com/gmponos"
  2194. },
  2195. {
  2196. "name": "Tobias Nyholm",
  2197. "email": "tobias.nyholm@gmail.com",
  2198. "homepage": "https://github.com/Nyholm"
  2199. }
  2200. ],
  2201. "description": "A polyfill class for uri_template of PHP",
  2202. "keywords": [
  2203. "guzzlehttp",
  2204. "uri-template"
  2205. ],
  2206. "support": {
  2207. "issues": "https://github.com/guzzle/uri-template/issues",
  2208. "source": "https://github.com/guzzle/uri-template/tree/v1.0.2"
  2209. },
  2210. "funding": [
  2211. {
  2212. "url": "https://github.com/GrahamCampbell",
  2213. "type": "github"
  2214. },
  2215. {
  2216. "url": "https://github.com/Nyholm",
  2217. "type": "github"
  2218. },
  2219. {
  2220. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2221. "type": "tidelift"
  2222. }
  2223. ],
  2224. "time": "2023-08-27T10:19:19+00:00"
  2225. },
  2226. {
  2227. "name": "khanamiryan/qrcode-detector-decoder",
  2228. "version": "1.0.6",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  2232. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/45326fb83a2a375065dbb3a134b5b8a5872da569",
  2237. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569",
  2238. "shasum": "",
  2239. "mirrors": [
  2240. {
  2241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2242. "preferred": true
  2243. }
  2244. ]
  2245. },
  2246. "require": {
  2247. "php": ">=5.6"
  2248. },
  2249. "require-dev": {
  2250. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
  2251. "rector/rector": "^0.13.6",
  2252. "symplify/easy-coding-standard": "^11.0"
  2253. },
  2254. "type": "library",
  2255. "autoload": {
  2256. "files": [
  2257. "lib/Common/customFunctions.php"
  2258. ],
  2259. "psr-4": {
  2260. "Zxing\\": "lib/"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT",
  2266. "Apache-2.0"
  2267. ],
  2268. "authors": [
  2269. {
  2270. "name": "Ashot Khanamiryan",
  2271. "email": "a.khanamiryan@gmail.com",
  2272. "homepage": "https://github.com/khanamiryan",
  2273. "role": "Developer"
  2274. }
  2275. ],
  2276. "description": "QR code decoder / reader",
  2277. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  2278. "keywords": [
  2279. "barcode",
  2280. "qr",
  2281. "zxing"
  2282. ],
  2283. "support": {
  2284. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  2285. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.6"
  2286. },
  2287. "time": "2022-06-29T09:25:13+00:00"
  2288. },
  2289. {
  2290. "name": "laravel/framework",
  2291. "version": "v9.52.16",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://github.com/laravel/framework.git",
  2295. "reference": "082345d76fc6a55b649572efe10b11b03e279d24"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://api.github.com/repos/laravel/framework/zipball/082345d76fc6a55b649572efe10b11b03e279d24",
  2300. "reference": "082345d76fc6a55b649572efe10b11b03e279d24",
  2301. "shasum": "",
  2302. "mirrors": [
  2303. {
  2304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2305. "preferred": true
  2306. }
  2307. ]
  2308. },
  2309. "require": {
  2310. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2311. "doctrine/inflector": "^2.0.5",
  2312. "dragonmantank/cron-expression": "^3.3.2",
  2313. "egulias/email-validator": "^3.2.1|^4.0",
  2314. "ext-ctype": "*",
  2315. "ext-filter": "*",
  2316. "ext-hash": "*",
  2317. "ext-mbstring": "*",
  2318. "ext-openssl": "*",
  2319. "ext-session": "*",
  2320. "ext-tokenizer": "*",
  2321. "fruitcake/php-cors": "^1.2",
  2322. "guzzlehttp/uri-template": "^1.0",
  2323. "laravel/serializable-closure": "^1.2.2",
  2324. "league/commonmark": "^2.2.1",
  2325. "league/flysystem": "^3.8.0",
  2326. "monolog/monolog": "^2.0",
  2327. "nesbot/carbon": "^2.62.1",
  2328. "nunomaduro/termwind": "^1.13",
  2329. "php": "^8.0.2",
  2330. "psr/container": "^1.1.1|^2.0.1",
  2331. "psr/log": "^1.0|^2.0|^3.0",
  2332. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2333. "ramsey/uuid": "^4.7",
  2334. "symfony/console": "^6.0.9",
  2335. "symfony/error-handler": "^6.0",
  2336. "symfony/finder": "^6.0",
  2337. "symfony/http-foundation": "^6.0",
  2338. "symfony/http-kernel": "^6.0",
  2339. "symfony/mailer": "^6.0",
  2340. "symfony/mime": "^6.0",
  2341. "symfony/process": "^6.0",
  2342. "symfony/routing": "^6.0",
  2343. "symfony/uid": "^6.0",
  2344. "symfony/var-dumper": "^6.0",
  2345. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2346. "vlucas/phpdotenv": "^5.4.1",
  2347. "voku/portable-ascii": "^2.0"
  2348. },
  2349. "conflict": {
  2350. "tightenco/collect": "<5.5.33"
  2351. },
  2352. "provide": {
  2353. "psr/container-implementation": "1.1|2.0",
  2354. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2355. },
  2356. "replace": {
  2357. "illuminate/auth": "self.version",
  2358. "illuminate/broadcasting": "self.version",
  2359. "illuminate/bus": "self.version",
  2360. "illuminate/cache": "self.version",
  2361. "illuminate/collections": "self.version",
  2362. "illuminate/conditionable": "self.version",
  2363. "illuminate/config": "self.version",
  2364. "illuminate/console": "self.version",
  2365. "illuminate/container": "self.version",
  2366. "illuminate/contracts": "self.version",
  2367. "illuminate/cookie": "self.version",
  2368. "illuminate/database": "self.version",
  2369. "illuminate/encryption": "self.version",
  2370. "illuminate/events": "self.version",
  2371. "illuminate/filesystem": "self.version",
  2372. "illuminate/hashing": "self.version",
  2373. "illuminate/http": "self.version",
  2374. "illuminate/log": "self.version",
  2375. "illuminate/macroable": "self.version",
  2376. "illuminate/mail": "self.version",
  2377. "illuminate/notifications": "self.version",
  2378. "illuminate/pagination": "self.version",
  2379. "illuminate/pipeline": "self.version",
  2380. "illuminate/queue": "self.version",
  2381. "illuminate/redis": "self.version",
  2382. "illuminate/routing": "self.version",
  2383. "illuminate/session": "self.version",
  2384. "illuminate/support": "self.version",
  2385. "illuminate/testing": "self.version",
  2386. "illuminate/translation": "self.version",
  2387. "illuminate/validation": "self.version",
  2388. "illuminate/view": "self.version"
  2389. },
  2390. "require-dev": {
  2391. "ably/ably-php": "^1.0",
  2392. "aws/aws-sdk-php": "^3.235.5",
  2393. "doctrine/dbal": "^2.13.3|^3.1.4",
  2394. "ext-gmp": "*",
  2395. "fakerphp/faker": "^1.21",
  2396. "guzzlehttp/guzzle": "^7.5",
  2397. "league/flysystem-aws-s3-v3": "^3.0",
  2398. "league/flysystem-ftp": "^3.0",
  2399. "league/flysystem-path-prefixing": "^3.3",
  2400. "league/flysystem-read-only": "^3.3",
  2401. "league/flysystem-sftp-v3": "^3.0",
  2402. "mockery/mockery": "^1.5.1",
  2403. "orchestra/testbench-core": "^7.24",
  2404. "pda/pheanstalk": "^4.0",
  2405. "phpstan/phpdoc-parser": "^1.15",
  2406. "phpstan/phpstan": "^1.4.7",
  2407. "phpunit/phpunit": "^9.5.8",
  2408. "predis/predis": "^1.1.9|^2.0.2",
  2409. "symfony/cache": "^6.0",
  2410. "symfony/http-client": "^6.0"
  2411. },
  2412. "suggest": {
  2413. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2414. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2415. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2416. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2417. "ext-apcu": "Required to use the APC cache driver.",
  2418. "ext-fileinfo": "Required to use the Filesystem class.",
  2419. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2420. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2421. "ext-memcached": "Required to use the memcache cache driver.",
  2422. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2423. "ext-pdo": "Required to use all database features.",
  2424. "ext-posix": "Required to use all features of the queue worker.",
  2425. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2426. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2427. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2428. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2429. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2430. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2431. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2432. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2433. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2434. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2435. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2436. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2437. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2438. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  2439. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2440. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2441. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2442. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2443. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2444. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2445. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2446. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2447. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-master": "9.x-dev"
  2453. }
  2454. },
  2455. "autoload": {
  2456. "files": [
  2457. "src/Illuminate/Collections/helpers.php",
  2458. "src/Illuminate/Events/functions.php",
  2459. "src/Illuminate/Foundation/helpers.php",
  2460. "src/Illuminate/Support/helpers.php"
  2461. ],
  2462. "psr-4": {
  2463. "Illuminate\\": "src/Illuminate/",
  2464. "Illuminate\\Support\\": [
  2465. "src/Illuminate/Macroable/",
  2466. "src/Illuminate/Collections/",
  2467. "src/Illuminate/Conditionable/"
  2468. ]
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Taylor Otwell",
  2478. "email": "taylor@laravel.com"
  2479. }
  2480. ],
  2481. "description": "The Laravel Framework.",
  2482. "homepage": "https://laravel.com",
  2483. "keywords": [
  2484. "framework",
  2485. "laravel"
  2486. ],
  2487. "support": {
  2488. "issues": "https://github.com/laravel/framework/issues",
  2489. "source": "https://github.com/laravel/framework"
  2490. },
  2491. "time": "2023-10-03T13:02:30+00:00"
  2492. },
  2493. {
  2494. "name": "laravel/sanctum",
  2495. "version": "v2.15.1",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://github.com/laravel/sanctum.git",
  2499. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2504. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2505. "shasum": "",
  2506. "mirrors": [
  2507. {
  2508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2509. "preferred": true
  2510. }
  2511. ]
  2512. },
  2513. "require": {
  2514. "ext-json": "*",
  2515. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  2516. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  2517. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  2518. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  2519. "php": "^7.2|^8.0"
  2520. },
  2521. "require-dev": {
  2522. "mockery/mockery": "^1.0",
  2523. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2524. "phpunit/phpunit": "^8.0|^9.3"
  2525. },
  2526. "type": "library",
  2527. "extra": {
  2528. "branch-alias": {
  2529. "dev-master": "2.x-dev"
  2530. },
  2531. "laravel": {
  2532. "providers": [
  2533. "Laravel\\Sanctum\\SanctumServiceProvider"
  2534. ]
  2535. }
  2536. },
  2537. "autoload": {
  2538. "psr-4": {
  2539. "Laravel\\Sanctum\\": "src/"
  2540. }
  2541. },
  2542. "notification-url": "https://packagist.org/downloads/",
  2543. "license": [
  2544. "MIT"
  2545. ],
  2546. "authors": [
  2547. {
  2548. "name": "Taylor Otwell",
  2549. "email": "taylor@laravel.com"
  2550. }
  2551. ],
  2552. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2553. "keywords": [
  2554. "auth",
  2555. "laravel",
  2556. "sanctum"
  2557. ],
  2558. "support": {
  2559. "issues": "https://github.com/laravel/sanctum/issues",
  2560. "source": "https://github.com/laravel/sanctum"
  2561. },
  2562. "time": "2022-04-08T13:39:49+00:00"
  2563. },
  2564. {
  2565. "name": "laravel/serializable-closure",
  2566. "version": "v1.3.3",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/laravel/serializable-closure.git",
  2570. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2575. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2576. "shasum": "",
  2577. "mirrors": [
  2578. {
  2579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2580. "preferred": true
  2581. }
  2582. ]
  2583. },
  2584. "require": {
  2585. "php": "^7.3|^8.0"
  2586. },
  2587. "require-dev": {
  2588. "nesbot/carbon": "^2.61",
  2589. "pestphp/pest": "^1.21.3",
  2590. "phpstan/phpstan": "^1.8.2",
  2591. "symfony/var-dumper": "^5.4.11"
  2592. },
  2593. "type": "library",
  2594. "extra": {
  2595. "branch-alias": {
  2596. "dev-master": "1.x-dev"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Laravel\\SerializableClosure\\": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Taylor Otwell",
  2611. "email": "taylor@laravel.com"
  2612. },
  2613. {
  2614. "name": "Nuno Maduro",
  2615. "email": "nuno@laravel.com"
  2616. }
  2617. ],
  2618. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2619. "keywords": [
  2620. "closure",
  2621. "laravel",
  2622. "serializable"
  2623. ],
  2624. "support": {
  2625. "issues": "https://github.com/laravel/serializable-closure/issues",
  2626. "source": "https://github.com/laravel/serializable-closure"
  2627. },
  2628. "time": "2023-11-08T14:08:06+00:00"
  2629. },
  2630. {
  2631. "name": "laravel/tinker",
  2632. "version": "v2.8.2",
  2633. "source": {
  2634. "type": "git",
  2635. "url": "https://github.com/laravel/tinker.git",
  2636. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  2637. },
  2638. "dist": {
  2639. "type": "zip",
  2640. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2641. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2642. "shasum": "",
  2643. "mirrors": [
  2644. {
  2645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2646. "preferred": true
  2647. }
  2648. ]
  2649. },
  2650. "require": {
  2651. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2652. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2653. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2654. "php": "^7.2.5|^8.0",
  2655. "psy/psysh": "^0.10.4|^0.11.1",
  2656. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2657. },
  2658. "require-dev": {
  2659. "mockery/mockery": "~1.3.3|^1.4.2",
  2660. "phpstan/phpstan": "^1.10",
  2661. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2662. },
  2663. "suggest": {
  2664. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2665. },
  2666. "type": "library",
  2667. "extra": {
  2668. "branch-alias": {
  2669. "dev-master": "2.x-dev"
  2670. },
  2671. "laravel": {
  2672. "providers": [
  2673. "Laravel\\Tinker\\TinkerServiceProvider"
  2674. ]
  2675. }
  2676. },
  2677. "autoload": {
  2678. "psr-4": {
  2679. "Laravel\\Tinker\\": "src/"
  2680. }
  2681. },
  2682. "notification-url": "https://packagist.org/downloads/",
  2683. "license": [
  2684. "MIT"
  2685. ],
  2686. "authors": [
  2687. {
  2688. "name": "Taylor Otwell",
  2689. "email": "taylor@laravel.com"
  2690. }
  2691. ],
  2692. "description": "Powerful REPL for the Laravel framework.",
  2693. "keywords": [
  2694. "REPL",
  2695. "Tinker",
  2696. "laravel",
  2697. "psysh"
  2698. ],
  2699. "support": {
  2700. "issues": "https://github.com/laravel/tinker/issues",
  2701. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  2702. },
  2703. "time": "2023-08-15T14:27:00+00:00"
  2704. },
  2705. {
  2706. "name": "league/commonmark",
  2707. "version": "2.4.1",
  2708. "source": {
  2709. "type": "git",
  2710. "url": "https://github.com/thephpleague/commonmark.git",
  2711. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2712. },
  2713. "dist": {
  2714. "type": "zip",
  2715. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2716. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2717. "shasum": "",
  2718. "mirrors": [
  2719. {
  2720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2721. "preferred": true
  2722. }
  2723. ]
  2724. },
  2725. "require": {
  2726. "ext-mbstring": "*",
  2727. "league/config": "^1.1.1",
  2728. "php": "^7.4 || ^8.0",
  2729. "psr/event-dispatcher": "^1.0",
  2730. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2731. "symfony/polyfill-php80": "^1.16"
  2732. },
  2733. "require-dev": {
  2734. "cebe/markdown": "^1.0",
  2735. "commonmark/cmark": "0.30.0",
  2736. "commonmark/commonmark.js": "0.30.0",
  2737. "composer/package-versions-deprecated": "^1.8",
  2738. "embed/embed": "^4.4",
  2739. "erusev/parsedown": "^1.0",
  2740. "ext-json": "*",
  2741. "github/gfm": "0.29.0",
  2742. "michelf/php-markdown": "^1.4 || ^2.0",
  2743. "nyholm/psr7": "^1.5",
  2744. "phpstan/phpstan": "^1.8.2",
  2745. "phpunit/phpunit": "^9.5.21",
  2746. "scrutinizer/ocular": "^1.8.1",
  2747. "symfony/finder": "^5.3 | ^6.0",
  2748. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2749. "unleashedtech/php-coding-standard": "^3.1.1",
  2750. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2751. },
  2752. "suggest": {
  2753. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-main": "2.5-dev"
  2759. }
  2760. },
  2761. "autoload": {
  2762. "psr-4": {
  2763. "League\\CommonMark\\": "src"
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "BSD-3-Clause"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Colin O'Dell",
  2773. "email": "colinodell@gmail.com",
  2774. "homepage": "https://www.colinodell.com",
  2775. "role": "Lead Developer"
  2776. }
  2777. ],
  2778. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2779. "homepage": "https://commonmark.thephpleague.com",
  2780. "keywords": [
  2781. "commonmark",
  2782. "flavored",
  2783. "gfm",
  2784. "github",
  2785. "github-flavored",
  2786. "markdown",
  2787. "md",
  2788. "parser"
  2789. ],
  2790. "support": {
  2791. "docs": "https://commonmark.thephpleague.com/",
  2792. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2793. "issues": "https://github.com/thephpleague/commonmark/issues",
  2794. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2795. "source": "https://github.com/thephpleague/commonmark"
  2796. },
  2797. "funding": [
  2798. {
  2799. "url": "https://www.colinodell.com/sponsor",
  2800. "type": "custom"
  2801. },
  2802. {
  2803. "url": "https://www.paypal.me/colinpodell/10.00",
  2804. "type": "custom"
  2805. },
  2806. {
  2807. "url": "https://github.com/colinodell",
  2808. "type": "github"
  2809. },
  2810. {
  2811. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2812. "type": "tidelift"
  2813. }
  2814. ],
  2815. "time": "2023-08-30T16:55:00+00:00"
  2816. },
  2817. {
  2818. "name": "league/config",
  2819. "version": "v1.2.0",
  2820. "source": {
  2821. "type": "git",
  2822. "url": "https://github.com/thephpleague/config.git",
  2823. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2824. },
  2825. "dist": {
  2826. "type": "zip",
  2827. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2828. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2829. "shasum": "",
  2830. "mirrors": [
  2831. {
  2832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2833. "preferred": true
  2834. }
  2835. ]
  2836. },
  2837. "require": {
  2838. "dflydev/dot-access-data": "^3.0.1",
  2839. "nette/schema": "^1.2",
  2840. "php": "^7.4 || ^8.0"
  2841. },
  2842. "require-dev": {
  2843. "phpstan/phpstan": "^1.8.2",
  2844. "phpunit/phpunit": "^9.5.5",
  2845. "scrutinizer/ocular": "^1.8.1",
  2846. "unleashedtech/php-coding-standard": "^3.1",
  2847. "vimeo/psalm": "^4.7.3"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-main": "1.2-dev"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "League\\Config\\": "src"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "BSD-3-Clause"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Colin O'Dell",
  2867. "email": "colinodell@gmail.com",
  2868. "homepage": "https://www.colinodell.com",
  2869. "role": "Lead Developer"
  2870. }
  2871. ],
  2872. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2873. "homepage": "https://config.thephpleague.com",
  2874. "keywords": [
  2875. "array",
  2876. "config",
  2877. "configuration",
  2878. "dot",
  2879. "dot-access",
  2880. "nested",
  2881. "schema"
  2882. ],
  2883. "support": {
  2884. "docs": "https://config.thephpleague.com/",
  2885. "issues": "https://github.com/thephpleague/config/issues",
  2886. "rss": "https://github.com/thephpleague/config/releases.atom",
  2887. "source": "https://github.com/thephpleague/config"
  2888. },
  2889. "funding": [
  2890. {
  2891. "url": "https://www.colinodell.com/sponsor",
  2892. "type": "custom"
  2893. },
  2894. {
  2895. "url": "https://www.paypal.me/colinpodell/10.00",
  2896. "type": "custom"
  2897. },
  2898. {
  2899. "url": "https://github.com/colinodell",
  2900. "type": "github"
  2901. }
  2902. ],
  2903. "time": "2022-12-11T20:36:23+00:00"
  2904. },
  2905. {
  2906. "name": "league/flysystem",
  2907. "version": "3.22.0",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/thephpleague/flysystem.git",
  2911. "reference": "d18526ee587f265f091f47bb83f1d9a001ef6f36"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/d18526ee587f265f091f47bb83f1d9a001ef6f36",
  2916. "reference": "d18526ee587f265f091f47bb83f1d9a001ef6f36",
  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. "league/flysystem-local": "^3.0.0",
  2927. "league/mime-type-detection": "^1.0.0",
  2928. "php": "^8.0.2"
  2929. },
  2930. "conflict": {
  2931. "async-aws/core": "<1.19.0",
  2932. "async-aws/s3": "<1.14.0",
  2933. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2934. "guzzlehttp/guzzle": "<7.0",
  2935. "guzzlehttp/ringphp": "<1.1.1",
  2936. "phpseclib/phpseclib": "3.0.15",
  2937. "symfony/http-client": "<5.2"
  2938. },
  2939. "require-dev": {
  2940. "async-aws/s3": "^1.5 || ^2.0",
  2941. "async-aws/simple-s3": "^1.1 || ^2.0",
  2942. "aws/aws-sdk-php": "^3.220.0",
  2943. "composer/semver": "^3.0",
  2944. "ext-fileinfo": "*",
  2945. "ext-ftp": "*",
  2946. "ext-zip": "*",
  2947. "friendsofphp/php-cs-fixer": "^3.5",
  2948. "google/cloud-storage": "^1.23",
  2949. "microsoft/azure-storage-blob": "^1.1",
  2950. "phpseclib/phpseclib": "^3.0.34",
  2951. "phpstan/phpstan": "^1.10",
  2952. "phpunit/phpunit": "^9.5.11|^10.0",
  2953. "sabre/dav": "^4.3.1"
  2954. },
  2955. "type": "library",
  2956. "autoload": {
  2957. "psr-4": {
  2958. "League\\Flysystem\\": "src"
  2959. }
  2960. },
  2961. "notification-url": "https://packagist.org/downloads/",
  2962. "license": [
  2963. "MIT"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "Frank de Jonge",
  2968. "email": "info@frankdejonge.nl"
  2969. }
  2970. ],
  2971. "description": "File storage abstraction for PHP",
  2972. "keywords": [
  2973. "WebDAV",
  2974. "aws",
  2975. "cloud",
  2976. "file",
  2977. "files",
  2978. "filesystem",
  2979. "filesystems",
  2980. "ftp",
  2981. "s3",
  2982. "sftp",
  2983. "storage"
  2984. ],
  2985. "support": {
  2986. "issues": "https://github.com/thephpleague/flysystem/issues",
  2987. "source": "https://github.com/thephpleague/flysystem/tree/3.22.0"
  2988. },
  2989. "funding": [
  2990. {
  2991. "url": "https://ecologi.com/frankdejonge",
  2992. "type": "custom"
  2993. },
  2994. {
  2995. "url": "https://github.com/frankdejonge",
  2996. "type": "github"
  2997. }
  2998. ],
  2999. "time": "2023-12-03T18:35:53+00:00"
  3000. },
  3001. {
  3002. "name": "league/flysystem-local",
  3003. "version": "3.23.0",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://github.com/thephpleague/flysystem-local.git",
  3007. "reference": "5cf046ba5f059460e86a997c504dd781a39a109b"
  3008. },
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/5cf046ba5f059460e86a997c504dd781a39a109b",
  3012. "reference": "5cf046ba5f059460e86a997c504dd781a39a109b",
  3013. "shasum": "",
  3014. "mirrors": [
  3015. {
  3016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3017. "preferred": true
  3018. }
  3019. ]
  3020. },
  3021. "require": {
  3022. "ext-fileinfo": "*",
  3023. "league/flysystem": "^3.0.0",
  3024. "league/mime-type-detection": "^1.0.0",
  3025. "php": "^8.0.2"
  3026. },
  3027. "type": "library",
  3028. "autoload": {
  3029. "psr-4": {
  3030. "League\\Flysystem\\Local\\": ""
  3031. }
  3032. },
  3033. "notification-url": "https://packagist.org/downloads/",
  3034. "license": [
  3035. "MIT"
  3036. ],
  3037. "authors": [
  3038. {
  3039. "name": "Frank de Jonge",
  3040. "email": "info@frankdejonge.nl"
  3041. }
  3042. ],
  3043. "description": "Local filesystem adapter for Flysystem.",
  3044. "keywords": [
  3045. "Flysystem",
  3046. "file",
  3047. "files",
  3048. "filesystem",
  3049. "local"
  3050. ],
  3051. "support": {
  3052. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  3053. "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.0"
  3054. },
  3055. "funding": [
  3056. {
  3057. "url": "https://ecologi.com/frankdejonge",
  3058. "type": "custom"
  3059. },
  3060. {
  3061. "url": "https://github.com/frankdejonge",
  3062. "type": "github"
  3063. }
  3064. ],
  3065. "time": "2023-12-04T10:14:46+00:00"
  3066. },
  3067. {
  3068. "name": "league/mime-type-detection",
  3069. "version": "1.13.0",
  3070. "source": {
  3071. "type": "git",
  3072. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3073. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  3074. },
  3075. "dist": {
  3076. "type": "zip",
  3077. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  3078. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  3079. "shasum": "",
  3080. "mirrors": [
  3081. {
  3082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3083. "preferred": true
  3084. }
  3085. ]
  3086. },
  3087. "require": {
  3088. "ext-fileinfo": "*",
  3089. "php": "^7.4 || ^8.0"
  3090. },
  3091. "require-dev": {
  3092. "friendsofphp/php-cs-fixer": "^3.2",
  3093. "phpstan/phpstan": "^0.12.68",
  3094. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3095. },
  3096. "type": "library",
  3097. "autoload": {
  3098. "psr-4": {
  3099. "League\\MimeTypeDetection\\": "src"
  3100. }
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Frank de Jonge",
  3109. "email": "info@frankdejonge.nl"
  3110. }
  3111. ],
  3112. "description": "Mime-type detection for Flysystem",
  3113. "support": {
  3114. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3115. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  3116. },
  3117. "funding": [
  3118. {
  3119. "url": "https://github.com/frankdejonge",
  3120. "type": "github"
  3121. },
  3122. {
  3123. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3124. "type": "tidelift"
  3125. }
  3126. ],
  3127. "time": "2023-08-05T12:09:49+00:00"
  3128. },
  3129. {
  3130. "name": "mews/purifier",
  3131. "version": "3.4.1",
  3132. "source": {
  3133. "type": "git",
  3134. "url": "https://github.com/mewebstudio/Purifier.git",
  3135. "reference": "48e7bddc18140412d7cd815b6eea2fc7a141c432"
  3136. },
  3137. "dist": {
  3138. "type": "zip",
  3139. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/48e7bddc18140412d7cd815b6eea2fc7a141c432",
  3140. "reference": "48e7bddc18140412d7cd815b6eea2fc7a141c432",
  3141. "shasum": "",
  3142. "mirrors": [
  3143. {
  3144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3145. "preferred": true
  3146. }
  3147. ]
  3148. },
  3149. "require": {
  3150. "ezyang/htmlpurifier": "^4.16.0",
  3151. "illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3152. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3153. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3154. "php": "^7.2|^8.0"
  3155. },
  3156. "require-dev": {
  3157. "graham-campbell/testbench": "^3.2|^5.5.1",
  3158. "mockery/mockery": "^1.3.3",
  3159. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  3160. },
  3161. "suggest": {
  3162. "laravel/framework": "To test the Laravel bindings",
  3163. "laravel/lumen-framework": "To test the Lumen bindings"
  3164. },
  3165. "type": "package",
  3166. "extra": {
  3167. "laravel": {
  3168. "providers": [
  3169. "Mews\\Purifier\\PurifierServiceProvider"
  3170. ],
  3171. "aliases": {
  3172. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  3173. }
  3174. }
  3175. },
  3176. "autoload": {
  3177. "files": [
  3178. "src/helpers.php"
  3179. ],
  3180. "psr-4": {
  3181. "Mews\\Purifier\\": "src/"
  3182. }
  3183. },
  3184. "notification-url": "https://packagist.org/downloads/",
  3185. "license": [
  3186. "MIT"
  3187. ],
  3188. "authors": [
  3189. {
  3190. "name": "Muharrem ERİN",
  3191. "email": "me@mewebstudio.com",
  3192. "homepage": "https://github.com/mewebstudio",
  3193. "role": "Developer"
  3194. }
  3195. ],
  3196. "description": "Laravel 5/6/7/8/9/10 HtmlPurifier Package",
  3197. "homepage": "https://github.com/mewebstudio/purifier",
  3198. "keywords": [
  3199. "Laravel Purifier",
  3200. "Laravel Security",
  3201. "Purifier",
  3202. "htmlpurifier",
  3203. "laravel HtmlPurifier",
  3204. "security",
  3205. "xss"
  3206. ],
  3207. "support": {
  3208. "issues": "https://github.com/mewebstudio/Purifier/issues",
  3209. "source": "https://github.com/mewebstudio/Purifier/tree/3.4.1"
  3210. },
  3211. "time": "2023-03-14T08:28:28+00:00"
  3212. },
  3213. {
  3214. "name": "monolog/monolog",
  3215. "version": "2.9.2",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/Seldaek/monolog.git",
  3219. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3224. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3225. "shasum": "",
  3226. "mirrors": [
  3227. {
  3228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3229. "preferred": true
  3230. }
  3231. ]
  3232. },
  3233. "require": {
  3234. "php": ">=7.2",
  3235. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3236. },
  3237. "provide": {
  3238. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3239. },
  3240. "require-dev": {
  3241. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3242. "doctrine/couchdb": "~1.0@dev",
  3243. "elasticsearch/elasticsearch": "^7 || ^8",
  3244. "ext-json": "*",
  3245. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3246. "guzzlehttp/guzzle": "^7.4",
  3247. "guzzlehttp/psr7": "^2.2",
  3248. "mongodb/mongodb": "^1.8",
  3249. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3250. "phpspec/prophecy": "^1.15",
  3251. "phpstan/phpstan": "^0.12.91",
  3252. "phpunit/phpunit": "^8.5.14",
  3253. "predis/predis": "^1.1 || ^2.0",
  3254. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3255. "ruflin/elastica": "^7",
  3256. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3257. "symfony/mailer": "^5.4 || ^6",
  3258. "symfony/mime": "^5.4 || ^6"
  3259. },
  3260. "suggest": {
  3261. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3262. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3263. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3264. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3265. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3266. "ext-mbstring": "Allow to work properly with unicode symbols",
  3267. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3268. "ext-openssl": "Required to send log messages using SSL",
  3269. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3270. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3271. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3272. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3273. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3274. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3275. },
  3276. "type": "library",
  3277. "extra": {
  3278. "branch-alias": {
  3279. "dev-main": "2.x-dev"
  3280. }
  3281. },
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Monolog\\": "src/Monolog"
  3285. }
  3286. },
  3287. "notification-url": "https://packagist.org/downloads/",
  3288. "license": [
  3289. "MIT"
  3290. ],
  3291. "authors": [
  3292. {
  3293. "name": "Jordi Boggiano",
  3294. "email": "j.boggiano@seld.be",
  3295. "homepage": "https://seld.be"
  3296. }
  3297. ],
  3298. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3299. "homepage": "https://github.com/Seldaek/monolog",
  3300. "keywords": [
  3301. "log",
  3302. "logging",
  3303. "psr-3"
  3304. ],
  3305. "support": {
  3306. "issues": "https://github.com/Seldaek/monolog/issues",
  3307. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3308. },
  3309. "funding": [
  3310. {
  3311. "url": "https://github.com/Seldaek",
  3312. "type": "github"
  3313. },
  3314. {
  3315. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3316. "type": "tidelift"
  3317. }
  3318. ],
  3319. "time": "2023-10-27T15:25:26+00:00"
  3320. },
  3321. {
  3322. "name": "myclabs/php-enum",
  3323. "version": "1.8.4",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://github.com/myclabs/php-enum.git",
  3327. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3332. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3333. "shasum": "",
  3334. "mirrors": [
  3335. {
  3336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3337. "preferred": true
  3338. }
  3339. ]
  3340. },
  3341. "require": {
  3342. "ext-json": "*",
  3343. "php": "^7.3 || ^8.0"
  3344. },
  3345. "require-dev": {
  3346. "phpunit/phpunit": "^9.5",
  3347. "squizlabs/php_codesniffer": "1.*",
  3348. "vimeo/psalm": "^4.6.2"
  3349. },
  3350. "type": "library",
  3351. "autoload": {
  3352. "psr-4": {
  3353. "MyCLabs\\Enum\\": "src/"
  3354. },
  3355. "classmap": [
  3356. "stubs/Stringable.php"
  3357. ]
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "PHP Enum contributors",
  3366. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3367. }
  3368. ],
  3369. "description": "PHP Enum implementation",
  3370. "homepage": "http://github.com/myclabs/php-enum",
  3371. "keywords": [
  3372. "enum"
  3373. ],
  3374. "support": {
  3375. "issues": "https://github.com/myclabs/php-enum/issues",
  3376. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3377. },
  3378. "funding": [
  3379. {
  3380. "url": "https://github.com/mnapoli",
  3381. "type": "github"
  3382. },
  3383. {
  3384. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3385. "type": "tidelift"
  3386. }
  3387. ],
  3388. "time": "2022-08-04T09:53:51+00:00"
  3389. },
  3390. {
  3391. "name": "nesbot/carbon",
  3392. "version": "2.72.1",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/briannesbitt/Carbon.git",
  3396. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3401. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3402. "shasum": "",
  3403. "mirrors": [
  3404. {
  3405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3406. "preferred": true
  3407. }
  3408. ]
  3409. },
  3410. "require": {
  3411. "carbonphp/carbon-doctrine-types": "*",
  3412. "ext-json": "*",
  3413. "php": "^7.1.8 || ^8.0",
  3414. "psr/clock": "^1.0",
  3415. "symfony/polyfill-mbstring": "^1.0",
  3416. "symfony/polyfill-php80": "^1.16",
  3417. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3418. },
  3419. "provide": {
  3420. "psr/clock-implementation": "1.0"
  3421. },
  3422. "require-dev": {
  3423. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3424. "doctrine/orm": "^2.7 || ^3.0",
  3425. "friendsofphp/php-cs-fixer": "^3.0",
  3426. "kylekatarnls/multi-tester": "^2.0",
  3427. "ondrejmirtes/better-reflection": "*",
  3428. "phpmd/phpmd": "^2.9",
  3429. "phpstan/extension-installer": "^1.0",
  3430. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3431. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3432. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3433. "squizlabs/php_codesniffer": "^3.4"
  3434. },
  3435. "bin": [
  3436. "bin/carbon"
  3437. ],
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-3.x": "3.x-dev",
  3442. "dev-master": "2.x-dev"
  3443. },
  3444. "laravel": {
  3445. "providers": [
  3446. "Carbon\\Laravel\\ServiceProvider"
  3447. ]
  3448. },
  3449. "phpstan": {
  3450. "includes": [
  3451. "extension.neon"
  3452. ]
  3453. }
  3454. },
  3455. "autoload": {
  3456. "psr-4": {
  3457. "Carbon\\": "src/Carbon/"
  3458. }
  3459. },
  3460. "notification-url": "https://packagist.org/downloads/",
  3461. "license": [
  3462. "MIT"
  3463. ],
  3464. "authors": [
  3465. {
  3466. "name": "Brian Nesbitt",
  3467. "email": "brian@nesbot.com",
  3468. "homepage": "https://markido.com"
  3469. },
  3470. {
  3471. "name": "kylekatarnls",
  3472. "homepage": "https://github.com/kylekatarnls"
  3473. }
  3474. ],
  3475. "description": "An API extension for DateTime that supports 281 different languages.",
  3476. "homepage": "https://carbon.nesbot.com",
  3477. "keywords": [
  3478. "date",
  3479. "datetime",
  3480. "time"
  3481. ],
  3482. "support": {
  3483. "docs": "https://carbon.nesbot.com/docs",
  3484. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3485. "source": "https://github.com/briannesbitt/Carbon"
  3486. },
  3487. "funding": [
  3488. {
  3489. "url": "https://github.com/sponsors/kylekatarnls",
  3490. "type": "github"
  3491. },
  3492. {
  3493. "url": "https://opencollective.com/Carbon#sponsor",
  3494. "type": "opencollective"
  3495. },
  3496. {
  3497. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3498. "type": "tidelift"
  3499. }
  3500. ],
  3501. "time": "2023-12-08T23:47:49+00:00"
  3502. },
  3503. {
  3504. "name": "nette/schema",
  3505. "version": "v1.2.5",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/nette/schema.git",
  3509. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3514. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3515. "shasum": "",
  3516. "mirrors": [
  3517. {
  3518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3519. "preferred": true
  3520. }
  3521. ]
  3522. },
  3523. "require": {
  3524. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3525. "php": "7.1 - 8.3"
  3526. },
  3527. "require-dev": {
  3528. "nette/tester": "^2.3 || ^2.4",
  3529. "phpstan/phpstan-nette": "^1.0",
  3530. "tracy/tracy": "^2.7"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "branch-alias": {
  3535. "dev-master": "1.2-dev"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "classmap": [
  3540. "src/"
  3541. ]
  3542. },
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "BSD-3-Clause",
  3546. "GPL-2.0-only",
  3547. "GPL-3.0-only"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "David Grudl",
  3552. "homepage": "https://davidgrudl.com"
  3553. },
  3554. {
  3555. "name": "Nette Community",
  3556. "homepage": "https://nette.org/contributors"
  3557. }
  3558. ],
  3559. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3560. "homepage": "https://nette.org",
  3561. "keywords": [
  3562. "config",
  3563. "nette"
  3564. ],
  3565. "support": {
  3566. "issues": "https://github.com/nette/schema/issues",
  3567. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3568. },
  3569. "time": "2023-10-05T20:37:59+00:00"
  3570. },
  3571. {
  3572. "name": "nette/utils",
  3573. "version": "v4.0.2",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://github.com/nette/utils.git",
  3577. "reference": "c67c9f33ab9b3026709c7e606d93f7044678f8df"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://api.github.com/repos/nette/utils/zipball/c67c9f33ab9b3026709c7e606d93f7044678f8df",
  3582. "reference": "c67c9f33ab9b3026709c7e606d93f7044678f8df",
  3583. "shasum": "",
  3584. "mirrors": [
  3585. {
  3586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3587. "preferred": true
  3588. }
  3589. ]
  3590. },
  3591. "require": {
  3592. "php": ">=8.0 <8.4"
  3593. },
  3594. "conflict": {
  3595. "nette/finder": "<3",
  3596. "nette/schema": "<1.2.2"
  3597. },
  3598. "require-dev": {
  3599. "jetbrains/phpstorm-attributes": "dev-master",
  3600. "nette/tester": "^2.5",
  3601. "phpstan/phpstan": "^1.0",
  3602. "tracy/tracy": "^2.9"
  3603. },
  3604. "suggest": {
  3605. "ext-gd": "to use Image",
  3606. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3607. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3608. "ext-json": "to use Nette\\Utils\\Json",
  3609. "ext-mbstring": "to use Strings::lower() etc...",
  3610. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3611. },
  3612. "type": "library",
  3613. "extra": {
  3614. "branch-alias": {
  3615. "dev-master": "4.0-dev"
  3616. }
  3617. },
  3618. "autoload": {
  3619. "classmap": [
  3620. "src/"
  3621. ]
  3622. },
  3623. "notification-url": "https://packagist.org/downloads/",
  3624. "license": [
  3625. "BSD-3-Clause",
  3626. "GPL-2.0-only",
  3627. "GPL-3.0-only"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "David Grudl",
  3632. "homepage": "https://davidgrudl.com"
  3633. },
  3634. {
  3635. "name": "Nette Community",
  3636. "homepage": "https://nette.org/contributors"
  3637. }
  3638. ],
  3639. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3640. "homepage": "https://nette.org",
  3641. "keywords": [
  3642. "array",
  3643. "core",
  3644. "datetime",
  3645. "images",
  3646. "json",
  3647. "nette",
  3648. "paginator",
  3649. "password",
  3650. "slugify",
  3651. "string",
  3652. "unicode",
  3653. "utf-8",
  3654. "utility",
  3655. "validation"
  3656. ],
  3657. "support": {
  3658. "issues": "https://github.com/nette/utils/issues",
  3659. "source": "https://github.com/nette/utils/tree/v4.0.2"
  3660. },
  3661. "time": "2023-09-19T10:10:47+00:00"
  3662. },
  3663. {
  3664. "name": "nikic/php-parser",
  3665. "version": "v4.18.0",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/nikic/PHP-Parser.git",
  3669. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3674. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3675. "shasum": "",
  3676. "mirrors": [
  3677. {
  3678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3679. "preferred": true
  3680. }
  3681. ]
  3682. },
  3683. "require": {
  3684. "ext-tokenizer": "*",
  3685. "php": ">=7.0"
  3686. },
  3687. "require-dev": {
  3688. "ircmaxell/php-yacc": "^0.0.7",
  3689. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3690. },
  3691. "bin": [
  3692. "bin/php-parse"
  3693. ],
  3694. "type": "library",
  3695. "extra": {
  3696. "branch-alias": {
  3697. "dev-master": "4.9-dev"
  3698. }
  3699. },
  3700. "autoload": {
  3701. "psr-4": {
  3702. "PhpParser\\": "lib/PhpParser"
  3703. }
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "BSD-3-Clause"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Nikita Popov"
  3712. }
  3713. ],
  3714. "description": "A PHP parser written in PHP",
  3715. "keywords": [
  3716. "parser",
  3717. "php"
  3718. ],
  3719. "support": {
  3720. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3721. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  3722. },
  3723. "time": "2023-12-10T21:03:43+00:00"
  3724. },
  3725. {
  3726. "name": "nunomaduro/termwind",
  3727. "version": "v1.15.1",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://github.com/nunomaduro/termwind.git",
  3731. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3736. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3737. "shasum": "",
  3738. "mirrors": [
  3739. {
  3740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3741. "preferred": true
  3742. }
  3743. ]
  3744. },
  3745. "require": {
  3746. "ext-mbstring": "*",
  3747. "php": "^8.0",
  3748. "symfony/console": "^5.3.0|^6.0.0"
  3749. },
  3750. "require-dev": {
  3751. "ergebnis/phpstan-rules": "^1.0.",
  3752. "illuminate/console": "^8.0|^9.0",
  3753. "illuminate/support": "^8.0|^9.0",
  3754. "laravel/pint": "^1.0.0",
  3755. "pestphp/pest": "^1.21.0",
  3756. "pestphp/pest-plugin-mock": "^1.0",
  3757. "phpstan/phpstan": "^1.4.6",
  3758. "phpstan/phpstan-strict-rules": "^1.1.0",
  3759. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3760. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3761. },
  3762. "type": "library",
  3763. "extra": {
  3764. "laravel": {
  3765. "providers": [
  3766. "Termwind\\Laravel\\TermwindServiceProvider"
  3767. ]
  3768. }
  3769. },
  3770. "autoload": {
  3771. "files": [
  3772. "src/Functions.php"
  3773. ],
  3774. "psr-4": {
  3775. "Termwind\\": "src/"
  3776. }
  3777. },
  3778. "notification-url": "https://packagist.org/downloads/",
  3779. "license": [
  3780. "MIT"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "Nuno Maduro",
  3785. "email": "enunomaduro@gmail.com"
  3786. }
  3787. ],
  3788. "description": "Its like Tailwind CSS, but for the console.",
  3789. "keywords": [
  3790. "cli",
  3791. "console",
  3792. "css",
  3793. "package",
  3794. "php",
  3795. "style"
  3796. ],
  3797. "support": {
  3798. "issues": "https://github.com/nunomaduro/termwind/issues",
  3799. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3800. },
  3801. "funding": [
  3802. {
  3803. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3804. "type": "custom"
  3805. },
  3806. {
  3807. "url": "https://github.com/nunomaduro",
  3808. "type": "github"
  3809. },
  3810. {
  3811. "url": "https://github.com/xiCO2k",
  3812. "type": "github"
  3813. }
  3814. ],
  3815. "time": "2023-02-08T01:06:31+00:00"
  3816. },
  3817. {
  3818. "name": "overtrue/easy-sms",
  3819. "version": "1.3.2",
  3820. "source": {
  3821. "type": "git",
  3822. "url": "https://github.com/overtrue/easy-sms.git",
  3823. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  3824. },
  3825. "dist": {
  3826. "type": "zip",
  3827. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  3828. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  3829. "shasum": "",
  3830. "mirrors": [
  3831. {
  3832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3833. "preferred": true
  3834. }
  3835. ]
  3836. },
  3837. "require": {
  3838. "ext-json": "*",
  3839. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3840. "php": ">=5.6"
  3841. },
  3842. "require-dev": {
  3843. "mockery/mockery": "1.3.1",
  3844. "phpunit/phpunit": "^5.7 || ^7.5"
  3845. },
  3846. "type": "library",
  3847. "autoload": {
  3848. "psr-4": {
  3849. "Overtrue\\EasySms\\": "src"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "overtrue",
  3859. "email": "i@overtrue.me"
  3860. }
  3861. ],
  3862. "description": "The easiest way to send short message.",
  3863. "support": {
  3864. "issues": "https://github.com/overtrue/easy-sms/issues",
  3865. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  3866. },
  3867. "time": "2021-01-22T06:52:59+00:00"
  3868. },
  3869. {
  3870. "name": "overtrue/socialite",
  3871. "version": "4.9.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/overtrue/socialite.git",
  3875. "reference": "dcbb1eed948fe036e6de8cdf0b125f5af1bc73fb"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/overtrue/socialite/zipball/dcbb1eed948fe036e6de8cdf0b125f5af1bc73fb",
  3880. "reference": "dcbb1eed948fe036e6de8cdf0b125f5af1bc73fb",
  3881. "shasum": "",
  3882. "mirrors": [
  3883. {
  3884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3885. "preferred": true
  3886. }
  3887. ]
  3888. },
  3889. "require": {
  3890. "ext-json": "*",
  3891. "ext-openssl": "*",
  3892. "guzzlehttp/guzzle": "^7.0",
  3893. "php": ">=8.0.2",
  3894. "symfony/http-foundation": "^6.0",
  3895. "symfony/psr-http-message-bridge": "^2.1"
  3896. },
  3897. "require-dev": {
  3898. "jetbrains/phpstorm-attributes": "^1.0",
  3899. "laravel/pint": "^1.2",
  3900. "mockery/mockery": "^1.3",
  3901. "phpstan/phpstan": "^1.7",
  3902. "phpunit/phpunit": "^9.0"
  3903. },
  3904. "type": "library",
  3905. "autoload": {
  3906. "files": [
  3907. "src/Contracts/FactoryInterface.php",
  3908. "src/Contracts/UserInterface.php",
  3909. "src/Contracts/ProviderInterface.php"
  3910. ],
  3911. "psr-4": {
  3912. "Overtrue\\Socialite\\": "src/"
  3913. }
  3914. },
  3915. "notification-url": "https://packagist.org/downloads/",
  3916. "license": [
  3917. "MIT"
  3918. ],
  3919. "authors": [
  3920. {
  3921. "name": "overtrue",
  3922. "email": "anzhengchao@gmail.com"
  3923. }
  3924. ],
  3925. "description": "A collection of OAuth 2 packages.",
  3926. "keywords": [
  3927. "Feishu",
  3928. "login",
  3929. "oauth",
  3930. "qcloud",
  3931. "qq",
  3932. "social",
  3933. "wechat",
  3934. "weibo"
  3935. ],
  3936. "support": {
  3937. "issues": "https://github.com/overtrue/socialite/issues",
  3938. "source": "https://github.com/overtrue/socialite/tree/4.9.0"
  3939. },
  3940. "funding": [
  3941. {
  3942. "url": "https://github.com/overtrue",
  3943. "type": "github"
  3944. }
  3945. ],
  3946. "time": "2023-09-01T11:01:34+00:00"
  3947. },
  3948. {
  3949. "name": "php-http/discovery",
  3950. "version": "1.19.2",
  3951. "source": {
  3952. "type": "git",
  3953. "url": "https://github.com/php-http/discovery.git",
  3954. "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb"
  3955. },
  3956. "dist": {
  3957. "type": "zip",
  3958. "url": "https://api.github.com/repos/php-http/discovery/zipball/61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
  3959. "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
  3960. "shasum": "",
  3961. "mirrors": [
  3962. {
  3963. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3964. "preferred": true
  3965. }
  3966. ]
  3967. },
  3968. "require": {
  3969. "composer-plugin-api": "^1.0|^2.0",
  3970. "php": "^7.1 || ^8.0"
  3971. },
  3972. "conflict": {
  3973. "nyholm/psr7": "<1.0",
  3974. "zendframework/zend-diactoros": "*"
  3975. },
  3976. "provide": {
  3977. "php-http/async-client-implementation": "*",
  3978. "php-http/client-implementation": "*",
  3979. "psr/http-client-implementation": "*",
  3980. "psr/http-factory-implementation": "*",
  3981. "psr/http-message-implementation": "*"
  3982. },
  3983. "require-dev": {
  3984. "composer/composer": "^1.0.2|^2.0",
  3985. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  3986. "php-http/httplug": "^1.0 || ^2.0",
  3987. "php-http/message-factory": "^1.0",
  3988. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  3989. "symfony/phpunit-bridge": "^6.2"
  3990. },
  3991. "type": "composer-plugin",
  3992. "extra": {
  3993. "class": "Http\\Discovery\\Composer\\Plugin",
  3994. "plugin-optional": true
  3995. },
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Http\\Discovery\\": "src/"
  3999. },
  4000. "exclude-from-classmap": [
  4001. "src/Composer/Plugin.php"
  4002. ]
  4003. },
  4004. "notification-url": "https://packagist.org/downloads/",
  4005. "license": [
  4006. "MIT"
  4007. ],
  4008. "authors": [
  4009. {
  4010. "name": "Márk Sági-Kazár",
  4011. "email": "mark.sagikazar@gmail.com"
  4012. }
  4013. ],
  4014. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  4015. "homepage": "http://php-http.org",
  4016. "keywords": [
  4017. "adapter",
  4018. "client",
  4019. "discovery",
  4020. "factory",
  4021. "http",
  4022. "message",
  4023. "psr17",
  4024. "psr7"
  4025. ],
  4026. "support": {
  4027. "issues": "https://github.com/php-http/discovery/issues",
  4028. "source": "https://github.com/php-http/discovery/tree/1.19.2"
  4029. },
  4030. "time": "2023-11-30T16:49:05+00:00"
  4031. },
  4032. {
  4033. "name": "php-http/httplug",
  4034. "version": "2.4.0",
  4035. "source": {
  4036. "type": "git",
  4037. "url": "https://github.com/php-http/httplug.git",
  4038. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  4039. },
  4040. "dist": {
  4041. "type": "zip",
  4042. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  4043. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  4044. "shasum": "",
  4045. "mirrors": [
  4046. {
  4047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4048. "preferred": true
  4049. }
  4050. ]
  4051. },
  4052. "require": {
  4053. "php": "^7.1 || ^8.0",
  4054. "php-http/promise": "^1.1",
  4055. "psr/http-client": "^1.0",
  4056. "psr/http-message": "^1.0 || ^2.0"
  4057. },
  4058. "require-dev": {
  4059. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  4060. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  4061. },
  4062. "type": "library",
  4063. "autoload": {
  4064. "psr-4": {
  4065. "Http\\Client\\": "src/"
  4066. }
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "MIT"
  4071. ],
  4072. "authors": [
  4073. {
  4074. "name": "Eric GELOEN",
  4075. "email": "geloen.eric@gmail.com"
  4076. },
  4077. {
  4078. "name": "Márk Sági-Kazár",
  4079. "email": "mark.sagikazar@gmail.com",
  4080. "homepage": "https://sagikazarmark.hu"
  4081. }
  4082. ],
  4083. "description": "HTTPlug, the HTTP client abstraction for PHP",
  4084. "homepage": "http://httplug.io",
  4085. "keywords": [
  4086. "client",
  4087. "http"
  4088. ],
  4089. "support": {
  4090. "issues": "https://github.com/php-http/httplug/issues",
  4091. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  4092. },
  4093. "time": "2023-04-14T15:10:03+00:00"
  4094. },
  4095. {
  4096. "name": "php-http/promise",
  4097. "version": "1.2.1",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/php-http/promise.git",
  4101. "reference": "44a67cb59f708f826f3bec35f22030b3edb90119"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/php-http/promise/zipball/44a67cb59f708f826f3bec35f22030b3edb90119",
  4106. "reference": "44a67cb59f708f826f3bec35f22030b3edb90119",
  4107. "shasum": "",
  4108. "mirrors": [
  4109. {
  4110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4111. "preferred": true
  4112. }
  4113. ]
  4114. },
  4115. "require": {
  4116. "php": "^7.1 || ^8.0"
  4117. },
  4118. "require-dev": {
  4119. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  4120. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  4121. },
  4122. "type": "library",
  4123. "autoload": {
  4124. "psr-4": {
  4125. "Http\\Promise\\": "src/"
  4126. }
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "MIT"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "Joel Wurtz",
  4135. "email": "joel.wurtz@gmail.com"
  4136. },
  4137. {
  4138. "name": "Márk Sági-Kazár",
  4139. "email": "mark.sagikazar@gmail.com"
  4140. }
  4141. ],
  4142. "description": "Promise used for asynchronous HTTP requests",
  4143. "homepage": "http://httplug.io",
  4144. "keywords": [
  4145. "promise"
  4146. ],
  4147. "support": {
  4148. "issues": "https://github.com/php-http/promise/issues",
  4149. "source": "https://github.com/php-http/promise/tree/1.2.1"
  4150. },
  4151. "time": "2023-11-08T12:57:08+00:00"
  4152. },
  4153. {
  4154. "name": "phpoption/phpoption",
  4155. "version": "1.9.2",
  4156. "source": {
  4157. "type": "git",
  4158. "url": "https://github.com/schmittjoh/php-option.git",
  4159. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4160. },
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4164. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4165. "shasum": "",
  4166. "mirrors": [
  4167. {
  4168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4169. "preferred": true
  4170. }
  4171. ]
  4172. },
  4173. "require": {
  4174. "php": "^7.2.5 || ^8.0"
  4175. },
  4176. "require-dev": {
  4177. "bamarni/composer-bin-plugin": "^1.8.2",
  4178. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4179. },
  4180. "type": "library",
  4181. "extra": {
  4182. "bamarni-bin": {
  4183. "bin-links": true,
  4184. "forward-command": true
  4185. },
  4186. "branch-alias": {
  4187. "dev-master": "1.9-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "psr-4": {
  4192. "PhpOption\\": "src/PhpOption/"
  4193. }
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "Apache-2.0"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Johannes M. Schmitt",
  4202. "email": "schmittjoh@gmail.com",
  4203. "homepage": "https://github.com/schmittjoh"
  4204. },
  4205. {
  4206. "name": "Graham Campbell",
  4207. "email": "hello@gjcampbell.co.uk",
  4208. "homepage": "https://github.com/GrahamCampbell"
  4209. }
  4210. ],
  4211. "description": "Option Type for PHP",
  4212. "keywords": [
  4213. "language",
  4214. "option",
  4215. "php",
  4216. "type"
  4217. ],
  4218. "support": {
  4219. "issues": "https://github.com/schmittjoh/php-option/issues",
  4220. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4221. },
  4222. "funding": [
  4223. {
  4224. "url": "https://github.com/GrahamCampbell",
  4225. "type": "github"
  4226. },
  4227. {
  4228. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4229. "type": "tidelift"
  4230. }
  4231. ],
  4232. "time": "2023-11-12T21:59:55+00:00"
  4233. },
  4234. {
  4235. "name": "pimple/pimple",
  4236. "version": "v3.5.0",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://github.com/silexphp/Pimple.git",
  4240. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4245. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4246. "shasum": "",
  4247. "mirrors": [
  4248. {
  4249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4250. "preferred": true
  4251. }
  4252. ]
  4253. },
  4254. "require": {
  4255. "php": ">=7.2.5",
  4256. "psr/container": "^1.1 || ^2.0"
  4257. },
  4258. "require-dev": {
  4259. "symfony/phpunit-bridge": "^5.4@dev"
  4260. },
  4261. "type": "library",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-master": "3.4.x-dev"
  4265. }
  4266. },
  4267. "autoload": {
  4268. "psr-0": {
  4269. "Pimple": "src/"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "MIT"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "Fabien Potencier",
  4279. "email": "fabien@symfony.com"
  4280. }
  4281. ],
  4282. "description": "Pimple, a simple Dependency Injection Container",
  4283. "homepage": "https://pimple.symfony.com",
  4284. "keywords": [
  4285. "container",
  4286. "dependency injection"
  4287. ],
  4288. "support": {
  4289. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4290. },
  4291. "time": "2021-10-28T11:13:42+00:00"
  4292. },
  4293. {
  4294. "name": "predis/predis",
  4295. "version": "v1.1.10",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/predis/predis.git",
  4299. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4304. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4305. "shasum": "",
  4306. "mirrors": [
  4307. {
  4308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4309. "preferred": true
  4310. }
  4311. ]
  4312. },
  4313. "require": {
  4314. "php": ">=5.3.9"
  4315. },
  4316. "require-dev": {
  4317. "phpunit/phpunit": "~4.8"
  4318. },
  4319. "suggest": {
  4320. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4321. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4322. },
  4323. "type": "library",
  4324. "autoload": {
  4325. "psr-4": {
  4326. "Predis\\": "src/"
  4327. }
  4328. },
  4329. "notification-url": "https://packagist.org/downloads/",
  4330. "license": [
  4331. "MIT"
  4332. ],
  4333. "authors": [
  4334. {
  4335. "name": "Daniele Alessandri",
  4336. "email": "suppakilla@gmail.com",
  4337. "homepage": "http://clorophilla.net",
  4338. "role": "Creator & Maintainer"
  4339. },
  4340. {
  4341. "name": "Till Krüss",
  4342. "homepage": "https://till.im",
  4343. "role": "Maintainer"
  4344. }
  4345. ],
  4346. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4347. "homepage": "http://github.com/predis/predis",
  4348. "keywords": [
  4349. "nosql",
  4350. "predis",
  4351. "redis"
  4352. ],
  4353. "support": {
  4354. "issues": "https://github.com/predis/predis/issues",
  4355. "source": "https://github.com/predis/predis/tree/v1.1.10"
  4356. },
  4357. "funding": [
  4358. {
  4359. "url": "https://github.com/sponsors/tillkruss",
  4360. "type": "github"
  4361. }
  4362. ],
  4363. "time": "2022-01-05T17:46:08+00:00"
  4364. },
  4365. {
  4366. "name": "psr/cache",
  4367. "version": "3.0.0",
  4368. "source": {
  4369. "type": "git",
  4370. "url": "https://github.com/php-fig/cache.git",
  4371. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4372. },
  4373. "dist": {
  4374. "type": "zip",
  4375. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4376. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4377. "shasum": "",
  4378. "mirrors": [
  4379. {
  4380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4381. "preferred": true
  4382. }
  4383. ]
  4384. },
  4385. "require": {
  4386. "php": ">=8.0.0"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-master": "1.0.x-dev"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Psr\\Cache\\": "src/"
  4397. }
  4398. },
  4399. "notification-url": "https://packagist.org/downloads/",
  4400. "license": [
  4401. "MIT"
  4402. ],
  4403. "authors": [
  4404. {
  4405. "name": "PHP-FIG",
  4406. "homepage": "https://www.php-fig.org/"
  4407. }
  4408. ],
  4409. "description": "Common interface for caching libraries",
  4410. "keywords": [
  4411. "cache",
  4412. "psr",
  4413. "psr-6"
  4414. ],
  4415. "support": {
  4416. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4417. },
  4418. "time": "2021-02-03T23:26:27+00:00"
  4419. },
  4420. {
  4421. "name": "psr/clock",
  4422. "version": "1.0.0",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://github.com/php-fig/clock.git",
  4426. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4431. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4432. "shasum": "",
  4433. "mirrors": [
  4434. {
  4435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4436. "preferred": true
  4437. }
  4438. ]
  4439. },
  4440. "require": {
  4441. "php": "^7.0 || ^8.0"
  4442. },
  4443. "type": "library",
  4444. "autoload": {
  4445. "psr-4": {
  4446. "Psr\\Clock\\": "src/"
  4447. }
  4448. },
  4449. "notification-url": "https://packagist.org/downloads/",
  4450. "license": [
  4451. "MIT"
  4452. ],
  4453. "authors": [
  4454. {
  4455. "name": "PHP-FIG",
  4456. "homepage": "https://www.php-fig.org/"
  4457. }
  4458. ],
  4459. "description": "Common interface for reading the clock.",
  4460. "homepage": "https://github.com/php-fig/clock",
  4461. "keywords": [
  4462. "clock",
  4463. "now",
  4464. "psr",
  4465. "psr-20",
  4466. "time"
  4467. ],
  4468. "support": {
  4469. "issues": "https://github.com/php-fig/clock/issues",
  4470. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4471. },
  4472. "time": "2022-11-25T14:36:26+00:00"
  4473. },
  4474. {
  4475. "name": "psr/container",
  4476. "version": "2.0.2",
  4477. "source": {
  4478. "type": "git",
  4479. "url": "https://github.com/php-fig/container.git",
  4480. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4481. },
  4482. "dist": {
  4483. "type": "zip",
  4484. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4485. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4486. "shasum": "",
  4487. "mirrors": [
  4488. {
  4489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4490. "preferred": true
  4491. }
  4492. ]
  4493. },
  4494. "require": {
  4495. "php": ">=7.4.0"
  4496. },
  4497. "type": "library",
  4498. "extra": {
  4499. "branch-alias": {
  4500. "dev-master": "2.0.x-dev"
  4501. }
  4502. },
  4503. "autoload": {
  4504. "psr-4": {
  4505. "Psr\\Container\\": "src/"
  4506. }
  4507. },
  4508. "notification-url": "https://packagist.org/downloads/",
  4509. "license": [
  4510. "MIT"
  4511. ],
  4512. "authors": [
  4513. {
  4514. "name": "PHP-FIG",
  4515. "homepage": "https://www.php-fig.org/"
  4516. }
  4517. ],
  4518. "description": "Common Container Interface (PHP FIG PSR-11)",
  4519. "homepage": "https://github.com/php-fig/container",
  4520. "keywords": [
  4521. "PSR-11",
  4522. "container",
  4523. "container-interface",
  4524. "container-interop",
  4525. "psr"
  4526. ],
  4527. "support": {
  4528. "issues": "https://github.com/php-fig/container/issues",
  4529. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4530. },
  4531. "time": "2021-11-05T16:47:00+00:00"
  4532. },
  4533. {
  4534. "name": "psr/event-dispatcher",
  4535. "version": "1.0.0",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/php-fig/event-dispatcher.git",
  4539. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4544. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4545. "shasum": "",
  4546. "mirrors": [
  4547. {
  4548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4549. "preferred": true
  4550. }
  4551. ]
  4552. },
  4553. "require": {
  4554. "php": ">=7.2.0"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-master": "1.0.x-dev"
  4560. }
  4561. },
  4562. "autoload": {
  4563. "psr-4": {
  4564. "Psr\\EventDispatcher\\": "src/"
  4565. }
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "PHP-FIG",
  4574. "homepage": "http://www.php-fig.org/"
  4575. }
  4576. ],
  4577. "description": "Standard interfaces for event handling.",
  4578. "keywords": [
  4579. "events",
  4580. "psr",
  4581. "psr-14"
  4582. ],
  4583. "support": {
  4584. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4585. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4586. },
  4587. "time": "2019-01-08T18:20:26+00:00"
  4588. },
  4589. {
  4590. "name": "psr/http-client",
  4591. "version": "1.0.3",
  4592. "source": {
  4593. "type": "git",
  4594. "url": "https://github.com/php-fig/http-client.git",
  4595. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4596. },
  4597. "dist": {
  4598. "type": "zip",
  4599. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4600. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4601. "shasum": "",
  4602. "mirrors": [
  4603. {
  4604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4605. "preferred": true
  4606. }
  4607. ]
  4608. },
  4609. "require": {
  4610. "php": "^7.0 || ^8.0",
  4611. "psr/http-message": "^1.0 || ^2.0"
  4612. },
  4613. "type": "library",
  4614. "extra": {
  4615. "branch-alias": {
  4616. "dev-master": "1.0.x-dev"
  4617. }
  4618. },
  4619. "autoload": {
  4620. "psr-4": {
  4621. "Psr\\Http\\Client\\": "src/"
  4622. }
  4623. },
  4624. "notification-url": "https://packagist.org/downloads/",
  4625. "license": [
  4626. "MIT"
  4627. ],
  4628. "authors": [
  4629. {
  4630. "name": "PHP-FIG",
  4631. "homepage": "https://www.php-fig.org/"
  4632. }
  4633. ],
  4634. "description": "Common interface for HTTP clients",
  4635. "homepage": "https://github.com/php-fig/http-client",
  4636. "keywords": [
  4637. "http",
  4638. "http-client",
  4639. "psr",
  4640. "psr-18"
  4641. ],
  4642. "support": {
  4643. "source": "https://github.com/php-fig/http-client"
  4644. },
  4645. "time": "2023-09-23T14:17:50+00:00"
  4646. },
  4647. {
  4648. "name": "psr/http-factory",
  4649. "version": "1.0.2",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/php-fig/http-factory.git",
  4653. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4658. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4659. "shasum": "",
  4660. "mirrors": [
  4661. {
  4662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4663. "preferred": true
  4664. }
  4665. ]
  4666. },
  4667. "require": {
  4668. "php": ">=7.0.0",
  4669. "psr/http-message": "^1.0 || ^2.0"
  4670. },
  4671. "type": "library",
  4672. "extra": {
  4673. "branch-alias": {
  4674. "dev-master": "1.0.x-dev"
  4675. }
  4676. },
  4677. "autoload": {
  4678. "psr-4": {
  4679. "Psr\\Http\\Message\\": "src/"
  4680. }
  4681. },
  4682. "notification-url": "https://packagist.org/downloads/",
  4683. "license": [
  4684. "MIT"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "PHP-FIG",
  4689. "homepage": "https://www.php-fig.org/"
  4690. }
  4691. ],
  4692. "description": "Common interfaces for PSR-7 HTTP message factories",
  4693. "keywords": [
  4694. "factory",
  4695. "http",
  4696. "message",
  4697. "psr",
  4698. "psr-17",
  4699. "psr-7",
  4700. "request",
  4701. "response"
  4702. ],
  4703. "support": {
  4704. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4705. },
  4706. "time": "2023-04-10T20:10:41+00:00"
  4707. },
  4708. {
  4709. "name": "psr/http-message",
  4710. "version": "2.0",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://github.com/php-fig/http-message.git",
  4714. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4719. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4720. "shasum": "",
  4721. "mirrors": [
  4722. {
  4723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4724. "preferred": true
  4725. }
  4726. ]
  4727. },
  4728. "require": {
  4729. "php": "^7.2 || ^8.0"
  4730. },
  4731. "type": "library",
  4732. "extra": {
  4733. "branch-alias": {
  4734. "dev-master": "2.0.x-dev"
  4735. }
  4736. },
  4737. "autoload": {
  4738. "psr-4": {
  4739. "Psr\\Http\\Message\\": "src/"
  4740. }
  4741. },
  4742. "notification-url": "https://packagist.org/downloads/",
  4743. "license": [
  4744. "MIT"
  4745. ],
  4746. "authors": [
  4747. {
  4748. "name": "PHP-FIG",
  4749. "homepage": "https://www.php-fig.org/"
  4750. }
  4751. ],
  4752. "description": "Common interface for HTTP messages",
  4753. "homepage": "https://github.com/php-fig/http-message",
  4754. "keywords": [
  4755. "http",
  4756. "http-message",
  4757. "psr",
  4758. "psr-7",
  4759. "request",
  4760. "response"
  4761. ],
  4762. "support": {
  4763. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4764. },
  4765. "time": "2023-04-04T09:54:51+00:00"
  4766. },
  4767. {
  4768. "name": "psr/log",
  4769. "version": "3.0.0",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/php-fig/log.git",
  4773. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4778. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4779. "shasum": "",
  4780. "mirrors": [
  4781. {
  4782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4783. "preferred": true
  4784. }
  4785. ]
  4786. },
  4787. "require": {
  4788. "php": ">=8.0.0"
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "3.x-dev"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Psr\\Log\\": "src"
  4799. }
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "PHP-FIG",
  4808. "homepage": "https://www.php-fig.org/"
  4809. }
  4810. ],
  4811. "description": "Common interface for logging libraries",
  4812. "homepage": "https://github.com/php-fig/log",
  4813. "keywords": [
  4814. "log",
  4815. "psr",
  4816. "psr-3"
  4817. ],
  4818. "support": {
  4819. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4820. },
  4821. "time": "2021-07-14T16:46:02+00:00"
  4822. },
  4823. {
  4824. "name": "psr/simple-cache",
  4825. "version": "3.0.0",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://github.com/php-fig/simple-cache.git",
  4829. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4834. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4835. "shasum": "",
  4836. "mirrors": [
  4837. {
  4838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4839. "preferred": true
  4840. }
  4841. ]
  4842. },
  4843. "require": {
  4844. "php": ">=8.0.0"
  4845. },
  4846. "type": "library",
  4847. "extra": {
  4848. "branch-alias": {
  4849. "dev-master": "3.0.x-dev"
  4850. }
  4851. },
  4852. "autoload": {
  4853. "psr-4": {
  4854. "Psr\\SimpleCache\\": "src/"
  4855. }
  4856. },
  4857. "notification-url": "https://packagist.org/downloads/",
  4858. "license": [
  4859. "MIT"
  4860. ],
  4861. "authors": [
  4862. {
  4863. "name": "PHP-FIG",
  4864. "homepage": "https://www.php-fig.org/"
  4865. }
  4866. ],
  4867. "description": "Common interfaces for simple caching",
  4868. "keywords": [
  4869. "cache",
  4870. "caching",
  4871. "psr",
  4872. "psr-16",
  4873. "simple-cache"
  4874. ],
  4875. "support": {
  4876. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4877. },
  4878. "time": "2021-10-29T13:26:27+00:00"
  4879. },
  4880. {
  4881. "name": "psy/psysh",
  4882. "version": "v0.11.22",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/bobthecow/psysh.git",
  4886. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  4891. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  4892. "shasum": "",
  4893. "mirrors": [
  4894. {
  4895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4896. "preferred": true
  4897. }
  4898. ]
  4899. },
  4900. "require": {
  4901. "ext-json": "*",
  4902. "ext-tokenizer": "*",
  4903. "nikic/php-parser": "^4.0 || ^3.1",
  4904. "php": "^8.0 || ^7.0.8",
  4905. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4906. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4907. },
  4908. "conflict": {
  4909. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4910. },
  4911. "require-dev": {
  4912. "bamarni/composer-bin-plugin": "^1.2"
  4913. },
  4914. "suggest": {
  4915. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4916. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4917. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4918. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4919. },
  4920. "bin": [
  4921. "bin/psysh"
  4922. ],
  4923. "type": "library",
  4924. "extra": {
  4925. "branch-alias": {
  4926. "dev-0.11": "0.11.x-dev"
  4927. },
  4928. "bamarni-bin": {
  4929. "bin-links": false,
  4930. "forward-command": false
  4931. }
  4932. },
  4933. "autoload": {
  4934. "files": [
  4935. "src/functions.php"
  4936. ],
  4937. "psr-4": {
  4938. "Psy\\": "src/"
  4939. }
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Justin Hileman",
  4948. "email": "justin@justinhileman.info",
  4949. "homepage": "http://justinhileman.com"
  4950. }
  4951. ],
  4952. "description": "An interactive shell for modern PHP.",
  4953. "homepage": "http://psysh.org",
  4954. "keywords": [
  4955. "REPL",
  4956. "console",
  4957. "interactive",
  4958. "shell"
  4959. ],
  4960. "support": {
  4961. "issues": "https://github.com/bobthecow/psysh/issues",
  4962. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  4963. },
  4964. "time": "2023-10-14T21:56:36+00:00"
  4965. },
  4966. {
  4967. "name": "ralouphie/getallheaders",
  4968. "version": "3.0.3",
  4969. "source": {
  4970. "type": "git",
  4971. "url": "https://github.com/ralouphie/getallheaders.git",
  4972. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4973. },
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4977. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4978. "shasum": "",
  4979. "mirrors": [
  4980. {
  4981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4982. "preferred": true
  4983. }
  4984. ]
  4985. },
  4986. "require": {
  4987. "php": ">=5.6"
  4988. },
  4989. "require-dev": {
  4990. "php-coveralls/php-coveralls": "^2.1",
  4991. "phpunit/phpunit": "^5 || ^6.5"
  4992. },
  4993. "type": "library",
  4994. "autoload": {
  4995. "files": [
  4996. "src/getallheaders.php"
  4997. ]
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Ralph Khattar",
  5006. "email": "ralph.khattar@gmail.com"
  5007. }
  5008. ],
  5009. "description": "A polyfill for getallheaders.",
  5010. "support": {
  5011. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5012. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5013. },
  5014. "time": "2019-03-08T08:55:37+00:00"
  5015. },
  5016. {
  5017. "name": "ramsey/collection",
  5018. "version": "2.0.0",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/ramsey/collection.git",
  5022. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  5027. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  5028. "shasum": "",
  5029. "mirrors": [
  5030. {
  5031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5032. "preferred": true
  5033. }
  5034. ]
  5035. },
  5036. "require": {
  5037. "php": "^8.1"
  5038. },
  5039. "require-dev": {
  5040. "captainhook/plugin-composer": "^5.3",
  5041. "ergebnis/composer-normalize": "^2.28.3",
  5042. "fakerphp/faker": "^1.21",
  5043. "hamcrest/hamcrest-php": "^2.0",
  5044. "jangregor/phpstan-prophecy": "^1.0",
  5045. "mockery/mockery": "^1.5",
  5046. "php-parallel-lint/php-console-highlighter": "^1.0",
  5047. "php-parallel-lint/php-parallel-lint": "^1.3",
  5048. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  5049. "phpspec/prophecy-phpunit": "^2.0",
  5050. "phpstan/extension-installer": "^1.2",
  5051. "phpstan/phpstan": "^1.9",
  5052. "phpstan/phpstan-mockery": "^1.1",
  5053. "phpstan/phpstan-phpunit": "^1.3",
  5054. "phpunit/phpunit": "^9.5",
  5055. "psalm/plugin-mockery": "^1.1",
  5056. "psalm/plugin-phpunit": "^0.18.4",
  5057. "ramsey/coding-standard": "^2.0.3",
  5058. "ramsey/conventional-commits": "^1.3",
  5059. "vimeo/psalm": "^5.4"
  5060. },
  5061. "type": "library",
  5062. "extra": {
  5063. "captainhook": {
  5064. "force-install": true
  5065. },
  5066. "ramsey/conventional-commits": {
  5067. "configFile": "conventional-commits.json"
  5068. }
  5069. },
  5070. "autoload": {
  5071. "psr-4": {
  5072. "Ramsey\\Collection\\": "src/"
  5073. }
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "Ben Ramsey",
  5082. "email": "ben@benramsey.com",
  5083. "homepage": "https://benramsey.com"
  5084. }
  5085. ],
  5086. "description": "A PHP library for representing and manipulating collections.",
  5087. "keywords": [
  5088. "array",
  5089. "collection",
  5090. "hash",
  5091. "map",
  5092. "queue",
  5093. "set"
  5094. ],
  5095. "support": {
  5096. "issues": "https://github.com/ramsey/collection/issues",
  5097. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  5098. },
  5099. "funding": [
  5100. {
  5101. "url": "https://github.com/ramsey",
  5102. "type": "github"
  5103. },
  5104. {
  5105. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5106. "type": "tidelift"
  5107. }
  5108. ],
  5109. "time": "2022-12-31T21:50:55+00:00"
  5110. },
  5111. {
  5112. "name": "ramsey/uuid",
  5113. "version": "4.7.5",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/ramsey/uuid.git",
  5117. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5122. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5123. "shasum": "",
  5124. "mirrors": [
  5125. {
  5126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5127. "preferred": true
  5128. }
  5129. ]
  5130. },
  5131. "require": {
  5132. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  5133. "ext-json": "*",
  5134. "php": "^8.0",
  5135. "ramsey/collection": "^1.2 || ^2.0"
  5136. },
  5137. "replace": {
  5138. "rhumsaa/uuid": "self.version"
  5139. },
  5140. "require-dev": {
  5141. "captainhook/captainhook": "^5.10",
  5142. "captainhook/plugin-composer": "^5.3",
  5143. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5144. "doctrine/annotations": "^1.8",
  5145. "ergebnis/composer-normalize": "^2.15",
  5146. "mockery/mockery": "^1.3",
  5147. "paragonie/random-lib": "^2",
  5148. "php-mock/php-mock": "^2.2",
  5149. "php-mock/php-mock-mockery": "^1.3",
  5150. "php-parallel-lint/php-parallel-lint": "^1.1",
  5151. "phpbench/phpbench": "^1.0",
  5152. "phpstan/extension-installer": "^1.1",
  5153. "phpstan/phpstan": "^1.8",
  5154. "phpstan/phpstan-mockery": "^1.1",
  5155. "phpstan/phpstan-phpunit": "^1.1",
  5156. "phpunit/phpunit": "^8.5 || ^9",
  5157. "ramsey/composer-repl": "^1.4",
  5158. "slevomat/coding-standard": "^8.4",
  5159. "squizlabs/php_codesniffer": "^3.5",
  5160. "vimeo/psalm": "^4.9"
  5161. },
  5162. "suggest": {
  5163. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5164. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5165. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5166. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5167. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5168. },
  5169. "type": "library",
  5170. "extra": {
  5171. "captainhook": {
  5172. "force-install": true
  5173. }
  5174. },
  5175. "autoload": {
  5176. "files": [
  5177. "src/functions.php"
  5178. ],
  5179. "psr-4": {
  5180. "Ramsey\\Uuid\\": "src/"
  5181. }
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5188. "keywords": [
  5189. "guid",
  5190. "identifier",
  5191. "uuid"
  5192. ],
  5193. "support": {
  5194. "issues": "https://github.com/ramsey/uuid/issues",
  5195. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  5196. },
  5197. "funding": [
  5198. {
  5199. "url": "https://github.com/ramsey",
  5200. "type": "github"
  5201. },
  5202. {
  5203. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5204. "type": "tidelift"
  5205. }
  5206. ],
  5207. "time": "2023-11-08T05:53:05+00:00"
  5208. },
  5209. {
  5210. "name": "symfony/cache",
  5211. "version": "v6.4.0",
  5212. "source": {
  5213. "type": "git",
  5214. "url": "https://github.com/symfony/cache.git",
  5215. "reference": "ac2d25f97b17eec6e19760b6b9962a4f7c44356a"
  5216. },
  5217. "dist": {
  5218. "type": "zip",
  5219. "url": "https://api.github.com/repos/symfony/cache/zipball/ac2d25f97b17eec6e19760b6b9962a4f7c44356a",
  5220. "reference": "ac2d25f97b17eec6e19760b6b9962a4f7c44356a",
  5221. "shasum": "",
  5222. "mirrors": [
  5223. {
  5224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5225. "preferred": true
  5226. }
  5227. ]
  5228. },
  5229. "require": {
  5230. "php": ">=8.1",
  5231. "psr/cache": "^2.0|^3.0",
  5232. "psr/log": "^1.1|^2|^3",
  5233. "symfony/cache-contracts": "^2.5|^3",
  5234. "symfony/service-contracts": "^2.5|^3",
  5235. "symfony/var-exporter": "^6.3.6|^7.0"
  5236. },
  5237. "conflict": {
  5238. "doctrine/dbal": "<2.13.1",
  5239. "symfony/dependency-injection": "<5.4",
  5240. "symfony/http-kernel": "<5.4",
  5241. "symfony/var-dumper": "<5.4"
  5242. },
  5243. "provide": {
  5244. "psr/cache-implementation": "2.0|3.0",
  5245. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5246. "symfony/cache-implementation": "1.1|2.0|3.0"
  5247. },
  5248. "require-dev": {
  5249. "cache/integration-tests": "dev-master",
  5250. "doctrine/dbal": "^2.13.1|^3|^4",
  5251. "predis/predis": "^1.1|^2.0",
  5252. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5253. "symfony/config": "^5.4|^6.0|^7.0",
  5254. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5255. "symfony/filesystem": "^5.4|^6.0|^7.0",
  5256. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5257. "symfony/messenger": "^5.4|^6.0|^7.0",
  5258. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5259. },
  5260. "type": "library",
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Symfony\\Component\\Cache\\": ""
  5264. },
  5265. "classmap": [
  5266. "Traits/ValueWrapper.php"
  5267. ],
  5268. "exclude-from-classmap": [
  5269. "/Tests/"
  5270. ]
  5271. },
  5272. "notification-url": "https://packagist.org/downloads/",
  5273. "license": [
  5274. "MIT"
  5275. ],
  5276. "authors": [
  5277. {
  5278. "name": "Nicolas Grekas",
  5279. "email": "p@tchwork.com"
  5280. },
  5281. {
  5282. "name": "Symfony Community",
  5283. "homepage": "https://symfony.com/contributors"
  5284. }
  5285. ],
  5286. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5287. "homepage": "https://symfony.com",
  5288. "keywords": [
  5289. "caching",
  5290. "psr6"
  5291. ],
  5292. "support": {
  5293. "source": "https://github.com/symfony/cache/tree/v6.4.0"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://symfony.com/sponsor",
  5298. "type": "custom"
  5299. },
  5300. {
  5301. "url": "https://github.com/fabpot",
  5302. "type": "github"
  5303. },
  5304. {
  5305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5306. "type": "tidelift"
  5307. }
  5308. ],
  5309. "time": "2023-11-24T19:28:07+00:00"
  5310. },
  5311. {
  5312. "name": "symfony/cache-contracts",
  5313. "version": "v3.4.0",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/symfony/cache-contracts.git",
  5317. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  5322. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  5323. "shasum": "",
  5324. "mirrors": [
  5325. {
  5326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5327. "preferred": true
  5328. }
  5329. ]
  5330. },
  5331. "require": {
  5332. "php": ">=8.1",
  5333. "psr/cache": "^3.0"
  5334. },
  5335. "type": "library",
  5336. "extra": {
  5337. "branch-alias": {
  5338. "dev-main": "3.4-dev"
  5339. },
  5340. "thanks": {
  5341. "name": "symfony/contracts",
  5342. "url": "https://github.com/symfony/contracts"
  5343. }
  5344. },
  5345. "autoload": {
  5346. "psr-4": {
  5347. "Symfony\\Contracts\\Cache\\": ""
  5348. }
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Nicolas Grekas",
  5357. "email": "p@tchwork.com"
  5358. },
  5359. {
  5360. "name": "Symfony Community",
  5361. "homepage": "https://symfony.com/contributors"
  5362. }
  5363. ],
  5364. "description": "Generic abstractions related to caching",
  5365. "homepage": "https://symfony.com",
  5366. "keywords": [
  5367. "abstractions",
  5368. "contracts",
  5369. "decoupling",
  5370. "interfaces",
  5371. "interoperability",
  5372. "standards"
  5373. ],
  5374. "support": {
  5375. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  5376. },
  5377. "funding": [
  5378. {
  5379. "url": "https://symfony.com/sponsor",
  5380. "type": "custom"
  5381. },
  5382. {
  5383. "url": "https://github.com/fabpot",
  5384. "type": "github"
  5385. },
  5386. {
  5387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5388. "type": "tidelift"
  5389. }
  5390. ],
  5391. "time": "2023-09-25T12:52:38+00:00"
  5392. },
  5393. {
  5394. "name": "symfony/console",
  5395. "version": "v6.4.1",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/symfony/console.git",
  5399. "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/symfony/console/zipball/a550a7c99daeedef3f9d23fb82e3531525ff11fd",
  5404. "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd",
  5405. "shasum": "",
  5406. "mirrors": [
  5407. {
  5408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5409. "preferred": true
  5410. }
  5411. ]
  5412. },
  5413. "require": {
  5414. "php": ">=8.1",
  5415. "symfony/deprecation-contracts": "^2.5|^3",
  5416. "symfony/polyfill-mbstring": "~1.0",
  5417. "symfony/service-contracts": "^2.5|^3",
  5418. "symfony/string": "^5.4|^6.0|^7.0"
  5419. },
  5420. "conflict": {
  5421. "symfony/dependency-injection": "<5.4",
  5422. "symfony/dotenv": "<5.4",
  5423. "symfony/event-dispatcher": "<5.4",
  5424. "symfony/lock": "<5.4",
  5425. "symfony/process": "<5.4"
  5426. },
  5427. "provide": {
  5428. "psr/log-implementation": "1.0|2.0|3.0"
  5429. },
  5430. "require-dev": {
  5431. "psr/log": "^1|^2|^3",
  5432. "symfony/config": "^5.4|^6.0|^7.0",
  5433. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5434. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5435. "symfony/http-foundation": "^6.4|^7.0",
  5436. "symfony/http-kernel": "^6.4|^7.0",
  5437. "symfony/lock": "^5.4|^6.0|^7.0",
  5438. "symfony/messenger": "^5.4|^6.0|^7.0",
  5439. "symfony/process": "^5.4|^6.0|^7.0",
  5440. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5441. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5442. },
  5443. "type": "library",
  5444. "autoload": {
  5445. "psr-4": {
  5446. "Symfony\\Component\\Console\\": ""
  5447. },
  5448. "exclude-from-classmap": [
  5449. "/Tests/"
  5450. ]
  5451. },
  5452. "notification-url": "https://packagist.org/downloads/",
  5453. "license": [
  5454. "MIT"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "Fabien Potencier",
  5459. "email": "fabien@symfony.com"
  5460. },
  5461. {
  5462. "name": "Symfony Community",
  5463. "homepage": "https://symfony.com/contributors"
  5464. }
  5465. ],
  5466. "description": "Eases the creation of beautiful and testable command line interfaces",
  5467. "homepage": "https://symfony.com",
  5468. "keywords": [
  5469. "cli",
  5470. "command-line",
  5471. "console",
  5472. "terminal"
  5473. ],
  5474. "support": {
  5475. "source": "https://github.com/symfony/console/tree/v6.4.1"
  5476. },
  5477. "funding": [
  5478. {
  5479. "url": "https://symfony.com/sponsor",
  5480. "type": "custom"
  5481. },
  5482. {
  5483. "url": "https://github.com/fabpot",
  5484. "type": "github"
  5485. },
  5486. {
  5487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5488. "type": "tidelift"
  5489. }
  5490. ],
  5491. "time": "2023-11-30T10:54:28+00:00"
  5492. },
  5493. {
  5494. "name": "symfony/css-selector",
  5495. "version": "v6.4.0",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://github.com/symfony/css-selector.git",
  5499. "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://api.github.com/repos/symfony/css-selector/zipball/d036c6c0d0b09e24a14a35f8292146a658f986e4",
  5504. "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4",
  5505. "shasum": "",
  5506. "mirrors": [
  5507. {
  5508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5509. "preferred": true
  5510. }
  5511. ]
  5512. },
  5513. "require": {
  5514. "php": ">=8.1"
  5515. },
  5516. "type": "library",
  5517. "autoload": {
  5518. "psr-4": {
  5519. "Symfony\\Component\\CssSelector\\": ""
  5520. },
  5521. "exclude-from-classmap": [
  5522. "/Tests/"
  5523. ]
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Fabien Potencier",
  5532. "email": "fabien@symfony.com"
  5533. },
  5534. {
  5535. "name": "Jean-François Simon",
  5536. "email": "jeanfrancois.simon@sensiolabs.com"
  5537. },
  5538. {
  5539. "name": "Symfony Community",
  5540. "homepage": "https://symfony.com/contributors"
  5541. }
  5542. ],
  5543. "description": "Converts CSS selectors to XPath expressions",
  5544. "homepage": "https://symfony.com",
  5545. "support": {
  5546. "source": "https://github.com/symfony/css-selector/tree/v6.4.0"
  5547. },
  5548. "funding": [
  5549. {
  5550. "url": "https://symfony.com/sponsor",
  5551. "type": "custom"
  5552. },
  5553. {
  5554. "url": "https://github.com/fabpot",
  5555. "type": "github"
  5556. },
  5557. {
  5558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5559. "type": "tidelift"
  5560. }
  5561. ],
  5562. "time": "2023-10-31T08:40:20+00:00"
  5563. },
  5564. {
  5565. "name": "symfony/deprecation-contracts",
  5566. "version": "v3.3.0",
  5567. "source": {
  5568. "type": "git",
  5569. "url": "https://github.com/symfony/deprecation-contracts.git",
  5570. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5571. },
  5572. "dist": {
  5573. "type": "zip",
  5574. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5575. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5576. "shasum": "",
  5577. "mirrors": [
  5578. {
  5579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5580. "preferred": true
  5581. }
  5582. ]
  5583. },
  5584. "require": {
  5585. "php": ">=8.1"
  5586. },
  5587. "type": "library",
  5588. "extra": {
  5589. "branch-alias": {
  5590. "dev-main": "3.4-dev"
  5591. },
  5592. "thanks": {
  5593. "name": "symfony/contracts",
  5594. "url": "https://github.com/symfony/contracts"
  5595. }
  5596. },
  5597. "autoload": {
  5598. "files": [
  5599. "function.php"
  5600. ]
  5601. },
  5602. "notification-url": "https://packagist.org/downloads/",
  5603. "license": [
  5604. "MIT"
  5605. ],
  5606. "authors": [
  5607. {
  5608. "name": "Nicolas Grekas",
  5609. "email": "p@tchwork.com"
  5610. },
  5611. {
  5612. "name": "Symfony Community",
  5613. "homepage": "https://symfony.com/contributors"
  5614. }
  5615. ],
  5616. "description": "A generic function and convention to trigger deprecation notices",
  5617. "homepage": "https://symfony.com",
  5618. "support": {
  5619. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  5620. },
  5621. "funding": [
  5622. {
  5623. "url": "https://symfony.com/sponsor",
  5624. "type": "custom"
  5625. },
  5626. {
  5627. "url": "https://github.com/fabpot",
  5628. "type": "github"
  5629. },
  5630. {
  5631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5632. "type": "tidelift"
  5633. }
  5634. ],
  5635. "time": "2023-05-23T14:45:45+00:00"
  5636. },
  5637. {
  5638. "name": "symfony/error-handler",
  5639. "version": "v6.4.0",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/symfony/error-handler.git",
  5643. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c873490a1c97b3a0a4838afc36ff36c112d02788",
  5648. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788",
  5649. "shasum": "",
  5650. "mirrors": [
  5651. {
  5652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5653. "preferred": true
  5654. }
  5655. ]
  5656. },
  5657. "require": {
  5658. "php": ">=8.1",
  5659. "psr/log": "^1|^2|^3",
  5660. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5661. },
  5662. "conflict": {
  5663. "symfony/deprecation-contracts": "<2.5",
  5664. "symfony/http-kernel": "<6.4"
  5665. },
  5666. "require-dev": {
  5667. "symfony/deprecation-contracts": "^2.5|^3",
  5668. "symfony/http-kernel": "^6.4|^7.0",
  5669. "symfony/serializer": "^5.4|^6.0|^7.0"
  5670. },
  5671. "bin": [
  5672. "Resources/bin/patch-type-declarations"
  5673. ],
  5674. "type": "library",
  5675. "autoload": {
  5676. "psr-4": {
  5677. "Symfony\\Component\\ErrorHandler\\": ""
  5678. },
  5679. "exclude-from-classmap": [
  5680. "/Tests/"
  5681. ]
  5682. },
  5683. "notification-url": "https://packagist.org/downloads/",
  5684. "license": [
  5685. "MIT"
  5686. ],
  5687. "authors": [
  5688. {
  5689. "name": "Fabien Potencier",
  5690. "email": "fabien@symfony.com"
  5691. },
  5692. {
  5693. "name": "Symfony Community",
  5694. "homepage": "https://symfony.com/contributors"
  5695. }
  5696. ],
  5697. "description": "Provides tools to manage errors and ease debugging PHP code",
  5698. "homepage": "https://symfony.com",
  5699. "support": {
  5700. "source": "https://github.com/symfony/error-handler/tree/v6.4.0"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://symfony.com/sponsor",
  5705. "type": "custom"
  5706. },
  5707. {
  5708. "url": "https://github.com/fabpot",
  5709. "type": "github"
  5710. },
  5711. {
  5712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5713. "type": "tidelift"
  5714. }
  5715. ],
  5716. "time": "2023-10-18T09:43:34+00:00"
  5717. },
  5718. {
  5719. "name": "symfony/event-dispatcher",
  5720. "version": "v6.4.0",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://github.com/symfony/event-dispatcher.git",
  5724. "reference": "d76d2632cfc2206eecb5ad2b26cd5934082941b6"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d76d2632cfc2206eecb5ad2b26cd5934082941b6",
  5729. "reference": "d76d2632cfc2206eecb5ad2b26cd5934082941b6",
  5730. "shasum": "",
  5731. "mirrors": [
  5732. {
  5733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5734. "preferred": true
  5735. }
  5736. ]
  5737. },
  5738. "require": {
  5739. "php": ">=8.1",
  5740. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5741. },
  5742. "conflict": {
  5743. "symfony/dependency-injection": "<5.4",
  5744. "symfony/service-contracts": "<2.5"
  5745. },
  5746. "provide": {
  5747. "psr/event-dispatcher-implementation": "1.0",
  5748. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5749. },
  5750. "require-dev": {
  5751. "psr/log": "^1|^2|^3",
  5752. "symfony/config": "^5.4|^6.0|^7.0",
  5753. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5754. "symfony/error-handler": "^5.4|^6.0|^7.0",
  5755. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5756. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5757. "symfony/service-contracts": "^2.5|^3",
  5758. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  5759. },
  5760. "type": "library",
  5761. "autoload": {
  5762. "psr-4": {
  5763. "Symfony\\Component\\EventDispatcher\\": ""
  5764. },
  5765. "exclude-from-classmap": [
  5766. "/Tests/"
  5767. ]
  5768. },
  5769. "notification-url": "https://packagist.org/downloads/",
  5770. "license": [
  5771. "MIT"
  5772. ],
  5773. "authors": [
  5774. {
  5775. "name": "Fabien Potencier",
  5776. "email": "fabien@symfony.com"
  5777. },
  5778. {
  5779. "name": "Symfony Community",
  5780. "homepage": "https://symfony.com/contributors"
  5781. }
  5782. ],
  5783. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5784. "homepage": "https://symfony.com",
  5785. "support": {
  5786. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.0"
  5787. },
  5788. "funding": [
  5789. {
  5790. "url": "https://symfony.com/sponsor",
  5791. "type": "custom"
  5792. },
  5793. {
  5794. "url": "https://github.com/fabpot",
  5795. "type": "github"
  5796. },
  5797. {
  5798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5799. "type": "tidelift"
  5800. }
  5801. ],
  5802. "time": "2023-07-27T06:52:43+00:00"
  5803. },
  5804. {
  5805. "name": "symfony/event-dispatcher-contracts",
  5806. "version": "v3.4.0",
  5807. "source": {
  5808. "type": "git",
  5809. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5810. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  5811. },
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  5815. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  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. "php": ">=8.1",
  5826. "psr/event-dispatcher": "^1"
  5827. },
  5828. "type": "library",
  5829. "extra": {
  5830. "branch-alias": {
  5831. "dev-main": "3.4-dev"
  5832. },
  5833. "thanks": {
  5834. "name": "symfony/contracts",
  5835. "url": "https://github.com/symfony/contracts"
  5836. }
  5837. },
  5838. "autoload": {
  5839. "psr-4": {
  5840. "Symfony\\Contracts\\EventDispatcher\\": ""
  5841. }
  5842. },
  5843. "notification-url": "https://packagist.org/downloads/",
  5844. "license": [
  5845. "MIT"
  5846. ],
  5847. "authors": [
  5848. {
  5849. "name": "Nicolas Grekas",
  5850. "email": "p@tchwork.com"
  5851. },
  5852. {
  5853. "name": "Symfony Community",
  5854. "homepage": "https://symfony.com/contributors"
  5855. }
  5856. ],
  5857. "description": "Generic abstractions related to dispatching event",
  5858. "homepage": "https://symfony.com",
  5859. "keywords": [
  5860. "abstractions",
  5861. "contracts",
  5862. "decoupling",
  5863. "interfaces",
  5864. "interoperability",
  5865. "standards"
  5866. ],
  5867. "support": {
  5868. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  5869. },
  5870. "funding": [
  5871. {
  5872. "url": "https://symfony.com/sponsor",
  5873. "type": "custom"
  5874. },
  5875. {
  5876. "url": "https://github.com/fabpot",
  5877. "type": "github"
  5878. },
  5879. {
  5880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5881. "type": "tidelift"
  5882. }
  5883. ],
  5884. "time": "2023-05-23T14:45:45+00:00"
  5885. },
  5886. {
  5887. "name": "symfony/finder",
  5888. "version": "v6.4.0",
  5889. "source": {
  5890. "type": "git",
  5891. "url": "https://github.com/symfony/finder.git",
  5892. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  5893. },
  5894. "dist": {
  5895. "type": "zip",
  5896. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  5897. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  5898. "shasum": "",
  5899. "mirrors": [
  5900. {
  5901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5902. "preferred": true
  5903. }
  5904. ]
  5905. },
  5906. "require": {
  5907. "php": ">=8.1"
  5908. },
  5909. "require-dev": {
  5910. "symfony/filesystem": "^6.0|^7.0"
  5911. },
  5912. "type": "library",
  5913. "autoload": {
  5914. "psr-4": {
  5915. "Symfony\\Component\\Finder\\": ""
  5916. },
  5917. "exclude-from-classmap": [
  5918. "/Tests/"
  5919. ]
  5920. },
  5921. "notification-url": "https://packagist.org/downloads/",
  5922. "license": [
  5923. "MIT"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Fabien Potencier",
  5928. "email": "fabien@symfony.com"
  5929. },
  5930. {
  5931. "name": "Symfony Community",
  5932. "homepage": "https://symfony.com/contributors"
  5933. }
  5934. ],
  5935. "description": "Finds files and directories via an intuitive fluent interface",
  5936. "homepage": "https://symfony.com",
  5937. "support": {
  5938. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  5939. },
  5940. "funding": [
  5941. {
  5942. "url": "https://symfony.com/sponsor",
  5943. "type": "custom"
  5944. },
  5945. {
  5946. "url": "https://github.com/fabpot",
  5947. "type": "github"
  5948. },
  5949. {
  5950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5951. "type": "tidelift"
  5952. }
  5953. ],
  5954. "time": "2023-10-31T17:30:12+00:00"
  5955. },
  5956. {
  5957. "name": "symfony/http-foundation",
  5958. "version": "v6.4.0",
  5959. "source": {
  5960. "type": "git",
  5961. "url": "https://github.com/symfony/http-foundation.git",
  5962. "reference": "44a6d39a9cc11e154547d882d5aac1e014440771"
  5963. },
  5964. "dist": {
  5965. "type": "zip",
  5966. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/44a6d39a9cc11e154547d882d5aac1e014440771",
  5967. "reference": "44a6d39a9cc11e154547d882d5aac1e014440771",
  5968. "shasum": "",
  5969. "mirrors": [
  5970. {
  5971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5972. "preferred": true
  5973. }
  5974. ]
  5975. },
  5976. "require": {
  5977. "php": ">=8.1",
  5978. "symfony/deprecation-contracts": "^2.5|^3",
  5979. "symfony/polyfill-mbstring": "~1.1",
  5980. "symfony/polyfill-php83": "^1.27"
  5981. },
  5982. "conflict": {
  5983. "symfony/cache": "<6.3"
  5984. },
  5985. "require-dev": {
  5986. "doctrine/dbal": "^2.13.1|^3|^4",
  5987. "predis/predis": "^1.1|^2.0",
  5988. "symfony/cache": "^6.3|^7.0",
  5989. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5990. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5991. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  5992. "symfony/mime": "^5.4|^6.0|^7.0",
  5993. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  5994. },
  5995. "type": "library",
  5996. "autoload": {
  5997. "psr-4": {
  5998. "Symfony\\Component\\HttpFoundation\\": ""
  5999. },
  6000. "exclude-from-classmap": [
  6001. "/Tests/"
  6002. ]
  6003. },
  6004. "notification-url": "https://packagist.org/downloads/",
  6005. "license": [
  6006. "MIT"
  6007. ],
  6008. "authors": [
  6009. {
  6010. "name": "Fabien Potencier",
  6011. "email": "fabien@symfony.com"
  6012. },
  6013. {
  6014. "name": "Symfony Community",
  6015. "homepage": "https://symfony.com/contributors"
  6016. }
  6017. ],
  6018. "description": "Defines an object-oriented layer for the HTTP specification",
  6019. "homepage": "https://symfony.com",
  6020. "support": {
  6021. "source": "https://github.com/symfony/http-foundation/tree/v6.4.0"
  6022. },
  6023. "funding": [
  6024. {
  6025. "url": "https://symfony.com/sponsor",
  6026. "type": "custom"
  6027. },
  6028. {
  6029. "url": "https://github.com/fabpot",
  6030. "type": "github"
  6031. },
  6032. {
  6033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6034. "type": "tidelift"
  6035. }
  6036. ],
  6037. "time": "2023-11-20T16:41:16+00:00"
  6038. },
  6039. {
  6040. "name": "symfony/http-kernel",
  6041. "version": "v6.4.1",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/symfony/http-kernel.git",
  6045. "reference": "2953274c16a229b3933ef73a6898e18388e12e1b"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2953274c16a229b3933ef73a6898e18388e12e1b",
  6050. "reference": "2953274c16a229b3933ef73a6898e18388e12e1b",
  6051. "shasum": "",
  6052. "mirrors": [
  6053. {
  6054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6055. "preferred": true
  6056. }
  6057. ]
  6058. },
  6059. "require": {
  6060. "php": ">=8.1",
  6061. "psr/log": "^1|^2|^3",
  6062. "symfony/deprecation-contracts": "^2.5|^3",
  6063. "symfony/error-handler": "^6.4|^7.0",
  6064. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6065. "symfony/http-foundation": "^6.4|^7.0",
  6066. "symfony/polyfill-ctype": "^1.8"
  6067. },
  6068. "conflict": {
  6069. "symfony/browser-kit": "<5.4",
  6070. "symfony/cache": "<5.4",
  6071. "symfony/config": "<6.1",
  6072. "symfony/console": "<5.4",
  6073. "symfony/dependency-injection": "<6.4",
  6074. "symfony/doctrine-bridge": "<5.4",
  6075. "symfony/form": "<5.4",
  6076. "symfony/http-client": "<5.4",
  6077. "symfony/http-client-contracts": "<2.5",
  6078. "symfony/mailer": "<5.4",
  6079. "symfony/messenger": "<5.4",
  6080. "symfony/translation": "<5.4",
  6081. "symfony/translation-contracts": "<2.5",
  6082. "symfony/twig-bridge": "<5.4",
  6083. "symfony/validator": "<6.4",
  6084. "symfony/var-dumper": "<6.3",
  6085. "twig/twig": "<2.13"
  6086. },
  6087. "provide": {
  6088. "psr/log-implementation": "1.0|2.0|3.0"
  6089. },
  6090. "require-dev": {
  6091. "psr/cache": "^1.0|^2.0|^3.0",
  6092. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6093. "symfony/clock": "^6.2|^7.0",
  6094. "symfony/config": "^6.1|^7.0",
  6095. "symfony/console": "^5.4|^6.0|^7.0",
  6096. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6097. "symfony/dependency-injection": "^6.4|^7.0",
  6098. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6099. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6100. "symfony/finder": "^5.4|^6.0|^7.0",
  6101. "symfony/http-client-contracts": "^2.5|^3",
  6102. "symfony/process": "^5.4|^6.0|^7.0",
  6103. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  6104. "symfony/routing": "^5.4|^6.0|^7.0",
  6105. "symfony/serializer": "^6.3|^7.0",
  6106. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6107. "symfony/translation": "^5.4|^6.0|^7.0",
  6108. "symfony/translation-contracts": "^2.5|^3",
  6109. "symfony/uid": "^5.4|^6.0|^7.0",
  6110. "symfony/validator": "^6.4|^7.0",
  6111. "symfony/var-exporter": "^6.2|^7.0",
  6112. "twig/twig": "^2.13|^3.0.4"
  6113. },
  6114. "type": "library",
  6115. "autoload": {
  6116. "psr-4": {
  6117. "Symfony\\Component\\HttpKernel\\": ""
  6118. },
  6119. "exclude-from-classmap": [
  6120. "/Tests/"
  6121. ]
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Fabien Potencier",
  6130. "email": "fabien@symfony.com"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Provides a structured process for converting a Request into a Response",
  6138. "homepage": "https://symfony.com",
  6139. "support": {
  6140. "source": "https://github.com/symfony/http-kernel/tree/v6.4.1"
  6141. },
  6142. "funding": [
  6143. {
  6144. "url": "https://symfony.com/sponsor",
  6145. "type": "custom"
  6146. },
  6147. {
  6148. "url": "https://github.com/fabpot",
  6149. "type": "github"
  6150. },
  6151. {
  6152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6153. "type": "tidelift"
  6154. }
  6155. ],
  6156. "time": "2023-12-01T17:02:02+00:00"
  6157. },
  6158. {
  6159. "name": "symfony/mailer",
  6160. "version": "v6.4.0",
  6161. "source": {
  6162. "type": "git",
  6163. "url": "https://github.com/symfony/mailer.git",
  6164. "reference": "ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba"
  6165. },
  6166. "dist": {
  6167. "type": "zip",
  6168. "url": "https://api.github.com/repos/symfony/mailer/zipball/ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba",
  6169. "reference": "ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba",
  6170. "shasum": "",
  6171. "mirrors": [
  6172. {
  6173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6174. "preferred": true
  6175. }
  6176. ]
  6177. },
  6178. "require": {
  6179. "egulias/email-validator": "^2.1.10|^3|^4",
  6180. "php": ">=8.1",
  6181. "psr/event-dispatcher": "^1",
  6182. "psr/log": "^1|^2|^3",
  6183. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6184. "symfony/mime": "^6.2|^7.0",
  6185. "symfony/service-contracts": "^2.5|^3"
  6186. },
  6187. "conflict": {
  6188. "symfony/http-client-contracts": "<2.5",
  6189. "symfony/http-kernel": "<5.4",
  6190. "symfony/messenger": "<6.2",
  6191. "symfony/mime": "<6.2",
  6192. "symfony/twig-bridge": "<6.2.1"
  6193. },
  6194. "require-dev": {
  6195. "symfony/console": "^5.4|^6.0|^7.0",
  6196. "symfony/http-client": "^5.4|^6.0|^7.0",
  6197. "symfony/messenger": "^6.2|^7.0",
  6198. "symfony/twig-bridge": "^6.2|^7.0"
  6199. },
  6200. "type": "library",
  6201. "autoload": {
  6202. "psr-4": {
  6203. "Symfony\\Component\\Mailer\\": ""
  6204. },
  6205. "exclude-from-classmap": [
  6206. "/Tests/"
  6207. ]
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "MIT"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "Fabien Potencier",
  6216. "email": "fabien@symfony.com"
  6217. },
  6218. {
  6219. "name": "Symfony Community",
  6220. "homepage": "https://symfony.com/contributors"
  6221. }
  6222. ],
  6223. "description": "Helps sending emails",
  6224. "homepage": "https://symfony.com",
  6225. "support": {
  6226. "source": "https://github.com/symfony/mailer/tree/v6.4.0"
  6227. },
  6228. "funding": [
  6229. {
  6230. "url": "https://symfony.com/sponsor",
  6231. "type": "custom"
  6232. },
  6233. {
  6234. "url": "https://github.com/fabpot",
  6235. "type": "github"
  6236. },
  6237. {
  6238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6239. "type": "tidelift"
  6240. }
  6241. ],
  6242. "time": "2023-11-12T18:02:22+00:00"
  6243. },
  6244. {
  6245. "name": "symfony/mime",
  6246. "version": "v6.4.0",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/symfony/mime.git",
  6250. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  6255. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  6256. "shasum": "",
  6257. "mirrors": [
  6258. {
  6259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6260. "preferred": true
  6261. }
  6262. ]
  6263. },
  6264. "require": {
  6265. "php": ">=8.1",
  6266. "symfony/deprecation-contracts": "^2.5|^3",
  6267. "symfony/polyfill-intl-idn": "^1.10",
  6268. "symfony/polyfill-mbstring": "^1.0"
  6269. },
  6270. "conflict": {
  6271. "egulias/email-validator": "~3.0.0",
  6272. "phpdocumentor/reflection-docblock": "<3.2.2",
  6273. "phpdocumentor/type-resolver": "<1.4.0",
  6274. "symfony/mailer": "<5.4",
  6275. "symfony/serializer": "<6.3.2"
  6276. },
  6277. "require-dev": {
  6278. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6279. "league/html-to-markdown": "^5.0",
  6280. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6281. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6282. "symfony/property-access": "^5.4|^6.0|^7.0",
  6283. "symfony/property-info": "^5.4|^6.0|^7.0",
  6284. "symfony/serializer": "^6.3.2|^7.0"
  6285. },
  6286. "type": "library",
  6287. "autoload": {
  6288. "psr-4": {
  6289. "Symfony\\Component\\Mime\\": ""
  6290. },
  6291. "exclude-from-classmap": [
  6292. "/Tests/"
  6293. ]
  6294. },
  6295. "notification-url": "https://packagist.org/downloads/",
  6296. "license": [
  6297. "MIT"
  6298. ],
  6299. "authors": [
  6300. {
  6301. "name": "Fabien Potencier",
  6302. "email": "fabien@symfony.com"
  6303. },
  6304. {
  6305. "name": "Symfony Community",
  6306. "homepage": "https://symfony.com/contributors"
  6307. }
  6308. ],
  6309. "description": "Allows manipulating MIME messages",
  6310. "homepage": "https://symfony.com",
  6311. "keywords": [
  6312. "mime",
  6313. "mime-type"
  6314. ],
  6315. "support": {
  6316. "source": "https://github.com/symfony/mime/tree/v6.4.0"
  6317. },
  6318. "funding": [
  6319. {
  6320. "url": "https://symfony.com/sponsor",
  6321. "type": "custom"
  6322. },
  6323. {
  6324. "url": "https://github.com/fabpot",
  6325. "type": "github"
  6326. },
  6327. {
  6328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6329. "type": "tidelift"
  6330. }
  6331. ],
  6332. "time": "2023-10-17T11:49:05+00:00"
  6333. },
  6334. {
  6335. "name": "symfony/options-resolver",
  6336. "version": "v5.4.21",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://github.com/symfony/options-resolver.git",
  6340. "reference": "4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9",
  6345. "reference": "4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9",
  6346. "shasum": "",
  6347. "mirrors": [
  6348. {
  6349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6350. "preferred": true
  6351. }
  6352. ]
  6353. },
  6354. "require": {
  6355. "php": ">=7.2.5",
  6356. "symfony/deprecation-contracts": "^2.1|^3",
  6357. "symfony/polyfill-php73": "~1.0",
  6358. "symfony/polyfill-php80": "^1.16"
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\OptionsResolver\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Fabien Potencier",
  6376. "email": "fabien@symfony.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Provides an improved replacement for the array_replace PHP function",
  6384. "homepage": "https://symfony.com",
  6385. "keywords": [
  6386. "config",
  6387. "configuration",
  6388. "options"
  6389. ],
  6390. "support": {
  6391. "source": "https://github.com/symfony/options-resolver/tree/v5.4.21"
  6392. },
  6393. "funding": [
  6394. {
  6395. "url": "https://symfony.com/sponsor",
  6396. "type": "custom"
  6397. },
  6398. {
  6399. "url": "https://github.com/fabpot",
  6400. "type": "github"
  6401. },
  6402. {
  6403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6404. "type": "tidelift"
  6405. }
  6406. ],
  6407. "time": "2023-02-14T08:03:56+00:00"
  6408. },
  6409. {
  6410. "name": "symfony/polyfill-ctype",
  6411. "version": "v1.28.0",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://github.com/symfony/polyfill-ctype.git",
  6415. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6420. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6421. "shasum": "",
  6422. "mirrors": [
  6423. {
  6424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6425. "preferred": true
  6426. }
  6427. ]
  6428. },
  6429. "require": {
  6430. "php": ">=7.1"
  6431. },
  6432. "provide": {
  6433. "ext-ctype": "*"
  6434. },
  6435. "suggest": {
  6436. "ext-ctype": "For best performance"
  6437. },
  6438. "type": "library",
  6439. "extra": {
  6440. "branch-alias": {
  6441. "dev-main": "1.28-dev"
  6442. },
  6443. "thanks": {
  6444. "name": "symfony/polyfill",
  6445. "url": "https://github.com/symfony/polyfill"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "files": [
  6450. "bootstrap.php"
  6451. ],
  6452. "psr-4": {
  6453. "Symfony\\Polyfill\\Ctype\\": ""
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Gert de Pagter",
  6463. "email": "BackEndTea@gmail.com"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Symfony polyfill for ctype functions",
  6471. "homepage": "https://symfony.com",
  6472. "keywords": [
  6473. "compatibility",
  6474. "ctype",
  6475. "polyfill",
  6476. "portable"
  6477. ],
  6478. "support": {
  6479. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6480. },
  6481. "funding": [
  6482. {
  6483. "url": "https://symfony.com/sponsor",
  6484. "type": "custom"
  6485. },
  6486. {
  6487. "url": "https://github.com/fabpot",
  6488. "type": "github"
  6489. },
  6490. {
  6491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6492. "type": "tidelift"
  6493. }
  6494. ],
  6495. "time": "2023-01-26T09:26:14+00:00"
  6496. },
  6497. {
  6498. "name": "symfony/polyfill-intl-grapheme",
  6499. "version": "v1.28.0",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6503. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6508. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6509. "shasum": "",
  6510. "mirrors": [
  6511. {
  6512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6513. "preferred": true
  6514. }
  6515. ]
  6516. },
  6517. "require": {
  6518. "php": ">=7.1"
  6519. },
  6520. "suggest": {
  6521. "ext-intl": "For best performance"
  6522. },
  6523. "type": "library",
  6524. "extra": {
  6525. "branch-alias": {
  6526. "dev-main": "1.28-dev"
  6527. },
  6528. "thanks": {
  6529. "name": "symfony/polyfill",
  6530. "url": "https://github.com/symfony/polyfill"
  6531. }
  6532. },
  6533. "autoload": {
  6534. "files": [
  6535. "bootstrap.php"
  6536. ],
  6537. "psr-4": {
  6538. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6539. }
  6540. },
  6541. "notification-url": "https://packagist.org/downloads/",
  6542. "license": [
  6543. "MIT"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "Nicolas Grekas",
  6548. "email": "p@tchwork.com"
  6549. },
  6550. {
  6551. "name": "Symfony Community",
  6552. "homepage": "https://symfony.com/contributors"
  6553. }
  6554. ],
  6555. "description": "Symfony polyfill for intl's grapheme_* functions",
  6556. "homepage": "https://symfony.com",
  6557. "keywords": [
  6558. "compatibility",
  6559. "grapheme",
  6560. "intl",
  6561. "polyfill",
  6562. "portable",
  6563. "shim"
  6564. ],
  6565. "support": {
  6566. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6567. },
  6568. "funding": [
  6569. {
  6570. "url": "https://symfony.com/sponsor",
  6571. "type": "custom"
  6572. },
  6573. {
  6574. "url": "https://github.com/fabpot",
  6575. "type": "github"
  6576. },
  6577. {
  6578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6579. "type": "tidelift"
  6580. }
  6581. ],
  6582. "time": "2023-01-26T09:26:14+00:00"
  6583. },
  6584. {
  6585. "name": "symfony/polyfill-intl-idn",
  6586. "version": "v1.28.0",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6590. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  6595. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  6596. "shasum": "",
  6597. "mirrors": [
  6598. {
  6599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6600. "preferred": true
  6601. }
  6602. ]
  6603. },
  6604. "require": {
  6605. "php": ">=7.1",
  6606. "symfony/polyfill-intl-normalizer": "^1.10",
  6607. "symfony/polyfill-php72": "^1.10"
  6608. },
  6609. "suggest": {
  6610. "ext-intl": "For best performance"
  6611. },
  6612. "type": "library",
  6613. "extra": {
  6614. "branch-alias": {
  6615. "dev-main": "1.28-dev"
  6616. },
  6617. "thanks": {
  6618. "name": "symfony/polyfill",
  6619. "url": "https://github.com/symfony/polyfill"
  6620. }
  6621. },
  6622. "autoload": {
  6623. "files": [
  6624. "bootstrap.php"
  6625. ],
  6626. "psr-4": {
  6627. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Laurent Bassin",
  6637. "email": "laurent@bassin.info"
  6638. },
  6639. {
  6640. "name": "Trevor Rowbotham",
  6641. "email": "trevor.rowbotham@pm.me"
  6642. },
  6643. {
  6644. "name": "Symfony Community",
  6645. "homepage": "https://symfony.com/contributors"
  6646. }
  6647. ],
  6648. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6649. "homepage": "https://symfony.com",
  6650. "keywords": [
  6651. "compatibility",
  6652. "idn",
  6653. "intl",
  6654. "polyfill",
  6655. "portable",
  6656. "shim"
  6657. ],
  6658. "support": {
  6659. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  6660. },
  6661. "funding": [
  6662. {
  6663. "url": "https://symfony.com/sponsor",
  6664. "type": "custom"
  6665. },
  6666. {
  6667. "url": "https://github.com/fabpot",
  6668. "type": "github"
  6669. },
  6670. {
  6671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6672. "type": "tidelift"
  6673. }
  6674. ],
  6675. "time": "2023-01-26T09:30:37+00:00"
  6676. },
  6677. {
  6678. "name": "symfony/polyfill-intl-normalizer",
  6679. "version": "v1.28.0",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6683. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6688. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6689. "shasum": "",
  6690. "mirrors": [
  6691. {
  6692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6693. "preferred": true
  6694. }
  6695. ]
  6696. },
  6697. "require": {
  6698. "php": ">=7.1"
  6699. },
  6700. "suggest": {
  6701. "ext-intl": "For best performance"
  6702. },
  6703. "type": "library",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-main": "1.28-dev"
  6707. },
  6708. "thanks": {
  6709. "name": "symfony/polyfill",
  6710. "url": "https://github.com/symfony/polyfill"
  6711. }
  6712. },
  6713. "autoload": {
  6714. "files": [
  6715. "bootstrap.php"
  6716. ],
  6717. "psr-4": {
  6718. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6719. },
  6720. "classmap": [
  6721. "Resources/stubs"
  6722. ]
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "MIT"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Nicolas Grekas",
  6731. "email": "p@tchwork.com"
  6732. },
  6733. {
  6734. "name": "Symfony Community",
  6735. "homepage": "https://symfony.com/contributors"
  6736. }
  6737. ],
  6738. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6739. "homepage": "https://symfony.com",
  6740. "keywords": [
  6741. "compatibility",
  6742. "intl",
  6743. "normalizer",
  6744. "polyfill",
  6745. "portable",
  6746. "shim"
  6747. ],
  6748. "support": {
  6749. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  6750. },
  6751. "funding": [
  6752. {
  6753. "url": "https://symfony.com/sponsor",
  6754. "type": "custom"
  6755. },
  6756. {
  6757. "url": "https://github.com/fabpot",
  6758. "type": "github"
  6759. },
  6760. {
  6761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6762. "type": "tidelift"
  6763. }
  6764. ],
  6765. "time": "2023-01-26T09:26:14+00:00"
  6766. },
  6767. {
  6768. "name": "symfony/polyfill-mbstring",
  6769. "version": "v1.28.0",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6773. "reference": "42292d99c55abe617799667f454222c54c60e229"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  6778. "reference": "42292d99c55abe617799667f454222c54c60e229",
  6779. "shasum": "",
  6780. "mirrors": [
  6781. {
  6782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6783. "preferred": true
  6784. }
  6785. ]
  6786. },
  6787. "require": {
  6788. "php": ">=7.1"
  6789. },
  6790. "provide": {
  6791. "ext-mbstring": "*"
  6792. },
  6793. "suggest": {
  6794. "ext-mbstring": "For best performance"
  6795. },
  6796. "type": "library",
  6797. "extra": {
  6798. "branch-alias": {
  6799. "dev-main": "1.28-dev"
  6800. },
  6801. "thanks": {
  6802. "name": "symfony/polyfill",
  6803. "url": "https://github.com/symfony/polyfill"
  6804. }
  6805. },
  6806. "autoload": {
  6807. "files": [
  6808. "bootstrap.php"
  6809. ],
  6810. "psr-4": {
  6811. "Symfony\\Polyfill\\Mbstring\\": ""
  6812. }
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Nicolas Grekas",
  6821. "email": "p@tchwork.com"
  6822. },
  6823. {
  6824. "name": "Symfony Community",
  6825. "homepage": "https://symfony.com/contributors"
  6826. }
  6827. ],
  6828. "description": "Symfony polyfill for the Mbstring extension",
  6829. "homepage": "https://symfony.com",
  6830. "keywords": [
  6831. "compatibility",
  6832. "mbstring",
  6833. "polyfill",
  6834. "portable",
  6835. "shim"
  6836. ],
  6837. "support": {
  6838. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  6839. },
  6840. "funding": [
  6841. {
  6842. "url": "https://symfony.com/sponsor",
  6843. "type": "custom"
  6844. },
  6845. {
  6846. "url": "https://github.com/fabpot",
  6847. "type": "github"
  6848. },
  6849. {
  6850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6851. "type": "tidelift"
  6852. }
  6853. ],
  6854. "time": "2023-07-28T09:04:16+00:00"
  6855. },
  6856. {
  6857. "name": "symfony/polyfill-php72",
  6858. "version": "v1.28.0",
  6859. "source": {
  6860. "type": "git",
  6861. "url": "https://github.com/symfony/polyfill-php72.git",
  6862. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  6863. },
  6864. "dist": {
  6865. "type": "zip",
  6866. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  6867. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  6868. "shasum": "",
  6869. "mirrors": [
  6870. {
  6871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6872. "preferred": true
  6873. }
  6874. ]
  6875. },
  6876. "require": {
  6877. "php": ">=7.1"
  6878. },
  6879. "type": "library",
  6880. "extra": {
  6881. "branch-alias": {
  6882. "dev-main": "1.28-dev"
  6883. },
  6884. "thanks": {
  6885. "name": "symfony/polyfill",
  6886. "url": "https://github.com/symfony/polyfill"
  6887. }
  6888. },
  6889. "autoload": {
  6890. "files": [
  6891. "bootstrap.php"
  6892. ],
  6893. "psr-4": {
  6894. "Symfony\\Polyfill\\Php72\\": ""
  6895. }
  6896. },
  6897. "notification-url": "https://packagist.org/downloads/",
  6898. "license": [
  6899. "MIT"
  6900. ],
  6901. "authors": [
  6902. {
  6903. "name": "Nicolas Grekas",
  6904. "email": "p@tchwork.com"
  6905. },
  6906. {
  6907. "name": "Symfony Community",
  6908. "homepage": "https://symfony.com/contributors"
  6909. }
  6910. ],
  6911. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6912. "homepage": "https://symfony.com",
  6913. "keywords": [
  6914. "compatibility",
  6915. "polyfill",
  6916. "portable",
  6917. "shim"
  6918. ],
  6919. "support": {
  6920. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  6921. },
  6922. "funding": [
  6923. {
  6924. "url": "https://symfony.com/sponsor",
  6925. "type": "custom"
  6926. },
  6927. {
  6928. "url": "https://github.com/fabpot",
  6929. "type": "github"
  6930. },
  6931. {
  6932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6933. "type": "tidelift"
  6934. }
  6935. ],
  6936. "time": "2023-01-26T09:26:14+00:00"
  6937. },
  6938. {
  6939. "name": "symfony/polyfill-php73",
  6940. "version": "v1.28.0",
  6941. "source": {
  6942. "type": "git",
  6943. "url": "https://github.com/symfony/polyfill-php73.git",
  6944. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6945. },
  6946. "dist": {
  6947. "type": "zip",
  6948. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6949. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6950. "shasum": "",
  6951. "mirrors": [
  6952. {
  6953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6954. "preferred": true
  6955. }
  6956. ]
  6957. },
  6958. "require": {
  6959. "php": ">=7.1"
  6960. },
  6961. "type": "library",
  6962. "extra": {
  6963. "branch-alias": {
  6964. "dev-main": "1.28-dev"
  6965. },
  6966. "thanks": {
  6967. "name": "symfony/polyfill",
  6968. "url": "https://github.com/symfony/polyfill"
  6969. }
  6970. },
  6971. "autoload": {
  6972. "files": [
  6973. "bootstrap.php"
  6974. ],
  6975. "psr-4": {
  6976. "Symfony\\Polyfill\\Php73\\": ""
  6977. },
  6978. "classmap": [
  6979. "Resources/stubs"
  6980. ]
  6981. },
  6982. "notification-url": "https://packagist.org/downloads/",
  6983. "license": [
  6984. "MIT"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "Nicolas Grekas",
  6989. "email": "p@tchwork.com"
  6990. },
  6991. {
  6992. "name": "Symfony Community",
  6993. "homepage": "https://symfony.com/contributors"
  6994. }
  6995. ],
  6996. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6997. "homepage": "https://symfony.com",
  6998. "keywords": [
  6999. "compatibility",
  7000. "polyfill",
  7001. "portable",
  7002. "shim"
  7003. ],
  7004. "support": {
  7005. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7006. },
  7007. "funding": [
  7008. {
  7009. "url": "https://symfony.com/sponsor",
  7010. "type": "custom"
  7011. },
  7012. {
  7013. "url": "https://github.com/fabpot",
  7014. "type": "github"
  7015. },
  7016. {
  7017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7018. "type": "tidelift"
  7019. }
  7020. ],
  7021. "time": "2023-01-26T09:26:14+00:00"
  7022. },
  7023. {
  7024. "name": "symfony/polyfill-php80",
  7025. "version": "v1.28.0",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/symfony/polyfill-php80.git",
  7029. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7034. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7035. "shasum": "",
  7036. "mirrors": [
  7037. {
  7038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7039. "preferred": true
  7040. }
  7041. ]
  7042. },
  7043. "require": {
  7044. "php": ">=7.1"
  7045. },
  7046. "type": "library",
  7047. "extra": {
  7048. "branch-alias": {
  7049. "dev-main": "1.28-dev"
  7050. },
  7051. "thanks": {
  7052. "name": "symfony/polyfill",
  7053. "url": "https://github.com/symfony/polyfill"
  7054. }
  7055. },
  7056. "autoload": {
  7057. "files": [
  7058. "bootstrap.php"
  7059. ],
  7060. "psr-4": {
  7061. "Symfony\\Polyfill\\Php80\\": ""
  7062. },
  7063. "classmap": [
  7064. "Resources/stubs"
  7065. ]
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "MIT"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Ion Bazan",
  7074. "email": "ion.bazan@gmail.com"
  7075. },
  7076. {
  7077. "name": "Nicolas Grekas",
  7078. "email": "p@tchwork.com"
  7079. },
  7080. {
  7081. "name": "Symfony Community",
  7082. "homepage": "https://symfony.com/contributors"
  7083. }
  7084. ],
  7085. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7086. "homepage": "https://symfony.com",
  7087. "keywords": [
  7088. "compatibility",
  7089. "polyfill",
  7090. "portable",
  7091. "shim"
  7092. ],
  7093. "support": {
  7094. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2023-01-26T09:26:14+00:00"
  7111. },
  7112. {
  7113. "name": "symfony/polyfill-php83",
  7114. "version": "v1.28.0",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/symfony/polyfill-php83.git",
  7118. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7123. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7124. "shasum": "",
  7125. "mirrors": [
  7126. {
  7127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7128. "preferred": true
  7129. }
  7130. ]
  7131. },
  7132. "require": {
  7133. "php": ">=7.1",
  7134. "symfony/polyfill-php80": "^1.14"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "branch-alias": {
  7139. "dev-main": "1.28-dev"
  7140. },
  7141. "thanks": {
  7142. "name": "symfony/polyfill",
  7143. "url": "https://github.com/symfony/polyfill"
  7144. }
  7145. },
  7146. "autoload": {
  7147. "files": [
  7148. "bootstrap.php"
  7149. ],
  7150. "psr-4": {
  7151. "Symfony\\Polyfill\\Php83\\": ""
  7152. },
  7153. "classmap": [
  7154. "Resources/stubs"
  7155. ]
  7156. },
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "Nicolas Grekas",
  7164. "email": "p@tchwork.com"
  7165. },
  7166. {
  7167. "name": "Symfony Community",
  7168. "homepage": "https://symfony.com/contributors"
  7169. }
  7170. ],
  7171. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7172. "homepage": "https://symfony.com",
  7173. "keywords": [
  7174. "compatibility",
  7175. "polyfill",
  7176. "portable",
  7177. "shim"
  7178. ],
  7179. "support": {
  7180. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7181. },
  7182. "funding": [
  7183. {
  7184. "url": "https://symfony.com/sponsor",
  7185. "type": "custom"
  7186. },
  7187. {
  7188. "url": "https://github.com/fabpot",
  7189. "type": "github"
  7190. },
  7191. {
  7192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7193. "type": "tidelift"
  7194. }
  7195. ],
  7196. "time": "2023-08-16T06:22:46+00:00"
  7197. },
  7198. {
  7199. "name": "symfony/polyfill-uuid",
  7200. "version": "v1.28.0",
  7201. "source": {
  7202. "type": "git",
  7203. "url": "https://github.com/symfony/polyfill-uuid.git",
  7204. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e"
  7205. },
  7206. "dist": {
  7207. "type": "zip",
  7208. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  7209. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  7210. "shasum": "",
  7211. "mirrors": [
  7212. {
  7213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7214. "preferred": true
  7215. }
  7216. ]
  7217. },
  7218. "require": {
  7219. "php": ">=7.1"
  7220. },
  7221. "provide": {
  7222. "ext-uuid": "*"
  7223. },
  7224. "suggest": {
  7225. "ext-uuid": "For best performance"
  7226. },
  7227. "type": "library",
  7228. "extra": {
  7229. "branch-alias": {
  7230. "dev-main": "1.28-dev"
  7231. },
  7232. "thanks": {
  7233. "name": "symfony/polyfill",
  7234. "url": "https://github.com/symfony/polyfill"
  7235. }
  7236. },
  7237. "autoload": {
  7238. "files": [
  7239. "bootstrap.php"
  7240. ],
  7241. "psr-4": {
  7242. "Symfony\\Polyfill\\Uuid\\": ""
  7243. }
  7244. },
  7245. "notification-url": "https://packagist.org/downloads/",
  7246. "license": [
  7247. "MIT"
  7248. ],
  7249. "authors": [
  7250. {
  7251. "name": "Grégoire Pineau",
  7252. "email": "lyrixx@lyrixx.info"
  7253. },
  7254. {
  7255. "name": "Symfony Community",
  7256. "homepage": "https://symfony.com/contributors"
  7257. }
  7258. ],
  7259. "description": "Symfony polyfill for uuid functions",
  7260. "homepage": "https://symfony.com",
  7261. "keywords": [
  7262. "compatibility",
  7263. "polyfill",
  7264. "portable",
  7265. "uuid"
  7266. ],
  7267. "support": {
  7268. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0"
  7269. },
  7270. "funding": [
  7271. {
  7272. "url": "https://symfony.com/sponsor",
  7273. "type": "custom"
  7274. },
  7275. {
  7276. "url": "https://github.com/fabpot",
  7277. "type": "github"
  7278. },
  7279. {
  7280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7281. "type": "tidelift"
  7282. }
  7283. ],
  7284. "time": "2023-01-26T09:26:14+00:00"
  7285. },
  7286. {
  7287. "name": "symfony/process",
  7288. "version": "v6.4.0",
  7289. "source": {
  7290. "type": "git",
  7291. "url": "https://github.com/symfony/process.git",
  7292. "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa"
  7293. },
  7294. "dist": {
  7295. "type": "zip",
  7296. "url": "https://api.github.com/repos/symfony/process/zipball/191703b1566d97a5425dc969e4350d32b8ef17aa",
  7297. "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa",
  7298. "shasum": "",
  7299. "mirrors": [
  7300. {
  7301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7302. "preferred": true
  7303. }
  7304. ]
  7305. },
  7306. "require": {
  7307. "php": ">=8.1"
  7308. },
  7309. "type": "library",
  7310. "autoload": {
  7311. "psr-4": {
  7312. "Symfony\\Component\\Process\\": ""
  7313. },
  7314. "exclude-from-classmap": [
  7315. "/Tests/"
  7316. ]
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "MIT"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Fabien Potencier",
  7325. "email": "fabien@symfony.com"
  7326. },
  7327. {
  7328. "name": "Symfony Community",
  7329. "homepage": "https://symfony.com/contributors"
  7330. }
  7331. ],
  7332. "description": "Executes commands in sub-processes",
  7333. "homepage": "https://symfony.com",
  7334. "support": {
  7335. "source": "https://github.com/symfony/process/tree/v6.4.0"
  7336. },
  7337. "funding": [
  7338. {
  7339. "url": "https://symfony.com/sponsor",
  7340. "type": "custom"
  7341. },
  7342. {
  7343. "url": "https://github.com/fabpot",
  7344. "type": "github"
  7345. },
  7346. {
  7347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7348. "type": "tidelift"
  7349. }
  7350. ],
  7351. "time": "2023-11-17T21:06:49+00:00"
  7352. },
  7353. {
  7354. "name": "symfony/property-access",
  7355. "version": "v5.4.26",
  7356. "source": {
  7357. "type": "git",
  7358. "url": "https://github.com/symfony/property-access.git",
  7359. "reference": "0249e46f69e92049a488f39fcf531cb42c50caaa"
  7360. },
  7361. "dist": {
  7362. "type": "zip",
  7363. "url": "https://api.github.com/repos/symfony/property-access/zipball/0249e46f69e92049a488f39fcf531cb42c50caaa",
  7364. "reference": "0249e46f69e92049a488f39fcf531cb42c50caaa",
  7365. "shasum": "",
  7366. "mirrors": [
  7367. {
  7368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7369. "preferred": true
  7370. }
  7371. ]
  7372. },
  7373. "require": {
  7374. "php": ">=7.2.5",
  7375. "symfony/deprecation-contracts": "^2.1|^3",
  7376. "symfony/polyfill-php80": "^1.16",
  7377. "symfony/property-info": "^5.2|^6.0"
  7378. },
  7379. "require-dev": {
  7380. "symfony/cache": "^4.4|^5.0|^6.0"
  7381. },
  7382. "suggest": {
  7383. "psr/cache-implementation": "To cache access methods."
  7384. },
  7385. "type": "library",
  7386. "autoload": {
  7387. "psr-4": {
  7388. "Symfony\\Component\\PropertyAccess\\": ""
  7389. },
  7390. "exclude-from-classmap": [
  7391. "/Tests/"
  7392. ]
  7393. },
  7394. "notification-url": "https://packagist.org/downloads/",
  7395. "license": [
  7396. "MIT"
  7397. ],
  7398. "authors": [
  7399. {
  7400. "name": "Fabien Potencier",
  7401. "email": "fabien@symfony.com"
  7402. },
  7403. {
  7404. "name": "Symfony Community",
  7405. "homepage": "https://symfony.com/contributors"
  7406. }
  7407. ],
  7408. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  7409. "homepage": "https://symfony.com",
  7410. "keywords": [
  7411. "access",
  7412. "array",
  7413. "extraction",
  7414. "index",
  7415. "injection",
  7416. "object",
  7417. "property",
  7418. "property-path",
  7419. "reflection"
  7420. ],
  7421. "support": {
  7422. "source": "https://github.com/symfony/property-access/tree/v5.4.26"
  7423. },
  7424. "funding": [
  7425. {
  7426. "url": "https://symfony.com/sponsor",
  7427. "type": "custom"
  7428. },
  7429. {
  7430. "url": "https://github.com/fabpot",
  7431. "type": "github"
  7432. },
  7433. {
  7434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7435. "type": "tidelift"
  7436. }
  7437. ],
  7438. "time": "2023-07-13T15:20:41+00:00"
  7439. },
  7440. {
  7441. "name": "symfony/property-info",
  7442. "version": "v6.4.0",
  7443. "source": {
  7444. "type": "git",
  7445. "url": "https://github.com/symfony/property-info.git",
  7446. "reference": "288be71bae2ebc88676f5d3a03d23f70b278fcc1"
  7447. },
  7448. "dist": {
  7449. "type": "zip",
  7450. "url": "https://api.github.com/repos/symfony/property-info/zipball/288be71bae2ebc88676f5d3a03d23f70b278fcc1",
  7451. "reference": "288be71bae2ebc88676f5d3a03d23f70b278fcc1",
  7452. "shasum": "",
  7453. "mirrors": [
  7454. {
  7455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7456. "preferred": true
  7457. }
  7458. ]
  7459. },
  7460. "require": {
  7461. "php": ">=8.1",
  7462. "symfony/string": "^5.4|^6.0|^7.0"
  7463. },
  7464. "conflict": {
  7465. "phpdocumentor/reflection-docblock": "<5.2",
  7466. "phpdocumentor/type-resolver": "<1.5.1",
  7467. "symfony/dependency-injection": "<5.4",
  7468. "symfony/serializer": "<6.4"
  7469. },
  7470. "require-dev": {
  7471. "phpdocumentor/reflection-docblock": "^5.2",
  7472. "phpstan/phpdoc-parser": "^1.0",
  7473. "symfony/cache": "^5.4|^6.0|^7.0",
  7474. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7475. "symfony/serializer": "^6.4|^7.0"
  7476. },
  7477. "type": "library",
  7478. "autoload": {
  7479. "psr-4": {
  7480. "Symfony\\Component\\PropertyInfo\\": ""
  7481. },
  7482. "exclude-from-classmap": [
  7483. "/Tests/"
  7484. ]
  7485. },
  7486. "notification-url": "https://packagist.org/downloads/",
  7487. "license": [
  7488. "MIT"
  7489. ],
  7490. "authors": [
  7491. {
  7492. "name": "Kévin Dunglas",
  7493. "email": "dunglas@gmail.com"
  7494. },
  7495. {
  7496. "name": "Symfony Community",
  7497. "homepage": "https://symfony.com/contributors"
  7498. }
  7499. ],
  7500. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7501. "homepage": "https://symfony.com",
  7502. "keywords": [
  7503. "doctrine",
  7504. "phpdoc",
  7505. "property",
  7506. "symfony",
  7507. "type",
  7508. "validator"
  7509. ],
  7510. "support": {
  7511. "source": "https://github.com/symfony/property-info/tree/v6.4.0"
  7512. },
  7513. "funding": [
  7514. {
  7515. "url": "https://symfony.com/sponsor",
  7516. "type": "custom"
  7517. },
  7518. {
  7519. "url": "https://github.com/fabpot",
  7520. "type": "github"
  7521. },
  7522. {
  7523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7524. "type": "tidelift"
  7525. }
  7526. ],
  7527. "time": "2023-11-25T16:57:46+00:00"
  7528. },
  7529. {
  7530. "name": "symfony/psr-http-message-bridge",
  7531. "version": "v2.3.1",
  7532. "source": {
  7533. "type": "git",
  7534. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7535. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  7536. },
  7537. "dist": {
  7538. "type": "zip",
  7539. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7540. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7541. "shasum": "",
  7542. "mirrors": [
  7543. {
  7544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7545. "preferred": true
  7546. }
  7547. ]
  7548. },
  7549. "require": {
  7550. "php": ">=7.2.5",
  7551. "psr/http-message": "^1.0 || ^2.0",
  7552. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  7553. "symfony/http-foundation": "^5.4 || ^6.0"
  7554. },
  7555. "require-dev": {
  7556. "nyholm/psr7": "^1.1",
  7557. "psr/log": "^1.1 || ^2 || ^3",
  7558. "symfony/browser-kit": "^5.4 || ^6.0",
  7559. "symfony/config": "^5.4 || ^6.0",
  7560. "symfony/event-dispatcher": "^5.4 || ^6.0",
  7561. "symfony/framework-bundle": "^5.4 || ^6.0",
  7562. "symfony/http-kernel": "^5.4 || ^6.0",
  7563. "symfony/phpunit-bridge": "^6.2"
  7564. },
  7565. "suggest": {
  7566. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7567. },
  7568. "type": "symfony-bridge",
  7569. "extra": {
  7570. "branch-alias": {
  7571. "dev-main": "2.3-dev"
  7572. }
  7573. },
  7574. "autoload": {
  7575. "psr-4": {
  7576. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7577. },
  7578. "exclude-from-classmap": [
  7579. "/Tests/"
  7580. ]
  7581. },
  7582. "notification-url": "https://packagist.org/downloads/",
  7583. "license": [
  7584. "MIT"
  7585. ],
  7586. "authors": [
  7587. {
  7588. "name": "Fabien Potencier",
  7589. "email": "fabien@symfony.com"
  7590. },
  7591. {
  7592. "name": "Symfony Community",
  7593. "homepage": "http://symfony.com/contributors"
  7594. }
  7595. ],
  7596. "description": "PSR HTTP message bridge",
  7597. "homepage": "http://symfony.com",
  7598. "keywords": [
  7599. "http",
  7600. "http-message",
  7601. "psr-17",
  7602. "psr-7"
  7603. ],
  7604. "support": {
  7605. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7606. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  7607. },
  7608. "funding": [
  7609. {
  7610. "url": "https://symfony.com/sponsor",
  7611. "type": "custom"
  7612. },
  7613. {
  7614. "url": "https://github.com/fabpot",
  7615. "type": "github"
  7616. },
  7617. {
  7618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7619. "type": "tidelift"
  7620. }
  7621. ],
  7622. "time": "2023-07-26T11:53:26+00:00"
  7623. },
  7624. {
  7625. "name": "symfony/routing",
  7626. "version": "v6.4.1",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/symfony/routing.git",
  7630. "reference": "0c95c164fdba18b12523b75e64199ca3503e6d40"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/symfony/routing/zipball/0c95c164fdba18b12523b75e64199ca3503e6d40",
  7635. "reference": "0c95c164fdba18b12523b75e64199ca3503e6d40",
  7636. "shasum": "",
  7637. "mirrors": [
  7638. {
  7639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7640. "preferred": true
  7641. }
  7642. ]
  7643. },
  7644. "require": {
  7645. "php": ">=8.1",
  7646. "symfony/deprecation-contracts": "^2.5|^3"
  7647. },
  7648. "conflict": {
  7649. "doctrine/annotations": "<1.12",
  7650. "symfony/config": "<6.2",
  7651. "symfony/dependency-injection": "<5.4",
  7652. "symfony/yaml": "<5.4"
  7653. },
  7654. "require-dev": {
  7655. "doctrine/annotations": "^1.12|^2",
  7656. "psr/log": "^1|^2|^3",
  7657. "symfony/config": "^6.2|^7.0",
  7658. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7659. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7660. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7661. "symfony/yaml": "^5.4|^6.0|^7.0"
  7662. },
  7663. "type": "library",
  7664. "autoload": {
  7665. "psr-4": {
  7666. "Symfony\\Component\\Routing\\": ""
  7667. },
  7668. "exclude-from-classmap": [
  7669. "/Tests/"
  7670. ]
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Fabien Potencier",
  7679. "email": "fabien@symfony.com"
  7680. },
  7681. {
  7682. "name": "Symfony Community",
  7683. "homepage": "https://symfony.com/contributors"
  7684. }
  7685. ],
  7686. "description": "Maps an HTTP request to a set of configuration variables",
  7687. "homepage": "https://symfony.com",
  7688. "keywords": [
  7689. "router",
  7690. "routing",
  7691. "uri",
  7692. "url"
  7693. ],
  7694. "support": {
  7695. "source": "https://github.com/symfony/routing/tree/v6.4.1"
  7696. },
  7697. "funding": [
  7698. {
  7699. "url": "https://symfony.com/sponsor",
  7700. "type": "custom"
  7701. },
  7702. {
  7703. "url": "https://github.com/fabpot",
  7704. "type": "github"
  7705. },
  7706. {
  7707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7708. "type": "tidelift"
  7709. }
  7710. ],
  7711. "time": "2023-12-01T14:54:37+00:00"
  7712. },
  7713. {
  7714. "name": "symfony/service-contracts",
  7715. "version": "v3.3.0",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://github.com/symfony/service-contracts.git",
  7719. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7724. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7725. "shasum": "",
  7726. "mirrors": [
  7727. {
  7728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7729. "preferred": true
  7730. }
  7731. ]
  7732. },
  7733. "require": {
  7734. "php": ">=8.1",
  7735. "psr/container": "^2.0"
  7736. },
  7737. "conflict": {
  7738. "ext-psr": "<1.1|>=2"
  7739. },
  7740. "type": "library",
  7741. "extra": {
  7742. "branch-alias": {
  7743. "dev-main": "3.4-dev"
  7744. },
  7745. "thanks": {
  7746. "name": "symfony/contracts",
  7747. "url": "https://github.com/symfony/contracts"
  7748. }
  7749. },
  7750. "autoload": {
  7751. "psr-4": {
  7752. "Symfony\\Contracts\\Service\\": ""
  7753. },
  7754. "exclude-from-classmap": [
  7755. "/Test/"
  7756. ]
  7757. },
  7758. "notification-url": "https://packagist.org/downloads/",
  7759. "license": [
  7760. "MIT"
  7761. ],
  7762. "authors": [
  7763. {
  7764. "name": "Nicolas Grekas",
  7765. "email": "p@tchwork.com"
  7766. },
  7767. {
  7768. "name": "Symfony Community",
  7769. "homepage": "https://symfony.com/contributors"
  7770. }
  7771. ],
  7772. "description": "Generic abstractions related to writing services",
  7773. "homepage": "https://symfony.com",
  7774. "keywords": [
  7775. "abstractions",
  7776. "contracts",
  7777. "decoupling",
  7778. "interfaces",
  7779. "interoperability",
  7780. "standards"
  7781. ],
  7782. "support": {
  7783. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7784. },
  7785. "funding": [
  7786. {
  7787. "url": "https://symfony.com/sponsor",
  7788. "type": "custom"
  7789. },
  7790. {
  7791. "url": "https://github.com/fabpot",
  7792. "type": "github"
  7793. },
  7794. {
  7795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7796. "type": "tidelift"
  7797. }
  7798. ],
  7799. "time": "2023-05-23T14:45:45+00:00"
  7800. },
  7801. {
  7802. "name": "symfony/string",
  7803. "version": "v6.4.0",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/symfony/string.git",
  7807. "reference": "b45fcf399ea9c3af543a92edf7172ba21174d809"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/symfony/string/zipball/b45fcf399ea9c3af543a92edf7172ba21174d809",
  7812. "reference": "b45fcf399ea9c3af543a92edf7172ba21174d809",
  7813. "shasum": "",
  7814. "mirrors": [
  7815. {
  7816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7817. "preferred": true
  7818. }
  7819. ]
  7820. },
  7821. "require": {
  7822. "php": ">=8.1",
  7823. "symfony/polyfill-ctype": "~1.8",
  7824. "symfony/polyfill-intl-grapheme": "~1.0",
  7825. "symfony/polyfill-intl-normalizer": "~1.0",
  7826. "symfony/polyfill-mbstring": "~1.0"
  7827. },
  7828. "conflict": {
  7829. "symfony/translation-contracts": "<2.5"
  7830. },
  7831. "require-dev": {
  7832. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7833. "symfony/http-client": "^5.4|^6.0|^7.0",
  7834. "symfony/intl": "^6.2|^7.0",
  7835. "symfony/translation-contracts": "^2.5|^3.0",
  7836. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7837. },
  7838. "type": "library",
  7839. "autoload": {
  7840. "files": [
  7841. "Resources/functions.php"
  7842. ],
  7843. "psr-4": {
  7844. "Symfony\\Component\\String\\": ""
  7845. },
  7846. "exclude-from-classmap": [
  7847. "/Tests/"
  7848. ]
  7849. },
  7850. "notification-url": "https://packagist.org/downloads/",
  7851. "license": [
  7852. "MIT"
  7853. ],
  7854. "authors": [
  7855. {
  7856. "name": "Nicolas Grekas",
  7857. "email": "p@tchwork.com"
  7858. },
  7859. {
  7860. "name": "Symfony Community",
  7861. "homepage": "https://symfony.com/contributors"
  7862. }
  7863. ],
  7864. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7865. "homepage": "https://symfony.com",
  7866. "keywords": [
  7867. "grapheme",
  7868. "i18n",
  7869. "string",
  7870. "unicode",
  7871. "utf-8",
  7872. "utf8"
  7873. ],
  7874. "support": {
  7875. "source": "https://github.com/symfony/string/tree/v6.4.0"
  7876. },
  7877. "funding": [
  7878. {
  7879. "url": "https://symfony.com/sponsor",
  7880. "type": "custom"
  7881. },
  7882. {
  7883. "url": "https://github.com/fabpot",
  7884. "type": "github"
  7885. },
  7886. {
  7887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7888. "type": "tidelift"
  7889. }
  7890. ],
  7891. "time": "2023-11-28T20:41:49+00:00"
  7892. },
  7893. {
  7894. "name": "symfony/translation",
  7895. "version": "v6.4.0",
  7896. "source": {
  7897. "type": "git",
  7898. "url": "https://github.com/symfony/translation.git",
  7899. "reference": "b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37"
  7900. },
  7901. "dist": {
  7902. "type": "zip",
  7903. "url": "https://api.github.com/repos/symfony/translation/zipball/b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37",
  7904. "reference": "b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37",
  7905. "shasum": "",
  7906. "mirrors": [
  7907. {
  7908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7909. "preferred": true
  7910. }
  7911. ]
  7912. },
  7913. "require": {
  7914. "php": ">=8.1",
  7915. "symfony/deprecation-contracts": "^2.5|^3",
  7916. "symfony/polyfill-mbstring": "~1.0",
  7917. "symfony/translation-contracts": "^2.5|^3.0"
  7918. },
  7919. "conflict": {
  7920. "symfony/config": "<5.4",
  7921. "symfony/console": "<5.4",
  7922. "symfony/dependency-injection": "<5.4",
  7923. "symfony/http-client-contracts": "<2.5",
  7924. "symfony/http-kernel": "<5.4",
  7925. "symfony/service-contracts": "<2.5",
  7926. "symfony/twig-bundle": "<5.4",
  7927. "symfony/yaml": "<5.4"
  7928. },
  7929. "provide": {
  7930. "symfony/translation-implementation": "2.3|3.0"
  7931. },
  7932. "require-dev": {
  7933. "nikic/php-parser": "^4.13",
  7934. "psr/log": "^1|^2|^3",
  7935. "symfony/config": "^5.4|^6.0|^7.0",
  7936. "symfony/console": "^5.4|^6.0|^7.0",
  7937. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7938. "symfony/finder": "^5.4|^6.0|^7.0",
  7939. "symfony/http-client-contracts": "^2.5|^3.0",
  7940. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7941. "symfony/intl": "^5.4|^6.0|^7.0",
  7942. "symfony/polyfill-intl-icu": "^1.21",
  7943. "symfony/routing": "^5.4|^6.0|^7.0",
  7944. "symfony/service-contracts": "^2.5|^3",
  7945. "symfony/yaml": "^5.4|^6.0|^7.0"
  7946. },
  7947. "type": "library",
  7948. "autoload": {
  7949. "files": [
  7950. "Resources/functions.php"
  7951. ],
  7952. "psr-4": {
  7953. "Symfony\\Component\\Translation\\": ""
  7954. },
  7955. "exclude-from-classmap": [
  7956. "/Tests/"
  7957. ]
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Fabien Potencier",
  7966. "email": "fabien@symfony.com"
  7967. },
  7968. {
  7969. "name": "Symfony Community",
  7970. "homepage": "https://symfony.com/contributors"
  7971. }
  7972. ],
  7973. "description": "Provides tools to internationalize your application",
  7974. "homepage": "https://symfony.com",
  7975. "support": {
  7976. "source": "https://github.com/symfony/translation/tree/v6.4.0"
  7977. },
  7978. "funding": [
  7979. {
  7980. "url": "https://symfony.com/sponsor",
  7981. "type": "custom"
  7982. },
  7983. {
  7984. "url": "https://github.com/fabpot",
  7985. "type": "github"
  7986. },
  7987. {
  7988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7989. "type": "tidelift"
  7990. }
  7991. ],
  7992. "time": "2023-11-29T08:14:36+00:00"
  7993. },
  7994. {
  7995. "name": "symfony/translation-contracts",
  7996. "version": "v3.4.0",
  7997. "source": {
  7998. "type": "git",
  7999. "url": "https://github.com/symfony/translation-contracts.git",
  8000. "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5"
  8001. },
  8002. "dist": {
  8003. "type": "zip",
  8004. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5",
  8005. "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5",
  8006. "shasum": "",
  8007. "mirrors": [
  8008. {
  8009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8010. "preferred": true
  8011. }
  8012. ]
  8013. },
  8014. "require": {
  8015. "php": ">=8.1"
  8016. },
  8017. "type": "library",
  8018. "extra": {
  8019. "branch-alias": {
  8020. "dev-main": "3.4-dev"
  8021. },
  8022. "thanks": {
  8023. "name": "symfony/contracts",
  8024. "url": "https://github.com/symfony/contracts"
  8025. }
  8026. },
  8027. "autoload": {
  8028. "psr-4": {
  8029. "Symfony\\Contracts\\Translation\\": ""
  8030. },
  8031. "exclude-from-classmap": [
  8032. "/Test/"
  8033. ]
  8034. },
  8035. "notification-url": "https://packagist.org/downloads/",
  8036. "license": [
  8037. "MIT"
  8038. ],
  8039. "authors": [
  8040. {
  8041. "name": "Nicolas Grekas",
  8042. "email": "p@tchwork.com"
  8043. },
  8044. {
  8045. "name": "Symfony Community",
  8046. "homepage": "https://symfony.com/contributors"
  8047. }
  8048. ],
  8049. "description": "Generic abstractions related to translation",
  8050. "homepage": "https://symfony.com",
  8051. "keywords": [
  8052. "abstractions",
  8053. "contracts",
  8054. "decoupling",
  8055. "interfaces",
  8056. "interoperability",
  8057. "standards"
  8058. ],
  8059. "support": {
  8060. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0"
  8061. },
  8062. "funding": [
  8063. {
  8064. "url": "https://symfony.com/sponsor",
  8065. "type": "custom"
  8066. },
  8067. {
  8068. "url": "https://github.com/fabpot",
  8069. "type": "github"
  8070. },
  8071. {
  8072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8073. "type": "tidelift"
  8074. }
  8075. ],
  8076. "time": "2023-07-25T15:08:44+00:00"
  8077. },
  8078. {
  8079. "name": "symfony/uid",
  8080. "version": "v6.4.0",
  8081. "source": {
  8082. "type": "git",
  8083. "url": "https://github.com/symfony/uid.git",
  8084. "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92"
  8085. },
  8086. "dist": {
  8087. "type": "zip",
  8088. "url": "https://api.github.com/repos/symfony/uid/zipball/8092dd1b1a41372110d06374f99ee62f7f0b9a92",
  8089. "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92",
  8090. "shasum": "",
  8091. "mirrors": [
  8092. {
  8093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8094. "preferred": true
  8095. }
  8096. ]
  8097. },
  8098. "require": {
  8099. "php": ">=8.1",
  8100. "symfony/polyfill-uuid": "^1.15"
  8101. },
  8102. "require-dev": {
  8103. "symfony/console": "^5.4|^6.0|^7.0"
  8104. },
  8105. "type": "library",
  8106. "autoload": {
  8107. "psr-4": {
  8108. "Symfony\\Component\\Uid\\": ""
  8109. },
  8110. "exclude-from-classmap": [
  8111. "/Tests/"
  8112. ]
  8113. },
  8114. "notification-url": "https://packagist.org/downloads/",
  8115. "license": [
  8116. "MIT"
  8117. ],
  8118. "authors": [
  8119. {
  8120. "name": "Grégoire Pineau",
  8121. "email": "lyrixx@lyrixx.info"
  8122. },
  8123. {
  8124. "name": "Nicolas Grekas",
  8125. "email": "p@tchwork.com"
  8126. },
  8127. {
  8128. "name": "Symfony Community",
  8129. "homepage": "https://symfony.com/contributors"
  8130. }
  8131. ],
  8132. "description": "Provides an object-oriented API to generate and represent UIDs",
  8133. "homepage": "https://symfony.com",
  8134. "keywords": [
  8135. "UID",
  8136. "ulid",
  8137. "uuid"
  8138. ],
  8139. "support": {
  8140. "source": "https://github.com/symfony/uid/tree/v6.4.0"
  8141. },
  8142. "funding": [
  8143. {
  8144. "url": "https://symfony.com/sponsor",
  8145. "type": "custom"
  8146. },
  8147. {
  8148. "url": "https://github.com/fabpot",
  8149. "type": "github"
  8150. },
  8151. {
  8152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8153. "type": "tidelift"
  8154. }
  8155. ],
  8156. "time": "2023-10-31T08:18:17+00:00"
  8157. },
  8158. {
  8159. "name": "symfony/var-dumper",
  8160. "version": "v6.4.0",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/symfony/var-dumper.git",
  8164. "reference": "c40f7d17e91d8b407582ed51a2bbf83c52c367f6"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c40f7d17e91d8b407582ed51a2bbf83c52c367f6",
  8169. "reference": "c40f7d17e91d8b407582ed51a2bbf83c52c367f6",
  8170. "shasum": "",
  8171. "mirrors": [
  8172. {
  8173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8174. "preferred": true
  8175. }
  8176. ]
  8177. },
  8178. "require": {
  8179. "php": ">=8.1",
  8180. "symfony/deprecation-contracts": "^2.5|^3",
  8181. "symfony/polyfill-mbstring": "~1.0"
  8182. },
  8183. "conflict": {
  8184. "symfony/console": "<5.4"
  8185. },
  8186. "require-dev": {
  8187. "ext-iconv": "*",
  8188. "symfony/console": "^5.4|^6.0|^7.0",
  8189. "symfony/error-handler": "^6.3|^7.0",
  8190. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8191. "symfony/process": "^5.4|^6.0|^7.0",
  8192. "symfony/uid": "^5.4|^6.0|^7.0",
  8193. "twig/twig": "^2.13|^3.0.4"
  8194. },
  8195. "bin": [
  8196. "Resources/bin/var-dump-server"
  8197. ],
  8198. "type": "library",
  8199. "autoload": {
  8200. "files": [
  8201. "Resources/functions/dump.php"
  8202. ],
  8203. "psr-4": {
  8204. "Symfony\\Component\\VarDumper\\": ""
  8205. },
  8206. "exclude-from-classmap": [
  8207. "/Tests/"
  8208. ]
  8209. },
  8210. "notification-url": "https://packagist.org/downloads/",
  8211. "license": [
  8212. "MIT"
  8213. ],
  8214. "authors": [
  8215. {
  8216. "name": "Nicolas Grekas",
  8217. "email": "p@tchwork.com"
  8218. },
  8219. {
  8220. "name": "Symfony Community",
  8221. "homepage": "https://symfony.com/contributors"
  8222. }
  8223. ],
  8224. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8225. "homepage": "https://symfony.com",
  8226. "keywords": [
  8227. "debug",
  8228. "dump"
  8229. ],
  8230. "support": {
  8231. "source": "https://github.com/symfony/var-dumper/tree/v6.4.0"
  8232. },
  8233. "funding": [
  8234. {
  8235. "url": "https://symfony.com/sponsor",
  8236. "type": "custom"
  8237. },
  8238. {
  8239. "url": "https://github.com/fabpot",
  8240. "type": "github"
  8241. },
  8242. {
  8243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8244. "type": "tidelift"
  8245. }
  8246. ],
  8247. "time": "2023-11-09T08:28:32+00:00"
  8248. },
  8249. {
  8250. "name": "symfony/var-exporter",
  8251. "version": "v6.4.1",
  8252. "source": {
  8253. "type": "git",
  8254. "url": "https://github.com/symfony/var-exporter.git",
  8255. "reference": "2d08ca6b9cc704dce525615d1e6d1788734f36d9"
  8256. },
  8257. "dist": {
  8258. "type": "zip",
  8259. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/2d08ca6b9cc704dce525615d1e6d1788734f36d9",
  8260. "reference": "2d08ca6b9cc704dce525615d1e6d1788734f36d9",
  8261. "shasum": "",
  8262. "mirrors": [
  8263. {
  8264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8265. "preferred": true
  8266. }
  8267. ]
  8268. },
  8269. "require": {
  8270. "php": ">=8.1",
  8271. "symfony/deprecation-contracts": "^2.5|^3"
  8272. },
  8273. "require-dev": {
  8274. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8275. },
  8276. "type": "library",
  8277. "autoload": {
  8278. "psr-4": {
  8279. "Symfony\\Component\\VarExporter\\": ""
  8280. },
  8281. "exclude-from-classmap": [
  8282. "/Tests/"
  8283. ]
  8284. },
  8285. "notification-url": "https://packagist.org/downloads/",
  8286. "license": [
  8287. "MIT"
  8288. ],
  8289. "authors": [
  8290. {
  8291. "name": "Nicolas Grekas",
  8292. "email": "p@tchwork.com"
  8293. },
  8294. {
  8295. "name": "Symfony Community",
  8296. "homepage": "https://symfony.com/contributors"
  8297. }
  8298. ],
  8299. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8300. "homepage": "https://symfony.com",
  8301. "keywords": [
  8302. "clone",
  8303. "construct",
  8304. "export",
  8305. "hydrate",
  8306. "instantiate",
  8307. "lazy-loading",
  8308. "proxy",
  8309. "serialize"
  8310. ],
  8311. "support": {
  8312. "source": "https://github.com/symfony/var-exporter/tree/v6.4.1"
  8313. },
  8314. "funding": [
  8315. {
  8316. "url": "https://symfony.com/sponsor",
  8317. "type": "custom"
  8318. },
  8319. {
  8320. "url": "https://github.com/fabpot",
  8321. "type": "github"
  8322. },
  8323. {
  8324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8325. "type": "tidelift"
  8326. }
  8327. ],
  8328. "time": "2023-11-30T10:32:10+00:00"
  8329. },
  8330. {
  8331. "name": "tijsverkoyen/css-to-inline-styles",
  8332. "version": "v2.2.7",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8336. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8341. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8342. "shasum": "",
  8343. "mirrors": [
  8344. {
  8345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8346. "preferred": true
  8347. }
  8348. ]
  8349. },
  8350. "require": {
  8351. "ext-dom": "*",
  8352. "ext-libxml": "*",
  8353. "php": "^5.5 || ^7.0 || ^8.0",
  8354. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8355. },
  8356. "require-dev": {
  8357. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8358. },
  8359. "type": "library",
  8360. "extra": {
  8361. "branch-alias": {
  8362. "dev-master": "2.2.x-dev"
  8363. }
  8364. },
  8365. "autoload": {
  8366. "psr-4": {
  8367. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8368. }
  8369. },
  8370. "notification-url": "https://packagist.org/downloads/",
  8371. "license": [
  8372. "BSD-3-Clause"
  8373. ],
  8374. "authors": [
  8375. {
  8376. "name": "Tijs Verkoyen",
  8377. "email": "css_to_inline_styles@verkoyen.eu",
  8378. "role": "Developer"
  8379. }
  8380. ],
  8381. "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.",
  8382. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8383. "support": {
  8384. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8385. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8386. },
  8387. "time": "2023-12-08T13:03:43+00:00"
  8388. },
  8389. {
  8390. "name": "txj/elastic",
  8391. "version": "dev-master",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://git.yososoft.com/txj/txj_elastic.git",
  8395. "reference": "ee7d74f919766756be3fac9c72fb497f460fca19"
  8396. },
  8397. "require": {
  8398. "elasticsearch/elasticsearch": "^8.2",
  8399. "guzzlehttp/guzzle": "^7.3",
  8400. "php": ">=8.0"
  8401. },
  8402. "require-dev": {
  8403. "brainmaestro/composer-git-hooks": "^2.7",
  8404. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8405. "friendsofphp/php-cs-fixer": "^3.0",
  8406. "laravel/framework": "^8.5",
  8407. "mockery/mockery": "^1.2.3",
  8408. "phpstan/phpstan": "^0.12.0",
  8409. "phpunit/phpunit": "^9.3"
  8410. },
  8411. "default-branch": true,
  8412. "type": "library",
  8413. "extra": {
  8414. "laravel": {
  8415. "providers": [
  8416. "Txj\\Elastic\\ElasticServiceProvider"
  8417. ],
  8418. "aliases": {
  8419. "ES": "Txj\\Elastic\\Facades"
  8420. }
  8421. },
  8422. "hooks": {
  8423. "pre-commit": [
  8424. "composer test",
  8425. "composer fix-style"
  8426. ],
  8427. "pre-push": [
  8428. "composer test",
  8429. "composer fix-style"
  8430. ]
  8431. }
  8432. },
  8433. "autoload": {
  8434. "psr-4": {
  8435. "Txj\\Elastic\\": "src"
  8436. }
  8437. },
  8438. "autoload-dev": {
  8439. "psr-4": {
  8440. "Txj\\Elastic\\Test\\": "tests"
  8441. }
  8442. },
  8443. "scripts": {
  8444. "post-update-cmd": [
  8445. "cghooks update"
  8446. ],
  8447. "post-merge": [
  8448. "composer install"
  8449. ],
  8450. "post-install-cmd": [
  8451. "cghooks add --ignore-lock",
  8452. "cghooks update"
  8453. ],
  8454. "phpstan": [
  8455. "vendor/bin/phpstan analyse src tests"
  8456. ],
  8457. "check-style": [
  8458. "php-cs-fixer fix --using-cache=no --diff --dry-run --ansi"
  8459. ],
  8460. "fix-style": [
  8461. "php-cs-fixer fix --using-cache=no --ansi"
  8462. ],
  8463. "test": [
  8464. "vendor/bin/phpunit --bootstrap tests/bootstrap.php --colors=always --testdox ./tests"
  8465. ]
  8466. },
  8467. "authors": [
  8468. {
  8469. "name": "李磊",
  8470. "email": "597196313@qq.com"
  8471. }
  8472. ],
  8473. "description": "ES操作库",
  8474. "homepage": "https://www.ttyuweb.com/",
  8475. "keywords": [
  8476. "elasticsearch",
  8477. "txj"
  8478. ],
  8479. "time": "2022-07-17T05:12:59+00:00"
  8480. },
  8481. {
  8482. "name": "txj/yzm",
  8483. "version": "dev-master",
  8484. "source": {
  8485. "type": "git",
  8486. "url": "https://git.yososoft.com/txj/txj_yzm.git",
  8487. "reference": "8c4fb8adaf34d47ebd20b9502a934d82c4845783"
  8488. },
  8489. "require": {
  8490. "gregwar/captcha": "^1.1",
  8491. "php": ">=8.0"
  8492. },
  8493. "require-dev": {
  8494. "brainmaestro/composer-git-hooks": "^2.7",
  8495. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8496. "friendsofphp/php-cs-fixer": "^3.0",
  8497. "laravel/framework": "^8.5",
  8498. "mockery/mockery": "^1.2.3",
  8499. "phpstan/phpstan": "^0.12.0",
  8500. "phpunit/phpunit": "^9.3"
  8501. },
  8502. "default-branch": true,
  8503. "type": "library",
  8504. "extra": {
  8505. "laravel": {
  8506. "providers": [
  8507. "Txj\\Yzm\\YzmServiceProvider"
  8508. ],
  8509. "aliases": {
  8510. "Yzm": "Txj\\Yzm\\Facades"
  8511. }
  8512. },
  8513. "hooks": {
  8514. "pre-commit": [
  8515. "composer test",
  8516. "composer fix-style"
  8517. ],
  8518. "pre-push": [
  8519. "composer test",
  8520. "composer fix-style"
  8521. ]
  8522. }
  8523. },
  8524. "autoload": {
  8525. "psr-4": {
  8526. "Txj\\Yzm\\": "src"
  8527. }
  8528. },
  8529. "autoload-dev": {
  8530. "psr-4": {
  8531. "Txj\\Yzm\\Test\\": "tests"
  8532. }
  8533. },
  8534. "scripts": {
  8535. "post-update-cmd": [
  8536. "cghooks update"
  8537. ],
  8538. "post-merge": [
  8539. "composer install"
  8540. ],
  8541. "post-install-cmd": [
  8542. "cghooks add --ignore-lock",
  8543. "cghooks update"
  8544. ],
  8545. "phpstan": [
  8546. "vendor/bin/phpstan analyse src tests"
  8547. ],
  8548. "check-style": [
  8549. "php-cs-fixer fix --using-cache=no --diff --dry-run --ansi"
  8550. ],
  8551. "fix-style": [
  8552. "php-cs-fixer fix --using-cache=no --ansi"
  8553. ],
  8554. "test": [
  8555. "vendor/bin/phpunit --bootstrap tests/bootstrap.php --colors=always --testdox ./tests"
  8556. ]
  8557. },
  8558. "authors": [
  8559. {
  8560. "name": "李磊",
  8561. "email": "597196313@qq.com"
  8562. }
  8563. ],
  8564. "description": "验证码操作库",
  8565. "homepage": "https://www.ttyuweb.com/",
  8566. "keywords": [
  8567. "txj",
  8568. "yzm"
  8569. ],
  8570. "time": "2022-07-17T05:15:51+00:00"
  8571. },
  8572. {
  8573. "name": "vlucas/phpdotenv",
  8574. "version": "v5.5.0",
  8575. "source": {
  8576. "type": "git",
  8577. "url": "https://github.com/vlucas/phpdotenv.git",
  8578. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8579. },
  8580. "dist": {
  8581. "type": "zip",
  8582. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8583. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8584. "shasum": "",
  8585. "mirrors": [
  8586. {
  8587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8588. "preferred": true
  8589. }
  8590. ]
  8591. },
  8592. "require": {
  8593. "ext-pcre": "*",
  8594. "graham-campbell/result-type": "^1.0.2",
  8595. "php": "^7.1.3 || ^8.0",
  8596. "phpoption/phpoption": "^1.8",
  8597. "symfony/polyfill-ctype": "^1.23",
  8598. "symfony/polyfill-mbstring": "^1.23.1",
  8599. "symfony/polyfill-php80": "^1.23.1"
  8600. },
  8601. "require-dev": {
  8602. "bamarni/composer-bin-plugin": "^1.4.1",
  8603. "ext-filter": "*",
  8604. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8605. },
  8606. "suggest": {
  8607. "ext-filter": "Required to use the boolean validator."
  8608. },
  8609. "type": "library",
  8610. "extra": {
  8611. "bamarni-bin": {
  8612. "bin-links": true,
  8613. "forward-command": true
  8614. },
  8615. "branch-alias": {
  8616. "dev-master": "5.5-dev"
  8617. }
  8618. },
  8619. "autoload": {
  8620. "psr-4": {
  8621. "Dotenv\\": "src/"
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "BSD-3-Clause"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Graham Campbell",
  8631. "email": "hello@gjcampbell.co.uk",
  8632. "homepage": "https://github.com/GrahamCampbell"
  8633. },
  8634. {
  8635. "name": "Vance Lucas",
  8636. "email": "vance@vancelucas.com",
  8637. "homepage": "https://github.com/vlucas"
  8638. }
  8639. ],
  8640. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8641. "keywords": [
  8642. "dotenv",
  8643. "env",
  8644. "environment"
  8645. ],
  8646. "support": {
  8647. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8648. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8649. },
  8650. "funding": [
  8651. {
  8652. "url": "https://github.com/GrahamCampbell",
  8653. "type": "github"
  8654. },
  8655. {
  8656. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8657. "type": "tidelift"
  8658. }
  8659. ],
  8660. "time": "2022-10-16T01:01:54+00:00"
  8661. },
  8662. {
  8663. "name": "voku/portable-ascii",
  8664. "version": "2.0.1",
  8665. "source": {
  8666. "type": "git",
  8667. "url": "https://github.com/voku/portable-ascii.git",
  8668. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8669. },
  8670. "dist": {
  8671. "type": "zip",
  8672. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8673. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8674. "shasum": "",
  8675. "mirrors": [
  8676. {
  8677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8678. "preferred": true
  8679. }
  8680. ]
  8681. },
  8682. "require": {
  8683. "php": ">=7.0.0"
  8684. },
  8685. "require-dev": {
  8686. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8687. },
  8688. "suggest": {
  8689. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8690. },
  8691. "type": "library",
  8692. "autoload": {
  8693. "psr-4": {
  8694. "voku\\": "src/voku/"
  8695. }
  8696. },
  8697. "notification-url": "https://packagist.org/downloads/",
  8698. "license": [
  8699. "MIT"
  8700. ],
  8701. "authors": [
  8702. {
  8703. "name": "Lars Moelleken",
  8704. "homepage": "http://www.moelleken.org/"
  8705. }
  8706. ],
  8707. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8708. "homepage": "https://github.com/voku/portable-ascii",
  8709. "keywords": [
  8710. "ascii",
  8711. "clean",
  8712. "php"
  8713. ],
  8714. "support": {
  8715. "issues": "https://github.com/voku/portable-ascii/issues",
  8716. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8717. },
  8718. "funding": [
  8719. {
  8720. "url": "https://www.paypal.me/moelleken",
  8721. "type": "custom"
  8722. },
  8723. {
  8724. "url": "https://github.com/voku",
  8725. "type": "github"
  8726. },
  8727. {
  8728. "url": "https://opencollective.com/portable-ascii",
  8729. "type": "open_collective"
  8730. },
  8731. {
  8732. "url": "https://www.patreon.com/voku",
  8733. "type": "patreon"
  8734. },
  8735. {
  8736. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8737. "type": "tidelift"
  8738. }
  8739. ],
  8740. "time": "2022-03-08T17:03:00+00:00"
  8741. },
  8742. {
  8743. "name": "w7corp/easywechat",
  8744. "version": "5.30.0",
  8745. "source": {
  8746. "type": "git",
  8747. "url": "https://github.com/w7corp/easywechat.git",
  8748. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2"
  8749. },
  8750. "dist": {
  8751. "type": "zip",
  8752. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/245d1e821bc5a4609625c3244b111f570692cfc2",
  8753. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2",
  8754. "shasum": "",
  8755. "mirrors": [
  8756. {
  8757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8758. "preferred": true
  8759. }
  8760. ]
  8761. },
  8762. "require": {
  8763. "easywechat-composer/easywechat-composer": "^1.1",
  8764. "ext-fileinfo": "*",
  8765. "ext-libxml": "*",
  8766. "ext-openssl": "*",
  8767. "ext-simplexml": "*",
  8768. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  8769. "monolog/monolog": "^1.22 || ^2.0",
  8770. "overtrue/socialite": "^3.2 || ^4.0",
  8771. "php": ">=7.4",
  8772. "pimple/pimple": "^3.0",
  8773. "psr/simple-cache": "^1.0||^2.0||^3.0",
  8774. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  8775. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  8776. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  8777. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  8778. },
  8779. "require-dev": {
  8780. "brainmaestro/composer-git-hooks": "^2.7",
  8781. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8782. "friendsofphp/php-cs-fixer": "^3.5.0",
  8783. "mikey179/vfsstream": "^1.6",
  8784. "mockery/mockery": "^1.2.3",
  8785. "phpstan/phpstan": "^0.12.0",
  8786. "phpunit/phpunit": "^9.3"
  8787. },
  8788. "type": "library",
  8789. "extra": {
  8790. "hooks": {
  8791. "pre-commit": [
  8792. "composer test",
  8793. "composer fix-style"
  8794. ],
  8795. "pre-push": [
  8796. "composer test",
  8797. "composer fix-style"
  8798. ]
  8799. }
  8800. },
  8801. "autoload": {
  8802. "files": [
  8803. "src/Kernel/Support/Helpers.php",
  8804. "src/Kernel/Helpers.php"
  8805. ],
  8806. "psr-4": {
  8807. "EasyWeChat\\": "src/"
  8808. }
  8809. },
  8810. "notification-url": "https://packagist.org/downloads/",
  8811. "license": [
  8812. "MIT"
  8813. ],
  8814. "authors": [
  8815. {
  8816. "name": "overtrue",
  8817. "email": "anzhengchao@gmail.com"
  8818. }
  8819. ],
  8820. "description": "微信SDK",
  8821. "keywords": [
  8822. "easywechat",
  8823. "sdk",
  8824. "wechat",
  8825. "weixin",
  8826. "weixin-sdk"
  8827. ],
  8828. "support": {
  8829. "issues": "https://github.com/w7corp/easywechat/issues",
  8830. "source": "https://github.com/w7corp/easywechat/tree/5.30.0"
  8831. },
  8832. "funding": [
  8833. {
  8834. "url": "https://github.com/overtrue",
  8835. "type": "github"
  8836. }
  8837. ],
  8838. "time": "2022-09-05T08:22:34+00:00"
  8839. },
  8840. {
  8841. "name": "webmozart/assert",
  8842. "version": "1.11.0",
  8843. "source": {
  8844. "type": "git",
  8845. "url": "https://github.com/webmozarts/assert.git",
  8846. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8847. },
  8848. "dist": {
  8849. "type": "zip",
  8850. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8851. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8852. "shasum": "",
  8853. "mirrors": [
  8854. {
  8855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8856. "preferred": true
  8857. }
  8858. ]
  8859. },
  8860. "require": {
  8861. "ext-ctype": "*",
  8862. "php": "^7.2 || ^8.0"
  8863. },
  8864. "conflict": {
  8865. "phpstan/phpstan": "<0.12.20",
  8866. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8867. },
  8868. "require-dev": {
  8869. "phpunit/phpunit": "^8.5.13"
  8870. },
  8871. "type": "library",
  8872. "extra": {
  8873. "branch-alias": {
  8874. "dev-master": "1.10-dev"
  8875. }
  8876. },
  8877. "autoload": {
  8878. "psr-4": {
  8879. "Webmozart\\Assert\\": "src/"
  8880. }
  8881. },
  8882. "notification-url": "https://packagist.org/downloads/",
  8883. "license": [
  8884. "MIT"
  8885. ],
  8886. "authors": [
  8887. {
  8888. "name": "Bernhard Schussek",
  8889. "email": "bschussek@gmail.com"
  8890. }
  8891. ],
  8892. "description": "Assertions to validate method input/output with nice error messages.",
  8893. "keywords": [
  8894. "assert",
  8895. "check",
  8896. "validate"
  8897. ],
  8898. "support": {
  8899. "issues": "https://github.com/webmozarts/assert/issues",
  8900. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8901. },
  8902. "time": "2022-06-03T18:03:27+00:00"
  8903. }
  8904. ],
  8905. "packages-dev": [
  8906. {
  8907. "name": "doctrine/instantiator",
  8908. "version": "2.0.0",
  8909. "source": {
  8910. "type": "git",
  8911. "url": "https://github.com/doctrine/instantiator.git",
  8912. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  8913. },
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8917. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8918. "shasum": "",
  8919. "mirrors": [
  8920. {
  8921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8922. "preferred": true
  8923. }
  8924. ]
  8925. },
  8926. "require": {
  8927. "php": "^8.1"
  8928. },
  8929. "require-dev": {
  8930. "doctrine/coding-standard": "^11",
  8931. "ext-pdo": "*",
  8932. "ext-phar": "*",
  8933. "phpbench/phpbench": "^1.2",
  8934. "phpstan/phpstan": "^1.9.4",
  8935. "phpstan/phpstan-phpunit": "^1.3",
  8936. "phpunit/phpunit": "^9.5.27",
  8937. "vimeo/psalm": "^5.4"
  8938. },
  8939. "type": "library",
  8940. "autoload": {
  8941. "psr-4": {
  8942. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8943. }
  8944. },
  8945. "notification-url": "https://packagist.org/downloads/",
  8946. "license": [
  8947. "MIT"
  8948. ],
  8949. "authors": [
  8950. {
  8951. "name": "Marco Pivetta",
  8952. "email": "ocramius@gmail.com",
  8953. "homepage": "https://ocramius.github.io/"
  8954. }
  8955. ],
  8956. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8957. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8958. "keywords": [
  8959. "constructor",
  8960. "instantiate"
  8961. ],
  8962. "support": {
  8963. "issues": "https://github.com/doctrine/instantiator/issues",
  8964. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  8965. },
  8966. "funding": [
  8967. {
  8968. "url": "https://www.doctrine-project.org/sponsorship.html",
  8969. "type": "custom"
  8970. },
  8971. {
  8972. "url": "https://www.patreon.com/phpdoctrine",
  8973. "type": "patreon"
  8974. },
  8975. {
  8976. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8977. "type": "tidelift"
  8978. }
  8979. ],
  8980. "time": "2022-12-30T00:23:10+00:00"
  8981. },
  8982. {
  8983. "name": "fakerphp/faker",
  8984. "version": "v1.23.0",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/FakerPHP/Faker.git",
  8988. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8993. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8994. "shasum": "",
  8995. "mirrors": [
  8996. {
  8997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8998. "preferred": true
  8999. }
  9000. ]
  9001. },
  9002. "require": {
  9003. "php": "^7.4 || ^8.0",
  9004. "psr/container": "^1.0 || ^2.0",
  9005. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9006. },
  9007. "conflict": {
  9008. "fzaninotto/faker": "*"
  9009. },
  9010. "require-dev": {
  9011. "bamarni/composer-bin-plugin": "^1.4.1",
  9012. "doctrine/persistence": "^1.3 || ^2.0",
  9013. "ext-intl": "*",
  9014. "phpunit/phpunit": "^9.5.26",
  9015. "symfony/phpunit-bridge": "^5.4.16"
  9016. },
  9017. "suggest": {
  9018. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9019. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9020. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9021. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9022. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9023. },
  9024. "type": "library",
  9025. "extra": {
  9026. "branch-alias": {
  9027. "dev-main": "v1.21-dev"
  9028. }
  9029. },
  9030. "autoload": {
  9031. "psr-4": {
  9032. "Faker\\": "src/Faker/"
  9033. }
  9034. },
  9035. "notification-url": "https://packagist.org/downloads/",
  9036. "license": [
  9037. "MIT"
  9038. ],
  9039. "authors": [
  9040. {
  9041. "name": "François Zaninotto"
  9042. }
  9043. ],
  9044. "description": "Faker is a PHP library that generates fake data for you.",
  9045. "keywords": [
  9046. "data",
  9047. "faker",
  9048. "fixtures"
  9049. ],
  9050. "support": {
  9051. "issues": "https://github.com/FakerPHP/Faker/issues",
  9052. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  9053. },
  9054. "time": "2023-06-12T08:44:38+00:00"
  9055. },
  9056. {
  9057. "name": "filp/whoops",
  9058. "version": "2.15.4",
  9059. "source": {
  9060. "type": "git",
  9061. "url": "https://github.com/filp/whoops.git",
  9062. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9063. },
  9064. "dist": {
  9065. "type": "zip",
  9066. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9067. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9068. "shasum": "",
  9069. "mirrors": [
  9070. {
  9071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9072. "preferred": true
  9073. }
  9074. ]
  9075. },
  9076. "require": {
  9077. "php": "^5.5.9 || ^7.0 || ^8.0",
  9078. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9079. },
  9080. "require-dev": {
  9081. "mockery/mockery": "^0.9 || ^1.0",
  9082. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9083. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9084. },
  9085. "suggest": {
  9086. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9087. "whoops/soap": "Formats errors as SOAP responses"
  9088. },
  9089. "type": "library",
  9090. "extra": {
  9091. "branch-alias": {
  9092. "dev-master": "2.7-dev"
  9093. }
  9094. },
  9095. "autoload": {
  9096. "psr-4": {
  9097. "Whoops\\": "src/Whoops/"
  9098. }
  9099. },
  9100. "notification-url": "https://packagist.org/downloads/",
  9101. "license": [
  9102. "MIT"
  9103. ],
  9104. "authors": [
  9105. {
  9106. "name": "Filipe Dobreira",
  9107. "homepage": "https://github.com/filp",
  9108. "role": "Developer"
  9109. }
  9110. ],
  9111. "description": "php error handling for cool kids",
  9112. "homepage": "https://filp.github.io/whoops/",
  9113. "keywords": [
  9114. "error",
  9115. "exception",
  9116. "handling",
  9117. "library",
  9118. "throwable",
  9119. "whoops"
  9120. ],
  9121. "support": {
  9122. "issues": "https://github.com/filp/whoops/issues",
  9123. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9124. },
  9125. "funding": [
  9126. {
  9127. "url": "https://github.com/denis-sokolov",
  9128. "type": "github"
  9129. }
  9130. ],
  9131. "time": "2023-11-03T12:00:00+00:00"
  9132. },
  9133. {
  9134. "name": "hamcrest/hamcrest-php",
  9135. "version": "v2.0.1",
  9136. "source": {
  9137. "type": "git",
  9138. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9139. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9140. },
  9141. "dist": {
  9142. "type": "zip",
  9143. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9144. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9145. "shasum": "",
  9146. "mirrors": [
  9147. {
  9148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9149. "preferred": true
  9150. }
  9151. ]
  9152. },
  9153. "require": {
  9154. "php": "^5.3|^7.0|^8.0"
  9155. },
  9156. "replace": {
  9157. "cordoval/hamcrest-php": "*",
  9158. "davedevelopment/hamcrest-php": "*",
  9159. "kodova/hamcrest-php": "*"
  9160. },
  9161. "require-dev": {
  9162. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9163. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9164. },
  9165. "type": "library",
  9166. "extra": {
  9167. "branch-alias": {
  9168. "dev-master": "2.1-dev"
  9169. }
  9170. },
  9171. "autoload": {
  9172. "classmap": [
  9173. "hamcrest"
  9174. ]
  9175. },
  9176. "notification-url": "https://packagist.org/downloads/",
  9177. "license": [
  9178. "BSD-3-Clause"
  9179. ],
  9180. "description": "This is the PHP port of Hamcrest Matchers",
  9181. "keywords": [
  9182. "test"
  9183. ],
  9184. "support": {
  9185. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9186. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9187. },
  9188. "time": "2020-07-09T08:09:16+00:00"
  9189. },
  9190. {
  9191. "name": "laravel/sail",
  9192. "version": "v1.26.3",
  9193. "source": {
  9194. "type": "git",
  9195. "url": "https://github.com/laravel/sail.git",
  9196. "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d"
  9197. },
  9198. "dist": {
  9199. "type": "zip",
  9200. "url": "https://api.github.com/repos/laravel/sail/zipball/fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
  9201. "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
  9202. "shasum": "",
  9203. "mirrors": [
  9204. {
  9205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9206. "preferred": true
  9207. }
  9208. ]
  9209. },
  9210. "require": {
  9211. "illuminate/console": "^9.0|^10.0|^11.0",
  9212. "illuminate/contracts": "^9.0|^10.0|^11.0",
  9213. "illuminate/support": "^9.0|^10.0|^11.0",
  9214. "php": "^8.0",
  9215. "symfony/yaml": "^6.0|^7.0"
  9216. },
  9217. "require-dev": {
  9218. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9219. "phpstan/phpstan": "^1.10"
  9220. },
  9221. "bin": [
  9222. "bin/sail"
  9223. ],
  9224. "type": "library",
  9225. "extra": {
  9226. "branch-alias": {
  9227. "dev-master": "1.x-dev"
  9228. },
  9229. "laravel": {
  9230. "providers": [
  9231. "Laravel\\Sail\\SailServiceProvider"
  9232. ]
  9233. }
  9234. },
  9235. "autoload": {
  9236. "psr-4": {
  9237. "Laravel\\Sail\\": "src/"
  9238. }
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Taylor Otwell",
  9247. "email": "taylor@laravel.com"
  9248. }
  9249. ],
  9250. "description": "Docker files for running a basic Laravel application.",
  9251. "keywords": [
  9252. "docker",
  9253. "laravel"
  9254. ],
  9255. "support": {
  9256. "issues": "https://github.com/laravel/sail/issues",
  9257. "source": "https://github.com/laravel/sail"
  9258. },
  9259. "time": "2023-12-02T18:26:39+00:00"
  9260. },
  9261. {
  9262. "name": "mockery/mockery",
  9263. "version": "1.6.6",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/mockery/mockery.git",
  9267. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  9272. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  9273. "shasum": "",
  9274. "mirrors": [
  9275. {
  9276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9277. "preferred": true
  9278. }
  9279. ]
  9280. },
  9281. "require": {
  9282. "hamcrest/hamcrest-php": "^2.0.1",
  9283. "lib-pcre": ">=7.0",
  9284. "php": ">=7.3"
  9285. },
  9286. "conflict": {
  9287. "phpunit/phpunit": "<8.0"
  9288. },
  9289. "require-dev": {
  9290. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9291. "psalm/plugin-phpunit": "^0.18.4",
  9292. "symplify/easy-coding-standard": "^11.5.0",
  9293. "vimeo/psalm": "^4.30"
  9294. },
  9295. "type": "library",
  9296. "autoload": {
  9297. "files": [
  9298. "library/helpers.php",
  9299. "library/Mockery.php"
  9300. ],
  9301. "psr-4": {
  9302. "Mockery\\": "library/Mockery"
  9303. }
  9304. },
  9305. "notification-url": "https://packagist.org/downloads/",
  9306. "license": [
  9307. "BSD-3-Clause"
  9308. ],
  9309. "authors": [
  9310. {
  9311. "name": "Pádraic Brady",
  9312. "email": "padraic.brady@gmail.com",
  9313. "homepage": "https://github.com/padraic",
  9314. "role": "Author"
  9315. },
  9316. {
  9317. "name": "Dave Marshall",
  9318. "email": "dave.marshall@atstsolutions.co.uk",
  9319. "homepage": "https://davedevelopment.co.uk",
  9320. "role": "Developer"
  9321. },
  9322. {
  9323. "name": "Nathanael Esayeas",
  9324. "email": "nathanael.esayeas@protonmail.com",
  9325. "homepage": "https://github.com/ghostwriter",
  9326. "role": "Lead Developer"
  9327. }
  9328. ],
  9329. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9330. "homepage": "https://github.com/mockery/mockery",
  9331. "keywords": [
  9332. "BDD",
  9333. "TDD",
  9334. "library",
  9335. "mock",
  9336. "mock objects",
  9337. "mockery",
  9338. "stub",
  9339. "test",
  9340. "test double",
  9341. "testing"
  9342. ],
  9343. "support": {
  9344. "docs": "https://docs.mockery.io/",
  9345. "issues": "https://github.com/mockery/mockery/issues",
  9346. "rss": "https://github.com/mockery/mockery/releases.atom",
  9347. "security": "https://github.com/mockery/mockery/security/advisories",
  9348. "source": "https://github.com/mockery/mockery"
  9349. },
  9350. "time": "2023-08-09T00:03:52+00:00"
  9351. },
  9352. {
  9353. "name": "myclabs/deep-copy",
  9354. "version": "1.11.1",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/myclabs/DeepCopy.git",
  9358. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9363. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9364. "shasum": "",
  9365. "mirrors": [
  9366. {
  9367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9368. "preferred": true
  9369. }
  9370. ]
  9371. },
  9372. "require": {
  9373. "php": "^7.1 || ^8.0"
  9374. },
  9375. "conflict": {
  9376. "doctrine/collections": "<1.6.8",
  9377. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9378. },
  9379. "require-dev": {
  9380. "doctrine/collections": "^1.6.8",
  9381. "doctrine/common": "^2.13.3 || ^3.2.2",
  9382. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9383. },
  9384. "type": "library",
  9385. "autoload": {
  9386. "files": [
  9387. "src/DeepCopy/deep_copy.php"
  9388. ],
  9389. "psr-4": {
  9390. "DeepCopy\\": "src/DeepCopy/"
  9391. }
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "MIT"
  9396. ],
  9397. "description": "Create deep copies (clones) of your objects",
  9398. "keywords": [
  9399. "clone",
  9400. "copy",
  9401. "duplicate",
  9402. "object",
  9403. "object graph"
  9404. ],
  9405. "support": {
  9406. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9407. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9408. },
  9409. "funding": [
  9410. {
  9411. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9412. "type": "tidelift"
  9413. }
  9414. ],
  9415. "time": "2023-03-08T13:26:56+00:00"
  9416. },
  9417. {
  9418. "name": "nunomaduro/collision",
  9419. "version": "v6.4.0",
  9420. "source": {
  9421. "type": "git",
  9422. "url": "https://github.com/nunomaduro/collision.git",
  9423. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  9424. },
  9425. "dist": {
  9426. "type": "zip",
  9427. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  9428. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  9429. "shasum": "",
  9430. "mirrors": [
  9431. {
  9432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9433. "preferred": true
  9434. }
  9435. ]
  9436. },
  9437. "require": {
  9438. "filp/whoops": "^2.14.5",
  9439. "php": "^8.0.0",
  9440. "symfony/console": "^6.0.2"
  9441. },
  9442. "require-dev": {
  9443. "brianium/paratest": "^6.4.1",
  9444. "laravel/framework": "^9.26.1",
  9445. "laravel/pint": "^1.1.1",
  9446. "nunomaduro/larastan": "^1.0.3",
  9447. "nunomaduro/mock-final-classes": "^1.1.0",
  9448. "orchestra/testbench": "^7.7",
  9449. "phpunit/phpunit": "^9.5.23",
  9450. "spatie/ignition": "^1.4.1"
  9451. },
  9452. "type": "library",
  9453. "extra": {
  9454. "branch-alias": {
  9455. "dev-develop": "6.x-dev"
  9456. },
  9457. "laravel": {
  9458. "providers": [
  9459. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9460. ]
  9461. }
  9462. },
  9463. "autoload": {
  9464. "psr-4": {
  9465. "NunoMaduro\\Collision\\": "src/"
  9466. }
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "MIT"
  9471. ],
  9472. "authors": [
  9473. {
  9474. "name": "Nuno Maduro",
  9475. "email": "enunomaduro@gmail.com"
  9476. }
  9477. ],
  9478. "description": "Cli error handling for console/command-line PHP applications.",
  9479. "keywords": [
  9480. "artisan",
  9481. "cli",
  9482. "command-line",
  9483. "console",
  9484. "error",
  9485. "handling",
  9486. "laravel",
  9487. "laravel-zero",
  9488. "php",
  9489. "symfony"
  9490. ],
  9491. "support": {
  9492. "issues": "https://github.com/nunomaduro/collision/issues",
  9493. "source": "https://github.com/nunomaduro/collision"
  9494. },
  9495. "funding": [
  9496. {
  9497. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9498. "type": "custom"
  9499. },
  9500. {
  9501. "url": "https://github.com/nunomaduro",
  9502. "type": "github"
  9503. },
  9504. {
  9505. "url": "https://www.patreon.com/nunomaduro",
  9506. "type": "patreon"
  9507. }
  9508. ],
  9509. "time": "2023-01-03T12:54:54+00:00"
  9510. },
  9511. {
  9512. "name": "phar-io/manifest",
  9513. "version": "2.0.3",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/phar-io/manifest.git",
  9517. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9522. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9523. "shasum": "",
  9524. "mirrors": [
  9525. {
  9526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9527. "preferred": true
  9528. }
  9529. ]
  9530. },
  9531. "require": {
  9532. "ext-dom": "*",
  9533. "ext-phar": "*",
  9534. "ext-xmlwriter": "*",
  9535. "phar-io/version": "^3.0.1",
  9536. "php": "^7.2 || ^8.0"
  9537. },
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-master": "2.0.x-dev"
  9542. }
  9543. },
  9544. "autoload": {
  9545. "classmap": [
  9546. "src/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "BSD-3-Clause"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Arne Blankerts",
  9556. "email": "arne@blankerts.de",
  9557. "role": "Developer"
  9558. },
  9559. {
  9560. "name": "Sebastian Heuer",
  9561. "email": "sebastian@phpeople.de",
  9562. "role": "Developer"
  9563. },
  9564. {
  9565. "name": "Sebastian Bergmann",
  9566. "email": "sebastian@phpunit.de",
  9567. "role": "Developer"
  9568. }
  9569. ],
  9570. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9571. "support": {
  9572. "issues": "https://github.com/phar-io/manifest/issues",
  9573. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9574. },
  9575. "time": "2021-07-20T11:28:43+00:00"
  9576. },
  9577. {
  9578. "name": "phar-io/version",
  9579. "version": "3.2.1",
  9580. "source": {
  9581. "type": "git",
  9582. "url": "https://github.com/phar-io/version.git",
  9583. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9584. },
  9585. "dist": {
  9586. "type": "zip",
  9587. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9588. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9589. "shasum": "",
  9590. "mirrors": [
  9591. {
  9592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9593. "preferred": true
  9594. }
  9595. ]
  9596. },
  9597. "require": {
  9598. "php": "^7.2 || ^8.0"
  9599. },
  9600. "type": "library",
  9601. "autoload": {
  9602. "classmap": [
  9603. "src/"
  9604. ]
  9605. },
  9606. "notification-url": "https://packagist.org/downloads/",
  9607. "license": [
  9608. "BSD-3-Clause"
  9609. ],
  9610. "authors": [
  9611. {
  9612. "name": "Arne Blankerts",
  9613. "email": "arne@blankerts.de",
  9614. "role": "Developer"
  9615. },
  9616. {
  9617. "name": "Sebastian Heuer",
  9618. "email": "sebastian@phpeople.de",
  9619. "role": "Developer"
  9620. },
  9621. {
  9622. "name": "Sebastian Bergmann",
  9623. "email": "sebastian@phpunit.de",
  9624. "role": "Developer"
  9625. }
  9626. ],
  9627. "description": "Library for handling version information and constraints",
  9628. "support": {
  9629. "issues": "https://github.com/phar-io/version/issues",
  9630. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9631. },
  9632. "time": "2022-02-21T01:04:05+00:00"
  9633. },
  9634. {
  9635. "name": "phpunit/php-code-coverage",
  9636. "version": "9.2.30",
  9637. "source": {
  9638. "type": "git",
  9639. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9640. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9641. },
  9642. "dist": {
  9643. "type": "zip",
  9644. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9645. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9646. "shasum": "",
  9647. "mirrors": [
  9648. {
  9649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9650. "preferred": true
  9651. }
  9652. ]
  9653. },
  9654. "require": {
  9655. "ext-dom": "*",
  9656. "ext-libxml": "*",
  9657. "ext-xmlwriter": "*",
  9658. "nikic/php-parser": "^4.18 || ^5.0",
  9659. "php": ">=7.3",
  9660. "phpunit/php-file-iterator": "^3.0.3",
  9661. "phpunit/php-text-template": "^2.0.2",
  9662. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9663. "sebastian/complexity": "^2.0",
  9664. "sebastian/environment": "^5.1.2",
  9665. "sebastian/lines-of-code": "^1.0.3",
  9666. "sebastian/version": "^3.0.1",
  9667. "theseer/tokenizer": "^1.2.0"
  9668. },
  9669. "require-dev": {
  9670. "phpunit/phpunit": "^9.3"
  9671. },
  9672. "suggest": {
  9673. "ext-pcov": "PHP extension that provides line coverage",
  9674. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9675. },
  9676. "type": "library",
  9677. "extra": {
  9678. "branch-alias": {
  9679. "dev-master": "9.2-dev"
  9680. }
  9681. },
  9682. "autoload": {
  9683. "classmap": [
  9684. "src/"
  9685. ]
  9686. },
  9687. "notification-url": "https://packagist.org/downloads/",
  9688. "license": [
  9689. "BSD-3-Clause"
  9690. ],
  9691. "authors": [
  9692. {
  9693. "name": "Sebastian Bergmann",
  9694. "email": "sebastian@phpunit.de",
  9695. "role": "lead"
  9696. }
  9697. ],
  9698. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9699. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9700. "keywords": [
  9701. "coverage",
  9702. "testing",
  9703. "xunit"
  9704. ],
  9705. "support": {
  9706. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9707. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9708. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9709. },
  9710. "funding": [
  9711. {
  9712. "url": "https://github.com/sebastianbergmann",
  9713. "type": "github"
  9714. }
  9715. ],
  9716. "time": "2023-12-22T06:47:57+00:00"
  9717. },
  9718. {
  9719. "name": "phpunit/php-file-iterator",
  9720. "version": "3.0.6",
  9721. "source": {
  9722. "type": "git",
  9723. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9724. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9725. },
  9726. "dist": {
  9727. "type": "zip",
  9728. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9729. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9730. "shasum": "",
  9731. "mirrors": [
  9732. {
  9733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9734. "preferred": true
  9735. }
  9736. ]
  9737. },
  9738. "require": {
  9739. "php": ">=7.3"
  9740. },
  9741. "require-dev": {
  9742. "phpunit/phpunit": "^9.3"
  9743. },
  9744. "type": "library",
  9745. "extra": {
  9746. "branch-alias": {
  9747. "dev-master": "3.0-dev"
  9748. }
  9749. },
  9750. "autoload": {
  9751. "classmap": [
  9752. "src/"
  9753. ]
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "BSD-3-Clause"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Sebastian Bergmann",
  9762. "email": "sebastian@phpunit.de",
  9763. "role": "lead"
  9764. }
  9765. ],
  9766. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9767. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9768. "keywords": [
  9769. "filesystem",
  9770. "iterator"
  9771. ],
  9772. "support": {
  9773. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9774. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://github.com/sebastianbergmann",
  9779. "type": "github"
  9780. }
  9781. ],
  9782. "time": "2021-12-02T12:48:52+00:00"
  9783. },
  9784. {
  9785. "name": "phpunit/php-invoker",
  9786. "version": "3.1.1",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9790. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9795. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9796. "shasum": "",
  9797. "mirrors": [
  9798. {
  9799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9800. "preferred": true
  9801. }
  9802. ]
  9803. },
  9804. "require": {
  9805. "php": ">=7.3"
  9806. },
  9807. "require-dev": {
  9808. "ext-pcntl": "*",
  9809. "phpunit/phpunit": "^9.3"
  9810. },
  9811. "suggest": {
  9812. "ext-pcntl": "*"
  9813. },
  9814. "type": "library",
  9815. "extra": {
  9816. "branch-alias": {
  9817. "dev-master": "3.1-dev"
  9818. }
  9819. },
  9820. "autoload": {
  9821. "classmap": [
  9822. "src/"
  9823. ]
  9824. },
  9825. "notification-url": "https://packagist.org/downloads/",
  9826. "license": [
  9827. "BSD-3-Clause"
  9828. ],
  9829. "authors": [
  9830. {
  9831. "name": "Sebastian Bergmann",
  9832. "email": "sebastian@phpunit.de",
  9833. "role": "lead"
  9834. }
  9835. ],
  9836. "description": "Invoke callables with a timeout",
  9837. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9838. "keywords": [
  9839. "process"
  9840. ],
  9841. "support": {
  9842. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9843. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9844. },
  9845. "funding": [
  9846. {
  9847. "url": "https://github.com/sebastianbergmann",
  9848. "type": "github"
  9849. }
  9850. ],
  9851. "time": "2020-09-28T05:58:55+00:00"
  9852. },
  9853. {
  9854. "name": "phpunit/php-text-template",
  9855. "version": "2.0.4",
  9856. "source": {
  9857. "type": "git",
  9858. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9859. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9860. },
  9861. "dist": {
  9862. "type": "zip",
  9863. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9864. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9865. "shasum": "",
  9866. "mirrors": [
  9867. {
  9868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9869. "preferred": true
  9870. }
  9871. ]
  9872. },
  9873. "require": {
  9874. "php": ">=7.3"
  9875. },
  9876. "require-dev": {
  9877. "phpunit/phpunit": "^9.3"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "2.0-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "classmap": [
  9887. "src/"
  9888. ]
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "BSD-3-Clause"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Sebastian Bergmann",
  9897. "email": "sebastian@phpunit.de",
  9898. "role": "lead"
  9899. }
  9900. ],
  9901. "description": "Simple template engine.",
  9902. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9903. "keywords": [
  9904. "template"
  9905. ],
  9906. "support": {
  9907. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9908. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9909. },
  9910. "funding": [
  9911. {
  9912. "url": "https://github.com/sebastianbergmann",
  9913. "type": "github"
  9914. }
  9915. ],
  9916. "time": "2020-10-26T05:33:50+00:00"
  9917. },
  9918. {
  9919. "name": "phpunit/php-timer",
  9920. "version": "5.0.3",
  9921. "source": {
  9922. "type": "git",
  9923. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9924. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9925. },
  9926. "dist": {
  9927. "type": "zip",
  9928. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9929. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9930. "shasum": "",
  9931. "mirrors": [
  9932. {
  9933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9934. "preferred": true
  9935. }
  9936. ]
  9937. },
  9938. "require": {
  9939. "php": ">=7.3"
  9940. },
  9941. "require-dev": {
  9942. "phpunit/phpunit": "^9.3"
  9943. },
  9944. "type": "library",
  9945. "extra": {
  9946. "branch-alias": {
  9947. "dev-master": "5.0-dev"
  9948. }
  9949. },
  9950. "autoload": {
  9951. "classmap": [
  9952. "src/"
  9953. ]
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "BSD-3-Clause"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Sebastian Bergmann",
  9962. "email": "sebastian@phpunit.de",
  9963. "role": "lead"
  9964. }
  9965. ],
  9966. "description": "Utility class for timing",
  9967. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9968. "keywords": [
  9969. "timer"
  9970. ],
  9971. "support": {
  9972. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9973. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9974. },
  9975. "funding": [
  9976. {
  9977. "url": "https://github.com/sebastianbergmann",
  9978. "type": "github"
  9979. }
  9980. ],
  9981. "time": "2020-10-26T13:16:10+00:00"
  9982. },
  9983. {
  9984. "name": "phpunit/phpunit",
  9985. "version": "9.6.15",
  9986. "source": {
  9987. "type": "git",
  9988. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9989. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9990. },
  9991. "dist": {
  9992. "type": "zip",
  9993. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9994. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9995. "shasum": "",
  9996. "mirrors": [
  9997. {
  9998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9999. "preferred": true
  10000. }
  10001. ]
  10002. },
  10003. "require": {
  10004. "doctrine/instantiator": "^1.3.1 || ^2",
  10005. "ext-dom": "*",
  10006. "ext-json": "*",
  10007. "ext-libxml": "*",
  10008. "ext-mbstring": "*",
  10009. "ext-xml": "*",
  10010. "ext-xmlwriter": "*",
  10011. "myclabs/deep-copy": "^1.10.1",
  10012. "phar-io/manifest": "^2.0.3",
  10013. "phar-io/version": "^3.0.2",
  10014. "php": ">=7.3",
  10015. "phpunit/php-code-coverage": "^9.2.28",
  10016. "phpunit/php-file-iterator": "^3.0.5",
  10017. "phpunit/php-invoker": "^3.1.1",
  10018. "phpunit/php-text-template": "^2.0.3",
  10019. "phpunit/php-timer": "^5.0.2",
  10020. "sebastian/cli-parser": "^1.0.1",
  10021. "sebastian/code-unit": "^1.0.6",
  10022. "sebastian/comparator": "^4.0.8",
  10023. "sebastian/diff": "^4.0.3",
  10024. "sebastian/environment": "^5.1.3",
  10025. "sebastian/exporter": "^4.0.5",
  10026. "sebastian/global-state": "^5.0.1",
  10027. "sebastian/object-enumerator": "^4.0.3",
  10028. "sebastian/resource-operations": "^3.0.3",
  10029. "sebastian/type": "^3.2",
  10030. "sebastian/version": "^3.0.2"
  10031. },
  10032. "suggest": {
  10033. "ext-soap": "To be able to generate mocks based on WSDL files",
  10034. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10035. },
  10036. "bin": [
  10037. "phpunit"
  10038. ],
  10039. "type": "library",
  10040. "extra": {
  10041. "branch-alias": {
  10042. "dev-master": "9.6-dev"
  10043. }
  10044. },
  10045. "autoload": {
  10046. "files": [
  10047. "src/Framework/Assert/Functions.php"
  10048. ],
  10049. "classmap": [
  10050. "src/"
  10051. ]
  10052. },
  10053. "notification-url": "https://packagist.org/downloads/",
  10054. "license": [
  10055. "BSD-3-Clause"
  10056. ],
  10057. "authors": [
  10058. {
  10059. "name": "Sebastian Bergmann",
  10060. "email": "sebastian@phpunit.de",
  10061. "role": "lead"
  10062. }
  10063. ],
  10064. "description": "The PHP Unit Testing framework.",
  10065. "homepage": "https://phpunit.de/",
  10066. "keywords": [
  10067. "phpunit",
  10068. "testing",
  10069. "xunit"
  10070. ],
  10071. "support": {
  10072. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10073. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10074. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  10075. },
  10076. "funding": [
  10077. {
  10078. "url": "https://phpunit.de/sponsors.html",
  10079. "type": "custom"
  10080. },
  10081. {
  10082. "url": "https://github.com/sebastianbergmann",
  10083. "type": "github"
  10084. },
  10085. {
  10086. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10087. "type": "tidelift"
  10088. }
  10089. ],
  10090. "time": "2023-12-01T16:55:19+00:00"
  10091. },
  10092. {
  10093. "name": "sebastian/cli-parser",
  10094. "version": "1.0.1",
  10095. "source": {
  10096. "type": "git",
  10097. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10098. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10099. },
  10100. "dist": {
  10101. "type": "zip",
  10102. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10103. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10104. "shasum": "",
  10105. "mirrors": [
  10106. {
  10107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10108. "preferred": true
  10109. }
  10110. ]
  10111. },
  10112. "require": {
  10113. "php": ">=7.3"
  10114. },
  10115. "require-dev": {
  10116. "phpunit/phpunit": "^9.3"
  10117. },
  10118. "type": "library",
  10119. "extra": {
  10120. "branch-alias": {
  10121. "dev-master": "1.0-dev"
  10122. }
  10123. },
  10124. "autoload": {
  10125. "classmap": [
  10126. "src/"
  10127. ]
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "BSD-3-Clause"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Sebastian Bergmann",
  10136. "email": "sebastian@phpunit.de",
  10137. "role": "lead"
  10138. }
  10139. ],
  10140. "description": "Library for parsing CLI options",
  10141. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10142. "support": {
  10143. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10144. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10145. },
  10146. "funding": [
  10147. {
  10148. "url": "https://github.com/sebastianbergmann",
  10149. "type": "github"
  10150. }
  10151. ],
  10152. "time": "2020-09-28T06:08:49+00:00"
  10153. },
  10154. {
  10155. "name": "sebastian/code-unit",
  10156. "version": "1.0.8",
  10157. "source": {
  10158. "type": "git",
  10159. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10160. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10161. },
  10162. "dist": {
  10163. "type": "zip",
  10164. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10165. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10166. "shasum": "",
  10167. "mirrors": [
  10168. {
  10169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10170. "preferred": true
  10171. }
  10172. ]
  10173. },
  10174. "require": {
  10175. "php": ">=7.3"
  10176. },
  10177. "require-dev": {
  10178. "phpunit/phpunit": "^9.3"
  10179. },
  10180. "type": "library",
  10181. "extra": {
  10182. "branch-alias": {
  10183. "dev-master": "1.0-dev"
  10184. }
  10185. },
  10186. "autoload": {
  10187. "classmap": [
  10188. "src/"
  10189. ]
  10190. },
  10191. "notification-url": "https://packagist.org/downloads/",
  10192. "license": [
  10193. "BSD-3-Clause"
  10194. ],
  10195. "authors": [
  10196. {
  10197. "name": "Sebastian Bergmann",
  10198. "email": "sebastian@phpunit.de",
  10199. "role": "lead"
  10200. }
  10201. ],
  10202. "description": "Collection of value objects that represent the PHP code units",
  10203. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10204. "support": {
  10205. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10206. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10207. },
  10208. "funding": [
  10209. {
  10210. "url": "https://github.com/sebastianbergmann",
  10211. "type": "github"
  10212. }
  10213. ],
  10214. "time": "2020-10-26T13:08:54+00:00"
  10215. },
  10216. {
  10217. "name": "sebastian/code-unit-reverse-lookup",
  10218. "version": "2.0.3",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10222. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10227. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10228. "shasum": "",
  10229. "mirrors": [
  10230. {
  10231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10232. "preferred": true
  10233. }
  10234. ]
  10235. },
  10236. "require": {
  10237. "php": ">=7.3"
  10238. },
  10239. "require-dev": {
  10240. "phpunit/phpunit": "^9.3"
  10241. },
  10242. "type": "library",
  10243. "extra": {
  10244. "branch-alias": {
  10245. "dev-master": "2.0-dev"
  10246. }
  10247. },
  10248. "autoload": {
  10249. "classmap": [
  10250. "src/"
  10251. ]
  10252. },
  10253. "notification-url": "https://packagist.org/downloads/",
  10254. "license": [
  10255. "BSD-3-Clause"
  10256. ],
  10257. "authors": [
  10258. {
  10259. "name": "Sebastian Bergmann",
  10260. "email": "sebastian@phpunit.de"
  10261. }
  10262. ],
  10263. "description": "Looks up which function or method a line of code belongs to",
  10264. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10265. "support": {
  10266. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10267. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10268. },
  10269. "funding": [
  10270. {
  10271. "url": "https://github.com/sebastianbergmann",
  10272. "type": "github"
  10273. }
  10274. ],
  10275. "time": "2020-09-28T05:30:19+00:00"
  10276. },
  10277. {
  10278. "name": "sebastian/comparator",
  10279. "version": "4.0.8",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/sebastianbergmann/comparator.git",
  10283. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10288. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10289. "shasum": "",
  10290. "mirrors": [
  10291. {
  10292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10293. "preferred": true
  10294. }
  10295. ]
  10296. },
  10297. "require": {
  10298. "php": ">=7.3",
  10299. "sebastian/diff": "^4.0",
  10300. "sebastian/exporter": "^4.0"
  10301. },
  10302. "require-dev": {
  10303. "phpunit/phpunit": "^9.3"
  10304. },
  10305. "type": "library",
  10306. "extra": {
  10307. "branch-alias": {
  10308. "dev-master": "4.0-dev"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "classmap": [
  10313. "src/"
  10314. ]
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "BSD-3-Clause"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "Sebastian Bergmann",
  10323. "email": "sebastian@phpunit.de"
  10324. },
  10325. {
  10326. "name": "Jeff Welch",
  10327. "email": "whatthejeff@gmail.com"
  10328. },
  10329. {
  10330. "name": "Volker Dusch",
  10331. "email": "github@wallbash.com"
  10332. },
  10333. {
  10334. "name": "Bernhard Schussek",
  10335. "email": "bschussek@2bepublished.at"
  10336. }
  10337. ],
  10338. "description": "Provides the functionality to compare PHP values for equality",
  10339. "homepage": "https://github.com/sebastianbergmann/comparator",
  10340. "keywords": [
  10341. "comparator",
  10342. "compare",
  10343. "equality"
  10344. ],
  10345. "support": {
  10346. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10347. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10348. },
  10349. "funding": [
  10350. {
  10351. "url": "https://github.com/sebastianbergmann",
  10352. "type": "github"
  10353. }
  10354. ],
  10355. "time": "2022-09-14T12:41:17+00:00"
  10356. },
  10357. {
  10358. "name": "sebastian/complexity",
  10359. "version": "2.0.3",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/sebastianbergmann/complexity.git",
  10363. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10368. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10369. "shasum": "",
  10370. "mirrors": [
  10371. {
  10372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10373. "preferred": true
  10374. }
  10375. ]
  10376. },
  10377. "require": {
  10378. "nikic/php-parser": "^4.18 || ^5.0",
  10379. "php": ">=7.3"
  10380. },
  10381. "require-dev": {
  10382. "phpunit/phpunit": "^9.3"
  10383. },
  10384. "type": "library",
  10385. "extra": {
  10386. "branch-alias": {
  10387. "dev-master": "2.0-dev"
  10388. }
  10389. },
  10390. "autoload": {
  10391. "classmap": [
  10392. "src/"
  10393. ]
  10394. },
  10395. "notification-url": "https://packagist.org/downloads/",
  10396. "license": [
  10397. "BSD-3-Clause"
  10398. ],
  10399. "authors": [
  10400. {
  10401. "name": "Sebastian Bergmann",
  10402. "email": "sebastian@phpunit.de",
  10403. "role": "lead"
  10404. }
  10405. ],
  10406. "description": "Library for calculating the complexity of PHP code units",
  10407. "homepage": "https://github.com/sebastianbergmann/complexity",
  10408. "support": {
  10409. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10410. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10411. },
  10412. "funding": [
  10413. {
  10414. "url": "https://github.com/sebastianbergmann",
  10415. "type": "github"
  10416. }
  10417. ],
  10418. "time": "2023-12-22T06:19:30+00:00"
  10419. },
  10420. {
  10421. "name": "sebastian/diff",
  10422. "version": "4.0.5",
  10423. "source": {
  10424. "type": "git",
  10425. "url": "https://github.com/sebastianbergmann/diff.git",
  10426. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10427. },
  10428. "dist": {
  10429. "type": "zip",
  10430. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10431. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10432. "shasum": "",
  10433. "mirrors": [
  10434. {
  10435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10436. "preferred": true
  10437. }
  10438. ]
  10439. },
  10440. "require": {
  10441. "php": ">=7.3"
  10442. },
  10443. "require-dev": {
  10444. "phpunit/phpunit": "^9.3",
  10445. "symfony/process": "^4.2 || ^5"
  10446. },
  10447. "type": "library",
  10448. "extra": {
  10449. "branch-alias": {
  10450. "dev-master": "4.0-dev"
  10451. }
  10452. },
  10453. "autoload": {
  10454. "classmap": [
  10455. "src/"
  10456. ]
  10457. },
  10458. "notification-url": "https://packagist.org/downloads/",
  10459. "license": [
  10460. "BSD-3-Clause"
  10461. ],
  10462. "authors": [
  10463. {
  10464. "name": "Sebastian Bergmann",
  10465. "email": "sebastian@phpunit.de"
  10466. },
  10467. {
  10468. "name": "Kore Nordmann",
  10469. "email": "mail@kore-nordmann.de"
  10470. }
  10471. ],
  10472. "description": "Diff implementation",
  10473. "homepage": "https://github.com/sebastianbergmann/diff",
  10474. "keywords": [
  10475. "diff",
  10476. "udiff",
  10477. "unidiff",
  10478. "unified diff"
  10479. ],
  10480. "support": {
  10481. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10482. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10483. },
  10484. "funding": [
  10485. {
  10486. "url": "https://github.com/sebastianbergmann",
  10487. "type": "github"
  10488. }
  10489. ],
  10490. "time": "2023-05-07T05:35:17+00:00"
  10491. },
  10492. {
  10493. "name": "sebastian/environment",
  10494. "version": "5.1.5",
  10495. "source": {
  10496. "type": "git",
  10497. "url": "https://github.com/sebastianbergmann/environment.git",
  10498. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10499. },
  10500. "dist": {
  10501. "type": "zip",
  10502. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10503. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10504. "shasum": "",
  10505. "mirrors": [
  10506. {
  10507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10508. "preferred": true
  10509. }
  10510. ]
  10511. },
  10512. "require": {
  10513. "php": ">=7.3"
  10514. },
  10515. "require-dev": {
  10516. "phpunit/phpunit": "^9.3"
  10517. },
  10518. "suggest": {
  10519. "ext-posix": "*"
  10520. },
  10521. "type": "library",
  10522. "extra": {
  10523. "branch-alias": {
  10524. "dev-master": "5.1-dev"
  10525. }
  10526. },
  10527. "autoload": {
  10528. "classmap": [
  10529. "src/"
  10530. ]
  10531. },
  10532. "notification-url": "https://packagist.org/downloads/",
  10533. "license": [
  10534. "BSD-3-Clause"
  10535. ],
  10536. "authors": [
  10537. {
  10538. "name": "Sebastian Bergmann",
  10539. "email": "sebastian@phpunit.de"
  10540. }
  10541. ],
  10542. "description": "Provides functionality to handle HHVM/PHP environments",
  10543. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10544. "keywords": [
  10545. "Xdebug",
  10546. "environment",
  10547. "hhvm"
  10548. ],
  10549. "support": {
  10550. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10551. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://github.com/sebastianbergmann",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2023-02-03T06:03:51+00:00"
  10560. },
  10561. {
  10562. "name": "sebastian/exporter",
  10563. "version": "4.0.5",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/sebastianbergmann/exporter.git",
  10567. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10572. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10573. "shasum": "",
  10574. "mirrors": [
  10575. {
  10576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10577. "preferred": true
  10578. }
  10579. ]
  10580. },
  10581. "require": {
  10582. "php": ">=7.3",
  10583. "sebastian/recursion-context": "^4.0"
  10584. },
  10585. "require-dev": {
  10586. "ext-mbstring": "*",
  10587. "phpunit/phpunit": "^9.3"
  10588. },
  10589. "type": "library",
  10590. "extra": {
  10591. "branch-alias": {
  10592. "dev-master": "4.0-dev"
  10593. }
  10594. },
  10595. "autoload": {
  10596. "classmap": [
  10597. "src/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "BSD-3-Clause"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Sebastian Bergmann",
  10607. "email": "sebastian@phpunit.de"
  10608. },
  10609. {
  10610. "name": "Jeff Welch",
  10611. "email": "whatthejeff@gmail.com"
  10612. },
  10613. {
  10614. "name": "Volker Dusch",
  10615. "email": "github@wallbash.com"
  10616. },
  10617. {
  10618. "name": "Adam Harvey",
  10619. "email": "aharvey@php.net"
  10620. },
  10621. {
  10622. "name": "Bernhard Schussek",
  10623. "email": "bschussek@gmail.com"
  10624. }
  10625. ],
  10626. "description": "Provides the functionality to export PHP variables for visualization",
  10627. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10628. "keywords": [
  10629. "export",
  10630. "exporter"
  10631. ],
  10632. "support": {
  10633. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10634. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10635. },
  10636. "funding": [
  10637. {
  10638. "url": "https://github.com/sebastianbergmann",
  10639. "type": "github"
  10640. }
  10641. ],
  10642. "time": "2022-09-14T06:03:37+00:00"
  10643. },
  10644. {
  10645. "name": "sebastian/global-state",
  10646. "version": "5.0.6",
  10647. "source": {
  10648. "type": "git",
  10649. "url": "https://github.com/sebastianbergmann/global-state.git",
  10650. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10651. },
  10652. "dist": {
  10653. "type": "zip",
  10654. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10655. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10656. "shasum": "",
  10657. "mirrors": [
  10658. {
  10659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10660. "preferred": true
  10661. }
  10662. ]
  10663. },
  10664. "require": {
  10665. "php": ">=7.3",
  10666. "sebastian/object-reflector": "^2.0",
  10667. "sebastian/recursion-context": "^4.0"
  10668. },
  10669. "require-dev": {
  10670. "ext-dom": "*",
  10671. "phpunit/phpunit": "^9.3"
  10672. },
  10673. "suggest": {
  10674. "ext-uopz": "*"
  10675. },
  10676. "type": "library",
  10677. "extra": {
  10678. "branch-alias": {
  10679. "dev-master": "5.0-dev"
  10680. }
  10681. },
  10682. "autoload": {
  10683. "classmap": [
  10684. "src/"
  10685. ]
  10686. },
  10687. "notification-url": "https://packagist.org/downloads/",
  10688. "license": [
  10689. "BSD-3-Clause"
  10690. ],
  10691. "authors": [
  10692. {
  10693. "name": "Sebastian Bergmann",
  10694. "email": "sebastian@phpunit.de"
  10695. }
  10696. ],
  10697. "description": "Snapshotting of global state",
  10698. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10699. "keywords": [
  10700. "global state"
  10701. ],
  10702. "support": {
  10703. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10704. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10705. },
  10706. "funding": [
  10707. {
  10708. "url": "https://github.com/sebastianbergmann",
  10709. "type": "github"
  10710. }
  10711. ],
  10712. "time": "2023-08-02T09:26:13+00:00"
  10713. },
  10714. {
  10715. "name": "sebastian/lines-of-code",
  10716. "version": "1.0.3",
  10717. "source": {
  10718. "type": "git",
  10719. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10720. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10721. },
  10722. "dist": {
  10723. "type": "zip",
  10724. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10725. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10726. "shasum": "",
  10727. "mirrors": [
  10728. {
  10729. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10730. "preferred": true
  10731. }
  10732. ]
  10733. },
  10734. "require": {
  10735. "nikic/php-parser": "^4.6",
  10736. "php": ">=7.3"
  10737. },
  10738. "require-dev": {
  10739. "phpunit/phpunit": "^9.3"
  10740. },
  10741. "type": "library",
  10742. "extra": {
  10743. "branch-alias": {
  10744. "dev-master": "1.0-dev"
  10745. }
  10746. },
  10747. "autoload": {
  10748. "classmap": [
  10749. "src/"
  10750. ]
  10751. },
  10752. "notification-url": "https://packagist.org/downloads/",
  10753. "license": [
  10754. "BSD-3-Clause"
  10755. ],
  10756. "authors": [
  10757. {
  10758. "name": "Sebastian Bergmann",
  10759. "email": "sebastian@phpunit.de",
  10760. "role": "lead"
  10761. }
  10762. ],
  10763. "description": "Library for counting the lines of code in PHP source code",
  10764. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10765. "support": {
  10766. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10767. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10768. },
  10769. "funding": [
  10770. {
  10771. "url": "https://github.com/sebastianbergmann",
  10772. "type": "github"
  10773. }
  10774. ],
  10775. "time": "2020-11-28T06:42:11+00:00"
  10776. },
  10777. {
  10778. "name": "sebastian/object-enumerator",
  10779. "version": "4.0.4",
  10780. "source": {
  10781. "type": "git",
  10782. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10783. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10784. },
  10785. "dist": {
  10786. "type": "zip",
  10787. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10788. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10789. "shasum": "",
  10790. "mirrors": [
  10791. {
  10792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10793. "preferred": true
  10794. }
  10795. ]
  10796. },
  10797. "require": {
  10798. "php": ">=7.3",
  10799. "sebastian/object-reflector": "^2.0",
  10800. "sebastian/recursion-context": "^4.0"
  10801. },
  10802. "require-dev": {
  10803. "phpunit/phpunit": "^9.3"
  10804. },
  10805. "type": "library",
  10806. "extra": {
  10807. "branch-alias": {
  10808. "dev-master": "4.0-dev"
  10809. }
  10810. },
  10811. "autoload": {
  10812. "classmap": [
  10813. "src/"
  10814. ]
  10815. },
  10816. "notification-url": "https://packagist.org/downloads/",
  10817. "license": [
  10818. "BSD-3-Clause"
  10819. ],
  10820. "authors": [
  10821. {
  10822. "name": "Sebastian Bergmann",
  10823. "email": "sebastian@phpunit.de"
  10824. }
  10825. ],
  10826. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10827. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10828. "support": {
  10829. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10830. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10831. },
  10832. "funding": [
  10833. {
  10834. "url": "https://github.com/sebastianbergmann",
  10835. "type": "github"
  10836. }
  10837. ],
  10838. "time": "2020-10-26T13:12:34+00:00"
  10839. },
  10840. {
  10841. "name": "sebastian/object-reflector",
  10842. "version": "2.0.4",
  10843. "source": {
  10844. "type": "git",
  10845. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10846. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10847. },
  10848. "dist": {
  10849. "type": "zip",
  10850. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10851. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10852. "shasum": "",
  10853. "mirrors": [
  10854. {
  10855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10856. "preferred": true
  10857. }
  10858. ]
  10859. },
  10860. "require": {
  10861. "php": ">=7.3"
  10862. },
  10863. "require-dev": {
  10864. "phpunit/phpunit": "^9.3"
  10865. },
  10866. "type": "library",
  10867. "extra": {
  10868. "branch-alias": {
  10869. "dev-master": "2.0-dev"
  10870. }
  10871. },
  10872. "autoload": {
  10873. "classmap": [
  10874. "src/"
  10875. ]
  10876. },
  10877. "notification-url": "https://packagist.org/downloads/",
  10878. "license": [
  10879. "BSD-3-Clause"
  10880. ],
  10881. "authors": [
  10882. {
  10883. "name": "Sebastian Bergmann",
  10884. "email": "sebastian@phpunit.de"
  10885. }
  10886. ],
  10887. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10888. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10889. "support": {
  10890. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10891. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10892. },
  10893. "funding": [
  10894. {
  10895. "url": "https://github.com/sebastianbergmann",
  10896. "type": "github"
  10897. }
  10898. ],
  10899. "time": "2020-10-26T13:14:26+00:00"
  10900. },
  10901. {
  10902. "name": "sebastian/recursion-context",
  10903. "version": "4.0.5",
  10904. "source": {
  10905. "type": "git",
  10906. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10907. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10908. },
  10909. "dist": {
  10910. "type": "zip",
  10911. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10912. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10913. "shasum": "",
  10914. "mirrors": [
  10915. {
  10916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10917. "preferred": true
  10918. }
  10919. ]
  10920. },
  10921. "require": {
  10922. "php": ">=7.3"
  10923. },
  10924. "require-dev": {
  10925. "phpunit/phpunit": "^9.3"
  10926. },
  10927. "type": "library",
  10928. "extra": {
  10929. "branch-alias": {
  10930. "dev-master": "4.0-dev"
  10931. }
  10932. },
  10933. "autoload": {
  10934. "classmap": [
  10935. "src/"
  10936. ]
  10937. },
  10938. "notification-url": "https://packagist.org/downloads/",
  10939. "license": [
  10940. "BSD-3-Clause"
  10941. ],
  10942. "authors": [
  10943. {
  10944. "name": "Sebastian Bergmann",
  10945. "email": "sebastian@phpunit.de"
  10946. },
  10947. {
  10948. "name": "Jeff Welch",
  10949. "email": "whatthejeff@gmail.com"
  10950. },
  10951. {
  10952. "name": "Adam Harvey",
  10953. "email": "aharvey@php.net"
  10954. }
  10955. ],
  10956. "description": "Provides functionality to recursively process PHP variables",
  10957. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10958. "support": {
  10959. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10960. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10961. },
  10962. "funding": [
  10963. {
  10964. "url": "https://github.com/sebastianbergmann",
  10965. "type": "github"
  10966. }
  10967. ],
  10968. "time": "2023-02-03T06:07:39+00:00"
  10969. },
  10970. {
  10971. "name": "sebastian/resource-operations",
  10972. "version": "3.0.3",
  10973. "source": {
  10974. "type": "git",
  10975. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10976. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10977. },
  10978. "dist": {
  10979. "type": "zip",
  10980. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10981. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10982. "shasum": "",
  10983. "mirrors": [
  10984. {
  10985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10986. "preferred": true
  10987. }
  10988. ]
  10989. },
  10990. "require": {
  10991. "php": ">=7.3"
  10992. },
  10993. "require-dev": {
  10994. "phpunit/phpunit": "^9.0"
  10995. },
  10996. "type": "library",
  10997. "extra": {
  10998. "branch-alias": {
  10999. "dev-master": "3.0-dev"
  11000. }
  11001. },
  11002. "autoload": {
  11003. "classmap": [
  11004. "src/"
  11005. ]
  11006. },
  11007. "notification-url": "https://packagist.org/downloads/",
  11008. "license": [
  11009. "BSD-3-Clause"
  11010. ],
  11011. "authors": [
  11012. {
  11013. "name": "Sebastian Bergmann",
  11014. "email": "sebastian@phpunit.de"
  11015. }
  11016. ],
  11017. "description": "Provides a list of PHP built-in functions that operate on resources",
  11018. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11019. "support": {
  11020. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11021. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11022. },
  11023. "funding": [
  11024. {
  11025. "url": "https://github.com/sebastianbergmann",
  11026. "type": "github"
  11027. }
  11028. ],
  11029. "time": "2020-09-28T06:45:17+00:00"
  11030. },
  11031. {
  11032. "name": "sebastian/type",
  11033. "version": "3.2.1",
  11034. "source": {
  11035. "type": "git",
  11036. "url": "https://github.com/sebastianbergmann/type.git",
  11037. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11038. },
  11039. "dist": {
  11040. "type": "zip",
  11041. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11042. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11043. "shasum": "",
  11044. "mirrors": [
  11045. {
  11046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11047. "preferred": true
  11048. }
  11049. ]
  11050. },
  11051. "require": {
  11052. "php": ">=7.3"
  11053. },
  11054. "require-dev": {
  11055. "phpunit/phpunit": "^9.5"
  11056. },
  11057. "type": "library",
  11058. "extra": {
  11059. "branch-alias": {
  11060. "dev-master": "3.2-dev"
  11061. }
  11062. },
  11063. "autoload": {
  11064. "classmap": [
  11065. "src/"
  11066. ]
  11067. },
  11068. "notification-url": "https://packagist.org/downloads/",
  11069. "license": [
  11070. "BSD-3-Clause"
  11071. ],
  11072. "authors": [
  11073. {
  11074. "name": "Sebastian Bergmann",
  11075. "email": "sebastian@phpunit.de",
  11076. "role": "lead"
  11077. }
  11078. ],
  11079. "description": "Collection of value objects that represent the types of the PHP type system",
  11080. "homepage": "https://github.com/sebastianbergmann/type",
  11081. "support": {
  11082. "issues": "https://github.com/sebastianbergmann/type/issues",
  11083. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11084. },
  11085. "funding": [
  11086. {
  11087. "url": "https://github.com/sebastianbergmann",
  11088. "type": "github"
  11089. }
  11090. ],
  11091. "time": "2023-02-03T06:13:03+00:00"
  11092. },
  11093. {
  11094. "name": "sebastian/version",
  11095. "version": "3.0.2",
  11096. "source": {
  11097. "type": "git",
  11098. "url": "https://github.com/sebastianbergmann/version.git",
  11099. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11100. },
  11101. "dist": {
  11102. "type": "zip",
  11103. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11104. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11105. "shasum": "",
  11106. "mirrors": [
  11107. {
  11108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11109. "preferred": true
  11110. }
  11111. ]
  11112. },
  11113. "require": {
  11114. "php": ">=7.3"
  11115. },
  11116. "type": "library",
  11117. "extra": {
  11118. "branch-alias": {
  11119. "dev-master": "3.0-dev"
  11120. }
  11121. },
  11122. "autoload": {
  11123. "classmap": [
  11124. "src/"
  11125. ]
  11126. },
  11127. "notification-url": "https://packagist.org/downloads/",
  11128. "license": [
  11129. "BSD-3-Clause"
  11130. ],
  11131. "authors": [
  11132. {
  11133. "name": "Sebastian Bergmann",
  11134. "email": "sebastian@phpunit.de",
  11135. "role": "lead"
  11136. }
  11137. ],
  11138. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11139. "homepage": "https://github.com/sebastianbergmann/version",
  11140. "support": {
  11141. "issues": "https://github.com/sebastianbergmann/version/issues",
  11142. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11143. },
  11144. "funding": [
  11145. {
  11146. "url": "https://github.com/sebastianbergmann",
  11147. "type": "github"
  11148. }
  11149. ],
  11150. "time": "2020-09-28T06:39:44+00:00"
  11151. },
  11152. {
  11153. "name": "spatie/backtrace",
  11154. "version": "1.5.3",
  11155. "source": {
  11156. "type": "git",
  11157. "url": "https://github.com/spatie/backtrace.git",
  11158. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  11159. },
  11160. "dist": {
  11161. "type": "zip",
  11162. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  11163. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  11164. "shasum": "",
  11165. "mirrors": [
  11166. {
  11167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11168. "preferred": true
  11169. }
  11170. ]
  11171. },
  11172. "require": {
  11173. "php": "^7.3|^8.0"
  11174. },
  11175. "require-dev": {
  11176. "ext-json": "*",
  11177. "phpunit/phpunit": "^9.3",
  11178. "spatie/phpunit-snapshot-assertions": "^4.2",
  11179. "symfony/var-dumper": "^5.1"
  11180. },
  11181. "type": "library",
  11182. "autoload": {
  11183. "psr-4": {
  11184. "Spatie\\Backtrace\\": "src"
  11185. }
  11186. },
  11187. "notification-url": "https://packagist.org/downloads/",
  11188. "license": [
  11189. "MIT"
  11190. ],
  11191. "authors": [
  11192. {
  11193. "name": "Freek Van de Herten",
  11194. "email": "freek@spatie.be",
  11195. "homepage": "https://spatie.be",
  11196. "role": "Developer"
  11197. }
  11198. ],
  11199. "description": "A better backtrace",
  11200. "homepage": "https://github.com/spatie/backtrace",
  11201. "keywords": [
  11202. "Backtrace",
  11203. "spatie"
  11204. ],
  11205. "support": {
  11206. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  11207. },
  11208. "funding": [
  11209. {
  11210. "url": "https://github.com/sponsors/spatie",
  11211. "type": "github"
  11212. },
  11213. {
  11214. "url": "https://spatie.be/open-source/support-us",
  11215. "type": "other"
  11216. }
  11217. ],
  11218. "time": "2023-06-28T12:59:17+00:00"
  11219. },
  11220. {
  11221. "name": "spatie/flare-client-php",
  11222. "version": "1.4.3",
  11223. "source": {
  11224. "type": "git",
  11225. "url": "https://github.com/spatie/flare-client-php.git",
  11226. "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec"
  11227. },
  11228. "dist": {
  11229. "type": "zip",
  11230. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
  11231. "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
  11232. "shasum": "",
  11233. "mirrors": [
  11234. {
  11235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11236. "preferred": true
  11237. }
  11238. ]
  11239. },
  11240. "require": {
  11241. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  11242. "nesbot/carbon": "^2.62.1",
  11243. "php": "^8.0",
  11244. "spatie/backtrace": "^1.5.2",
  11245. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  11246. "symfony/mime": "^5.2|^6.0|^7.0",
  11247. "symfony/process": "^5.2|^6.0|^7.0",
  11248. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  11249. },
  11250. "require-dev": {
  11251. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  11252. "pestphp/pest": "^1.20|^2.0",
  11253. "phpstan/extension-installer": "^1.1",
  11254. "phpstan/phpstan-deprecation-rules": "^1.0",
  11255. "phpstan/phpstan-phpunit": "^1.0",
  11256. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  11257. },
  11258. "type": "library",
  11259. "extra": {
  11260. "branch-alias": {
  11261. "dev-main": "1.3.x-dev"
  11262. }
  11263. },
  11264. "autoload": {
  11265. "files": [
  11266. "src/helpers.php"
  11267. ],
  11268. "psr-4": {
  11269. "Spatie\\FlareClient\\": "src"
  11270. }
  11271. },
  11272. "notification-url": "https://packagist.org/downloads/",
  11273. "license": [
  11274. "MIT"
  11275. ],
  11276. "description": "Send PHP errors to Flare",
  11277. "homepage": "https://github.com/spatie/flare-client-php",
  11278. "keywords": [
  11279. "exception",
  11280. "flare",
  11281. "reporting",
  11282. "spatie"
  11283. ],
  11284. "support": {
  11285. "issues": "https://github.com/spatie/flare-client-php/issues",
  11286. "source": "https://github.com/spatie/flare-client-php/tree/1.4.3"
  11287. },
  11288. "funding": [
  11289. {
  11290. "url": "https://github.com/spatie",
  11291. "type": "github"
  11292. }
  11293. ],
  11294. "time": "2023-10-17T15:54:07+00:00"
  11295. },
  11296. {
  11297. "name": "spatie/ignition",
  11298. "version": "1.11.2",
  11299. "source": {
  11300. "type": "git",
  11301. "url": "https://github.com/spatie/ignition.git",
  11302. "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa"
  11303. },
  11304. "dist": {
  11305. "type": "zip",
  11306. "url": "https://api.github.com/repos/spatie/ignition/zipball/48b23411ca4bfbc75c75dfc638b6b36159c375aa",
  11307. "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa",
  11308. "shasum": "",
  11309. "mirrors": [
  11310. {
  11311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11312. "preferred": true
  11313. }
  11314. ]
  11315. },
  11316. "require": {
  11317. "ext-json": "*",
  11318. "ext-mbstring": "*",
  11319. "php": "^8.0",
  11320. "spatie/backtrace": "^1.5.3",
  11321. "spatie/flare-client-php": "^1.4.0",
  11322. "symfony/console": "^5.4|^6.0",
  11323. "symfony/var-dumper": "^5.4|^6.0"
  11324. },
  11325. "require-dev": {
  11326. "illuminate/cache": "^9.52",
  11327. "mockery/mockery": "^1.4",
  11328. "pestphp/pest": "^1.20",
  11329. "phpstan/extension-installer": "^1.1",
  11330. "phpstan/phpstan-deprecation-rules": "^1.0",
  11331. "phpstan/phpstan-phpunit": "^1.0",
  11332. "psr/simple-cache-implementation": "*",
  11333. "symfony/cache": "^6.0",
  11334. "symfony/process": "^5.4|^6.0",
  11335. "vlucas/phpdotenv": "^5.5"
  11336. },
  11337. "suggest": {
  11338. "openai-php/client": "Require get solutions from OpenAI",
  11339. "simple-cache-implementation": "To cache solutions from OpenAI"
  11340. },
  11341. "type": "library",
  11342. "extra": {
  11343. "branch-alias": {
  11344. "dev-main": "1.5.x-dev"
  11345. }
  11346. },
  11347. "autoload": {
  11348. "psr-4": {
  11349. "Spatie\\Ignition\\": "src"
  11350. }
  11351. },
  11352. "notification-url": "https://packagist.org/downloads/",
  11353. "license": [
  11354. "MIT"
  11355. ],
  11356. "authors": [
  11357. {
  11358. "name": "Spatie",
  11359. "email": "info@spatie.be",
  11360. "role": "Developer"
  11361. }
  11362. ],
  11363. "description": "A beautiful error page for PHP applications.",
  11364. "homepage": "https://flareapp.io/ignition",
  11365. "keywords": [
  11366. "error",
  11367. "flare",
  11368. "laravel",
  11369. "page"
  11370. ],
  11371. "support": {
  11372. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11373. "forum": "https://twitter.com/flareappio",
  11374. "issues": "https://github.com/spatie/ignition/issues",
  11375. "source": "https://github.com/spatie/ignition"
  11376. },
  11377. "funding": [
  11378. {
  11379. "url": "https://github.com/spatie",
  11380. "type": "github"
  11381. }
  11382. ],
  11383. "time": "2023-09-19T15:29:52+00:00"
  11384. },
  11385. {
  11386. "name": "spatie/laravel-ignition",
  11387. "version": "1.6.4",
  11388. "source": {
  11389. "type": "git",
  11390. "url": "https://github.com/spatie/laravel-ignition.git",
  11391. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  11392. },
  11393. "dist": {
  11394. "type": "zip",
  11395. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  11396. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  11397. "shasum": "",
  11398. "mirrors": [
  11399. {
  11400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11401. "preferred": true
  11402. }
  11403. ]
  11404. },
  11405. "require": {
  11406. "ext-curl": "*",
  11407. "ext-json": "*",
  11408. "ext-mbstring": "*",
  11409. "illuminate/support": "^8.77|^9.27",
  11410. "monolog/monolog": "^2.3",
  11411. "php": "^8.0",
  11412. "spatie/flare-client-php": "^1.0.1",
  11413. "spatie/ignition": "^1.4.1",
  11414. "symfony/console": "^5.0|^6.0",
  11415. "symfony/var-dumper": "^5.0|^6.0"
  11416. },
  11417. "require-dev": {
  11418. "filp/whoops": "^2.14",
  11419. "livewire/livewire": "^2.8|dev-develop",
  11420. "mockery/mockery": "^1.4",
  11421. "nunomaduro/larastan": "^1.0",
  11422. "orchestra/testbench": "^6.23|^7.0",
  11423. "pestphp/pest": "^1.20",
  11424. "phpstan/extension-installer": "^1.1",
  11425. "phpstan/phpstan-deprecation-rules": "^1.0",
  11426. "phpstan/phpstan-phpunit": "^1.0",
  11427. "spatie/laravel-ray": "^1.27"
  11428. },
  11429. "type": "library",
  11430. "extra": {
  11431. "laravel": {
  11432. "providers": [
  11433. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11434. ],
  11435. "aliases": {
  11436. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11437. }
  11438. }
  11439. },
  11440. "autoload": {
  11441. "files": [
  11442. "src/helpers.php"
  11443. ],
  11444. "psr-4": {
  11445. "Spatie\\LaravelIgnition\\": "src"
  11446. }
  11447. },
  11448. "notification-url": "https://packagist.org/downloads/",
  11449. "license": [
  11450. "MIT"
  11451. ],
  11452. "authors": [
  11453. {
  11454. "name": "Spatie",
  11455. "email": "info@spatie.be",
  11456. "role": "Developer"
  11457. }
  11458. ],
  11459. "description": "A beautiful error page for Laravel applications.",
  11460. "homepage": "https://flareapp.io/ignition",
  11461. "keywords": [
  11462. "error",
  11463. "flare",
  11464. "laravel",
  11465. "page"
  11466. ],
  11467. "support": {
  11468. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11469. "forum": "https://twitter.com/flareappio",
  11470. "issues": "https://github.com/spatie/laravel-ignition/issues",
  11471. "source": "https://github.com/spatie/laravel-ignition"
  11472. },
  11473. "funding": [
  11474. {
  11475. "url": "https://github.com/spatie",
  11476. "type": "github"
  11477. }
  11478. ],
  11479. "time": "2023-01-03T19:28:04+00:00"
  11480. },
  11481. {
  11482. "name": "symfony/yaml",
  11483. "version": "v6.4.0",
  11484. "source": {
  11485. "type": "git",
  11486. "url": "https://github.com/symfony/yaml.git",
  11487. "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587"
  11488. },
  11489. "dist": {
  11490. "type": "zip",
  11491. "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587",
  11492. "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587",
  11493. "shasum": "",
  11494. "mirrors": [
  11495. {
  11496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11497. "preferred": true
  11498. }
  11499. ]
  11500. },
  11501. "require": {
  11502. "php": ">=8.1",
  11503. "symfony/deprecation-contracts": "^2.5|^3",
  11504. "symfony/polyfill-ctype": "^1.8"
  11505. },
  11506. "conflict": {
  11507. "symfony/console": "<5.4"
  11508. },
  11509. "require-dev": {
  11510. "symfony/console": "^5.4|^6.0|^7.0"
  11511. },
  11512. "bin": [
  11513. "Resources/bin/yaml-lint"
  11514. ],
  11515. "type": "library",
  11516. "autoload": {
  11517. "psr-4": {
  11518. "Symfony\\Component\\Yaml\\": ""
  11519. },
  11520. "exclude-from-classmap": [
  11521. "/Tests/"
  11522. ]
  11523. },
  11524. "notification-url": "https://packagist.org/downloads/",
  11525. "license": [
  11526. "MIT"
  11527. ],
  11528. "authors": [
  11529. {
  11530. "name": "Fabien Potencier",
  11531. "email": "fabien@symfony.com"
  11532. },
  11533. {
  11534. "name": "Symfony Community",
  11535. "homepage": "https://symfony.com/contributors"
  11536. }
  11537. ],
  11538. "description": "Loads and dumps YAML files",
  11539. "homepage": "https://symfony.com",
  11540. "support": {
  11541. "source": "https://github.com/symfony/yaml/tree/v6.4.0"
  11542. },
  11543. "funding": [
  11544. {
  11545. "url": "https://symfony.com/sponsor",
  11546. "type": "custom"
  11547. },
  11548. {
  11549. "url": "https://github.com/fabpot",
  11550. "type": "github"
  11551. },
  11552. {
  11553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11554. "type": "tidelift"
  11555. }
  11556. ],
  11557. "time": "2023-11-06T11:00:25+00:00"
  11558. },
  11559. {
  11560. "name": "theseer/tokenizer",
  11561. "version": "1.2.1",
  11562. "source": {
  11563. "type": "git",
  11564. "url": "https://github.com/theseer/tokenizer.git",
  11565. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11566. },
  11567. "dist": {
  11568. "type": "zip",
  11569. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11570. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11571. "shasum": "",
  11572. "mirrors": [
  11573. {
  11574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11575. "preferred": true
  11576. }
  11577. ]
  11578. },
  11579. "require": {
  11580. "ext-dom": "*",
  11581. "ext-tokenizer": "*",
  11582. "ext-xmlwriter": "*",
  11583. "php": "^7.2 || ^8.0"
  11584. },
  11585. "type": "library",
  11586. "autoload": {
  11587. "classmap": [
  11588. "src/"
  11589. ]
  11590. },
  11591. "notification-url": "https://packagist.org/downloads/",
  11592. "license": [
  11593. "BSD-3-Clause"
  11594. ],
  11595. "authors": [
  11596. {
  11597. "name": "Arne Blankerts",
  11598. "email": "arne@blankerts.de",
  11599. "role": "Developer"
  11600. }
  11601. ],
  11602. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11603. "support": {
  11604. "issues": "https://github.com/theseer/tokenizer/issues",
  11605. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11606. },
  11607. "funding": [
  11608. {
  11609. "url": "https://github.com/theseer",
  11610. "type": "github"
  11611. }
  11612. ],
  11613. "time": "2021-07-28T10:34:58+00:00"
  11614. }
  11615. ],
  11616. "aliases": [],
  11617. "minimum-stability": "dev",
  11618. "stability-flags": {
  11619. "txj/elastic": 20,
  11620. "txj/yzm": 20
  11621. },
  11622. "prefer-stable": true,
  11623. "prefer-lowest": false,
  11624. "platform": {
  11625. "php": "^8.0",
  11626. "ext-bcmath": "*",
  11627. "ext-json": "*",
  11628. "ext-openssl": "*",
  11629. "ext-pdo": "*",
  11630. "ext-redis": "*"
  11631. },
  11632. "platform-dev": [],
  11633. "plugin-api-version": "2.6.0"
  11634. }