composer.lock 399 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118
  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": "dd7b494ce3580c3bdbb2d303211320a7",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.10.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
  20. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
  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": "^7.4 || ^8.0"
  32. },
  33. "require-dev": {
  34. "php-coveralls/php-coveralls": "^2.2",
  35. "phpunit/phpunit": "^9.0",
  36. "vimeo/psalm": "4.25.0"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "Brick\\Math\\": "src/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "description": "Arbitrary-precision arithmetic library",
  49. "keywords": [
  50. "Arbitrary-precision",
  51. "BigInteger",
  52. "BigRational",
  53. "arithmetic",
  54. "bigdecimal",
  55. "bignum",
  56. "brick",
  57. "math"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/brick/math/issues",
  61. "source": "https://github.com/brick/math/tree/0.10.2"
  62. },
  63. "funding": [
  64. {
  65. "url": "https://github.com/BenMorel",
  66. "type": "github"
  67. }
  68. ],
  69. "time": "2022-08-10T22:54:19+00:00"
  70. },
  71. {
  72. "name": "dflydev/dot-access-data",
  73. "version": "v3.0.1",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  77. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  82. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^7.1 || ^8.0"
  93. },
  94. "require-dev": {
  95. "phpstan/phpstan": "^0.12.42",
  96. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  97. "scrutinizer/ocular": "1.6.0",
  98. "squizlabs/php_codesniffer": "^3.5",
  99. "vimeo/psalm": "^3.14"
  100. },
  101. "type": "library",
  102. "extra": {
  103. "branch-alias": {
  104. "dev-main": "3.x-dev"
  105. }
  106. },
  107. "autoload": {
  108. "psr-4": {
  109. "Dflydev\\DotAccessData\\": "src/"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Dragonfly Development Inc.",
  119. "email": "info@dflydev.com",
  120. "homepage": "http://dflydev.com"
  121. },
  122. {
  123. "name": "Beau Simensen",
  124. "email": "beau@dflydev.com",
  125. "homepage": "http://beausimensen.com"
  126. },
  127. {
  128. "name": "Carlos Frutos",
  129. "email": "carlos@kiwing.it",
  130. "homepage": "https://github.com/cfrutos"
  131. },
  132. {
  133. "name": "Colin O'Dell",
  134. "email": "colinodell@gmail.com",
  135. "homepage": "https://www.colinodell.com"
  136. }
  137. ],
  138. "description": "Given a deep data structure, access data by dot notation.",
  139. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  140. "keywords": [
  141. "access",
  142. "data",
  143. "dot",
  144. "notation"
  145. ],
  146. "support": {
  147. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  148. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  149. },
  150. "time": "2021-08-13T13:06:58+00:00"
  151. },
  152. {
  153. "name": "doctrine/deprecations",
  154. "version": "v1.0.0",
  155. "source": {
  156. "type": "git",
  157. "url": "https://github.com/doctrine/deprecations.git",
  158. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  159. },
  160. "dist": {
  161. "type": "zip",
  162. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  163. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  164. "shasum": "",
  165. "mirrors": [
  166. {
  167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  168. "preferred": true
  169. }
  170. ]
  171. },
  172. "require": {
  173. "php": "^7.1|^8.0"
  174. },
  175. "require-dev": {
  176. "doctrine/coding-standard": "^9",
  177. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  178. "psr/log": "^1|^2|^3"
  179. },
  180. "suggest": {
  181. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "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.",
  194. "homepage": "https://www.doctrine-project.org/",
  195. "support": {
  196. "issues": "https://github.com/doctrine/deprecations/issues",
  197. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  198. },
  199. "time": "2022-05-02T15:47:09+00:00"
  200. },
  201. {
  202. "name": "doctrine/inflector",
  203. "version": "2.0.4",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/doctrine/inflector.git",
  207. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  212. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  213. "shasum": "",
  214. "mirrors": [
  215. {
  216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  217. "preferred": true
  218. }
  219. ]
  220. },
  221. "require": {
  222. "php": "^7.2 || ^8.0"
  223. },
  224. "require-dev": {
  225. "doctrine/coding-standard": "^8.2",
  226. "phpstan/phpstan": "^0.12",
  227. "phpstan/phpstan-phpunit": "^0.12",
  228. "phpstan/phpstan-strict-rules": "^0.12",
  229. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  230. "vimeo/psalm": "^4.10"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Guilherme Blanco",
  245. "email": "guilhermeblanco@gmail.com"
  246. },
  247. {
  248. "name": "Roman Borschel",
  249. "email": "roman@code-factory.org"
  250. },
  251. {
  252. "name": "Benjamin Eberlei",
  253. "email": "kontakt@beberlei.de"
  254. },
  255. {
  256. "name": "Jonathan Wage",
  257. "email": "jonwage@gmail.com"
  258. },
  259. {
  260. "name": "Johannes Schmitt",
  261. "email": "schmittjoh@gmail.com"
  262. }
  263. ],
  264. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  265. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  266. "keywords": [
  267. "inflection",
  268. "inflector",
  269. "lowercase",
  270. "manipulation",
  271. "php",
  272. "plural",
  273. "singular",
  274. "strings",
  275. "uppercase",
  276. "words"
  277. ],
  278. "support": {
  279. "issues": "https://github.com/doctrine/inflector/issues",
  280. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  281. },
  282. "funding": [
  283. {
  284. "url": "https://www.doctrine-project.org/sponsorship.html",
  285. "type": "custom"
  286. },
  287. {
  288. "url": "https://www.patreon.com/phpdoctrine",
  289. "type": "patreon"
  290. },
  291. {
  292. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  293. "type": "tidelift"
  294. }
  295. ],
  296. "time": "2021-10-22T20:16:43+00:00"
  297. },
  298. {
  299. "name": "doctrine/lexer",
  300. "version": "2.1.0",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/doctrine/lexer.git",
  304. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  309. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  310. "shasum": "",
  311. "mirrors": [
  312. {
  313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  314. "preferred": true
  315. }
  316. ]
  317. },
  318. "require": {
  319. "doctrine/deprecations": "^1.0",
  320. "php": "^7.1 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^9 || ^10",
  324. "phpstan/phpstan": "^1.3",
  325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  326. "psalm/plugin-phpunit": "^0.18.3",
  327. "vimeo/psalm": "^4.11 || ^5.0"
  328. },
  329. "type": "library",
  330. "autoload": {
  331. "psr-4": {
  332. "Doctrine\\Common\\Lexer\\": "src"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "Guilherme Blanco",
  342. "email": "guilhermeblanco@gmail.com"
  343. },
  344. {
  345. "name": "Roman Borschel",
  346. "email": "roman@code-factory.org"
  347. },
  348. {
  349. "name": "Johannes Schmitt",
  350. "email": "schmittjoh@gmail.com"
  351. }
  352. ],
  353. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  354. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  355. "keywords": [
  356. "annotations",
  357. "docblock",
  358. "lexer",
  359. "parser",
  360. "php"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/doctrine/lexer/issues",
  364. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  365. },
  366. "funding": [
  367. {
  368. "url": "https://www.doctrine-project.org/sponsorship.html",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://www.patreon.com/phpdoctrine",
  373. "type": "patreon"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2022-12-14T08:49:07+00:00"
  381. },
  382. {
  383. "name": "dragonmantank/cron-expression",
  384. "version": "v3.3.1",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/dragonmantank/cron-expression.git",
  388. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  393. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  394. "shasum": "",
  395. "mirrors": [
  396. {
  397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  398. "preferred": true
  399. }
  400. ]
  401. },
  402. "require": {
  403. "php": "^7.2|^8.0",
  404. "webmozart/assert": "^1.0"
  405. },
  406. "replace": {
  407. "mtdowling/cron-expression": "^1.0"
  408. },
  409. "require-dev": {
  410. "phpstan/extension-installer": "^1.0",
  411. "phpstan/phpstan": "^1.0",
  412. "phpstan/phpstan-webmozart-assert": "^1.0",
  413. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  414. },
  415. "type": "library",
  416. "autoload": {
  417. "psr-4": {
  418. "Cron\\": "src/Cron/"
  419. }
  420. },
  421. "notification-url": "https://packagist.org/downloads/",
  422. "license": [
  423. "MIT"
  424. ],
  425. "authors": [
  426. {
  427. "name": "Chris Tankersley",
  428. "email": "chris@ctankersley.com",
  429. "homepage": "https://github.com/dragonmantank"
  430. }
  431. ],
  432. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  433. "keywords": [
  434. "cron",
  435. "schedule"
  436. ],
  437. "support": {
  438. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  439. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  440. },
  441. "funding": [
  442. {
  443. "url": "https://github.com/dragonmantank",
  444. "type": "github"
  445. }
  446. ],
  447. "time": "2022-01-18T15:43:28+00:00"
  448. },
  449. {
  450. "name": "egulias/email-validator",
  451. "version": "3.2.5",
  452. "source": {
  453. "type": "git",
  454. "url": "https://github.com/egulias/EmailValidator.git",
  455. "reference": "b531a2311709443320c786feb4519cfaf94af796"
  456. },
  457. "dist": {
  458. "type": "zip",
  459. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796",
  460. "reference": "b531a2311709443320c786feb4519cfaf94af796",
  461. "shasum": "",
  462. "mirrors": [
  463. {
  464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  465. "preferred": true
  466. }
  467. ]
  468. },
  469. "require": {
  470. "doctrine/lexer": "^1.2|^2",
  471. "php": ">=7.2",
  472. "symfony/polyfill-intl-idn": "^1.15"
  473. },
  474. "require-dev": {
  475. "phpunit/phpunit": "^8.5.8|^9.3.3",
  476. "vimeo/psalm": "^4"
  477. },
  478. "suggest": {
  479. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-master": "3.0.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Egulias\\EmailValidator\\": "src"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Eduardo Gulias Davis"
  499. }
  500. ],
  501. "description": "A library for validating emails against several RFCs",
  502. "homepage": "https://github.com/egulias/EmailValidator",
  503. "keywords": [
  504. "email",
  505. "emailvalidation",
  506. "emailvalidator",
  507. "validation",
  508. "validator"
  509. ],
  510. "support": {
  511. "issues": "https://github.com/egulias/EmailValidator/issues",
  512. "source": "https://github.com/egulias/EmailValidator/tree/3.2.5"
  513. },
  514. "funding": [
  515. {
  516. "url": "https://github.com/egulias",
  517. "type": "github"
  518. }
  519. ],
  520. "time": "2023-01-02T17:26:14+00:00"
  521. },
  522. {
  523. "name": "elfsundae/laravel-hashid",
  524. "version": "1.7.1",
  525. "source": {
  526. "type": "git",
  527. "url": "https://github.com/ElfSundae/laravel-hashid.git",
  528. "reference": "86df3130db08bfd9954daed64e1db7ceba8270e3"
  529. },
  530. "dist": {
  531. "type": "zip",
  532. "url": "https://api.github.com/repos/ElfSundae/laravel-hashid/zipball/86df3130db08bfd9954daed64e1db7ceba8270e3",
  533. "reference": "86df3130db08bfd9954daed64e1db7ceba8270e3",
  534. "shasum": "",
  535. "mirrors": [
  536. {
  537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  538. "preferred": true
  539. }
  540. ]
  541. },
  542. "require": {
  543. "elfsundae/urlsafe-base64": "^1.1",
  544. "hashids/hashids": "^2.0.4|^3.0|^4.0",
  545. "illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0",
  546. "illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0",
  547. "jenssegers/optimus": "^1.0",
  548. "php": "^7.1|^8.0",
  549. "tuupola/base62": "^2.0"
  550. },
  551. "require-dev": {
  552. "mockery/mockery": "^1.0",
  553. "orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0",
  554. "phpunit/phpunit": "^5.7|^6.0|^7.0|^8.0|^9.0"
  555. },
  556. "suggest": {
  557. "elfsundae/laravel-hashid-uuid": "Shorten UUID encoding"
  558. },
  559. "type": "library",
  560. "extra": {
  561. "branch-alias": {
  562. "dev-master": "1.7-dev"
  563. },
  564. "laravel": {
  565. "providers": [
  566. "ElfSundae\\Laravel\\Hashid\\HashidServiceProvider"
  567. ],
  568. "aliases": {
  569. "Hashid": "ElfSundae\\Laravel\\Hashid\\Facades\\Hashid"
  570. }
  571. }
  572. },
  573. "autoload": {
  574. "files": [
  575. "src/helpers.php"
  576. ],
  577. "psr-4": {
  578. "ElfSundae\\Laravel\\Hashid\\": "src/"
  579. }
  580. },
  581. "notification-url": "https://packagist.org/downloads/",
  582. "license": [
  583. "MIT"
  584. ],
  585. "authors": [
  586. {
  587. "name": "Elf Sundae",
  588. "email": "elf.sundae@gmail.com",
  589. "homepage": "https://0x123.com"
  590. }
  591. ],
  592. "description": "A simple, elegant way to obfuscate your data by generating reversible, non-sequential, URL-safe identifiers.",
  593. "homepage": "https://github.com/ElfSundae/laravel-hashid",
  594. "keywords": [
  595. "URL safe",
  596. "base62",
  597. "base64",
  598. "hashid",
  599. "hashids",
  600. "obfuscate",
  601. "optimus"
  602. ],
  603. "support": {
  604. "issues": "https://github.com/ElfSundae/laravel-hashid/issues",
  605. "source": "https://github.com/ElfSundae/laravel-hashid/tree/1.7.1"
  606. },
  607. "time": "2022-05-01T19:52:44+00:00"
  608. },
  609. {
  610. "name": "elfsundae/urlsafe-base64",
  611. "version": "1.1.1",
  612. "source": {
  613. "type": "git",
  614. "url": "https://github.com/ElfSundae/urlsafe-base64.git",
  615. "reference": "fffdc235475308068e92c8bb1dec6b4bc7b95e73"
  616. },
  617. "dist": {
  618. "type": "zip",
  619. "url": "https://api.github.com/repos/ElfSundae/urlsafe-base64/zipball/fffdc235475308068e92c8bb1dec6b4bc7b95e73",
  620. "reference": "fffdc235475308068e92c8bb1dec6b4bc7b95e73",
  621. "shasum": "",
  622. "mirrors": [
  623. {
  624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  625. "preferred": true
  626. }
  627. ]
  628. },
  629. "require-dev": {
  630. "paragonie/random_compat": "~2.0",
  631. "phpunit/phpunit": "~5.4"
  632. },
  633. "type": "library",
  634. "autoload": {
  635. "files": [
  636. "src/helpers.php"
  637. ]
  638. },
  639. "notification-url": "https://packagist.org/downloads/",
  640. "license": [
  641. "MIT"
  642. ],
  643. "authors": [
  644. {
  645. "name": "Elf Sundae",
  646. "email": "elf.sundae@gmail.com",
  647. "homepage": "https://0x123.com"
  648. }
  649. ],
  650. "description": "URL safe base64 encoding for PHP",
  651. "homepage": "https://github.com/ElfSundae/urlsafe-base64",
  652. "keywords": [
  653. "base64",
  654. "urlsafe"
  655. ],
  656. "support": {
  657. "issues": "https://github.com/ElfSundae/urlsafe-base64/issues",
  658. "source": "https://github.com/ElfSundae/urlsafe-base64/tree/master"
  659. },
  660. "time": "2017-12-11T14:50:59+00:00"
  661. },
  662. {
  663. "name": "fruitcake/php-cors",
  664. "version": "v1.2.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/fruitcake/php-cors.git",
  668. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  673. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  674. "shasum": "",
  675. "mirrors": [
  676. {
  677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  678. "preferred": true
  679. }
  680. ]
  681. },
  682. "require": {
  683. "php": "^7.4|^8.0",
  684. "symfony/http-foundation": "^4.4|^5.4|^6"
  685. },
  686. "require-dev": {
  687. "phpstan/phpstan": "^1.4",
  688. "phpunit/phpunit": "^9",
  689. "squizlabs/php_codesniffer": "^3.5"
  690. },
  691. "type": "library",
  692. "extra": {
  693. "branch-alias": {
  694. "dev-main": "1.1-dev"
  695. }
  696. },
  697. "autoload": {
  698. "psr-4": {
  699. "Fruitcake\\Cors\\": "src/"
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Fruitcake",
  709. "homepage": "https://fruitcake.nl"
  710. },
  711. {
  712. "name": "Barryvdh",
  713. "email": "barryvdh@gmail.com"
  714. }
  715. ],
  716. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  717. "homepage": "https://github.com/fruitcake/php-cors",
  718. "keywords": [
  719. "cors",
  720. "laravel",
  721. "symfony"
  722. ],
  723. "support": {
  724. "issues": "https://github.com/fruitcake/php-cors/issues",
  725. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  726. },
  727. "funding": [
  728. {
  729. "url": "https://fruitcake.nl",
  730. "type": "custom"
  731. },
  732. {
  733. "url": "https://github.com/barryvdh",
  734. "type": "github"
  735. }
  736. ],
  737. "time": "2022-02-20T15:07:15+00:00"
  738. },
  739. {
  740. "name": "graham-campbell/result-type",
  741. "version": "v1.1.0",
  742. "source": {
  743. "type": "git",
  744. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  745. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  746. },
  747. "dist": {
  748. "type": "zip",
  749. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  750. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  751. "shasum": "",
  752. "mirrors": [
  753. {
  754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  755. "preferred": true
  756. }
  757. ]
  758. },
  759. "require": {
  760. "php": "^7.2.5 || ^8.0",
  761. "phpoption/phpoption": "^1.9"
  762. },
  763. "require-dev": {
  764. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  765. },
  766. "type": "library",
  767. "autoload": {
  768. "psr-4": {
  769. "GrahamCampbell\\ResultType\\": "src/"
  770. }
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Graham Campbell",
  779. "email": "hello@gjcampbell.co.uk",
  780. "homepage": "https://github.com/GrahamCampbell"
  781. }
  782. ],
  783. "description": "An Implementation Of The Result Type",
  784. "keywords": [
  785. "Graham Campbell",
  786. "GrahamCampbell",
  787. "Result Type",
  788. "Result-Type",
  789. "result"
  790. ],
  791. "support": {
  792. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  793. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  794. },
  795. "funding": [
  796. {
  797. "url": "https://github.com/GrahamCampbell",
  798. "type": "github"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2022-07-30T15:56:11+00:00"
  806. },
  807. {
  808. "name": "guzzlehttp/guzzle",
  809. "version": "7.5.1",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/guzzle/guzzle.git",
  813. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  818. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  819. "shasum": "",
  820. "mirrors": [
  821. {
  822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  823. "preferred": true
  824. }
  825. ]
  826. },
  827. "require": {
  828. "ext-json": "*",
  829. "guzzlehttp/promises": "^1.5",
  830. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  831. "php": "^7.2.5 || ^8.0",
  832. "psr/http-client": "^1.0",
  833. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  834. },
  835. "provide": {
  836. "psr/http-client-implementation": "1.0"
  837. },
  838. "require-dev": {
  839. "bamarni/composer-bin-plugin": "^1.8.1",
  840. "ext-curl": "*",
  841. "php-http/client-integration-tests": "^3.0",
  842. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  843. "psr/log": "^1.1 || ^2.0 || ^3.0"
  844. },
  845. "suggest": {
  846. "ext-curl": "Required for CURL handler support",
  847. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  848. "psr/log": "Required for using the Log middleware"
  849. },
  850. "type": "library",
  851. "extra": {
  852. "bamarni-bin": {
  853. "bin-links": true,
  854. "forward-command": false
  855. },
  856. "branch-alias": {
  857. "dev-master": "7.5-dev"
  858. }
  859. },
  860. "autoload": {
  861. "files": [
  862. "src/functions_include.php"
  863. ],
  864. "psr-4": {
  865. "GuzzleHttp\\": "src/"
  866. }
  867. },
  868. "notification-url": "https://packagist.org/downloads/",
  869. "license": [
  870. "MIT"
  871. ],
  872. "authors": [
  873. {
  874. "name": "Graham Campbell",
  875. "email": "hello@gjcampbell.co.uk",
  876. "homepage": "https://github.com/GrahamCampbell"
  877. },
  878. {
  879. "name": "Michael Dowling",
  880. "email": "mtdowling@gmail.com",
  881. "homepage": "https://github.com/mtdowling"
  882. },
  883. {
  884. "name": "Jeremy Lindblom",
  885. "email": "jeremeamia@gmail.com",
  886. "homepage": "https://github.com/jeremeamia"
  887. },
  888. {
  889. "name": "George Mponos",
  890. "email": "gmponos@gmail.com",
  891. "homepage": "https://github.com/gmponos"
  892. },
  893. {
  894. "name": "Tobias Nyholm",
  895. "email": "tobias.nyholm@gmail.com",
  896. "homepage": "https://github.com/Nyholm"
  897. },
  898. {
  899. "name": "Márk Sági-Kazár",
  900. "email": "mark.sagikazar@gmail.com",
  901. "homepage": "https://github.com/sagikazarmark"
  902. },
  903. {
  904. "name": "Tobias Schultze",
  905. "email": "webmaster@tubo-world.de",
  906. "homepage": "https://github.com/Tobion"
  907. }
  908. ],
  909. "description": "Guzzle is a PHP HTTP client library",
  910. "keywords": [
  911. "client",
  912. "curl",
  913. "framework",
  914. "http",
  915. "http client",
  916. "psr-18",
  917. "psr-7",
  918. "rest",
  919. "web service"
  920. ],
  921. "support": {
  922. "issues": "https://github.com/guzzle/guzzle/issues",
  923. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  924. },
  925. "funding": [
  926. {
  927. "url": "https://github.com/GrahamCampbell",
  928. "type": "github"
  929. },
  930. {
  931. "url": "https://github.com/Nyholm",
  932. "type": "github"
  933. },
  934. {
  935. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  936. "type": "tidelift"
  937. }
  938. ],
  939. "time": "2023-04-17T16:30:08+00:00"
  940. },
  941. {
  942. "name": "guzzlehttp/promises",
  943. "version": "1.5.2",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/guzzle/promises.git",
  947. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  952. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  953. "shasum": "",
  954. "mirrors": [
  955. {
  956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  957. "preferred": true
  958. }
  959. ]
  960. },
  961. "require": {
  962. "php": ">=5.5"
  963. },
  964. "require-dev": {
  965. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  966. },
  967. "type": "library",
  968. "extra": {
  969. "branch-alias": {
  970. "dev-master": "1.5-dev"
  971. }
  972. },
  973. "autoload": {
  974. "files": [
  975. "src/functions_include.php"
  976. ],
  977. "psr-4": {
  978. "GuzzleHttp\\Promise\\": "src/"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Graham Campbell",
  988. "email": "hello@gjcampbell.co.uk",
  989. "homepage": "https://github.com/GrahamCampbell"
  990. },
  991. {
  992. "name": "Michael Dowling",
  993. "email": "mtdowling@gmail.com",
  994. "homepage": "https://github.com/mtdowling"
  995. },
  996. {
  997. "name": "Tobias Nyholm",
  998. "email": "tobias.nyholm@gmail.com",
  999. "homepage": "https://github.com/Nyholm"
  1000. },
  1001. {
  1002. "name": "Tobias Schultze",
  1003. "email": "webmaster@tubo-world.de",
  1004. "homepage": "https://github.com/Tobion"
  1005. }
  1006. ],
  1007. "description": "Guzzle promises library",
  1008. "keywords": [
  1009. "promise"
  1010. ],
  1011. "support": {
  1012. "issues": "https://github.com/guzzle/promises/issues",
  1013. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1014. },
  1015. "funding": [
  1016. {
  1017. "url": "https://github.com/GrahamCampbell",
  1018. "type": "github"
  1019. },
  1020. {
  1021. "url": "https://github.com/Nyholm",
  1022. "type": "github"
  1023. },
  1024. {
  1025. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1026. "type": "tidelift"
  1027. }
  1028. ],
  1029. "time": "2022-08-28T14:55:35+00:00"
  1030. },
  1031. {
  1032. "name": "guzzlehttp/psr7",
  1033. "version": "2.5.0",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/guzzle/psr7.git",
  1037. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1042. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1043. "shasum": "",
  1044. "mirrors": [
  1045. {
  1046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1047. "preferred": true
  1048. }
  1049. ]
  1050. },
  1051. "require": {
  1052. "php": "^7.2.5 || ^8.0",
  1053. "psr/http-factory": "^1.0",
  1054. "psr/http-message": "^1.1 || ^2.0",
  1055. "ralouphie/getallheaders": "^3.0"
  1056. },
  1057. "provide": {
  1058. "psr/http-factory-implementation": "1.0",
  1059. "psr/http-message-implementation": "1.0"
  1060. },
  1061. "require-dev": {
  1062. "bamarni/composer-bin-plugin": "^1.8.1",
  1063. "http-interop/http-factory-tests": "^0.9",
  1064. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1065. },
  1066. "suggest": {
  1067. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1068. },
  1069. "type": "library",
  1070. "extra": {
  1071. "bamarni-bin": {
  1072. "bin-links": true,
  1073. "forward-command": false
  1074. }
  1075. },
  1076. "autoload": {
  1077. "psr-4": {
  1078. "GuzzleHttp\\Psr7\\": "src/"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "authors": [
  1086. {
  1087. "name": "Graham Campbell",
  1088. "email": "hello@gjcampbell.co.uk",
  1089. "homepage": "https://github.com/GrahamCampbell"
  1090. },
  1091. {
  1092. "name": "Michael Dowling",
  1093. "email": "mtdowling@gmail.com",
  1094. "homepage": "https://github.com/mtdowling"
  1095. },
  1096. {
  1097. "name": "George Mponos",
  1098. "email": "gmponos@gmail.com",
  1099. "homepage": "https://github.com/gmponos"
  1100. },
  1101. {
  1102. "name": "Tobias Nyholm",
  1103. "email": "tobias.nyholm@gmail.com",
  1104. "homepage": "https://github.com/Nyholm"
  1105. },
  1106. {
  1107. "name": "Márk Sági-Kazár",
  1108. "email": "mark.sagikazar@gmail.com",
  1109. "homepage": "https://github.com/sagikazarmark"
  1110. },
  1111. {
  1112. "name": "Tobias Schultze",
  1113. "email": "webmaster@tubo-world.de",
  1114. "homepage": "https://github.com/Tobion"
  1115. },
  1116. {
  1117. "name": "Márk Sági-Kazár",
  1118. "email": "mark.sagikazar@gmail.com",
  1119. "homepage": "https://sagikazarmark.hu"
  1120. }
  1121. ],
  1122. "description": "PSR-7 message implementation that also provides common utility methods",
  1123. "keywords": [
  1124. "http",
  1125. "message",
  1126. "psr-7",
  1127. "request",
  1128. "response",
  1129. "stream",
  1130. "uri",
  1131. "url"
  1132. ],
  1133. "support": {
  1134. "issues": "https://github.com/guzzle/psr7/issues",
  1135. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1136. },
  1137. "funding": [
  1138. {
  1139. "url": "https://github.com/GrahamCampbell",
  1140. "type": "github"
  1141. },
  1142. {
  1143. "url": "https://github.com/Nyholm",
  1144. "type": "github"
  1145. },
  1146. {
  1147. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1148. "type": "tidelift"
  1149. }
  1150. ],
  1151. "time": "2023-04-17T16:11:26+00:00"
  1152. },
  1153. {
  1154. "name": "hashids/hashids",
  1155. "version": "4.1.0",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/vinkla/hashids.git",
  1159. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1164. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1165. "shasum": "",
  1166. "mirrors": [
  1167. {
  1168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1169. "preferred": true
  1170. }
  1171. ]
  1172. },
  1173. "require": {
  1174. "ext-mbstring": "*",
  1175. "php": "^7.2 || ^8.0"
  1176. },
  1177. "require-dev": {
  1178. "phpunit/phpunit": "^8.0 || ^9.4",
  1179. "squizlabs/php_codesniffer": "^3.5"
  1180. },
  1181. "suggest": {
  1182. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1183. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1184. },
  1185. "type": "library",
  1186. "extra": {
  1187. "branch-alias": {
  1188. "dev-master": "4.1-dev"
  1189. }
  1190. },
  1191. "autoload": {
  1192. "psr-4": {
  1193. "Hashids\\": "src/"
  1194. }
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Ivan Akimov",
  1203. "email": "ivan@barreleye.com"
  1204. },
  1205. {
  1206. "name": "Vincent Klaiber",
  1207. "email": "hello@doubledip.se"
  1208. }
  1209. ],
  1210. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1211. "homepage": "https://hashids.org/php",
  1212. "keywords": [
  1213. "bitly",
  1214. "decode",
  1215. "encode",
  1216. "hash",
  1217. "hashid",
  1218. "hashids",
  1219. "ids",
  1220. "obfuscate",
  1221. "youtube"
  1222. ],
  1223. "support": {
  1224. "issues": "https://github.com/vinkla/hashids/issues",
  1225. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1226. },
  1227. "time": "2020-11-26T19:24:33+00:00"
  1228. },
  1229. {
  1230. "name": "jenssegers/optimus",
  1231. "version": "v1.1.1",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/jenssegers/optimus.git",
  1235. "reference": "a062ac06598e72a25a17ea6cba87f9e02d07b1bc"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/jenssegers/optimus/zipball/a062ac06598e72a25a17ea6cba87f9e02d07b1bc",
  1240. "reference": "a062ac06598e72a25a17ea6cba87f9e02d07b1bc",
  1241. "shasum": "",
  1242. "mirrors": [
  1243. {
  1244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1245. "preferred": true
  1246. }
  1247. ]
  1248. },
  1249. "require": {
  1250. "php": "^7.4||^8.0",
  1251. "phpseclib/phpseclib": "^3.0",
  1252. "symfony/console": "^5.0||^6.0"
  1253. },
  1254. "require-dev": {
  1255. "phpunit/phpunit": "^9.5.10"
  1256. },
  1257. "suggest": {
  1258. "ext-gmp": "Required for 32bit systems"
  1259. },
  1260. "bin": [
  1261. "bin/optimus"
  1262. ],
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Jenssegers\\Optimus\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Jens Segers",
  1276. "homepage": "https://jenssegers.com"
  1277. }
  1278. ],
  1279. "description": "Id obfuscation based on Knuth's integer hash method",
  1280. "homepage": "https://github.com/jenssegers/optimus",
  1281. "keywords": [
  1282. "hashids",
  1283. "id obfuscation",
  1284. "ids",
  1285. "obfuscation",
  1286. "optimus"
  1287. ],
  1288. "support": {
  1289. "issues": "https://github.com/jenssegers/optimus/issues",
  1290. "source": "https://github.com/jenssegers/optimus/tree/v1.1.1"
  1291. },
  1292. "funding": [
  1293. {
  1294. "url": "https://github.com/jenssegers",
  1295. "type": "github"
  1296. },
  1297. {
  1298. "url": "https://tidelift.com/funding/github/packagist/jenssegers/optimus",
  1299. "type": "tidelift"
  1300. }
  1301. ],
  1302. "time": "2021-12-21T16:15:54+00:00"
  1303. },
  1304. {
  1305. "name": "laravel/framework",
  1306. "version": "v9.33.0",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/laravel/framework.git",
  1310. "reference": "13665b7e15dbcbecb3651acc19ba8818da6fa0a9"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/laravel/framework/zipball/13665b7e15dbcbecb3651acc19ba8818da6fa0a9",
  1315. "reference": "13665b7e15dbcbecb3651acc19ba8818da6fa0a9",
  1316. "shasum": "",
  1317. "mirrors": [
  1318. {
  1319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1320. "preferred": true
  1321. }
  1322. ]
  1323. },
  1324. "require": {
  1325. "doctrine/inflector": "^2.0",
  1326. "dragonmantank/cron-expression": "^3.1",
  1327. "egulias/email-validator": "^3.1",
  1328. "ext-mbstring": "*",
  1329. "ext-openssl": "*",
  1330. "fruitcake/php-cors": "^1.2",
  1331. "laravel/serializable-closure": "^1.0",
  1332. "league/commonmark": "^2.2",
  1333. "league/flysystem": "^3.0.16",
  1334. "monolog/monolog": "^2.0",
  1335. "nesbot/carbon": "^2.62.1",
  1336. "nunomaduro/termwind": "^1.13",
  1337. "php": "^8.0.2",
  1338. "psr/container": "^1.1.1|^2.0.1",
  1339. "psr/log": "^1.0|^2.0|^3.0",
  1340. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1341. "ramsey/uuid": "^4.2.2",
  1342. "symfony/console": "^6.0.3",
  1343. "symfony/error-handler": "^6.0",
  1344. "symfony/finder": "^6.0",
  1345. "symfony/http-foundation": "^6.0",
  1346. "symfony/http-kernel": "^6.0",
  1347. "symfony/mailer": "^6.0",
  1348. "symfony/mime": "^6.0",
  1349. "symfony/process": "^6.0",
  1350. "symfony/routing": "^6.0",
  1351. "symfony/uid": "^6.0",
  1352. "symfony/var-dumper": "^6.0",
  1353. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1354. "vlucas/phpdotenv": "^5.4.1",
  1355. "voku/portable-ascii": "^2.0"
  1356. },
  1357. "conflict": {
  1358. "tightenco/collect": "<5.5.33"
  1359. },
  1360. "provide": {
  1361. "psr/container-implementation": "1.1|2.0",
  1362. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1363. },
  1364. "replace": {
  1365. "illuminate/auth": "self.version",
  1366. "illuminate/broadcasting": "self.version",
  1367. "illuminate/bus": "self.version",
  1368. "illuminate/cache": "self.version",
  1369. "illuminate/collections": "self.version",
  1370. "illuminate/conditionable": "self.version",
  1371. "illuminate/config": "self.version",
  1372. "illuminate/console": "self.version",
  1373. "illuminate/container": "self.version",
  1374. "illuminate/contracts": "self.version",
  1375. "illuminate/cookie": "self.version",
  1376. "illuminate/database": "self.version",
  1377. "illuminate/encryption": "self.version",
  1378. "illuminate/events": "self.version",
  1379. "illuminate/filesystem": "self.version",
  1380. "illuminate/hashing": "self.version",
  1381. "illuminate/http": "self.version",
  1382. "illuminate/log": "self.version",
  1383. "illuminate/macroable": "self.version",
  1384. "illuminate/mail": "self.version",
  1385. "illuminate/notifications": "self.version",
  1386. "illuminate/pagination": "self.version",
  1387. "illuminate/pipeline": "self.version",
  1388. "illuminate/queue": "self.version",
  1389. "illuminate/redis": "self.version",
  1390. "illuminate/routing": "self.version",
  1391. "illuminate/session": "self.version",
  1392. "illuminate/support": "self.version",
  1393. "illuminate/testing": "self.version",
  1394. "illuminate/translation": "self.version",
  1395. "illuminate/validation": "self.version",
  1396. "illuminate/view": "self.version"
  1397. },
  1398. "require-dev": {
  1399. "ably/ably-php": "^1.0",
  1400. "aws/aws-sdk-php": "^3.198.1",
  1401. "doctrine/dbal": "^2.13.3|^3.1.4",
  1402. "fakerphp/faker": "^1.9.2",
  1403. "guzzlehttp/guzzle": "^7.2",
  1404. "league/flysystem-aws-s3-v3": "^3.0",
  1405. "league/flysystem-ftp": "^3.0",
  1406. "league/flysystem-path-prefixing": "^3.3",
  1407. "league/flysystem-read-only": "^3.3",
  1408. "league/flysystem-sftp-v3": "^3.0",
  1409. "mockery/mockery": "^1.4.4",
  1410. "orchestra/testbench-core": "^7.8",
  1411. "pda/pheanstalk": "^4.0",
  1412. "phpstan/phpstan": "^1.4.7",
  1413. "phpunit/phpunit": "^9.5.8",
  1414. "predis/predis": "^1.1.9|^2.0",
  1415. "symfony/cache": "^6.0"
  1416. },
  1417. "suggest": {
  1418. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1419. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.198.1).",
  1420. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1421. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1422. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1423. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1424. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1425. "ext-memcached": "Required to use the memcache cache driver.",
  1426. "ext-pcntl": "Required to use all features of the queue worker.",
  1427. "ext-posix": "Required to use all features of the queue worker.",
  1428. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1429. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1430. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1431. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.2).",
  1432. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1433. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1434. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1435. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1436. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1437. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1438. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1439. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1440. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1441. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1442. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0).",
  1443. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1444. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1445. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  1446. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  1447. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  1448. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  1449. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  1450. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "9.x-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "files": [
  1460. "src/Illuminate/Collections/helpers.php",
  1461. "src/Illuminate/Events/functions.php",
  1462. "src/Illuminate/Foundation/helpers.php",
  1463. "src/Illuminate/Support/helpers.php"
  1464. ],
  1465. "psr-4": {
  1466. "Illuminate\\": "src/Illuminate/",
  1467. "Illuminate\\Support\\": [
  1468. "src/Illuminate/Macroable/",
  1469. "src/Illuminate/Collections/",
  1470. "src/Illuminate/Conditionable/"
  1471. ]
  1472. }
  1473. },
  1474. "notification-url": "https://packagist.org/downloads/",
  1475. "license": [
  1476. "MIT"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Taylor Otwell",
  1481. "email": "taylor@laravel.com"
  1482. }
  1483. ],
  1484. "description": "The Laravel Framework.",
  1485. "homepage": "https://laravel.com",
  1486. "keywords": [
  1487. "framework",
  1488. "laravel"
  1489. ],
  1490. "support": {
  1491. "issues": "https://github.com/laravel/framework/issues",
  1492. "source": "https://github.com/laravel/framework"
  1493. },
  1494. "time": "2022-09-30T12:59:55+00:00"
  1495. },
  1496. {
  1497. "name": "laravel/serializable-closure",
  1498. "version": "v1.2.2",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/laravel/serializable-closure.git",
  1502. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1507. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1508. "shasum": "",
  1509. "mirrors": [
  1510. {
  1511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1512. "preferred": true
  1513. }
  1514. ]
  1515. },
  1516. "require": {
  1517. "php": "^7.3|^8.0"
  1518. },
  1519. "require-dev": {
  1520. "nesbot/carbon": "^2.61",
  1521. "pestphp/pest": "^1.21.3",
  1522. "phpstan/phpstan": "^1.8.2",
  1523. "symfony/var-dumper": "^5.4.11"
  1524. },
  1525. "type": "library",
  1526. "extra": {
  1527. "branch-alias": {
  1528. "dev-master": "1.x-dev"
  1529. }
  1530. },
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Laravel\\SerializableClosure\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Taylor Otwell",
  1543. "email": "taylor@laravel.com"
  1544. },
  1545. {
  1546. "name": "Nuno Maduro",
  1547. "email": "nuno@laravel.com"
  1548. }
  1549. ],
  1550. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1551. "keywords": [
  1552. "closure",
  1553. "laravel",
  1554. "serializable"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/laravel/serializable-closure/issues",
  1558. "source": "https://github.com/laravel/serializable-closure"
  1559. },
  1560. "time": "2022-09-08T13:45:54+00:00"
  1561. },
  1562. {
  1563. "name": "laravel/tinker",
  1564. "version": "v2.8.1",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://github.com/laravel/tinker.git",
  1568. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1573. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1574. "shasum": "",
  1575. "mirrors": [
  1576. {
  1577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1578. "preferred": true
  1579. }
  1580. ]
  1581. },
  1582. "require": {
  1583. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1584. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1585. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1586. "php": "^7.2.5|^8.0",
  1587. "psy/psysh": "^0.10.4|^0.11.1",
  1588. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1589. },
  1590. "require-dev": {
  1591. "mockery/mockery": "~1.3.3|^1.4.2",
  1592. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1593. },
  1594. "suggest": {
  1595. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "2.x-dev"
  1601. },
  1602. "laravel": {
  1603. "providers": [
  1604. "Laravel\\Tinker\\TinkerServiceProvider"
  1605. ]
  1606. }
  1607. },
  1608. "autoload": {
  1609. "psr-4": {
  1610. "Laravel\\Tinker\\": "src/"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Taylor Otwell",
  1620. "email": "taylor@laravel.com"
  1621. }
  1622. ],
  1623. "description": "Powerful REPL for the Laravel framework.",
  1624. "keywords": [
  1625. "REPL",
  1626. "Tinker",
  1627. "laravel",
  1628. "psysh"
  1629. ],
  1630. "support": {
  1631. "issues": "https://github.com/laravel/tinker/issues",
  1632. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1633. },
  1634. "time": "2023-02-15T16:40:09+00:00"
  1635. },
  1636. {
  1637. "name": "league/commonmark",
  1638. "version": "2.3.9",
  1639. "source": {
  1640. "type": "git",
  1641. "url": "https://github.com/thephpleague/commonmark.git",
  1642. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
  1643. },
  1644. "dist": {
  1645. "type": "zip",
  1646. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1647. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1648. "shasum": "",
  1649. "mirrors": [
  1650. {
  1651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1652. "preferred": true
  1653. }
  1654. ]
  1655. },
  1656. "require": {
  1657. "ext-mbstring": "*",
  1658. "league/config": "^1.1.1",
  1659. "php": "^7.4 || ^8.0",
  1660. "psr/event-dispatcher": "^1.0",
  1661. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1662. "symfony/polyfill-php80": "^1.16"
  1663. },
  1664. "require-dev": {
  1665. "cebe/markdown": "^1.0",
  1666. "commonmark/cmark": "0.30.0",
  1667. "commonmark/commonmark.js": "0.30.0",
  1668. "composer/package-versions-deprecated": "^1.8",
  1669. "embed/embed": "^4.4",
  1670. "erusev/parsedown": "^1.0",
  1671. "ext-json": "*",
  1672. "github/gfm": "0.29.0",
  1673. "michelf/php-markdown": "^1.4 || ^2.0",
  1674. "nyholm/psr7": "^1.5",
  1675. "phpstan/phpstan": "^1.8.2",
  1676. "phpunit/phpunit": "^9.5.21",
  1677. "scrutinizer/ocular": "^1.8.1",
  1678. "symfony/finder": "^5.3 | ^6.0",
  1679. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1680. "unleashedtech/php-coding-standard": "^3.1.1",
  1681. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1682. },
  1683. "suggest": {
  1684. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1685. },
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-main": "2.4-dev"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "psr-4": {
  1694. "League\\CommonMark\\": "src"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "BSD-3-Clause"
  1700. ],
  1701. "authors": [
  1702. {
  1703. "name": "Colin O'Dell",
  1704. "email": "colinodell@gmail.com",
  1705. "homepage": "https://www.colinodell.com",
  1706. "role": "Lead Developer"
  1707. }
  1708. ],
  1709. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1710. "homepage": "https://commonmark.thephpleague.com",
  1711. "keywords": [
  1712. "commonmark",
  1713. "flavored",
  1714. "gfm",
  1715. "github",
  1716. "github-flavored",
  1717. "markdown",
  1718. "md",
  1719. "parser"
  1720. ],
  1721. "support": {
  1722. "docs": "https://commonmark.thephpleague.com/",
  1723. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1724. "issues": "https://github.com/thephpleague/commonmark/issues",
  1725. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1726. "source": "https://github.com/thephpleague/commonmark"
  1727. },
  1728. "funding": [
  1729. {
  1730. "url": "https://www.colinodell.com/sponsor",
  1731. "type": "custom"
  1732. },
  1733. {
  1734. "url": "https://www.paypal.me/colinpodell/10.00",
  1735. "type": "custom"
  1736. },
  1737. {
  1738. "url": "https://github.com/colinodell",
  1739. "type": "github"
  1740. },
  1741. {
  1742. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1743. "type": "tidelift"
  1744. }
  1745. ],
  1746. "time": "2023-02-15T14:07:24+00:00"
  1747. },
  1748. {
  1749. "name": "league/config",
  1750. "version": "v1.2.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/thephpleague/config.git",
  1754. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1759. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1760. "shasum": "",
  1761. "mirrors": [
  1762. {
  1763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1764. "preferred": true
  1765. }
  1766. ]
  1767. },
  1768. "require": {
  1769. "dflydev/dot-access-data": "^3.0.1",
  1770. "nette/schema": "^1.2",
  1771. "php": "^7.4 || ^8.0"
  1772. },
  1773. "require-dev": {
  1774. "phpstan/phpstan": "^1.8.2",
  1775. "phpunit/phpunit": "^9.5.5",
  1776. "scrutinizer/ocular": "^1.8.1",
  1777. "unleashedtech/php-coding-standard": "^3.1",
  1778. "vimeo/psalm": "^4.7.3"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-main": "1.2-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "psr-4": {
  1788. "League\\Config\\": "src"
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "BSD-3-Clause"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Colin O'Dell",
  1798. "email": "colinodell@gmail.com",
  1799. "homepage": "https://www.colinodell.com",
  1800. "role": "Lead Developer"
  1801. }
  1802. ],
  1803. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1804. "homepage": "https://config.thephpleague.com",
  1805. "keywords": [
  1806. "array",
  1807. "config",
  1808. "configuration",
  1809. "dot",
  1810. "dot-access",
  1811. "nested",
  1812. "schema"
  1813. ],
  1814. "support": {
  1815. "docs": "https://config.thephpleague.com/",
  1816. "issues": "https://github.com/thephpleague/config/issues",
  1817. "rss": "https://github.com/thephpleague/config/releases.atom",
  1818. "source": "https://github.com/thephpleague/config"
  1819. },
  1820. "funding": [
  1821. {
  1822. "url": "https://www.colinodell.com/sponsor",
  1823. "type": "custom"
  1824. },
  1825. {
  1826. "url": "https://www.paypal.me/colinpodell/10.00",
  1827. "type": "custom"
  1828. },
  1829. {
  1830. "url": "https://github.com/colinodell",
  1831. "type": "github"
  1832. }
  1833. ],
  1834. "time": "2022-12-11T20:36:23+00:00"
  1835. },
  1836. {
  1837. "name": "league/flysystem",
  1838. "version": "3.15.1",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://github.com/thephpleague/flysystem.git",
  1842. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  1847. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  1848. "shasum": "",
  1849. "mirrors": [
  1850. {
  1851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1852. "preferred": true
  1853. }
  1854. ]
  1855. },
  1856. "require": {
  1857. "league/flysystem-local": "^3.0.0",
  1858. "league/mime-type-detection": "^1.0.0",
  1859. "php": "^8.0.2"
  1860. },
  1861. "conflict": {
  1862. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1863. "guzzlehttp/guzzle": "<7.0",
  1864. "guzzlehttp/ringphp": "<1.1.1",
  1865. "phpseclib/phpseclib": "3.0.15",
  1866. "symfony/http-client": "<5.2"
  1867. },
  1868. "require-dev": {
  1869. "async-aws/s3": "^1.5",
  1870. "async-aws/simple-s3": "^1.1",
  1871. "aws/aws-sdk-php": "^3.220.0",
  1872. "composer/semver": "^3.0",
  1873. "ext-fileinfo": "*",
  1874. "ext-ftp": "*",
  1875. "ext-zip": "*",
  1876. "friendsofphp/php-cs-fixer": "^3.5",
  1877. "google/cloud-storage": "^1.23",
  1878. "microsoft/azure-storage-blob": "^1.1",
  1879. "phpseclib/phpseclib": "^3.0.14",
  1880. "phpstan/phpstan": "^0.12.26",
  1881. "phpunit/phpunit": "^9.5.11",
  1882. "sabre/dav": "^4.3.1"
  1883. },
  1884. "type": "library",
  1885. "autoload": {
  1886. "psr-4": {
  1887. "League\\Flysystem\\": "src"
  1888. }
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Frank de Jonge",
  1897. "email": "info@frankdejonge.nl"
  1898. }
  1899. ],
  1900. "description": "File storage abstraction for PHP",
  1901. "keywords": [
  1902. "WebDAV",
  1903. "aws",
  1904. "cloud",
  1905. "file",
  1906. "files",
  1907. "filesystem",
  1908. "filesystems",
  1909. "ftp",
  1910. "s3",
  1911. "sftp",
  1912. "storage"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/thephpleague/flysystem/issues",
  1916. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  1917. },
  1918. "funding": [
  1919. {
  1920. "url": "https://ecologi.com/frankdejonge",
  1921. "type": "custom"
  1922. },
  1923. {
  1924. "url": "https://github.com/frankdejonge",
  1925. "type": "github"
  1926. }
  1927. ],
  1928. "time": "2023-05-04T09:04:26+00:00"
  1929. },
  1930. {
  1931. "name": "league/flysystem-local",
  1932. "version": "3.15.0",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/thephpleague/flysystem-local.git",
  1936. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  1941. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  1942. "shasum": "",
  1943. "mirrors": [
  1944. {
  1945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1946. "preferred": true
  1947. }
  1948. ]
  1949. },
  1950. "require": {
  1951. "ext-fileinfo": "*",
  1952. "league/flysystem": "^3.0.0",
  1953. "league/mime-type-detection": "^1.0.0",
  1954. "php": "^8.0.2"
  1955. },
  1956. "type": "library",
  1957. "autoload": {
  1958. "psr-4": {
  1959. "League\\Flysystem\\Local\\": ""
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "Frank de Jonge",
  1969. "email": "info@frankdejonge.nl"
  1970. }
  1971. ],
  1972. "description": "Local filesystem adapter for Flysystem.",
  1973. "keywords": [
  1974. "Flysystem",
  1975. "file",
  1976. "files",
  1977. "filesystem",
  1978. "local"
  1979. ],
  1980. "support": {
  1981. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  1982. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  1983. },
  1984. "funding": [
  1985. {
  1986. "url": "https://ecologi.com/frankdejonge",
  1987. "type": "custom"
  1988. },
  1989. {
  1990. "url": "https://github.com/frankdejonge",
  1991. "type": "github"
  1992. }
  1993. ],
  1994. "time": "2023-05-02T20:02:14+00:00"
  1995. },
  1996. {
  1997. "name": "league/mime-type-detection",
  1998. "version": "1.11.0",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2002. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2007. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2008. "shasum": "",
  2009. "mirrors": [
  2010. {
  2011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2012. "preferred": true
  2013. }
  2014. ]
  2015. },
  2016. "require": {
  2017. "ext-fileinfo": "*",
  2018. "php": "^7.2 || ^8.0"
  2019. },
  2020. "require-dev": {
  2021. "friendsofphp/php-cs-fixer": "^3.2",
  2022. "phpstan/phpstan": "^0.12.68",
  2023. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2024. },
  2025. "type": "library",
  2026. "autoload": {
  2027. "psr-4": {
  2028. "League\\MimeTypeDetection\\": "src"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Frank de Jonge",
  2038. "email": "info@frankdejonge.nl"
  2039. }
  2040. ],
  2041. "description": "Mime-type detection for Flysystem",
  2042. "support": {
  2043. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2044. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2045. },
  2046. "funding": [
  2047. {
  2048. "url": "https://github.com/frankdejonge",
  2049. "type": "github"
  2050. },
  2051. {
  2052. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2053. "type": "tidelift"
  2054. }
  2055. ],
  2056. "time": "2022-04-17T13:12:02+00:00"
  2057. },
  2058. {
  2059. "name": "monolog/monolog",
  2060. "version": "2.9.0",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/Seldaek/monolog.git",
  2064. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2069. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2070. "shasum": "",
  2071. "mirrors": [
  2072. {
  2073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2074. "preferred": true
  2075. }
  2076. ]
  2077. },
  2078. "require": {
  2079. "php": ">=7.2",
  2080. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2081. },
  2082. "provide": {
  2083. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2084. },
  2085. "require-dev": {
  2086. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2087. "doctrine/couchdb": "~1.0@dev",
  2088. "elasticsearch/elasticsearch": "^7 || ^8",
  2089. "ext-json": "*",
  2090. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2091. "guzzlehttp/guzzle": "^7.4",
  2092. "guzzlehttp/psr7": "^2.2",
  2093. "mongodb/mongodb": "^1.8",
  2094. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2095. "phpspec/prophecy": "^1.15",
  2096. "phpstan/phpstan": "^0.12.91",
  2097. "phpunit/phpunit": "^8.5.14",
  2098. "predis/predis": "^1.1 || ^2.0",
  2099. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2100. "ruflin/elastica": "^7",
  2101. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2102. "symfony/mailer": "^5.4 || ^6",
  2103. "symfony/mime": "^5.4 || ^6"
  2104. },
  2105. "suggest": {
  2106. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2107. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2108. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2109. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2110. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2111. "ext-mbstring": "Allow to work properly with unicode symbols",
  2112. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2113. "ext-openssl": "Required to send log messages using SSL",
  2114. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2115. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2116. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2117. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2118. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2119. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2120. },
  2121. "type": "library",
  2122. "extra": {
  2123. "branch-alias": {
  2124. "dev-main": "2.x-dev"
  2125. }
  2126. },
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Monolog\\": "src/Monolog"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Jordi Boggiano",
  2139. "email": "j.boggiano@seld.be",
  2140. "homepage": "https://seld.be"
  2141. }
  2142. ],
  2143. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2144. "homepage": "https://github.com/Seldaek/monolog",
  2145. "keywords": [
  2146. "log",
  2147. "logging",
  2148. "psr-3"
  2149. ],
  2150. "support": {
  2151. "issues": "https://github.com/Seldaek/monolog/issues",
  2152. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  2153. },
  2154. "funding": [
  2155. {
  2156. "url": "https://github.com/Seldaek",
  2157. "type": "github"
  2158. },
  2159. {
  2160. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2161. "type": "tidelift"
  2162. }
  2163. ],
  2164. "time": "2023-02-05T13:07:32+00:00"
  2165. },
  2166. {
  2167. "name": "nesbot/carbon",
  2168. "version": "2.66.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/briannesbitt/Carbon.git",
  2172. "reference": "496712849902241f04902033b0441b269effe001"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  2177. "reference": "496712849902241f04902033b0441b269effe001",
  2178. "shasum": "",
  2179. "mirrors": [
  2180. {
  2181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2182. "preferred": true
  2183. }
  2184. ]
  2185. },
  2186. "require": {
  2187. "ext-json": "*",
  2188. "php": "^7.1.8 || ^8.0",
  2189. "symfony/polyfill-mbstring": "^1.0",
  2190. "symfony/polyfill-php80": "^1.16",
  2191. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2192. },
  2193. "require-dev": {
  2194. "doctrine/dbal": "^2.0 || ^3.1.4",
  2195. "doctrine/orm": "^2.7",
  2196. "friendsofphp/php-cs-fixer": "^3.0",
  2197. "kylekatarnls/multi-tester": "^2.0",
  2198. "ondrejmirtes/better-reflection": "*",
  2199. "phpmd/phpmd": "^2.9",
  2200. "phpstan/extension-installer": "^1.0",
  2201. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2202. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2203. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2204. "squizlabs/php_codesniffer": "^3.4"
  2205. },
  2206. "bin": [
  2207. "bin/carbon"
  2208. ],
  2209. "type": "library",
  2210. "extra": {
  2211. "branch-alias": {
  2212. "dev-3.x": "3.x-dev",
  2213. "dev-master": "2.x-dev"
  2214. },
  2215. "laravel": {
  2216. "providers": [
  2217. "Carbon\\Laravel\\ServiceProvider"
  2218. ]
  2219. },
  2220. "phpstan": {
  2221. "includes": [
  2222. "extension.neon"
  2223. ]
  2224. }
  2225. },
  2226. "autoload": {
  2227. "psr-4": {
  2228. "Carbon\\": "src/Carbon/"
  2229. }
  2230. },
  2231. "notification-url": "https://packagist.org/downloads/",
  2232. "license": [
  2233. "MIT"
  2234. ],
  2235. "authors": [
  2236. {
  2237. "name": "Brian Nesbitt",
  2238. "email": "brian@nesbot.com",
  2239. "homepage": "https://markido.com"
  2240. },
  2241. {
  2242. "name": "kylekatarnls",
  2243. "homepage": "https://github.com/kylekatarnls"
  2244. }
  2245. ],
  2246. "description": "An API extension for DateTime that supports 281 different languages.",
  2247. "homepage": "https://carbon.nesbot.com",
  2248. "keywords": [
  2249. "date",
  2250. "datetime",
  2251. "time"
  2252. ],
  2253. "support": {
  2254. "docs": "https://carbon.nesbot.com/docs",
  2255. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2256. "source": "https://github.com/briannesbitt/Carbon"
  2257. },
  2258. "funding": [
  2259. {
  2260. "url": "https://github.com/sponsors/kylekatarnls",
  2261. "type": "github"
  2262. },
  2263. {
  2264. "url": "https://opencollective.com/Carbon#sponsor",
  2265. "type": "opencollective"
  2266. },
  2267. {
  2268. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2269. "type": "tidelift"
  2270. }
  2271. ],
  2272. "time": "2023-01-29T18:53:47+00:00"
  2273. },
  2274. {
  2275. "name": "nette/schema",
  2276. "version": "v1.2.3",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://github.com/nette/schema.git",
  2280. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2285. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2286. "shasum": "",
  2287. "mirrors": [
  2288. {
  2289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2290. "preferred": true
  2291. }
  2292. ]
  2293. },
  2294. "require": {
  2295. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2296. "php": ">=7.1 <8.3"
  2297. },
  2298. "require-dev": {
  2299. "nette/tester": "^2.3 || ^2.4",
  2300. "phpstan/phpstan-nette": "^1.0",
  2301. "tracy/tracy": "^2.7"
  2302. },
  2303. "type": "library",
  2304. "extra": {
  2305. "branch-alias": {
  2306. "dev-master": "1.2-dev"
  2307. }
  2308. },
  2309. "autoload": {
  2310. "classmap": [
  2311. "src/"
  2312. ]
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "BSD-3-Clause",
  2317. "GPL-2.0-only",
  2318. "GPL-3.0-only"
  2319. ],
  2320. "authors": [
  2321. {
  2322. "name": "David Grudl",
  2323. "homepage": "https://davidgrudl.com"
  2324. },
  2325. {
  2326. "name": "Nette Community",
  2327. "homepage": "https://nette.org/contributors"
  2328. }
  2329. ],
  2330. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2331. "homepage": "https://nette.org",
  2332. "keywords": [
  2333. "config",
  2334. "nette"
  2335. ],
  2336. "support": {
  2337. "issues": "https://github.com/nette/schema/issues",
  2338. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2339. },
  2340. "time": "2022-10-13T01:24:26+00:00"
  2341. },
  2342. {
  2343. "name": "nette/utils",
  2344. "version": "v4.0.0",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/nette/utils.git",
  2348. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2353. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2354. "shasum": "",
  2355. "mirrors": [
  2356. {
  2357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2358. "preferred": true
  2359. }
  2360. ]
  2361. },
  2362. "require": {
  2363. "php": ">=8.0 <8.3"
  2364. },
  2365. "conflict": {
  2366. "nette/finder": "<3",
  2367. "nette/schema": "<1.2.2"
  2368. },
  2369. "require-dev": {
  2370. "jetbrains/phpstorm-attributes": "dev-master",
  2371. "nette/tester": "^2.4",
  2372. "phpstan/phpstan": "^1.0",
  2373. "tracy/tracy": "^2.9"
  2374. },
  2375. "suggest": {
  2376. "ext-gd": "to use Image",
  2377. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2378. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2379. "ext-json": "to use Nette\\Utils\\Json",
  2380. "ext-mbstring": "to use Strings::lower() etc...",
  2381. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2382. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2383. },
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-master": "4.0-dev"
  2388. }
  2389. },
  2390. "autoload": {
  2391. "classmap": [
  2392. "src/"
  2393. ]
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "BSD-3-Clause",
  2398. "GPL-2.0-only",
  2399. "GPL-3.0-only"
  2400. ],
  2401. "authors": [
  2402. {
  2403. "name": "David Grudl",
  2404. "homepage": "https://davidgrudl.com"
  2405. },
  2406. {
  2407. "name": "Nette Community",
  2408. "homepage": "https://nette.org/contributors"
  2409. }
  2410. ],
  2411. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2412. "homepage": "https://nette.org",
  2413. "keywords": [
  2414. "array",
  2415. "core",
  2416. "datetime",
  2417. "images",
  2418. "json",
  2419. "nette",
  2420. "paginator",
  2421. "password",
  2422. "slugify",
  2423. "string",
  2424. "unicode",
  2425. "utf-8",
  2426. "utility",
  2427. "validation"
  2428. ],
  2429. "support": {
  2430. "issues": "https://github.com/nette/utils/issues",
  2431. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2432. },
  2433. "time": "2023-02-02T10:41:53+00:00"
  2434. },
  2435. {
  2436. "name": "nikic/php-parser",
  2437. "version": "v4.15.4",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/nikic/PHP-Parser.git",
  2441. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2446. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2447. "shasum": "",
  2448. "mirrors": [
  2449. {
  2450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2451. "preferred": true
  2452. }
  2453. ]
  2454. },
  2455. "require": {
  2456. "ext-tokenizer": "*",
  2457. "php": ">=7.0"
  2458. },
  2459. "require-dev": {
  2460. "ircmaxell/php-yacc": "^0.0.7",
  2461. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2462. },
  2463. "bin": [
  2464. "bin/php-parse"
  2465. ],
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "4.9-dev"
  2470. }
  2471. },
  2472. "autoload": {
  2473. "psr-4": {
  2474. "PhpParser\\": "lib/PhpParser"
  2475. }
  2476. },
  2477. "notification-url": "https://packagist.org/downloads/",
  2478. "license": [
  2479. "BSD-3-Clause"
  2480. ],
  2481. "authors": [
  2482. {
  2483. "name": "Nikita Popov"
  2484. }
  2485. ],
  2486. "description": "A PHP parser written in PHP",
  2487. "keywords": [
  2488. "parser",
  2489. "php"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2493. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  2494. },
  2495. "time": "2023-03-05T19:49:14+00:00"
  2496. },
  2497. {
  2498. "name": "nunomaduro/termwind",
  2499. "version": "v1.15.1",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/nunomaduro/termwind.git",
  2503. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2508. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "ext-mbstring": "*",
  2519. "php": "^8.0",
  2520. "symfony/console": "^5.3.0|^6.0.0"
  2521. },
  2522. "require-dev": {
  2523. "ergebnis/phpstan-rules": "^1.0.",
  2524. "illuminate/console": "^8.0|^9.0",
  2525. "illuminate/support": "^8.0|^9.0",
  2526. "laravel/pint": "^1.0.0",
  2527. "pestphp/pest": "^1.21.0",
  2528. "pestphp/pest-plugin-mock": "^1.0",
  2529. "phpstan/phpstan": "^1.4.6",
  2530. "phpstan/phpstan-strict-rules": "^1.1.0",
  2531. "symfony/var-dumper": "^5.2.7|^6.0.0",
  2532. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "laravel": {
  2537. "providers": [
  2538. "Termwind\\Laravel\\TermwindServiceProvider"
  2539. ]
  2540. }
  2541. },
  2542. "autoload": {
  2543. "files": [
  2544. "src/Functions.php"
  2545. ],
  2546. "psr-4": {
  2547. "Termwind\\": "src/"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "authors": [
  2555. {
  2556. "name": "Nuno Maduro",
  2557. "email": "enunomaduro@gmail.com"
  2558. }
  2559. ],
  2560. "description": "Its like Tailwind CSS, but for the console.",
  2561. "keywords": [
  2562. "cli",
  2563. "console",
  2564. "css",
  2565. "package",
  2566. "php",
  2567. "style"
  2568. ],
  2569. "support": {
  2570. "issues": "https://github.com/nunomaduro/termwind/issues",
  2571. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  2572. },
  2573. "funding": [
  2574. {
  2575. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2576. "type": "custom"
  2577. },
  2578. {
  2579. "url": "https://github.com/nunomaduro",
  2580. "type": "github"
  2581. },
  2582. {
  2583. "url": "https://github.com/xiCO2k",
  2584. "type": "github"
  2585. }
  2586. ],
  2587. "time": "2023-02-08T01:06:31+00:00"
  2588. },
  2589. {
  2590. "name": "nyholm/psr7",
  2591. "version": "1.8.0",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/Nyholm/psr7.git",
  2595. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  2600. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  2601. "shasum": "",
  2602. "mirrors": [
  2603. {
  2604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2605. "preferred": true
  2606. }
  2607. ]
  2608. },
  2609. "require": {
  2610. "php": ">=7.2",
  2611. "psr/http-factory": "^1.0",
  2612. "psr/http-message": "^1.1 || ^2.0"
  2613. },
  2614. "provide": {
  2615. "php-http/message-factory-implementation": "1.0",
  2616. "psr/http-factory-implementation": "1.0",
  2617. "psr/http-message-implementation": "1.0"
  2618. },
  2619. "require-dev": {
  2620. "http-interop/http-factory-tests": "^0.9",
  2621. "php-http/message-factory": "^1.0",
  2622. "php-http/psr7-integration-tests": "^1.0",
  2623. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  2624. "symfony/error-handler": "^4.4"
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "1.8-dev"
  2630. }
  2631. },
  2632. "autoload": {
  2633. "psr-4": {
  2634. "Nyholm\\Psr7\\": "src/"
  2635. }
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Tobias Nyholm",
  2644. "email": "tobias.nyholm@gmail.com"
  2645. },
  2646. {
  2647. "name": "Martijn van der Ven",
  2648. "email": "martijn@vanderven.se"
  2649. }
  2650. ],
  2651. "description": "A fast PHP7 implementation of PSR-7",
  2652. "homepage": "https://tnyholm.se",
  2653. "keywords": [
  2654. "psr-17",
  2655. "psr-7"
  2656. ],
  2657. "support": {
  2658. "issues": "https://github.com/Nyholm/psr7/issues",
  2659. "source": "https://github.com/Nyholm/psr7/tree/1.8.0"
  2660. },
  2661. "funding": [
  2662. {
  2663. "url": "https://github.com/Zegnat",
  2664. "type": "github"
  2665. },
  2666. {
  2667. "url": "https://github.com/nyholm",
  2668. "type": "github"
  2669. }
  2670. ],
  2671. "time": "2023-05-02T11:26:24+00:00"
  2672. },
  2673. {
  2674. "name": "nyholm/psr7-server",
  2675. "version": "1.0.2",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/Nyholm/psr7-server.git",
  2679. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/b846a689844cef114e8079d8c80f0afd96745ae3",
  2684. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3",
  2685. "shasum": "",
  2686. "mirrors": [
  2687. {
  2688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2689. "preferred": true
  2690. }
  2691. ]
  2692. },
  2693. "require": {
  2694. "php": "^7.1 || ^8.0",
  2695. "psr/http-factory": "^1.0",
  2696. "psr/http-message": "^1.0"
  2697. },
  2698. "require-dev": {
  2699. "nyholm/nsa": "^1.1",
  2700. "nyholm/psr7": "^1.3",
  2701. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  2702. },
  2703. "type": "library",
  2704. "autoload": {
  2705. "psr-4": {
  2706. "Nyholm\\Psr7Server\\": "src/"
  2707. }
  2708. },
  2709. "notification-url": "https://packagist.org/downloads/",
  2710. "license": [
  2711. "MIT"
  2712. ],
  2713. "authors": [
  2714. {
  2715. "name": "Tobias Nyholm",
  2716. "email": "tobias.nyholm@gmail.com"
  2717. },
  2718. {
  2719. "name": "Martijn van der Ven",
  2720. "email": "martijn@vanderven.se"
  2721. }
  2722. ],
  2723. "description": "Helper classes to handle PSR-7 server requests",
  2724. "homepage": "http://tnyholm.se",
  2725. "keywords": [
  2726. "psr-17",
  2727. "psr-7"
  2728. ],
  2729. "support": {
  2730. "issues": "https://github.com/Nyholm/psr7-server/issues",
  2731. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.2"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://github.com/Zegnat",
  2736. "type": "github"
  2737. },
  2738. {
  2739. "url": "https://github.com/nyholm",
  2740. "type": "github"
  2741. }
  2742. ],
  2743. "time": "2021-05-12T11:11:27+00:00"
  2744. },
  2745. {
  2746. "name": "overtrue/laravel-wechat",
  2747. "version": "7.2.0",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/overtrue/laravel-wechat.git",
  2751. "reference": "2ef8b18b525e054838770c60bfcfbd30ac9ede65"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/2ef8b18b525e054838770c60bfcfbd30ac9ede65",
  2756. "reference": "2ef8b18b525e054838770c60bfcfbd30ac9ede65",
  2757. "shasum": "",
  2758. "mirrors": [
  2759. {
  2760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2761. "preferred": true
  2762. }
  2763. ]
  2764. },
  2765. "require": {
  2766. "illuminate/container": "^9.0|^10.0",
  2767. "w7corp/easywechat": "^6.0.0"
  2768. },
  2769. "require-dev": {
  2770. "brainmaestro/composer-git-hooks": "dev-master",
  2771. "jetbrains/phpstorm-attributes": "^1.0",
  2772. "laravel/framework": "^10.0",
  2773. "laravel/pint": "^1.5"
  2774. },
  2775. "type": "library",
  2776. "extra": {
  2777. "laravel": {
  2778. "providers": [
  2779. "Overtrue\\LaravelWeChat\\ServiceProvider"
  2780. ]
  2781. },
  2782. "hooks": {
  2783. "pre-commit": [
  2784. "composer check-style"
  2785. ],
  2786. "pre-push": [
  2787. "composer check-style"
  2788. ]
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "Overtrue\\LaravelWeChat\\": "src/"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "overtrue",
  2803. "email": "anzhengchao@gmail.com"
  2804. }
  2805. ],
  2806. "description": "微信 SDK for Laravel",
  2807. "keywords": [
  2808. "laravel",
  2809. "sdk",
  2810. "wechat",
  2811. "weixin"
  2812. ],
  2813. "support": {
  2814. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  2815. "source": "https://github.com/overtrue/laravel-wechat/tree/7.2.0"
  2816. },
  2817. "funding": [
  2818. {
  2819. "url": "https://github.com/overtrue",
  2820. "type": "github"
  2821. }
  2822. ],
  2823. "time": "2023-02-15T08:16:22+00:00"
  2824. },
  2825. {
  2826. "name": "overtrue/socialite",
  2827. "version": "4.8.0",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/overtrue/socialite.git",
  2831. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  2836. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  2837. "shasum": "",
  2838. "mirrors": [
  2839. {
  2840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2841. "preferred": true
  2842. }
  2843. ]
  2844. },
  2845. "require": {
  2846. "ext-json": "*",
  2847. "ext-openssl": "*",
  2848. "guzzlehttp/guzzle": "^7.0",
  2849. "php": ">=8.0.2",
  2850. "symfony/http-foundation": "^6.0",
  2851. "symfony/psr-http-message-bridge": "^2.1"
  2852. },
  2853. "require-dev": {
  2854. "jetbrains/phpstorm-attributes": "^1.0",
  2855. "laravel/pint": "^1.2",
  2856. "mockery/mockery": "^1.3",
  2857. "phpstan/phpstan": "^1.7",
  2858. "phpunit/phpunit": "^9.0"
  2859. },
  2860. "type": "library",
  2861. "autoload": {
  2862. "files": [
  2863. "src/Contracts/FactoryInterface.php",
  2864. "src/Contracts/UserInterface.php",
  2865. "src/Contracts/ProviderInterface.php"
  2866. ],
  2867. "psr-4": {
  2868. "Overtrue\\Socialite\\": "src/"
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "overtrue",
  2878. "email": "anzhengchao@gmail.com"
  2879. }
  2880. ],
  2881. "description": "A collection of OAuth 2 packages.",
  2882. "keywords": [
  2883. "Feishu",
  2884. "login",
  2885. "oauth",
  2886. "qcloud",
  2887. "qq",
  2888. "social",
  2889. "wechat",
  2890. "weibo"
  2891. ],
  2892. "support": {
  2893. "issues": "https://github.com/overtrue/socialite/issues",
  2894. "source": "https://github.com/overtrue/socialite/tree/4.8.0"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://github.com/overtrue",
  2899. "type": "github"
  2900. }
  2901. ],
  2902. "time": "2023-01-10T14:29:55+00:00"
  2903. },
  2904. {
  2905. "name": "paragonie/constant_time_encoding",
  2906. "version": "v2.6.3",
  2907. "source": {
  2908. "type": "git",
  2909. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2910. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  2911. },
  2912. "dist": {
  2913. "type": "zip",
  2914. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  2915. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  2916. "shasum": "",
  2917. "mirrors": [
  2918. {
  2919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2920. "preferred": true
  2921. }
  2922. ]
  2923. },
  2924. "require": {
  2925. "php": "^7|^8"
  2926. },
  2927. "require-dev": {
  2928. "phpunit/phpunit": "^6|^7|^8|^9",
  2929. "vimeo/psalm": "^1|^2|^3|^4"
  2930. },
  2931. "type": "library",
  2932. "autoload": {
  2933. "psr-4": {
  2934. "ParagonIE\\ConstantTime\\": "src/"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Paragon Initiative Enterprises",
  2944. "email": "security@paragonie.com",
  2945. "homepage": "https://paragonie.com",
  2946. "role": "Maintainer"
  2947. },
  2948. {
  2949. "name": "Steve 'Sc00bz' Thomas",
  2950. "email": "steve@tobtu.com",
  2951. "homepage": "https://www.tobtu.com",
  2952. "role": "Original Developer"
  2953. }
  2954. ],
  2955. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2956. "keywords": [
  2957. "base16",
  2958. "base32",
  2959. "base32_decode",
  2960. "base32_encode",
  2961. "base64",
  2962. "base64_decode",
  2963. "base64_encode",
  2964. "bin2hex",
  2965. "encoding",
  2966. "hex",
  2967. "hex2bin",
  2968. "rfc4648"
  2969. ],
  2970. "support": {
  2971. "email": "info@paragonie.com",
  2972. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  2973. "source": "https://github.com/paragonie/constant_time_encoding"
  2974. },
  2975. "time": "2022-06-14T06:56:20+00:00"
  2976. },
  2977. {
  2978. "name": "paragonie/random_compat",
  2979. "version": "v9.99.100",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/paragonie/random_compat.git",
  2983. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2988. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "php": ">= 7"
  2999. },
  3000. "require-dev": {
  3001. "phpunit/phpunit": "4.*|5.*",
  3002. "vimeo/psalm": "^1"
  3003. },
  3004. "suggest": {
  3005. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3006. },
  3007. "type": "library",
  3008. "notification-url": "https://packagist.org/downloads/",
  3009. "license": [
  3010. "MIT"
  3011. ],
  3012. "authors": [
  3013. {
  3014. "name": "Paragon Initiative Enterprises",
  3015. "email": "security@paragonie.com",
  3016. "homepage": "https://paragonie.com"
  3017. }
  3018. ],
  3019. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3020. "keywords": [
  3021. "csprng",
  3022. "polyfill",
  3023. "pseudorandom",
  3024. "random"
  3025. ],
  3026. "support": {
  3027. "email": "info@paragonie.com",
  3028. "issues": "https://github.com/paragonie/random_compat/issues",
  3029. "source": "https://github.com/paragonie/random_compat"
  3030. },
  3031. "time": "2020-10-15T08:29:30+00:00"
  3032. },
  3033. {
  3034. "name": "phpoption/phpoption",
  3035. "version": "1.9.1",
  3036. "source": {
  3037. "type": "git",
  3038. "url": "https://github.com/schmittjoh/php-option.git",
  3039. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3040. },
  3041. "dist": {
  3042. "type": "zip",
  3043. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3044. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3045. "shasum": "",
  3046. "mirrors": [
  3047. {
  3048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3049. "preferred": true
  3050. }
  3051. ]
  3052. },
  3053. "require": {
  3054. "php": "^7.2.5 || ^8.0"
  3055. },
  3056. "require-dev": {
  3057. "bamarni/composer-bin-plugin": "^1.8.2",
  3058. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3059. },
  3060. "type": "library",
  3061. "extra": {
  3062. "bamarni-bin": {
  3063. "bin-links": true,
  3064. "forward-command": true
  3065. },
  3066. "branch-alias": {
  3067. "dev-master": "1.9-dev"
  3068. }
  3069. },
  3070. "autoload": {
  3071. "psr-4": {
  3072. "PhpOption\\": "src/PhpOption/"
  3073. }
  3074. },
  3075. "notification-url": "https://packagist.org/downloads/",
  3076. "license": [
  3077. "Apache-2.0"
  3078. ],
  3079. "authors": [
  3080. {
  3081. "name": "Johannes M. Schmitt",
  3082. "email": "schmittjoh@gmail.com",
  3083. "homepage": "https://github.com/schmittjoh"
  3084. },
  3085. {
  3086. "name": "Graham Campbell",
  3087. "email": "hello@gjcampbell.co.uk",
  3088. "homepage": "https://github.com/GrahamCampbell"
  3089. }
  3090. ],
  3091. "description": "Option Type for PHP",
  3092. "keywords": [
  3093. "language",
  3094. "option",
  3095. "php",
  3096. "type"
  3097. ],
  3098. "support": {
  3099. "issues": "https://github.com/schmittjoh/php-option/issues",
  3100. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3101. },
  3102. "funding": [
  3103. {
  3104. "url": "https://github.com/GrahamCampbell",
  3105. "type": "github"
  3106. },
  3107. {
  3108. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3109. "type": "tidelift"
  3110. }
  3111. ],
  3112. "time": "2023-02-25T19:38:58+00:00"
  3113. },
  3114. {
  3115. "name": "phpseclib/phpseclib",
  3116. "version": "3.0.19",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/phpseclib/phpseclib.git",
  3120. "reference": "cc181005cf548bfd8a4896383bb825d859259f95"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95",
  3125. "reference": "cc181005cf548bfd8a4896383bb825d859259f95",
  3126. "shasum": "",
  3127. "mirrors": [
  3128. {
  3129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3130. "preferred": true
  3131. }
  3132. ]
  3133. },
  3134. "require": {
  3135. "paragonie/constant_time_encoding": "^1|^2",
  3136. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3137. "php": ">=5.6.1"
  3138. },
  3139. "require-dev": {
  3140. "phpunit/phpunit": "*"
  3141. },
  3142. "suggest": {
  3143. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3144. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3145. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3146. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3147. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3148. },
  3149. "type": "library",
  3150. "autoload": {
  3151. "files": [
  3152. "phpseclib/bootstrap.php"
  3153. ],
  3154. "psr-4": {
  3155. "phpseclib3\\": "phpseclib/"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "Jim Wigginton",
  3165. "email": "terrafrost@php.net",
  3166. "role": "Lead Developer"
  3167. },
  3168. {
  3169. "name": "Patrick Monnerat",
  3170. "email": "pm@datasphere.ch",
  3171. "role": "Developer"
  3172. },
  3173. {
  3174. "name": "Andreas Fischer",
  3175. "email": "bantu@phpbb.com",
  3176. "role": "Developer"
  3177. },
  3178. {
  3179. "name": "Hans-Jürgen Petrich",
  3180. "email": "petrich@tronic-media.com",
  3181. "role": "Developer"
  3182. },
  3183. {
  3184. "name": "Graham Campbell",
  3185. "email": "graham@alt-three.com",
  3186. "role": "Developer"
  3187. }
  3188. ],
  3189. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3190. "homepage": "http://phpseclib.sourceforge.net",
  3191. "keywords": [
  3192. "BigInteger",
  3193. "aes",
  3194. "asn.1",
  3195. "asn1",
  3196. "blowfish",
  3197. "crypto",
  3198. "cryptography",
  3199. "encryption",
  3200. "rsa",
  3201. "security",
  3202. "sftp",
  3203. "signature",
  3204. "signing",
  3205. "ssh",
  3206. "twofish",
  3207. "x.509",
  3208. "x509"
  3209. ],
  3210. "support": {
  3211. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3212. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.19"
  3213. },
  3214. "funding": [
  3215. {
  3216. "url": "https://github.com/terrafrost",
  3217. "type": "github"
  3218. },
  3219. {
  3220. "url": "https://www.patreon.com/phpseclib",
  3221. "type": "patreon"
  3222. },
  3223. {
  3224. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3225. "type": "tidelift"
  3226. }
  3227. ],
  3228. "time": "2023-03-05T17:13:09+00:00"
  3229. },
  3230. {
  3231. "name": "psr/cache",
  3232. "version": "3.0.0",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/php-fig/cache.git",
  3236. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3241. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3242. "shasum": "",
  3243. "mirrors": [
  3244. {
  3245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3246. "preferred": true
  3247. }
  3248. ]
  3249. },
  3250. "require": {
  3251. "php": ">=8.0.0"
  3252. },
  3253. "type": "library",
  3254. "extra": {
  3255. "branch-alias": {
  3256. "dev-master": "1.0.x-dev"
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Psr\\Cache\\": "src/"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "PHP-FIG",
  3271. "homepage": "https://www.php-fig.org/"
  3272. }
  3273. ],
  3274. "description": "Common interface for caching libraries",
  3275. "keywords": [
  3276. "cache",
  3277. "psr",
  3278. "psr-6"
  3279. ],
  3280. "support": {
  3281. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3282. },
  3283. "time": "2021-02-03T23:26:27+00:00"
  3284. },
  3285. {
  3286. "name": "psr/container",
  3287. "version": "2.0.2",
  3288. "source": {
  3289. "type": "git",
  3290. "url": "https://github.com/php-fig/container.git",
  3291. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3292. },
  3293. "dist": {
  3294. "type": "zip",
  3295. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3296. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3297. "shasum": "",
  3298. "mirrors": [
  3299. {
  3300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3301. "preferred": true
  3302. }
  3303. ]
  3304. },
  3305. "require": {
  3306. "php": ">=7.4.0"
  3307. },
  3308. "type": "library",
  3309. "extra": {
  3310. "branch-alias": {
  3311. "dev-master": "2.0.x-dev"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "psr-4": {
  3316. "Psr\\Container\\": "src/"
  3317. }
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "PHP-FIG",
  3326. "homepage": "https://www.php-fig.org/"
  3327. }
  3328. ],
  3329. "description": "Common Container Interface (PHP FIG PSR-11)",
  3330. "homepage": "https://github.com/php-fig/container",
  3331. "keywords": [
  3332. "PSR-11",
  3333. "container",
  3334. "container-interface",
  3335. "container-interop",
  3336. "psr"
  3337. ],
  3338. "support": {
  3339. "issues": "https://github.com/php-fig/container/issues",
  3340. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3341. },
  3342. "time": "2021-11-05T16:47:00+00:00"
  3343. },
  3344. {
  3345. "name": "psr/event-dispatcher",
  3346. "version": "1.0.0",
  3347. "source": {
  3348. "type": "git",
  3349. "url": "https://github.com/php-fig/event-dispatcher.git",
  3350. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3351. },
  3352. "dist": {
  3353. "type": "zip",
  3354. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3355. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3356. "shasum": "",
  3357. "mirrors": [
  3358. {
  3359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3360. "preferred": true
  3361. }
  3362. ]
  3363. },
  3364. "require": {
  3365. "php": ">=7.2.0"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-master": "1.0.x-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "psr-4": {
  3375. "Psr\\EventDispatcher\\": "src/"
  3376. }
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "MIT"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "PHP-FIG",
  3385. "homepage": "http://www.php-fig.org/"
  3386. }
  3387. ],
  3388. "description": "Standard interfaces for event handling.",
  3389. "keywords": [
  3390. "events",
  3391. "psr",
  3392. "psr-14"
  3393. ],
  3394. "support": {
  3395. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3396. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3397. },
  3398. "time": "2019-01-08T18:20:26+00:00"
  3399. },
  3400. {
  3401. "name": "psr/http-client",
  3402. "version": "1.0.1",
  3403. "source": {
  3404. "type": "git",
  3405. "url": "https://github.com/php-fig/http-client.git",
  3406. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3407. },
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3411. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3412. "shasum": "",
  3413. "mirrors": [
  3414. {
  3415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3416. "preferred": true
  3417. }
  3418. ]
  3419. },
  3420. "require": {
  3421. "php": "^7.0 || ^8.0",
  3422. "psr/http-message": "^1.0"
  3423. },
  3424. "type": "library",
  3425. "extra": {
  3426. "branch-alias": {
  3427. "dev-master": "1.0.x-dev"
  3428. }
  3429. },
  3430. "autoload": {
  3431. "psr-4": {
  3432. "Psr\\Http\\Client\\": "src/"
  3433. }
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "PHP-FIG",
  3442. "homepage": "http://www.php-fig.org/"
  3443. }
  3444. ],
  3445. "description": "Common interface for HTTP clients",
  3446. "homepage": "https://github.com/php-fig/http-client",
  3447. "keywords": [
  3448. "http",
  3449. "http-client",
  3450. "psr",
  3451. "psr-18"
  3452. ],
  3453. "support": {
  3454. "source": "https://github.com/php-fig/http-client/tree/master"
  3455. },
  3456. "time": "2020-06-29T06:28:15+00:00"
  3457. },
  3458. {
  3459. "name": "psr/http-factory",
  3460. "version": "1.0.2",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://github.com/php-fig/http-factory.git",
  3464. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3465. },
  3466. "dist": {
  3467. "type": "zip",
  3468. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3469. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3470. "shasum": "",
  3471. "mirrors": [
  3472. {
  3473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3474. "preferred": true
  3475. }
  3476. ]
  3477. },
  3478. "require": {
  3479. "php": ">=7.0.0",
  3480. "psr/http-message": "^1.0 || ^2.0"
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "branch-alias": {
  3485. "dev-master": "1.0.x-dev"
  3486. }
  3487. },
  3488. "autoload": {
  3489. "psr-4": {
  3490. "Psr\\Http\\Message\\": "src/"
  3491. }
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "MIT"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "PHP-FIG",
  3500. "homepage": "https://www.php-fig.org/"
  3501. }
  3502. ],
  3503. "description": "Common interfaces for PSR-7 HTTP message factories",
  3504. "keywords": [
  3505. "factory",
  3506. "http",
  3507. "message",
  3508. "psr",
  3509. "psr-17",
  3510. "psr-7",
  3511. "request",
  3512. "response"
  3513. ],
  3514. "support": {
  3515. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3516. },
  3517. "time": "2023-04-10T20:10:41+00:00"
  3518. },
  3519. {
  3520. "name": "psr/http-message",
  3521. "version": "1.1",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/php-fig/http-message.git",
  3525. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3530. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3531. "shasum": "",
  3532. "mirrors": [
  3533. {
  3534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3535. "preferred": true
  3536. }
  3537. ]
  3538. },
  3539. "require": {
  3540. "php": "^7.2 || ^8.0"
  3541. },
  3542. "type": "library",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-master": "1.1.x-dev"
  3546. }
  3547. },
  3548. "autoload": {
  3549. "psr-4": {
  3550. "Psr\\Http\\Message\\": "src/"
  3551. }
  3552. },
  3553. "notification-url": "https://packagist.org/downloads/",
  3554. "license": [
  3555. "MIT"
  3556. ],
  3557. "authors": [
  3558. {
  3559. "name": "PHP-FIG",
  3560. "homepage": "http://www.php-fig.org/"
  3561. }
  3562. ],
  3563. "description": "Common interface for HTTP messages",
  3564. "homepage": "https://github.com/php-fig/http-message",
  3565. "keywords": [
  3566. "http",
  3567. "http-message",
  3568. "psr",
  3569. "psr-7",
  3570. "request",
  3571. "response"
  3572. ],
  3573. "support": {
  3574. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3575. },
  3576. "time": "2023-04-04T09:50:52+00:00"
  3577. },
  3578. {
  3579. "name": "psr/log",
  3580. "version": "3.0.0",
  3581. "source": {
  3582. "type": "git",
  3583. "url": "https://github.com/php-fig/log.git",
  3584. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3585. },
  3586. "dist": {
  3587. "type": "zip",
  3588. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3589. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3590. "shasum": "",
  3591. "mirrors": [
  3592. {
  3593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3594. "preferred": true
  3595. }
  3596. ]
  3597. },
  3598. "require": {
  3599. "php": ">=8.0.0"
  3600. },
  3601. "type": "library",
  3602. "extra": {
  3603. "branch-alias": {
  3604. "dev-master": "3.x-dev"
  3605. }
  3606. },
  3607. "autoload": {
  3608. "psr-4": {
  3609. "Psr\\Log\\": "src"
  3610. }
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "MIT"
  3615. ],
  3616. "authors": [
  3617. {
  3618. "name": "PHP-FIG",
  3619. "homepage": "https://www.php-fig.org/"
  3620. }
  3621. ],
  3622. "description": "Common interface for logging libraries",
  3623. "homepage": "https://github.com/php-fig/log",
  3624. "keywords": [
  3625. "log",
  3626. "psr",
  3627. "psr-3"
  3628. ],
  3629. "support": {
  3630. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3631. },
  3632. "time": "2021-07-14T16:46:02+00:00"
  3633. },
  3634. {
  3635. "name": "psr/simple-cache",
  3636. "version": "3.0.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/php-fig/simple-cache.git",
  3640. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3645. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3646. "shasum": "",
  3647. "mirrors": [
  3648. {
  3649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3650. "preferred": true
  3651. }
  3652. ]
  3653. },
  3654. "require": {
  3655. "php": ">=8.0.0"
  3656. },
  3657. "type": "library",
  3658. "extra": {
  3659. "branch-alias": {
  3660. "dev-master": "3.0.x-dev"
  3661. }
  3662. },
  3663. "autoload": {
  3664. "psr-4": {
  3665. "Psr\\SimpleCache\\": "src/"
  3666. }
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "PHP-FIG",
  3675. "homepage": "https://www.php-fig.org/"
  3676. }
  3677. ],
  3678. "description": "Common interfaces for simple caching",
  3679. "keywords": [
  3680. "cache",
  3681. "caching",
  3682. "psr",
  3683. "psr-16",
  3684. "simple-cache"
  3685. ],
  3686. "support": {
  3687. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3688. },
  3689. "time": "2021-10-29T13:26:27+00:00"
  3690. },
  3691. {
  3692. "name": "psy/psysh",
  3693. "version": "v0.11.17",
  3694. "source": {
  3695. "type": "git",
  3696. "url": "https://github.com/bobthecow/psysh.git",
  3697. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a"
  3698. },
  3699. "dist": {
  3700. "type": "zip",
  3701. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  3702. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  3703. "shasum": "",
  3704. "mirrors": [
  3705. {
  3706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3707. "preferred": true
  3708. }
  3709. ]
  3710. },
  3711. "require": {
  3712. "ext-json": "*",
  3713. "ext-tokenizer": "*",
  3714. "nikic/php-parser": "^4.0 || ^3.1",
  3715. "php": "^8.0 || ^7.0.8",
  3716. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  3717. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  3718. },
  3719. "conflict": {
  3720. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3721. },
  3722. "require-dev": {
  3723. "bamarni/composer-bin-plugin": "^1.2"
  3724. },
  3725. "suggest": {
  3726. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3727. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3728. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3729. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  3730. },
  3731. "bin": [
  3732. "bin/psysh"
  3733. ],
  3734. "type": "library",
  3735. "extra": {
  3736. "branch-alias": {
  3737. "dev-main": "0.11.x-dev"
  3738. }
  3739. },
  3740. "autoload": {
  3741. "files": [
  3742. "src/functions.php"
  3743. ],
  3744. "psr-4": {
  3745. "Psy\\": "src/"
  3746. }
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "Justin Hileman",
  3755. "email": "justin@justinhileman.info",
  3756. "homepage": "http://justinhileman.com"
  3757. }
  3758. ],
  3759. "description": "An interactive shell for modern PHP.",
  3760. "homepage": "http://psysh.org",
  3761. "keywords": [
  3762. "REPL",
  3763. "console",
  3764. "interactive",
  3765. "shell"
  3766. ],
  3767. "support": {
  3768. "issues": "https://github.com/bobthecow/psysh/issues",
  3769. "source": "https://github.com/bobthecow/psysh/tree/v0.11.17"
  3770. },
  3771. "time": "2023-05-05T20:02:42+00:00"
  3772. },
  3773. {
  3774. "name": "ralouphie/getallheaders",
  3775. "version": "3.0.3",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/ralouphie/getallheaders.git",
  3779. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3784. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3785. "shasum": "",
  3786. "mirrors": [
  3787. {
  3788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3789. "preferred": true
  3790. }
  3791. ]
  3792. },
  3793. "require": {
  3794. "php": ">=5.6"
  3795. },
  3796. "require-dev": {
  3797. "php-coveralls/php-coveralls": "^2.1",
  3798. "phpunit/phpunit": "^5 || ^6.5"
  3799. },
  3800. "type": "library",
  3801. "autoload": {
  3802. "files": [
  3803. "src/getallheaders.php"
  3804. ]
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Ralph Khattar",
  3813. "email": "ralph.khattar@gmail.com"
  3814. }
  3815. ],
  3816. "description": "A polyfill for getallheaders.",
  3817. "support": {
  3818. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3819. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3820. },
  3821. "time": "2019-03-08T08:55:37+00:00"
  3822. },
  3823. {
  3824. "name": "ramsey/collection",
  3825. "version": "1.3.0",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/ramsey/collection.git",
  3829. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3834. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3835. "shasum": "",
  3836. "mirrors": [
  3837. {
  3838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3839. "preferred": true
  3840. }
  3841. ]
  3842. },
  3843. "require": {
  3844. "php": "^7.4 || ^8.0",
  3845. "symfony/polyfill-php81": "^1.23"
  3846. },
  3847. "require-dev": {
  3848. "captainhook/plugin-composer": "^5.3",
  3849. "ergebnis/composer-normalize": "^2.28.3",
  3850. "fakerphp/faker": "^1.21",
  3851. "hamcrest/hamcrest-php": "^2.0",
  3852. "jangregor/phpstan-prophecy": "^1.0",
  3853. "mockery/mockery": "^1.5",
  3854. "php-parallel-lint/php-console-highlighter": "^1.0",
  3855. "php-parallel-lint/php-parallel-lint": "^1.3",
  3856. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3857. "phpspec/prophecy-phpunit": "^2.0",
  3858. "phpstan/extension-installer": "^1.2",
  3859. "phpstan/phpstan": "^1.9",
  3860. "phpstan/phpstan-mockery": "^1.1",
  3861. "phpstan/phpstan-phpunit": "^1.3",
  3862. "phpunit/phpunit": "^9.5",
  3863. "psalm/plugin-mockery": "^1.1",
  3864. "psalm/plugin-phpunit": "^0.18.4",
  3865. "ramsey/coding-standard": "^2.0.3",
  3866. "ramsey/conventional-commits": "^1.3",
  3867. "vimeo/psalm": "^5.4"
  3868. },
  3869. "type": "library",
  3870. "extra": {
  3871. "captainhook": {
  3872. "force-install": true
  3873. },
  3874. "ramsey/conventional-commits": {
  3875. "configFile": "conventional-commits.json"
  3876. }
  3877. },
  3878. "autoload": {
  3879. "psr-4": {
  3880. "Ramsey\\Collection\\": "src/"
  3881. }
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "MIT"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "Ben Ramsey",
  3890. "email": "ben@benramsey.com",
  3891. "homepage": "https://benramsey.com"
  3892. }
  3893. ],
  3894. "description": "A PHP library for representing and manipulating collections.",
  3895. "keywords": [
  3896. "array",
  3897. "collection",
  3898. "hash",
  3899. "map",
  3900. "queue",
  3901. "set"
  3902. ],
  3903. "support": {
  3904. "issues": "https://github.com/ramsey/collection/issues",
  3905. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  3906. },
  3907. "funding": [
  3908. {
  3909. "url": "https://github.com/ramsey",
  3910. "type": "github"
  3911. },
  3912. {
  3913. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3914. "type": "tidelift"
  3915. }
  3916. ],
  3917. "time": "2022-12-27T19:12:24+00:00"
  3918. },
  3919. {
  3920. "name": "ramsey/uuid",
  3921. "version": "4.7.4",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://github.com/ramsey/uuid.git",
  3925. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  3930. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  3931. "shasum": "",
  3932. "mirrors": [
  3933. {
  3934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3935. "preferred": true
  3936. }
  3937. ]
  3938. },
  3939. "require": {
  3940. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3941. "ext-json": "*",
  3942. "php": "^8.0",
  3943. "ramsey/collection": "^1.2 || ^2.0"
  3944. },
  3945. "replace": {
  3946. "rhumsaa/uuid": "self.version"
  3947. },
  3948. "require-dev": {
  3949. "captainhook/captainhook": "^5.10",
  3950. "captainhook/plugin-composer": "^5.3",
  3951. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3952. "doctrine/annotations": "^1.8",
  3953. "ergebnis/composer-normalize": "^2.15",
  3954. "mockery/mockery": "^1.3",
  3955. "paragonie/random-lib": "^2",
  3956. "php-mock/php-mock": "^2.2",
  3957. "php-mock/php-mock-mockery": "^1.3",
  3958. "php-parallel-lint/php-parallel-lint": "^1.1",
  3959. "phpbench/phpbench": "^1.0",
  3960. "phpstan/extension-installer": "^1.1",
  3961. "phpstan/phpstan": "^1.8",
  3962. "phpstan/phpstan-mockery": "^1.1",
  3963. "phpstan/phpstan-phpunit": "^1.1",
  3964. "phpunit/phpunit": "^8.5 || ^9",
  3965. "ramsey/composer-repl": "^1.4",
  3966. "slevomat/coding-standard": "^8.4",
  3967. "squizlabs/php_codesniffer": "^3.5",
  3968. "vimeo/psalm": "^4.9"
  3969. },
  3970. "suggest": {
  3971. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3972. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3973. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3974. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3975. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3976. },
  3977. "type": "library",
  3978. "extra": {
  3979. "captainhook": {
  3980. "force-install": true
  3981. }
  3982. },
  3983. "autoload": {
  3984. "files": [
  3985. "src/functions.php"
  3986. ],
  3987. "psr-4": {
  3988. "Ramsey\\Uuid\\": "src/"
  3989. }
  3990. },
  3991. "notification-url": "https://packagist.org/downloads/",
  3992. "license": [
  3993. "MIT"
  3994. ],
  3995. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3996. "keywords": [
  3997. "guid",
  3998. "identifier",
  3999. "uuid"
  4000. ],
  4001. "support": {
  4002. "issues": "https://github.com/ramsey/uuid/issues",
  4003. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4004. },
  4005. "funding": [
  4006. {
  4007. "url": "https://github.com/ramsey",
  4008. "type": "github"
  4009. },
  4010. {
  4011. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4012. "type": "tidelift"
  4013. }
  4014. ],
  4015. "time": "2023-04-15T23:01:58+00:00"
  4016. },
  4017. {
  4018. "name": "symfony/cache",
  4019. "version": "v6.0.19",
  4020. "source": {
  4021. "type": "git",
  4022. "url": "https://github.com/symfony/cache.git",
  4023. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  4024. },
  4025. "dist": {
  4026. "type": "zip",
  4027. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  4028. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  4029. "shasum": "",
  4030. "mirrors": [
  4031. {
  4032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4033. "preferred": true
  4034. }
  4035. ]
  4036. },
  4037. "require": {
  4038. "php": ">=8.0.2",
  4039. "psr/cache": "^2.0|^3.0",
  4040. "psr/log": "^1.1|^2|^3",
  4041. "symfony/cache-contracts": "^1.1.7|^2|^3",
  4042. "symfony/service-contracts": "^1.1|^2|^3",
  4043. "symfony/var-exporter": "^5.4|^6.0"
  4044. },
  4045. "conflict": {
  4046. "doctrine/dbal": "<2.13.1",
  4047. "symfony/dependency-injection": "<5.4",
  4048. "symfony/http-kernel": "<5.4",
  4049. "symfony/var-dumper": "<5.4"
  4050. },
  4051. "provide": {
  4052. "psr/cache-implementation": "2.0|3.0",
  4053. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4054. "symfony/cache-implementation": "1.1|2.0|3.0"
  4055. },
  4056. "require-dev": {
  4057. "cache/integration-tests": "dev-master",
  4058. "doctrine/dbal": "^2.13.1|^3.0",
  4059. "predis/predis": "^1.1",
  4060. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4061. "symfony/config": "^5.4|^6.0",
  4062. "symfony/dependency-injection": "^5.4|^6.0",
  4063. "symfony/filesystem": "^5.4|^6.0",
  4064. "symfony/http-kernel": "^5.4|^6.0",
  4065. "symfony/messenger": "^5.4|^6.0",
  4066. "symfony/var-dumper": "^5.4|^6.0"
  4067. },
  4068. "type": "library",
  4069. "autoload": {
  4070. "psr-4": {
  4071. "Symfony\\Component\\Cache\\": ""
  4072. },
  4073. "exclude-from-classmap": [
  4074. "/Tests/"
  4075. ]
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "authors": [
  4082. {
  4083. "name": "Nicolas Grekas",
  4084. "email": "p@tchwork.com"
  4085. },
  4086. {
  4087. "name": "Symfony Community",
  4088. "homepage": "https://symfony.com/contributors"
  4089. }
  4090. ],
  4091. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4092. "homepage": "https://symfony.com",
  4093. "keywords": [
  4094. "caching",
  4095. "psr6"
  4096. ],
  4097. "support": {
  4098. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  4099. },
  4100. "funding": [
  4101. {
  4102. "url": "https://symfony.com/sponsor",
  4103. "type": "custom"
  4104. },
  4105. {
  4106. "url": "https://github.com/fabpot",
  4107. "type": "github"
  4108. },
  4109. {
  4110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4111. "type": "tidelift"
  4112. }
  4113. ],
  4114. "time": "2023-01-20T17:44:14+00:00"
  4115. },
  4116. {
  4117. "name": "symfony/cache-contracts",
  4118. "version": "v3.0.2",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/symfony/cache-contracts.git",
  4122. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4127. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4128. "shasum": "",
  4129. "mirrors": [
  4130. {
  4131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4132. "preferred": true
  4133. }
  4134. ]
  4135. },
  4136. "require": {
  4137. "php": ">=8.0.2",
  4138. "psr/cache": "^3.0"
  4139. },
  4140. "suggest": {
  4141. "symfony/cache-implementation": ""
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "branch-alias": {
  4146. "dev-main": "3.0-dev"
  4147. },
  4148. "thanks": {
  4149. "name": "symfony/contracts",
  4150. "url": "https://github.com/symfony/contracts"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "Symfony\\Contracts\\Cache\\": ""
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "Nicolas Grekas",
  4165. "email": "p@tchwork.com"
  4166. },
  4167. {
  4168. "name": "Symfony Community",
  4169. "homepage": "https://symfony.com/contributors"
  4170. }
  4171. ],
  4172. "description": "Generic abstractions related to caching",
  4173. "homepage": "https://symfony.com",
  4174. "keywords": [
  4175. "abstractions",
  4176. "contracts",
  4177. "decoupling",
  4178. "interfaces",
  4179. "interoperability",
  4180. "standards"
  4181. ],
  4182. "support": {
  4183. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  4184. },
  4185. "funding": [
  4186. {
  4187. "url": "https://symfony.com/sponsor",
  4188. "type": "custom"
  4189. },
  4190. {
  4191. "url": "https://github.com/fabpot",
  4192. "type": "github"
  4193. },
  4194. {
  4195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4196. "type": "tidelift"
  4197. }
  4198. ],
  4199. "time": "2022-01-02T09:55:41+00:00"
  4200. },
  4201. {
  4202. "name": "symfony/console",
  4203. "version": "v6.0.19",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/symfony/console.git",
  4207. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4212. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4213. "shasum": "",
  4214. "mirrors": [
  4215. {
  4216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4217. "preferred": true
  4218. }
  4219. ]
  4220. },
  4221. "require": {
  4222. "php": ">=8.0.2",
  4223. "symfony/polyfill-mbstring": "~1.0",
  4224. "symfony/service-contracts": "^1.1|^2|^3",
  4225. "symfony/string": "^5.4|^6.0"
  4226. },
  4227. "conflict": {
  4228. "symfony/dependency-injection": "<5.4",
  4229. "symfony/dotenv": "<5.4",
  4230. "symfony/event-dispatcher": "<5.4",
  4231. "symfony/lock": "<5.4",
  4232. "symfony/process": "<5.4"
  4233. },
  4234. "provide": {
  4235. "psr/log-implementation": "1.0|2.0|3.0"
  4236. },
  4237. "require-dev": {
  4238. "psr/log": "^1|^2|^3",
  4239. "symfony/config": "^5.4|^6.0",
  4240. "symfony/dependency-injection": "^5.4|^6.0",
  4241. "symfony/event-dispatcher": "^5.4|^6.0",
  4242. "symfony/lock": "^5.4|^6.0",
  4243. "symfony/process": "^5.4|^6.0",
  4244. "symfony/var-dumper": "^5.4|^6.0"
  4245. },
  4246. "suggest": {
  4247. "psr/log": "For using the console logger",
  4248. "symfony/event-dispatcher": "",
  4249. "symfony/lock": "",
  4250. "symfony/process": ""
  4251. },
  4252. "type": "library",
  4253. "autoload": {
  4254. "psr-4": {
  4255. "Symfony\\Component\\Console\\": ""
  4256. },
  4257. "exclude-from-classmap": [
  4258. "/Tests/"
  4259. ]
  4260. },
  4261. "notification-url": "https://packagist.org/downloads/",
  4262. "license": [
  4263. "MIT"
  4264. ],
  4265. "authors": [
  4266. {
  4267. "name": "Fabien Potencier",
  4268. "email": "fabien@symfony.com"
  4269. },
  4270. {
  4271. "name": "Symfony Community",
  4272. "homepage": "https://symfony.com/contributors"
  4273. }
  4274. ],
  4275. "description": "Eases the creation of beautiful and testable command line interfaces",
  4276. "homepage": "https://symfony.com",
  4277. "keywords": [
  4278. "cli",
  4279. "command line",
  4280. "console",
  4281. "terminal"
  4282. ],
  4283. "support": {
  4284. "source": "https://github.com/symfony/console/tree/v6.0.19"
  4285. },
  4286. "funding": [
  4287. {
  4288. "url": "https://symfony.com/sponsor",
  4289. "type": "custom"
  4290. },
  4291. {
  4292. "url": "https://github.com/fabpot",
  4293. "type": "github"
  4294. },
  4295. {
  4296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4297. "type": "tidelift"
  4298. }
  4299. ],
  4300. "time": "2023-01-01T08:36:10+00:00"
  4301. },
  4302. {
  4303. "name": "symfony/css-selector",
  4304. "version": "v6.0.19",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/symfony/css-selector.git",
  4308. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4313. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4314. "shasum": "",
  4315. "mirrors": [
  4316. {
  4317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4318. "preferred": true
  4319. }
  4320. ]
  4321. },
  4322. "require": {
  4323. "php": ">=8.0.2"
  4324. },
  4325. "type": "library",
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Symfony\\Component\\CssSelector\\": ""
  4329. },
  4330. "exclude-from-classmap": [
  4331. "/Tests/"
  4332. ]
  4333. },
  4334. "notification-url": "https://packagist.org/downloads/",
  4335. "license": [
  4336. "MIT"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "Fabien Potencier",
  4341. "email": "fabien@symfony.com"
  4342. },
  4343. {
  4344. "name": "Jean-François Simon",
  4345. "email": "jeanfrancois.simon@sensiolabs.com"
  4346. },
  4347. {
  4348. "name": "Symfony Community",
  4349. "homepage": "https://symfony.com/contributors"
  4350. }
  4351. ],
  4352. "description": "Converts CSS selectors to XPath expressions",
  4353. "homepage": "https://symfony.com",
  4354. "support": {
  4355. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  4356. },
  4357. "funding": [
  4358. {
  4359. "url": "https://symfony.com/sponsor",
  4360. "type": "custom"
  4361. },
  4362. {
  4363. "url": "https://github.com/fabpot",
  4364. "type": "github"
  4365. },
  4366. {
  4367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4368. "type": "tidelift"
  4369. }
  4370. ],
  4371. "time": "2023-01-01T08:36:10+00:00"
  4372. },
  4373. {
  4374. "name": "symfony/deprecation-contracts",
  4375. "version": "v3.0.2",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/symfony/deprecation-contracts.git",
  4379. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4384. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4385. "shasum": "",
  4386. "mirrors": [
  4387. {
  4388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4389. "preferred": true
  4390. }
  4391. ]
  4392. },
  4393. "require": {
  4394. "php": ">=8.0.2"
  4395. },
  4396. "type": "library",
  4397. "extra": {
  4398. "branch-alias": {
  4399. "dev-main": "3.0-dev"
  4400. },
  4401. "thanks": {
  4402. "name": "symfony/contracts",
  4403. "url": "https://github.com/symfony/contracts"
  4404. }
  4405. },
  4406. "autoload": {
  4407. "files": [
  4408. "function.php"
  4409. ]
  4410. },
  4411. "notification-url": "https://packagist.org/downloads/",
  4412. "license": [
  4413. "MIT"
  4414. ],
  4415. "authors": [
  4416. {
  4417. "name": "Nicolas Grekas",
  4418. "email": "p@tchwork.com"
  4419. },
  4420. {
  4421. "name": "Symfony Community",
  4422. "homepage": "https://symfony.com/contributors"
  4423. }
  4424. ],
  4425. "description": "A generic function and convention to trigger deprecation notices",
  4426. "homepage": "https://symfony.com",
  4427. "support": {
  4428. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  4429. },
  4430. "funding": [
  4431. {
  4432. "url": "https://symfony.com/sponsor",
  4433. "type": "custom"
  4434. },
  4435. {
  4436. "url": "https://github.com/fabpot",
  4437. "type": "github"
  4438. },
  4439. {
  4440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4441. "type": "tidelift"
  4442. }
  4443. ],
  4444. "time": "2022-01-02T09:55:41+00:00"
  4445. },
  4446. {
  4447. "name": "symfony/error-handler",
  4448. "version": "v6.0.19",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/symfony/error-handler.git",
  4452. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67",
  4457. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67",
  4458. "shasum": "",
  4459. "mirrors": [
  4460. {
  4461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4462. "preferred": true
  4463. }
  4464. ]
  4465. },
  4466. "require": {
  4467. "php": ">=8.0.2",
  4468. "psr/log": "^1|^2|^3",
  4469. "symfony/var-dumper": "^5.4|^6.0"
  4470. },
  4471. "require-dev": {
  4472. "symfony/deprecation-contracts": "^2.1|^3",
  4473. "symfony/http-kernel": "^5.4|^6.0",
  4474. "symfony/serializer": "^5.4|^6.0"
  4475. },
  4476. "bin": [
  4477. "Resources/bin/patch-type-declarations"
  4478. ],
  4479. "type": "library",
  4480. "autoload": {
  4481. "psr-4": {
  4482. "Symfony\\Component\\ErrorHandler\\": ""
  4483. },
  4484. "exclude-from-classmap": [
  4485. "/Tests/"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Fabien Potencier",
  4495. "email": "fabien@symfony.com"
  4496. },
  4497. {
  4498. "name": "Symfony Community",
  4499. "homepage": "https://symfony.com/contributors"
  4500. }
  4501. ],
  4502. "description": "Provides tools to manage errors and ease debugging PHP code",
  4503. "homepage": "https://symfony.com",
  4504. "support": {
  4505. "source": "https://github.com/symfony/error-handler/tree/v6.0.19"
  4506. },
  4507. "funding": [
  4508. {
  4509. "url": "https://symfony.com/sponsor",
  4510. "type": "custom"
  4511. },
  4512. {
  4513. "url": "https://github.com/fabpot",
  4514. "type": "github"
  4515. },
  4516. {
  4517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4518. "type": "tidelift"
  4519. }
  4520. ],
  4521. "time": "2023-01-01T08:36:10+00:00"
  4522. },
  4523. {
  4524. "name": "symfony/event-dispatcher",
  4525. "version": "v6.0.19",
  4526. "source": {
  4527. "type": "git",
  4528. "url": "https://github.com/symfony/event-dispatcher.git",
  4529. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  4530. },
  4531. "dist": {
  4532. "type": "zip",
  4533. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  4534. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  4535. "shasum": "",
  4536. "mirrors": [
  4537. {
  4538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4539. "preferred": true
  4540. }
  4541. ]
  4542. },
  4543. "require": {
  4544. "php": ">=8.0.2",
  4545. "symfony/event-dispatcher-contracts": "^2|^3"
  4546. },
  4547. "conflict": {
  4548. "symfony/dependency-injection": "<5.4"
  4549. },
  4550. "provide": {
  4551. "psr/event-dispatcher-implementation": "1.0",
  4552. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4553. },
  4554. "require-dev": {
  4555. "psr/log": "^1|^2|^3",
  4556. "symfony/config": "^5.4|^6.0",
  4557. "symfony/dependency-injection": "^5.4|^6.0",
  4558. "symfony/error-handler": "^5.4|^6.0",
  4559. "symfony/expression-language": "^5.4|^6.0",
  4560. "symfony/http-foundation": "^5.4|^6.0",
  4561. "symfony/service-contracts": "^1.1|^2|^3",
  4562. "symfony/stopwatch": "^5.4|^6.0"
  4563. },
  4564. "suggest": {
  4565. "symfony/dependency-injection": "",
  4566. "symfony/http-kernel": ""
  4567. },
  4568. "type": "library",
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Symfony\\Component\\EventDispatcher\\": ""
  4572. },
  4573. "exclude-from-classmap": [
  4574. "/Tests/"
  4575. ]
  4576. },
  4577. "notification-url": "https://packagist.org/downloads/",
  4578. "license": [
  4579. "MIT"
  4580. ],
  4581. "authors": [
  4582. {
  4583. "name": "Fabien Potencier",
  4584. "email": "fabien@symfony.com"
  4585. },
  4586. {
  4587. "name": "Symfony Community",
  4588. "homepage": "https://symfony.com/contributors"
  4589. }
  4590. ],
  4591. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4592. "homepage": "https://symfony.com",
  4593. "support": {
  4594. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  4595. },
  4596. "funding": [
  4597. {
  4598. "url": "https://symfony.com/sponsor",
  4599. "type": "custom"
  4600. },
  4601. {
  4602. "url": "https://github.com/fabpot",
  4603. "type": "github"
  4604. },
  4605. {
  4606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4607. "type": "tidelift"
  4608. }
  4609. ],
  4610. "time": "2023-01-01T08:36:10+00:00"
  4611. },
  4612. {
  4613. "name": "symfony/event-dispatcher-contracts",
  4614. "version": "v3.0.2",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4618. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  4623. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  4624. "shasum": "",
  4625. "mirrors": [
  4626. {
  4627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4628. "preferred": true
  4629. }
  4630. ]
  4631. },
  4632. "require": {
  4633. "php": ">=8.0.2",
  4634. "psr/event-dispatcher": "^1"
  4635. },
  4636. "suggest": {
  4637. "symfony/event-dispatcher-implementation": ""
  4638. },
  4639. "type": "library",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-main": "3.0-dev"
  4643. },
  4644. "thanks": {
  4645. "name": "symfony/contracts",
  4646. "url": "https://github.com/symfony/contracts"
  4647. }
  4648. },
  4649. "autoload": {
  4650. "psr-4": {
  4651. "Symfony\\Contracts\\EventDispatcher\\": ""
  4652. }
  4653. },
  4654. "notification-url": "https://packagist.org/downloads/",
  4655. "license": [
  4656. "MIT"
  4657. ],
  4658. "authors": [
  4659. {
  4660. "name": "Nicolas Grekas",
  4661. "email": "p@tchwork.com"
  4662. },
  4663. {
  4664. "name": "Symfony Community",
  4665. "homepage": "https://symfony.com/contributors"
  4666. }
  4667. ],
  4668. "description": "Generic abstractions related to dispatching event",
  4669. "homepage": "https://symfony.com",
  4670. "keywords": [
  4671. "abstractions",
  4672. "contracts",
  4673. "decoupling",
  4674. "interfaces",
  4675. "interoperability",
  4676. "standards"
  4677. ],
  4678. "support": {
  4679. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  4680. },
  4681. "funding": [
  4682. {
  4683. "url": "https://symfony.com/sponsor",
  4684. "type": "custom"
  4685. },
  4686. {
  4687. "url": "https://github.com/fabpot",
  4688. "type": "github"
  4689. },
  4690. {
  4691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4692. "type": "tidelift"
  4693. }
  4694. ],
  4695. "time": "2022-01-02T09:55:41+00:00"
  4696. },
  4697. {
  4698. "name": "symfony/finder",
  4699. "version": "v6.0.19",
  4700. "source": {
  4701. "type": "git",
  4702. "url": "https://github.com/symfony/finder.git",
  4703. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
  4704. },
  4705. "dist": {
  4706. "type": "zip",
  4707. "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
  4708. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
  4709. "shasum": "",
  4710. "mirrors": [
  4711. {
  4712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4713. "preferred": true
  4714. }
  4715. ]
  4716. },
  4717. "require": {
  4718. "php": ">=8.0.2"
  4719. },
  4720. "type": "library",
  4721. "autoload": {
  4722. "psr-4": {
  4723. "Symfony\\Component\\Finder\\": ""
  4724. },
  4725. "exclude-from-classmap": [
  4726. "/Tests/"
  4727. ]
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Fabien Potencier",
  4736. "email": "fabien@symfony.com"
  4737. },
  4738. {
  4739. "name": "Symfony Community",
  4740. "homepage": "https://symfony.com/contributors"
  4741. }
  4742. ],
  4743. "description": "Finds files and directories via an intuitive fluent interface",
  4744. "homepage": "https://symfony.com",
  4745. "support": {
  4746. "source": "https://github.com/symfony/finder/tree/v6.0.19"
  4747. },
  4748. "funding": [
  4749. {
  4750. "url": "https://symfony.com/sponsor",
  4751. "type": "custom"
  4752. },
  4753. {
  4754. "url": "https://github.com/fabpot",
  4755. "type": "github"
  4756. },
  4757. {
  4758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4759. "type": "tidelift"
  4760. }
  4761. ],
  4762. "time": "2023-01-20T17:44:14+00:00"
  4763. },
  4764. {
  4765. "name": "symfony/http-client",
  4766. "version": "v6.0.20",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://github.com/symfony/http-client.git",
  4770. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://api.github.com/repos/symfony/http-client/zipball/541c04560da1875f62c963c3aab6ea12a7314e11",
  4775. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11",
  4776. "shasum": "",
  4777. "mirrors": [
  4778. {
  4779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4780. "preferred": true
  4781. }
  4782. ]
  4783. },
  4784. "require": {
  4785. "php": ">=8.0.2",
  4786. "psr/log": "^1|^2|^3",
  4787. "symfony/http-client-contracts": "^3",
  4788. "symfony/service-contracts": "^1.0|^2|^3"
  4789. },
  4790. "provide": {
  4791. "php-http/async-client-implementation": "*",
  4792. "php-http/client-implementation": "*",
  4793. "psr/http-client-implementation": "1.0",
  4794. "symfony/http-client-implementation": "3.0"
  4795. },
  4796. "require-dev": {
  4797. "amphp/amp": "^2.5",
  4798. "amphp/http-client": "^4.2.1",
  4799. "amphp/http-tunnel": "^1.0",
  4800. "amphp/socket": "^1.1",
  4801. "guzzlehttp/promises": "^1.4",
  4802. "nyholm/psr7": "^1.0",
  4803. "php-http/httplug": "^1.0|^2.0",
  4804. "psr/http-client": "^1.0",
  4805. "symfony/dependency-injection": "^5.4|^6.0",
  4806. "symfony/http-kernel": "^5.4|^6.0",
  4807. "symfony/process": "^5.4|^6.0",
  4808. "symfony/stopwatch": "^5.4|^6.0"
  4809. },
  4810. "type": "library",
  4811. "autoload": {
  4812. "psr-4": {
  4813. "Symfony\\Component\\HttpClient\\": ""
  4814. },
  4815. "exclude-from-classmap": [
  4816. "/Tests/"
  4817. ]
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "MIT"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "Nicolas Grekas",
  4826. "email": "p@tchwork.com"
  4827. },
  4828. {
  4829. "name": "Symfony Community",
  4830. "homepage": "https://symfony.com/contributors"
  4831. }
  4832. ],
  4833. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4834. "homepage": "https://symfony.com",
  4835. "support": {
  4836. "source": "https://github.com/symfony/http-client/tree/v6.0.20"
  4837. },
  4838. "funding": [
  4839. {
  4840. "url": "https://symfony.com/sponsor",
  4841. "type": "custom"
  4842. },
  4843. {
  4844. "url": "https://github.com/fabpot",
  4845. "type": "github"
  4846. },
  4847. {
  4848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4849. "type": "tidelift"
  4850. }
  4851. ],
  4852. "time": "2023-01-30T15:41:07+00:00"
  4853. },
  4854. {
  4855. "name": "symfony/http-client-contracts",
  4856. "version": "v3.0.2",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/symfony/http-client-contracts.git",
  4860. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4865. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4866. "shasum": "",
  4867. "mirrors": [
  4868. {
  4869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4870. "preferred": true
  4871. }
  4872. ]
  4873. },
  4874. "require": {
  4875. "php": ">=8.0.2"
  4876. },
  4877. "suggest": {
  4878. "symfony/http-client-implementation": ""
  4879. },
  4880. "type": "library",
  4881. "extra": {
  4882. "branch-alias": {
  4883. "dev-main": "3.0-dev"
  4884. },
  4885. "thanks": {
  4886. "name": "symfony/contracts",
  4887. "url": "https://github.com/symfony/contracts"
  4888. }
  4889. },
  4890. "autoload": {
  4891. "psr-4": {
  4892. "Symfony\\Contracts\\HttpClient\\": ""
  4893. }
  4894. },
  4895. "notification-url": "https://packagist.org/downloads/",
  4896. "license": [
  4897. "MIT"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "Nicolas Grekas",
  4902. "email": "p@tchwork.com"
  4903. },
  4904. {
  4905. "name": "Symfony Community",
  4906. "homepage": "https://symfony.com/contributors"
  4907. }
  4908. ],
  4909. "description": "Generic abstractions related to HTTP clients",
  4910. "homepage": "https://symfony.com",
  4911. "keywords": [
  4912. "abstractions",
  4913. "contracts",
  4914. "decoupling",
  4915. "interfaces",
  4916. "interoperability",
  4917. "standards"
  4918. ],
  4919. "support": {
  4920. "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.2"
  4921. },
  4922. "funding": [
  4923. {
  4924. "url": "https://symfony.com/sponsor",
  4925. "type": "custom"
  4926. },
  4927. {
  4928. "url": "https://github.com/fabpot",
  4929. "type": "github"
  4930. },
  4931. {
  4932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4933. "type": "tidelift"
  4934. }
  4935. ],
  4936. "time": "2022-04-12T16:11:42+00:00"
  4937. },
  4938. {
  4939. "name": "symfony/http-foundation",
  4940. "version": "v6.0.20",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://github.com/symfony/http-foundation.git",
  4944. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4949. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4950. "shasum": "",
  4951. "mirrors": [
  4952. {
  4953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4954. "preferred": true
  4955. }
  4956. ]
  4957. },
  4958. "require": {
  4959. "php": ">=8.0.2",
  4960. "symfony/deprecation-contracts": "^2.1|^3",
  4961. "symfony/polyfill-mbstring": "~1.1"
  4962. },
  4963. "require-dev": {
  4964. "predis/predis": "~1.0",
  4965. "symfony/cache": "^5.4|^6.0",
  4966. "symfony/dependency-injection": "^5.4|^6.0",
  4967. "symfony/expression-language": "^5.4|^6.0",
  4968. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4969. "symfony/mime": "^5.4|^6.0",
  4970. "symfony/rate-limiter": "^5.2|^6.0"
  4971. },
  4972. "suggest": {
  4973. "symfony/mime": "To use the file extension guesser"
  4974. },
  4975. "type": "library",
  4976. "autoload": {
  4977. "psr-4": {
  4978. "Symfony\\Component\\HttpFoundation\\": ""
  4979. },
  4980. "exclude-from-classmap": [
  4981. "/Tests/"
  4982. ]
  4983. },
  4984. "notification-url": "https://packagist.org/downloads/",
  4985. "license": [
  4986. "MIT"
  4987. ],
  4988. "authors": [
  4989. {
  4990. "name": "Fabien Potencier",
  4991. "email": "fabien@symfony.com"
  4992. },
  4993. {
  4994. "name": "Symfony Community",
  4995. "homepage": "https://symfony.com/contributors"
  4996. }
  4997. ],
  4998. "description": "Defines an object-oriented layer for the HTTP specification",
  4999. "homepage": "https://symfony.com",
  5000. "support": {
  5001. "source": "https://github.com/symfony/http-foundation/tree/v6.0.20"
  5002. },
  5003. "funding": [
  5004. {
  5005. "url": "https://symfony.com/sponsor",
  5006. "type": "custom"
  5007. },
  5008. {
  5009. "url": "https://github.com/fabpot",
  5010. "type": "github"
  5011. },
  5012. {
  5013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5014. "type": "tidelift"
  5015. }
  5016. ],
  5017. "time": "2023-01-30T15:41:07+00:00"
  5018. },
  5019. {
  5020. "name": "symfony/http-kernel",
  5021. "version": "v6.0.20",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://github.com/symfony/http-kernel.git",
  5025. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349",
  5030. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349",
  5031. "shasum": "",
  5032. "mirrors": [
  5033. {
  5034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5035. "preferred": true
  5036. }
  5037. ]
  5038. },
  5039. "require": {
  5040. "php": ">=8.0.2",
  5041. "psr/log": "^1|^2|^3",
  5042. "symfony/error-handler": "^5.4|^6.0",
  5043. "symfony/event-dispatcher": "^5.4|^6.0",
  5044. "symfony/http-foundation": "^5.4|^6.0",
  5045. "symfony/polyfill-ctype": "^1.8"
  5046. },
  5047. "conflict": {
  5048. "symfony/browser-kit": "<5.4",
  5049. "symfony/cache": "<5.4",
  5050. "symfony/config": "<5.4",
  5051. "symfony/console": "<5.4",
  5052. "symfony/dependency-injection": "<5.4",
  5053. "symfony/doctrine-bridge": "<5.4",
  5054. "symfony/form": "<5.4",
  5055. "symfony/http-client": "<5.4",
  5056. "symfony/mailer": "<5.4",
  5057. "symfony/messenger": "<5.4",
  5058. "symfony/translation": "<5.4",
  5059. "symfony/twig-bridge": "<5.4",
  5060. "symfony/validator": "<5.4",
  5061. "twig/twig": "<2.13"
  5062. },
  5063. "provide": {
  5064. "psr/log-implementation": "1.0|2.0|3.0"
  5065. },
  5066. "require-dev": {
  5067. "psr/cache": "^1.0|^2.0|^3.0",
  5068. "symfony/browser-kit": "^5.4|^6.0",
  5069. "symfony/config": "^5.4|^6.0",
  5070. "symfony/console": "^5.4|^6.0",
  5071. "symfony/css-selector": "^5.4|^6.0",
  5072. "symfony/dependency-injection": "^5.4|^6.0",
  5073. "symfony/dom-crawler": "^5.4|^6.0",
  5074. "symfony/expression-language": "^5.4|^6.0",
  5075. "symfony/finder": "^5.4|^6.0",
  5076. "symfony/http-client-contracts": "^1.1|^2|^3",
  5077. "symfony/process": "^5.4|^6.0",
  5078. "symfony/routing": "^5.4|^6.0",
  5079. "symfony/stopwatch": "^5.4|^6.0",
  5080. "symfony/translation": "^5.4|^6.0",
  5081. "symfony/translation-contracts": "^1.1|^2|^3",
  5082. "twig/twig": "^2.13|^3.0.4"
  5083. },
  5084. "suggest": {
  5085. "symfony/browser-kit": "",
  5086. "symfony/config": "",
  5087. "symfony/console": "",
  5088. "symfony/dependency-injection": ""
  5089. },
  5090. "type": "library",
  5091. "autoload": {
  5092. "psr-4": {
  5093. "Symfony\\Component\\HttpKernel\\": ""
  5094. },
  5095. "exclude-from-classmap": [
  5096. "/Tests/"
  5097. ]
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "MIT"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "Fabien Potencier",
  5106. "email": "fabien@symfony.com"
  5107. },
  5108. {
  5109. "name": "Symfony Community",
  5110. "homepage": "https://symfony.com/contributors"
  5111. }
  5112. ],
  5113. "description": "Provides a structured process for converting a Request into a Response",
  5114. "homepage": "https://symfony.com",
  5115. "support": {
  5116. "source": "https://github.com/symfony/http-kernel/tree/v6.0.20"
  5117. },
  5118. "funding": [
  5119. {
  5120. "url": "https://symfony.com/sponsor",
  5121. "type": "custom"
  5122. },
  5123. {
  5124. "url": "https://github.com/fabpot",
  5125. "type": "github"
  5126. },
  5127. {
  5128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5129. "type": "tidelift"
  5130. }
  5131. ],
  5132. "time": "2023-02-01T08:22:55+00:00"
  5133. },
  5134. {
  5135. "name": "symfony/mailer",
  5136. "version": "v6.0.19",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/symfony/mailer.git",
  5140. "reference": "cd60799210c488f545ddde2444dc1aa548322872"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872",
  5145. "reference": "cd60799210c488f545ddde2444dc1aa548322872",
  5146. "shasum": "",
  5147. "mirrors": [
  5148. {
  5149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5150. "preferred": true
  5151. }
  5152. ]
  5153. },
  5154. "require": {
  5155. "egulias/email-validator": "^2.1.10|^3|^4",
  5156. "php": ">=8.0.2",
  5157. "psr/event-dispatcher": "^1",
  5158. "psr/log": "^1|^2|^3",
  5159. "symfony/event-dispatcher": "^5.4|^6.0",
  5160. "symfony/mime": "^5.4|^6.0",
  5161. "symfony/service-contracts": "^1.1|^2|^3"
  5162. },
  5163. "conflict": {
  5164. "symfony/http-kernel": "<5.4"
  5165. },
  5166. "require-dev": {
  5167. "symfony/http-client-contracts": "^1.1|^2|^3",
  5168. "symfony/messenger": "^5.4|^6.0"
  5169. },
  5170. "type": "library",
  5171. "autoload": {
  5172. "psr-4": {
  5173. "Symfony\\Component\\Mailer\\": ""
  5174. },
  5175. "exclude-from-classmap": [
  5176. "/Tests/"
  5177. ]
  5178. },
  5179. "notification-url": "https://packagist.org/downloads/",
  5180. "license": [
  5181. "MIT"
  5182. ],
  5183. "authors": [
  5184. {
  5185. "name": "Fabien Potencier",
  5186. "email": "fabien@symfony.com"
  5187. },
  5188. {
  5189. "name": "Symfony Community",
  5190. "homepage": "https://symfony.com/contributors"
  5191. }
  5192. ],
  5193. "description": "Helps sending emails",
  5194. "homepage": "https://symfony.com",
  5195. "support": {
  5196. "source": "https://github.com/symfony/mailer/tree/v6.0.19"
  5197. },
  5198. "funding": [
  5199. {
  5200. "url": "https://symfony.com/sponsor",
  5201. "type": "custom"
  5202. },
  5203. {
  5204. "url": "https://github.com/fabpot",
  5205. "type": "github"
  5206. },
  5207. {
  5208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5209. "type": "tidelift"
  5210. }
  5211. ],
  5212. "time": "2023-01-11T11:50:03+00:00"
  5213. },
  5214. {
  5215. "name": "symfony/mime",
  5216. "version": "v6.0.19",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://github.com/symfony/mime.git",
  5220. "reference": "d7052547a0070cbeadd474e172b527a00d657301"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301",
  5225. "reference": "d7052547a0070cbeadd474e172b527a00d657301",
  5226. "shasum": "",
  5227. "mirrors": [
  5228. {
  5229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5230. "preferred": true
  5231. }
  5232. ]
  5233. },
  5234. "require": {
  5235. "php": ">=8.0.2",
  5236. "symfony/polyfill-intl-idn": "^1.10",
  5237. "symfony/polyfill-mbstring": "^1.0"
  5238. },
  5239. "conflict": {
  5240. "egulias/email-validator": "~3.0.0",
  5241. "phpdocumentor/reflection-docblock": "<3.2.2",
  5242. "phpdocumentor/type-resolver": "<1.4.0",
  5243. "symfony/mailer": "<5.4",
  5244. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  5245. },
  5246. "require-dev": {
  5247. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5248. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5249. "symfony/dependency-injection": "^5.4|^6.0",
  5250. "symfony/property-access": "^5.4|^6.0",
  5251. "symfony/property-info": "^5.4|^6.0",
  5252. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  5253. },
  5254. "type": "library",
  5255. "autoload": {
  5256. "psr-4": {
  5257. "Symfony\\Component\\Mime\\": ""
  5258. },
  5259. "exclude-from-classmap": [
  5260. "/Tests/"
  5261. ]
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "MIT"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "Fabien Potencier",
  5270. "email": "fabien@symfony.com"
  5271. },
  5272. {
  5273. "name": "Symfony Community",
  5274. "homepage": "https://symfony.com/contributors"
  5275. }
  5276. ],
  5277. "description": "Allows manipulating MIME messages",
  5278. "homepage": "https://symfony.com",
  5279. "keywords": [
  5280. "mime",
  5281. "mime-type"
  5282. ],
  5283. "support": {
  5284. "source": "https://github.com/symfony/mime/tree/v6.0.19"
  5285. },
  5286. "funding": [
  5287. {
  5288. "url": "https://symfony.com/sponsor",
  5289. "type": "custom"
  5290. },
  5291. {
  5292. "url": "https://github.com/fabpot",
  5293. "type": "github"
  5294. },
  5295. {
  5296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5297. "type": "tidelift"
  5298. }
  5299. ],
  5300. "time": "2023-01-11T11:50:03+00:00"
  5301. },
  5302. {
  5303. "name": "symfony/polyfill-ctype",
  5304. "version": "v1.27.0",
  5305. "source": {
  5306. "type": "git",
  5307. "url": "https://github.com/symfony/polyfill-ctype.git",
  5308. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5309. },
  5310. "dist": {
  5311. "type": "zip",
  5312. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5313. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5314. "shasum": "",
  5315. "mirrors": [
  5316. {
  5317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5318. "preferred": true
  5319. }
  5320. ]
  5321. },
  5322. "require": {
  5323. "php": ">=7.1"
  5324. },
  5325. "provide": {
  5326. "ext-ctype": "*"
  5327. },
  5328. "suggest": {
  5329. "ext-ctype": "For best performance"
  5330. },
  5331. "type": "library",
  5332. "extra": {
  5333. "branch-alias": {
  5334. "dev-main": "1.27-dev"
  5335. },
  5336. "thanks": {
  5337. "name": "symfony/polyfill",
  5338. "url": "https://github.com/symfony/polyfill"
  5339. }
  5340. },
  5341. "autoload": {
  5342. "files": [
  5343. "bootstrap.php"
  5344. ],
  5345. "psr-4": {
  5346. "Symfony\\Polyfill\\Ctype\\": ""
  5347. }
  5348. },
  5349. "notification-url": "https://packagist.org/downloads/",
  5350. "license": [
  5351. "MIT"
  5352. ],
  5353. "authors": [
  5354. {
  5355. "name": "Gert de Pagter",
  5356. "email": "BackEndTea@gmail.com"
  5357. },
  5358. {
  5359. "name": "Symfony Community",
  5360. "homepage": "https://symfony.com/contributors"
  5361. }
  5362. ],
  5363. "description": "Symfony polyfill for ctype functions",
  5364. "homepage": "https://symfony.com",
  5365. "keywords": [
  5366. "compatibility",
  5367. "ctype",
  5368. "polyfill",
  5369. "portable"
  5370. ],
  5371. "support": {
  5372. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5373. },
  5374. "funding": [
  5375. {
  5376. "url": "https://symfony.com/sponsor",
  5377. "type": "custom"
  5378. },
  5379. {
  5380. "url": "https://github.com/fabpot",
  5381. "type": "github"
  5382. },
  5383. {
  5384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5385. "type": "tidelift"
  5386. }
  5387. ],
  5388. "time": "2022-11-03T14:55:06+00:00"
  5389. },
  5390. {
  5391. "name": "symfony/polyfill-intl-grapheme",
  5392. "version": "v1.27.0",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5396. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5401. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5402. "shasum": "",
  5403. "mirrors": [
  5404. {
  5405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5406. "preferred": true
  5407. }
  5408. ]
  5409. },
  5410. "require": {
  5411. "php": ">=7.1"
  5412. },
  5413. "suggest": {
  5414. "ext-intl": "For best performance"
  5415. },
  5416. "type": "library",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-main": "1.27-dev"
  5420. },
  5421. "thanks": {
  5422. "name": "symfony/polyfill",
  5423. "url": "https://github.com/symfony/polyfill"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "files": [
  5428. "bootstrap.php"
  5429. ],
  5430. "psr-4": {
  5431. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5432. }
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Nicolas Grekas",
  5441. "email": "p@tchwork.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Symfony polyfill for intl's grapheme_* functions",
  5449. "homepage": "https://symfony.com",
  5450. "keywords": [
  5451. "compatibility",
  5452. "grapheme",
  5453. "intl",
  5454. "polyfill",
  5455. "portable",
  5456. "shim"
  5457. ],
  5458. "support": {
  5459. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5460. },
  5461. "funding": [
  5462. {
  5463. "url": "https://symfony.com/sponsor",
  5464. "type": "custom"
  5465. },
  5466. {
  5467. "url": "https://github.com/fabpot",
  5468. "type": "github"
  5469. },
  5470. {
  5471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5472. "type": "tidelift"
  5473. }
  5474. ],
  5475. "time": "2022-11-03T14:55:06+00:00"
  5476. },
  5477. {
  5478. "name": "symfony/polyfill-intl-idn",
  5479. "version": "v1.27.0",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5483. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5488. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5489. "shasum": "",
  5490. "mirrors": [
  5491. {
  5492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5493. "preferred": true
  5494. }
  5495. ]
  5496. },
  5497. "require": {
  5498. "php": ">=7.1",
  5499. "symfony/polyfill-intl-normalizer": "^1.10",
  5500. "symfony/polyfill-php72": "^1.10"
  5501. },
  5502. "suggest": {
  5503. "ext-intl": "For best performance"
  5504. },
  5505. "type": "library",
  5506. "extra": {
  5507. "branch-alias": {
  5508. "dev-main": "1.27-dev"
  5509. },
  5510. "thanks": {
  5511. "name": "symfony/polyfill",
  5512. "url": "https://github.com/symfony/polyfill"
  5513. }
  5514. },
  5515. "autoload": {
  5516. "files": [
  5517. "bootstrap.php"
  5518. ],
  5519. "psr-4": {
  5520. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5521. }
  5522. },
  5523. "notification-url": "https://packagist.org/downloads/",
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "Laurent Bassin",
  5530. "email": "laurent@bassin.info"
  5531. },
  5532. {
  5533. "name": "Trevor Rowbotham",
  5534. "email": "trevor.rowbotham@pm.me"
  5535. },
  5536. {
  5537. "name": "Symfony Community",
  5538. "homepage": "https://symfony.com/contributors"
  5539. }
  5540. ],
  5541. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5542. "homepage": "https://symfony.com",
  5543. "keywords": [
  5544. "compatibility",
  5545. "idn",
  5546. "intl",
  5547. "polyfill",
  5548. "portable",
  5549. "shim"
  5550. ],
  5551. "support": {
  5552. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5553. },
  5554. "funding": [
  5555. {
  5556. "url": "https://symfony.com/sponsor",
  5557. "type": "custom"
  5558. },
  5559. {
  5560. "url": "https://github.com/fabpot",
  5561. "type": "github"
  5562. },
  5563. {
  5564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5565. "type": "tidelift"
  5566. }
  5567. ],
  5568. "time": "2022-11-03T14:55:06+00:00"
  5569. },
  5570. {
  5571. "name": "symfony/polyfill-intl-normalizer",
  5572. "version": "v1.27.0",
  5573. "source": {
  5574. "type": "git",
  5575. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5576. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5577. },
  5578. "dist": {
  5579. "type": "zip",
  5580. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5581. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5582. "shasum": "",
  5583. "mirrors": [
  5584. {
  5585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5586. "preferred": true
  5587. }
  5588. ]
  5589. },
  5590. "require": {
  5591. "php": ">=7.1"
  5592. },
  5593. "suggest": {
  5594. "ext-intl": "For best performance"
  5595. },
  5596. "type": "library",
  5597. "extra": {
  5598. "branch-alias": {
  5599. "dev-main": "1.27-dev"
  5600. },
  5601. "thanks": {
  5602. "name": "symfony/polyfill",
  5603. "url": "https://github.com/symfony/polyfill"
  5604. }
  5605. },
  5606. "autoload": {
  5607. "files": [
  5608. "bootstrap.php"
  5609. ],
  5610. "psr-4": {
  5611. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5612. },
  5613. "classmap": [
  5614. "Resources/stubs"
  5615. ]
  5616. },
  5617. "notification-url": "https://packagist.org/downloads/",
  5618. "license": [
  5619. "MIT"
  5620. ],
  5621. "authors": [
  5622. {
  5623. "name": "Nicolas Grekas",
  5624. "email": "p@tchwork.com"
  5625. },
  5626. {
  5627. "name": "Symfony Community",
  5628. "homepage": "https://symfony.com/contributors"
  5629. }
  5630. ],
  5631. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5632. "homepage": "https://symfony.com",
  5633. "keywords": [
  5634. "compatibility",
  5635. "intl",
  5636. "normalizer",
  5637. "polyfill",
  5638. "portable",
  5639. "shim"
  5640. ],
  5641. "support": {
  5642. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5643. },
  5644. "funding": [
  5645. {
  5646. "url": "https://symfony.com/sponsor",
  5647. "type": "custom"
  5648. },
  5649. {
  5650. "url": "https://github.com/fabpot",
  5651. "type": "github"
  5652. },
  5653. {
  5654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5655. "type": "tidelift"
  5656. }
  5657. ],
  5658. "time": "2022-11-03T14:55:06+00:00"
  5659. },
  5660. {
  5661. "name": "symfony/polyfill-mbstring",
  5662. "version": "v1.27.0",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5666. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5671. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5672. "shasum": "",
  5673. "mirrors": [
  5674. {
  5675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5676. "preferred": true
  5677. }
  5678. ]
  5679. },
  5680. "require": {
  5681. "php": ">=7.1"
  5682. },
  5683. "provide": {
  5684. "ext-mbstring": "*"
  5685. },
  5686. "suggest": {
  5687. "ext-mbstring": "For best performance"
  5688. },
  5689. "type": "library",
  5690. "extra": {
  5691. "branch-alias": {
  5692. "dev-main": "1.27-dev"
  5693. },
  5694. "thanks": {
  5695. "name": "symfony/polyfill",
  5696. "url": "https://github.com/symfony/polyfill"
  5697. }
  5698. },
  5699. "autoload": {
  5700. "files": [
  5701. "bootstrap.php"
  5702. ],
  5703. "psr-4": {
  5704. "Symfony\\Polyfill\\Mbstring\\": ""
  5705. }
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "MIT"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Nicolas Grekas",
  5714. "email": "p@tchwork.com"
  5715. },
  5716. {
  5717. "name": "Symfony Community",
  5718. "homepage": "https://symfony.com/contributors"
  5719. }
  5720. ],
  5721. "description": "Symfony polyfill for the Mbstring extension",
  5722. "homepage": "https://symfony.com",
  5723. "keywords": [
  5724. "compatibility",
  5725. "mbstring",
  5726. "polyfill",
  5727. "portable",
  5728. "shim"
  5729. ],
  5730. "support": {
  5731. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5732. },
  5733. "funding": [
  5734. {
  5735. "url": "https://symfony.com/sponsor",
  5736. "type": "custom"
  5737. },
  5738. {
  5739. "url": "https://github.com/fabpot",
  5740. "type": "github"
  5741. },
  5742. {
  5743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5744. "type": "tidelift"
  5745. }
  5746. ],
  5747. "time": "2022-11-03T14:55:06+00:00"
  5748. },
  5749. {
  5750. "name": "symfony/polyfill-php72",
  5751. "version": "v1.27.0",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://github.com/symfony/polyfill-php72.git",
  5755. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5760. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5761. "shasum": "",
  5762. "mirrors": [
  5763. {
  5764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5765. "preferred": true
  5766. }
  5767. ]
  5768. },
  5769. "require": {
  5770. "php": ">=7.1"
  5771. },
  5772. "type": "library",
  5773. "extra": {
  5774. "branch-alias": {
  5775. "dev-main": "1.27-dev"
  5776. },
  5777. "thanks": {
  5778. "name": "symfony/polyfill",
  5779. "url": "https://github.com/symfony/polyfill"
  5780. }
  5781. },
  5782. "autoload": {
  5783. "files": [
  5784. "bootstrap.php"
  5785. ],
  5786. "psr-4": {
  5787. "Symfony\\Polyfill\\Php72\\": ""
  5788. }
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "MIT"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "Nicolas Grekas",
  5797. "email": "p@tchwork.com"
  5798. },
  5799. {
  5800. "name": "Symfony Community",
  5801. "homepage": "https://symfony.com/contributors"
  5802. }
  5803. ],
  5804. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5805. "homepage": "https://symfony.com",
  5806. "keywords": [
  5807. "compatibility",
  5808. "polyfill",
  5809. "portable",
  5810. "shim"
  5811. ],
  5812. "support": {
  5813. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5814. },
  5815. "funding": [
  5816. {
  5817. "url": "https://symfony.com/sponsor",
  5818. "type": "custom"
  5819. },
  5820. {
  5821. "url": "https://github.com/fabpot",
  5822. "type": "github"
  5823. },
  5824. {
  5825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5826. "type": "tidelift"
  5827. }
  5828. ],
  5829. "time": "2022-11-03T14:55:06+00:00"
  5830. },
  5831. {
  5832. "name": "symfony/polyfill-php80",
  5833. "version": "v1.27.0",
  5834. "source": {
  5835. "type": "git",
  5836. "url": "https://github.com/symfony/polyfill-php80.git",
  5837. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5838. },
  5839. "dist": {
  5840. "type": "zip",
  5841. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5842. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5843. "shasum": "",
  5844. "mirrors": [
  5845. {
  5846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5847. "preferred": true
  5848. }
  5849. ]
  5850. },
  5851. "require": {
  5852. "php": ">=7.1"
  5853. },
  5854. "type": "library",
  5855. "extra": {
  5856. "branch-alias": {
  5857. "dev-main": "1.27-dev"
  5858. },
  5859. "thanks": {
  5860. "name": "symfony/polyfill",
  5861. "url": "https://github.com/symfony/polyfill"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "files": [
  5866. "bootstrap.php"
  5867. ],
  5868. "psr-4": {
  5869. "Symfony\\Polyfill\\Php80\\": ""
  5870. },
  5871. "classmap": [
  5872. "Resources/stubs"
  5873. ]
  5874. },
  5875. "notification-url": "https://packagist.org/downloads/",
  5876. "license": [
  5877. "MIT"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Ion Bazan",
  5882. "email": "ion.bazan@gmail.com"
  5883. },
  5884. {
  5885. "name": "Nicolas Grekas",
  5886. "email": "p@tchwork.com"
  5887. },
  5888. {
  5889. "name": "Symfony Community",
  5890. "homepage": "https://symfony.com/contributors"
  5891. }
  5892. ],
  5893. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5894. "homepage": "https://symfony.com",
  5895. "keywords": [
  5896. "compatibility",
  5897. "polyfill",
  5898. "portable",
  5899. "shim"
  5900. ],
  5901. "support": {
  5902. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5903. },
  5904. "funding": [
  5905. {
  5906. "url": "https://symfony.com/sponsor",
  5907. "type": "custom"
  5908. },
  5909. {
  5910. "url": "https://github.com/fabpot",
  5911. "type": "github"
  5912. },
  5913. {
  5914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5915. "type": "tidelift"
  5916. }
  5917. ],
  5918. "time": "2022-11-03T14:55:06+00:00"
  5919. },
  5920. {
  5921. "name": "symfony/polyfill-php81",
  5922. "version": "v1.27.0",
  5923. "source": {
  5924. "type": "git",
  5925. "url": "https://github.com/symfony/polyfill-php81.git",
  5926. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  5927. },
  5928. "dist": {
  5929. "type": "zip",
  5930. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  5931. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  5932. "shasum": "",
  5933. "mirrors": [
  5934. {
  5935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5936. "preferred": true
  5937. }
  5938. ]
  5939. },
  5940. "require": {
  5941. "php": ">=7.1"
  5942. },
  5943. "type": "library",
  5944. "extra": {
  5945. "branch-alias": {
  5946. "dev-main": "1.27-dev"
  5947. },
  5948. "thanks": {
  5949. "name": "symfony/polyfill",
  5950. "url": "https://github.com/symfony/polyfill"
  5951. }
  5952. },
  5953. "autoload": {
  5954. "files": [
  5955. "bootstrap.php"
  5956. ],
  5957. "psr-4": {
  5958. "Symfony\\Polyfill\\Php81\\": ""
  5959. },
  5960. "classmap": [
  5961. "Resources/stubs"
  5962. ]
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Nicolas Grekas",
  5971. "email": "p@tchwork.com"
  5972. },
  5973. {
  5974. "name": "Symfony Community",
  5975. "homepage": "https://symfony.com/contributors"
  5976. }
  5977. ],
  5978. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5979. "homepage": "https://symfony.com",
  5980. "keywords": [
  5981. "compatibility",
  5982. "polyfill",
  5983. "portable",
  5984. "shim"
  5985. ],
  5986. "support": {
  5987. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  5988. },
  5989. "funding": [
  5990. {
  5991. "url": "https://symfony.com/sponsor",
  5992. "type": "custom"
  5993. },
  5994. {
  5995. "url": "https://github.com/fabpot",
  5996. "type": "github"
  5997. },
  5998. {
  5999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6000. "type": "tidelift"
  6001. }
  6002. ],
  6003. "time": "2022-11-03T14:55:06+00:00"
  6004. },
  6005. {
  6006. "name": "symfony/polyfill-uuid",
  6007. "version": "v1.27.0",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/symfony/polyfill-uuid.git",
  6011. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6016. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6017. "shasum": "",
  6018. "mirrors": [
  6019. {
  6020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6021. "preferred": true
  6022. }
  6023. ]
  6024. },
  6025. "require": {
  6026. "php": ">=7.1"
  6027. },
  6028. "provide": {
  6029. "ext-uuid": "*"
  6030. },
  6031. "suggest": {
  6032. "ext-uuid": "For best performance"
  6033. },
  6034. "type": "library",
  6035. "extra": {
  6036. "branch-alias": {
  6037. "dev-main": "1.27-dev"
  6038. },
  6039. "thanks": {
  6040. "name": "symfony/polyfill",
  6041. "url": "https://github.com/symfony/polyfill"
  6042. }
  6043. },
  6044. "autoload": {
  6045. "files": [
  6046. "bootstrap.php"
  6047. ],
  6048. "psr-4": {
  6049. "Symfony\\Polyfill\\Uuid\\": ""
  6050. }
  6051. },
  6052. "notification-url": "https://packagist.org/downloads/",
  6053. "license": [
  6054. "MIT"
  6055. ],
  6056. "authors": [
  6057. {
  6058. "name": "Grégoire Pineau",
  6059. "email": "lyrixx@lyrixx.info"
  6060. },
  6061. {
  6062. "name": "Symfony Community",
  6063. "homepage": "https://symfony.com/contributors"
  6064. }
  6065. ],
  6066. "description": "Symfony polyfill for uuid functions",
  6067. "homepage": "https://symfony.com",
  6068. "keywords": [
  6069. "compatibility",
  6070. "polyfill",
  6071. "portable",
  6072. "uuid"
  6073. ],
  6074. "support": {
  6075. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  6076. },
  6077. "funding": [
  6078. {
  6079. "url": "https://symfony.com/sponsor",
  6080. "type": "custom"
  6081. },
  6082. {
  6083. "url": "https://github.com/fabpot",
  6084. "type": "github"
  6085. },
  6086. {
  6087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6088. "type": "tidelift"
  6089. }
  6090. ],
  6091. "time": "2022-11-03T14:55:06+00:00"
  6092. },
  6093. {
  6094. "name": "symfony/process",
  6095. "version": "v6.0.19",
  6096. "source": {
  6097. "type": "git",
  6098. "url": "https://github.com/symfony/process.git",
  6099. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
  6100. },
  6101. "dist": {
  6102. "type": "zip",
  6103. "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
  6104. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
  6105. "shasum": "",
  6106. "mirrors": [
  6107. {
  6108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6109. "preferred": true
  6110. }
  6111. ]
  6112. },
  6113. "require": {
  6114. "php": ">=8.0.2"
  6115. },
  6116. "type": "library",
  6117. "autoload": {
  6118. "psr-4": {
  6119. "Symfony\\Component\\Process\\": ""
  6120. },
  6121. "exclude-from-classmap": [
  6122. "/Tests/"
  6123. ]
  6124. },
  6125. "notification-url": "https://packagist.org/downloads/",
  6126. "license": [
  6127. "MIT"
  6128. ],
  6129. "authors": [
  6130. {
  6131. "name": "Fabien Potencier",
  6132. "email": "fabien@symfony.com"
  6133. },
  6134. {
  6135. "name": "Symfony Community",
  6136. "homepage": "https://symfony.com/contributors"
  6137. }
  6138. ],
  6139. "description": "Executes commands in sub-processes",
  6140. "homepage": "https://symfony.com",
  6141. "support": {
  6142. "source": "https://github.com/symfony/process/tree/v6.0.19"
  6143. },
  6144. "funding": [
  6145. {
  6146. "url": "https://symfony.com/sponsor",
  6147. "type": "custom"
  6148. },
  6149. {
  6150. "url": "https://github.com/fabpot",
  6151. "type": "github"
  6152. },
  6153. {
  6154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6155. "type": "tidelift"
  6156. }
  6157. ],
  6158. "time": "2023-01-01T08:36:10+00:00"
  6159. },
  6160. {
  6161. "name": "symfony/psr-http-message-bridge",
  6162. "version": "v2.2.0",
  6163. "source": {
  6164. "type": "git",
  6165. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6166. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  6167. },
  6168. "dist": {
  6169. "type": "zip",
  6170. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  6171. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  6172. "shasum": "",
  6173. "mirrors": [
  6174. {
  6175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6176. "preferred": true
  6177. }
  6178. ]
  6179. },
  6180. "require": {
  6181. "php": ">=7.2.5",
  6182. "psr/http-message": "^1.0 || ^2.0",
  6183. "symfony/http-foundation": "^5.4 || ^6.0"
  6184. },
  6185. "require-dev": {
  6186. "nyholm/psr7": "^1.1",
  6187. "psr/log": "^1.1 || ^2 || ^3",
  6188. "symfony/browser-kit": "^5.4 || ^6.0",
  6189. "symfony/config": "^5.4 || ^6.0",
  6190. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6191. "symfony/framework-bundle": "^5.4 || ^6.0",
  6192. "symfony/http-kernel": "^5.4 || ^6.0",
  6193. "symfony/phpunit-bridge": "^6.2"
  6194. },
  6195. "suggest": {
  6196. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6197. },
  6198. "type": "symfony-bridge",
  6199. "extra": {
  6200. "branch-alias": {
  6201. "dev-main": "2.2-dev"
  6202. }
  6203. },
  6204. "autoload": {
  6205. "psr-4": {
  6206. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6207. },
  6208. "exclude-from-classmap": [
  6209. "/Tests/"
  6210. ]
  6211. },
  6212. "notification-url": "https://packagist.org/downloads/",
  6213. "license": [
  6214. "MIT"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "Fabien Potencier",
  6219. "email": "fabien@symfony.com"
  6220. },
  6221. {
  6222. "name": "Symfony Community",
  6223. "homepage": "http://symfony.com/contributors"
  6224. }
  6225. ],
  6226. "description": "PSR HTTP message bridge",
  6227. "homepage": "http://symfony.com",
  6228. "keywords": [
  6229. "http",
  6230. "http-message",
  6231. "psr-17",
  6232. "psr-7"
  6233. ],
  6234. "support": {
  6235. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6236. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  6237. },
  6238. "funding": [
  6239. {
  6240. "url": "https://symfony.com/sponsor",
  6241. "type": "custom"
  6242. },
  6243. {
  6244. "url": "https://github.com/fabpot",
  6245. "type": "github"
  6246. },
  6247. {
  6248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6249. "type": "tidelift"
  6250. }
  6251. ],
  6252. "time": "2023-04-21T08:40:19+00:00"
  6253. },
  6254. {
  6255. "name": "symfony/routing",
  6256. "version": "v6.0.19",
  6257. "source": {
  6258. "type": "git",
  6259. "url": "https://github.com/symfony/routing.git",
  6260. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac"
  6261. },
  6262. "dist": {
  6263. "type": "zip",
  6264. "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6265. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6266. "shasum": "",
  6267. "mirrors": [
  6268. {
  6269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6270. "preferred": true
  6271. }
  6272. ]
  6273. },
  6274. "require": {
  6275. "php": ">=8.0.2"
  6276. },
  6277. "conflict": {
  6278. "doctrine/annotations": "<1.12",
  6279. "symfony/config": "<5.4",
  6280. "symfony/dependency-injection": "<5.4",
  6281. "symfony/yaml": "<5.4"
  6282. },
  6283. "require-dev": {
  6284. "doctrine/annotations": "^1.12|^2",
  6285. "psr/log": "^1|^2|^3",
  6286. "symfony/config": "^5.4|^6.0",
  6287. "symfony/dependency-injection": "^5.4|^6.0",
  6288. "symfony/expression-language": "^5.4|^6.0",
  6289. "symfony/http-foundation": "^5.4|^6.0",
  6290. "symfony/yaml": "^5.4|^6.0"
  6291. },
  6292. "suggest": {
  6293. "symfony/config": "For using the all-in-one router or any loader",
  6294. "symfony/expression-language": "For using expression matching",
  6295. "symfony/http-foundation": "For using a Symfony Request object",
  6296. "symfony/yaml": "For using the YAML loader"
  6297. },
  6298. "type": "library",
  6299. "autoload": {
  6300. "psr-4": {
  6301. "Symfony\\Component\\Routing\\": ""
  6302. },
  6303. "exclude-from-classmap": [
  6304. "/Tests/"
  6305. ]
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "MIT"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Fabien Potencier",
  6314. "email": "fabien@symfony.com"
  6315. },
  6316. {
  6317. "name": "Symfony Community",
  6318. "homepage": "https://symfony.com/contributors"
  6319. }
  6320. ],
  6321. "description": "Maps an HTTP request to a set of configuration variables",
  6322. "homepage": "https://symfony.com",
  6323. "keywords": [
  6324. "router",
  6325. "routing",
  6326. "uri",
  6327. "url"
  6328. ],
  6329. "support": {
  6330. "source": "https://github.com/symfony/routing/tree/v6.0.19"
  6331. },
  6332. "funding": [
  6333. {
  6334. "url": "https://symfony.com/sponsor",
  6335. "type": "custom"
  6336. },
  6337. {
  6338. "url": "https://github.com/fabpot",
  6339. "type": "github"
  6340. },
  6341. {
  6342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6343. "type": "tidelift"
  6344. }
  6345. ],
  6346. "time": "2023-01-01T08:36:10+00:00"
  6347. },
  6348. {
  6349. "name": "symfony/service-contracts",
  6350. "version": "v3.0.2",
  6351. "source": {
  6352. "type": "git",
  6353. "url": "https://github.com/symfony/service-contracts.git",
  6354. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
  6355. },
  6356. "dist": {
  6357. "type": "zip",
  6358. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6359. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6360. "shasum": "",
  6361. "mirrors": [
  6362. {
  6363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6364. "preferred": true
  6365. }
  6366. ]
  6367. },
  6368. "require": {
  6369. "php": ">=8.0.2",
  6370. "psr/container": "^2.0"
  6371. },
  6372. "conflict": {
  6373. "ext-psr": "<1.1|>=2"
  6374. },
  6375. "suggest": {
  6376. "symfony/service-implementation": ""
  6377. },
  6378. "type": "library",
  6379. "extra": {
  6380. "branch-alias": {
  6381. "dev-main": "3.0-dev"
  6382. },
  6383. "thanks": {
  6384. "name": "symfony/contracts",
  6385. "url": "https://github.com/symfony/contracts"
  6386. }
  6387. },
  6388. "autoload": {
  6389. "psr-4": {
  6390. "Symfony\\Contracts\\Service\\": ""
  6391. }
  6392. },
  6393. "notification-url": "https://packagist.org/downloads/",
  6394. "license": [
  6395. "MIT"
  6396. ],
  6397. "authors": [
  6398. {
  6399. "name": "Nicolas Grekas",
  6400. "email": "p@tchwork.com"
  6401. },
  6402. {
  6403. "name": "Symfony Community",
  6404. "homepage": "https://symfony.com/contributors"
  6405. }
  6406. ],
  6407. "description": "Generic abstractions related to writing services",
  6408. "homepage": "https://symfony.com",
  6409. "keywords": [
  6410. "abstractions",
  6411. "contracts",
  6412. "decoupling",
  6413. "interfaces",
  6414. "interoperability",
  6415. "standards"
  6416. ],
  6417. "support": {
  6418. "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
  6419. },
  6420. "funding": [
  6421. {
  6422. "url": "https://symfony.com/sponsor",
  6423. "type": "custom"
  6424. },
  6425. {
  6426. "url": "https://github.com/fabpot",
  6427. "type": "github"
  6428. },
  6429. {
  6430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6431. "type": "tidelift"
  6432. }
  6433. ],
  6434. "time": "2022-05-30T19:17:58+00:00"
  6435. },
  6436. {
  6437. "name": "symfony/string",
  6438. "version": "v6.0.19",
  6439. "source": {
  6440. "type": "git",
  6441. "url": "https://github.com/symfony/string.git",
  6442. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  6443. },
  6444. "dist": {
  6445. "type": "zip",
  6446. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  6447. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  6448. "shasum": "",
  6449. "mirrors": [
  6450. {
  6451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6452. "preferred": true
  6453. }
  6454. ]
  6455. },
  6456. "require": {
  6457. "php": ">=8.0.2",
  6458. "symfony/polyfill-ctype": "~1.8",
  6459. "symfony/polyfill-intl-grapheme": "~1.0",
  6460. "symfony/polyfill-intl-normalizer": "~1.0",
  6461. "symfony/polyfill-mbstring": "~1.0"
  6462. },
  6463. "conflict": {
  6464. "symfony/translation-contracts": "<2.0"
  6465. },
  6466. "require-dev": {
  6467. "symfony/error-handler": "^5.4|^6.0",
  6468. "symfony/http-client": "^5.4|^6.0",
  6469. "symfony/translation-contracts": "^2.0|^3.0",
  6470. "symfony/var-exporter": "^5.4|^6.0"
  6471. },
  6472. "type": "library",
  6473. "autoload": {
  6474. "files": [
  6475. "Resources/functions.php"
  6476. ],
  6477. "psr-4": {
  6478. "Symfony\\Component\\String\\": ""
  6479. },
  6480. "exclude-from-classmap": [
  6481. "/Tests/"
  6482. ]
  6483. },
  6484. "notification-url": "https://packagist.org/downloads/",
  6485. "license": [
  6486. "MIT"
  6487. ],
  6488. "authors": [
  6489. {
  6490. "name": "Nicolas Grekas",
  6491. "email": "p@tchwork.com"
  6492. },
  6493. {
  6494. "name": "Symfony Community",
  6495. "homepage": "https://symfony.com/contributors"
  6496. }
  6497. ],
  6498. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6499. "homepage": "https://symfony.com",
  6500. "keywords": [
  6501. "grapheme",
  6502. "i18n",
  6503. "string",
  6504. "unicode",
  6505. "utf-8",
  6506. "utf8"
  6507. ],
  6508. "support": {
  6509. "source": "https://github.com/symfony/string/tree/v6.0.19"
  6510. },
  6511. "funding": [
  6512. {
  6513. "url": "https://symfony.com/sponsor",
  6514. "type": "custom"
  6515. },
  6516. {
  6517. "url": "https://github.com/fabpot",
  6518. "type": "github"
  6519. },
  6520. {
  6521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6522. "type": "tidelift"
  6523. }
  6524. ],
  6525. "time": "2023-01-01T08:36:10+00:00"
  6526. },
  6527. {
  6528. "name": "symfony/translation",
  6529. "version": "v6.0.19",
  6530. "source": {
  6531. "type": "git",
  6532. "url": "https://github.com/symfony/translation.git",
  6533. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  6534. },
  6535. "dist": {
  6536. "type": "zip",
  6537. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  6538. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  6539. "shasum": "",
  6540. "mirrors": [
  6541. {
  6542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6543. "preferred": true
  6544. }
  6545. ]
  6546. },
  6547. "require": {
  6548. "php": ">=8.0.2",
  6549. "symfony/polyfill-mbstring": "~1.0",
  6550. "symfony/translation-contracts": "^2.3|^3.0"
  6551. },
  6552. "conflict": {
  6553. "symfony/config": "<5.4",
  6554. "symfony/console": "<5.4",
  6555. "symfony/dependency-injection": "<5.4",
  6556. "symfony/http-kernel": "<5.4",
  6557. "symfony/twig-bundle": "<5.4",
  6558. "symfony/yaml": "<5.4"
  6559. },
  6560. "provide": {
  6561. "symfony/translation-implementation": "2.3|3.0"
  6562. },
  6563. "require-dev": {
  6564. "psr/log": "^1|^2|^3",
  6565. "symfony/config": "^5.4|^6.0",
  6566. "symfony/console": "^5.4|^6.0",
  6567. "symfony/dependency-injection": "^5.4|^6.0",
  6568. "symfony/finder": "^5.4|^6.0",
  6569. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6570. "symfony/http-kernel": "^5.4|^6.0",
  6571. "symfony/intl": "^5.4|^6.0",
  6572. "symfony/polyfill-intl-icu": "^1.21",
  6573. "symfony/service-contracts": "^1.1.2|^2|^3",
  6574. "symfony/yaml": "^5.4|^6.0"
  6575. },
  6576. "suggest": {
  6577. "psr/log-implementation": "To use logging capability in translator",
  6578. "symfony/config": "",
  6579. "symfony/yaml": ""
  6580. },
  6581. "type": "library",
  6582. "autoload": {
  6583. "files": [
  6584. "Resources/functions.php"
  6585. ],
  6586. "psr-4": {
  6587. "Symfony\\Component\\Translation\\": ""
  6588. },
  6589. "exclude-from-classmap": [
  6590. "/Tests/"
  6591. ]
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "MIT"
  6596. ],
  6597. "authors": [
  6598. {
  6599. "name": "Fabien Potencier",
  6600. "email": "fabien@symfony.com"
  6601. },
  6602. {
  6603. "name": "Symfony Community",
  6604. "homepage": "https://symfony.com/contributors"
  6605. }
  6606. ],
  6607. "description": "Provides tools to internationalize your application",
  6608. "homepage": "https://symfony.com",
  6609. "support": {
  6610. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  6611. },
  6612. "funding": [
  6613. {
  6614. "url": "https://symfony.com/sponsor",
  6615. "type": "custom"
  6616. },
  6617. {
  6618. "url": "https://github.com/fabpot",
  6619. "type": "github"
  6620. },
  6621. {
  6622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6623. "type": "tidelift"
  6624. }
  6625. ],
  6626. "time": "2023-01-01T08:36:10+00:00"
  6627. },
  6628. {
  6629. "name": "symfony/translation-contracts",
  6630. "version": "v3.0.2",
  6631. "source": {
  6632. "type": "git",
  6633. "url": "https://github.com/symfony/translation-contracts.git",
  6634. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  6635. },
  6636. "dist": {
  6637. "type": "zip",
  6638. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  6639. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  6640. "shasum": "",
  6641. "mirrors": [
  6642. {
  6643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6644. "preferred": true
  6645. }
  6646. ]
  6647. },
  6648. "require": {
  6649. "php": ">=8.0.2"
  6650. },
  6651. "suggest": {
  6652. "symfony/translation-implementation": ""
  6653. },
  6654. "type": "library",
  6655. "extra": {
  6656. "branch-alias": {
  6657. "dev-main": "3.0-dev"
  6658. },
  6659. "thanks": {
  6660. "name": "symfony/contracts",
  6661. "url": "https://github.com/symfony/contracts"
  6662. }
  6663. },
  6664. "autoload": {
  6665. "psr-4": {
  6666. "Symfony\\Contracts\\Translation\\": ""
  6667. }
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "MIT"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Nicolas Grekas",
  6676. "email": "p@tchwork.com"
  6677. },
  6678. {
  6679. "name": "Symfony Community",
  6680. "homepage": "https://symfony.com/contributors"
  6681. }
  6682. ],
  6683. "description": "Generic abstractions related to translation",
  6684. "homepage": "https://symfony.com",
  6685. "keywords": [
  6686. "abstractions",
  6687. "contracts",
  6688. "decoupling",
  6689. "interfaces",
  6690. "interoperability",
  6691. "standards"
  6692. ],
  6693. "support": {
  6694. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2022-06-27T17:10:44+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/uid",
  6714. "version": "v6.0.19",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/uid.git",
  6718. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  6723. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  6724. "shasum": "",
  6725. "mirrors": [
  6726. {
  6727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6728. "preferred": true
  6729. }
  6730. ]
  6731. },
  6732. "require": {
  6733. "php": ">=8.0.2",
  6734. "symfony/polyfill-uuid": "^1.15"
  6735. },
  6736. "require-dev": {
  6737. "symfony/console": "^5.4|^6.0"
  6738. },
  6739. "type": "library",
  6740. "autoload": {
  6741. "psr-4": {
  6742. "Symfony\\Component\\Uid\\": ""
  6743. },
  6744. "exclude-from-classmap": [
  6745. "/Tests/"
  6746. ]
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "MIT"
  6751. ],
  6752. "authors": [
  6753. {
  6754. "name": "Grégoire Pineau",
  6755. "email": "lyrixx@lyrixx.info"
  6756. },
  6757. {
  6758. "name": "Nicolas Grekas",
  6759. "email": "p@tchwork.com"
  6760. },
  6761. {
  6762. "name": "Symfony Community",
  6763. "homepage": "https://symfony.com/contributors"
  6764. }
  6765. ],
  6766. "description": "Provides an object-oriented API to generate and represent UIDs",
  6767. "homepage": "https://symfony.com",
  6768. "keywords": [
  6769. "UID",
  6770. "ulid",
  6771. "uuid"
  6772. ],
  6773. "support": {
  6774. "source": "https://github.com/symfony/uid/tree/v6.0.19"
  6775. },
  6776. "funding": [
  6777. {
  6778. "url": "https://symfony.com/sponsor",
  6779. "type": "custom"
  6780. },
  6781. {
  6782. "url": "https://github.com/fabpot",
  6783. "type": "github"
  6784. },
  6785. {
  6786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6787. "type": "tidelift"
  6788. }
  6789. ],
  6790. "time": "2023-01-01T08:36:10+00:00"
  6791. },
  6792. {
  6793. "name": "symfony/var-dumper",
  6794. "version": "v6.0.19",
  6795. "source": {
  6796. "type": "git",
  6797. "url": "https://github.com/symfony/var-dumper.git",
  6798. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52"
  6799. },
  6800. "dist": {
  6801. "type": "zip",
  6802. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6803. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6804. "shasum": "",
  6805. "mirrors": [
  6806. {
  6807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6808. "preferred": true
  6809. }
  6810. ]
  6811. },
  6812. "require": {
  6813. "php": ">=8.0.2",
  6814. "symfony/polyfill-mbstring": "~1.0"
  6815. },
  6816. "conflict": {
  6817. "phpunit/phpunit": "<5.4.3",
  6818. "symfony/console": "<5.4"
  6819. },
  6820. "require-dev": {
  6821. "ext-iconv": "*",
  6822. "symfony/console": "^5.4|^6.0",
  6823. "symfony/process": "^5.4|^6.0",
  6824. "symfony/uid": "^5.4|^6.0",
  6825. "twig/twig": "^2.13|^3.0.4"
  6826. },
  6827. "suggest": {
  6828. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6829. "ext-intl": "To show region name in time zone dump",
  6830. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6831. },
  6832. "bin": [
  6833. "Resources/bin/var-dump-server"
  6834. ],
  6835. "type": "library",
  6836. "autoload": {
  6837. "files": [
  6838. "Resources/functions/dump.php"
  6839. ],
  6840. "psr-4": {
  6841. "Symfony\\Component\\VarDumper\\": ""
  6842. },
  6843. "exclude-from-classmap": [
  6844. "/Tests/"
  6845. ]
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "MIT"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Nicolas Grekas",
  6854. "email": "p@tchwork.com"
  6855. },
  6856. {
  6857. "name": "Symfony Community",
  6858. "homepage": "https://symfony.com/contributors"
  6859. }
  6860. ],
  6861. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6862. "homepage": "https://symfony.com",
  6863. "keywords": [
  6864. "debug",
  6865. "dump"
  6866. ],
  6867. "support": {
  6868. "source": "https://github.com/symfony/var-dumper/tree/v6.0.19"
  6869. },
  6870. "funding": [
  6871. {
  6872. "url": "https://symfony.com/sponsor",
  6873. "type": "custom"
  6874. },
  6875. {
  6876. "url": "https://github.com/fabpot",
  6877. "type": "github"
  6878. },
  6879. {
  6880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6881. "type": "tidelift"
  6882. }
  6883. ],
  6884. "time": "2023-01-20T17:44:14+00:00"
  6885. },
  6886. {
  6887. "name": "symfony/var-exporter",
  6888. "version": "v6.0.19",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/symfony/var-exporter.git",
  6892. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  6897. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  6898. "shasum": "",
  6899. "mirrors": [
  6900. {
  6901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6902. "preferred": true
  6903. }
  6904. ]
  6905. },
  6906. "require": {
  6907. "php": ">=8.0.2"
  6908. },
  6909. "require-dev": {
  6910. "symfony/var-dumper": "^5.4|^6.0"
  6911. },
  6912. "type": "library",
  6913. "autoload": {
  6914. "psr-4": {
  6915. "Symfony\\Component\\VarExporter\\": ""
  6916. },
  6917. "exclude-from-classmap": [
  6918. "/Tests/"
  6919. ]
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "MIT"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Nicolas Grekas",
  6928. "email": "p@tchwork.com"
  6929. },
  6930. {
  6931. "name": "Symfony Community",
  6932. "homepage": "https://symfony.com/contributors"
  6933. }
  6934. ],
  6935. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6936. "homepage": "https://symfony.com",
  6937. "keywords": [
  6938. "clone",
  6939. "construct",
  6940. "export",
  6941. "hydrate",
  6942. "instantiate",
  6943. "serialize"
  6944. ],
  6945. "support": {
  6946. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  6947. },
  6948. "funding": [
  6949. {
  6950. "url": "https://symfony.com/sponsor",
  6951. "type": "custom"
  6952. },
  6953. {
  6954. "url": "https://github.com/fabpot",
  6955. "type": "github"
  6956. },
  6957. {
  6958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6959. "type": "tidelift"
  6960. }
  6961. ],
  6962. "time": "2023-01-13T08:34:10+00:00"
  6963. },
  6964. {
  6965. "name": "th3n3rd/cartesian-product",
  6966. "version": "v0.3.0",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/th3n3rd/cartesian-product.git",
  6970. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/th3n3rd/cartesian-product/zipball/78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  6975. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  6976. "shasum": "",
  6977. "mirrors": [
  6978. {
  6979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6980. "preferred": true
  6981. }
  6982. ]
  6983. },
  6984. "require": {
  6985. "php": ">=5.3.3"
  6986. },
  6987. "require-dev": {
  6988. "devster/ubench": "~1.1",
  6989. "phpunit/phpunit": "~4.4"
  6990. },
  6991. "type": "library",
  6992. "extra": {
  6993. "branch-alias": {
  6994. "dev-master": "0.3-dev"
  6995. }
  6996. },
  6997. "autoload": {
  6998. "psr-4": {
  6999. "Nerd\\CartesianProduct\\": "src"
  7000. }
  7001. },
  7002. "notification-url": "https://packagist.org/downloads/",
  7003. "license": [
  7004. "MIT"
  7005. ],
  7006. "authors": [
  7007. {
  7008. "name": "Marco Garofalo",
  7009. "email": "marcogarofalo.personal@gmail.com"
  7010. }
  7011. ],
  7012. "description": "Memory efficient Cartesian Product implementation",
  7013. "keywords": [
  7014. "cartesian",
  7015. "product"
  7016. ],
  7017. "support": {
  7018. "issues": "https://github.com/th3n3rd/cartesian-product/issues",
  7019. "source": "https://github.com/th3n3rd/cartesian-product/tree/master"
  7020. },
  7021. "time": "2015-05-30T08:42:25+00:00"
  7022. },
  7023. {
  7024. "name": "thenorthmemory/xml",
  7025. "version": "1.1.1",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/TheNorthMemory/xml.git",
  7029. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7034. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  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. "ext-libxml": "*",
  7045. "ext-simplexml": "*",
  7046. "php": ">=7.1.2"
  7047. },
  7048. "require-dev": {
  7049. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7050. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7051. },
  7052. "type": "library",
  7053. "autoload": {
  7054. "psr-4": {
  7055. "TheNorthMemory\\Xml\\": "src/"
  7056. }
  7057. },
  7058. "notification-url": "https://packagist.org/downloads/",
  7059. "license": [
  7060. "Apache-2.0"
  7061. ],
  7062. "authors": [
  7063. {
  7064. "name": "James ZHANG",
  7065. "homepage": "https://github.com/TheNorthMemory"
  7066. }
  7067. ],
  7068. "description": "A wrapper of the XML parser and builder",
  7069. "homepage": "https://github.com/TheNorthMemory/xml",
  7070. "keywords": [
  7071. "xml-builder",
  7072. "xml-parser"
  7073. ],
  7074. "support": {
  7075. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7076. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7077. },
  7078. "time": "2023-01-15T06:01:13+00:00"
  7079. },
  7080. {
  7081. "name": "tijsverkoyen/css-to-inline-styles",
  7082. "version": "2.2.6",
  7083. "source": {
  7084. "type": "git",
  7085. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7086. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7087. },
  7088. "dist": {
  7089. "type": "zip",
  7090. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7091. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7092. "shasum": "",
  7093. "mirrors": [
  7094. {
  7095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7096. "preferred": true
  7097. }
  7098. ]
  7099. },
  7100. "require": {
  7101. "ext-dom": "*",
  7102. "ext-libxml": "*",
  7103. "php": "^5.5 || ^7.0 || ^8.0",
  7104. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7105. },
  7106. "require-dev": {
  7107. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7108. },
  7109. "type": "library",
  7110. "extra": {
  7111. "branch-alias": {
  7112. "dev-master": "2.2.x-dev"
  7113. }
  7114. },
  7115. "autoload": {
  7116. "psr-4": {
  7117. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7118. }
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "BSD-3-Clause"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Tijs Verkoyen",
  7127. "email": "css_to_inline_styles@verkoyen.eu",
  7128. "role": "Developer"
  7129. }
  7130. ],
  7131. "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.",
  7132. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7133. "support": {
  7134. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7135. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7136. },
  7137. "time": "2023-01-03T09:29:04+00:00"
  7138. },
  7139. {
  7140. "name": "tuupola/base62",
  7141. "version": "2.1.0",
  7142. "source": {
  7143. "type": "git",
  7144. "url": "https://github.com/tuupola/base62.git",
  7145. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb"
  7146. },
  7147. "dist": {
  7148. "type": "zip",
  7149. "url": "https://api.github.com/repos/tuupola/base62/zipball/7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7150. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7151. "shasum": "",
  7152. "mirrors": [
  7153. {
  7154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7155. "preferred": true
  7156. }
  7157. ]
  7158. },
  7159. "require": {
  7160. "php": "^7.1|^8.0"
  7161. },
  7162. "require-dev": {
  7163. "overtrue/phplint": "^1.0",
  7164. "phpbench/phpbench": "^0.15.0",
  7165. "phpstan/phpstan": "^0.12.38",
  7166. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  7167. "squizlabs/php_codesniffer": "^3.0"
  7168. },
  7169. "suggest": {
  7170. "ext-gmp": "GMP extension provides the fastest encoding and decoding."
  7171. },
  7172. "type": "library",
  7173. "autoload": {
  7174. "psr-4": {
  7175. "Tuupola\\": "src"
  7176. }
  7177. },
  7178. "notification-url": "https://packagist.org/downloads/",
  7179. "license": [
  7180. "MIT"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Mika Tuupola",
  7185. "email": "tuupola@appelsiini.net",
  7186. "homepage": "https://appelsiini.net/",
  7187. "role": "Developer"
  7188. }
  7189. ],
  7190. "description": "Base62 encoder and decoder for arbitrary data",
  7191. "homepage": "https://github.com/tuupola/base62",
  7192. "keywords": [
  7193. "base62"
  7194. ],
  7195. "support": {
  7196. "issues": "https://github.com/tuupola/base62/issues",
  7197. "source": "https://github.com/tuupola/base62/tree/2.1.0"
  7198. },
  7199. "funding": [
  7200. {
  7201. "url": "https://github.com/tuupola",
  7202. "type": "github"
  7203. }
  7204. ],
  7205. "time": "2020-09-09T15:05:36+00:00"
  7206. },
  7207. {
  7208. "name": "vlucas/phpdotenv",
  7209. "version": "v5.4.1",
  7210. "source": {
  7211. "type": "git",
  7212. "url": "https://github.com/vlucas/phpdotenv.git",
  7213. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  7214. },
  7215. "dist": {
  7216. "type": "zip",
  7217. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7218. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7219. "shasum": "",
  7220. "mirrors": [
  7221. {
  7222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7223. "preferred": true
  7224. }
  7225. ]
  7226. },
  7227. "require": {
  7228. "ext-pcre": "*",
  7229. "graham-campbell/result-type": "^1.0.2",
  7230. "php": "^7.1.3 || ^8.0",
  7231. "phpoption/phpoption": "^1.8",
  7232. "symfony/polyfill-ctype": "^1.23",
  7233. "symfony/polyfill-mbstring": "^1.23.1",
  7234. "symfony/polyfill-php80": "^1.23.1"
  7235. },
  7236. "require-dev": {
  7237. "bamarni/composer-bin-plugin": "^1.4.1",
  7238. "ext-filter": "*",
  7239. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  7240. },
  7241. "suggest": {
  7242. "ext-filter": "Required to use the boolean validator."
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "branch-alias": {
  7247. "dev-master": "5.4-dev"
  7248. }
  7249. },
  7250. "autoload": {
  7251. "psr-4": {
  7252. "Dotenv\\": "src/"
  7253. }
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "BSD-3-Clause"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Graham Campbell",
  7262. "email": "hello@gjcampbell.co.uk",
  7263. "homepage": "https://github.com/GrahamCampbell"
  7264. },
  7265. {
  7266. "name": "Vance Lucas",
  7267. "email": "vance@vancelucas.com",
  7268. "homepage": "https://github.com/vlucas"
  7269. }
  7270. ],
  7271. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7272. "keywords": [
  7273. "dotenv",
  7274. "env",
  7275. "environment"
  7276. ],
  7277. "support": {
  7278. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7279. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  7280. },
  7281. "funding": [
  7282. {
  7283. "url": "https://github.com/GrahamCampbell",
  7284. "type": "github"
  7285. },
  7286. {
  7287. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7288. "type": "tidelift"
  7289. }
  7290. ],
  7291. "time": "2021-12-12T23:22:04+00:00"
  7292. },
  7293. {
  7294. "name": "voku/portable-ascii",
  7295. "version": "2.0.1",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/voku/portable-ascii.git",
  7299. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7304. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7305. "shasum": "",
  7306. "mirrors": [
  7307. {
  7308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7309. "preferred": true
  7310. }
  7311. ]
  7312. },
  7313. "require": {
  7314. "php": ">=7.0.0"
  7315. },
  7316. "require-dev": {
  7317. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7318. },
  7319. "suggest": {
  7320. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7321. },
  7322. "type": "library",
  7323. "autoload": {
  7324. "psr-4": {
  7325. "voku\\": "src/voku/"
  7326. }
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "Lars Moelleken",
  7335. "homepage": "http://www.moelleken.org/"
  7336. }
  7337. ],
  7338. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7339. "homepage": "https://github.com/voku/portable-ascii",
  7340. "keywords": [
  7341. "ascii",
  7342. "clean",
  7343. "php"
  7344. ],
  7345. "support": {
  7346. "issues": "https://github.com/voku/portable-ascii/issues",
  7347. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://www.paypal.me/moelleken",
  7352. "type": "custom"
  7353. },
  7354. {
  7355. "url": "https://github.com/voku",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://opencollective.com/portable-ascii",
  7360. "type": "open_collective"
  7361. },
  7362. {
  7363. "url": "https://www.patreon.com/voku",
  7364. "type": "patreon"
  7365. },
  7366. {
  7367. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7368. "type": "tidelift"
  7369. }
  7370. ],
  7371. "time": "2022-03-08T17:03:00+00:00"
  7372. },
  7373. {
  7374. "name": "w7corp/easywechat",
  7375. "version": "6.8.0",
  7376. "source": {
  7377. "type": "git",
  7378. "url": "https://github.com/w7corp/easywechat.git",
  7379. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26"
  7380. },
  7381. "dist": {
  7382. "type": "zip",
  7383. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7384. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7385. "shasum": "",
  7386. "mirrors": [
  7387. {
  7388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7389. "preferred": true
  7390. }
  7391. ]
  7392. },
  7393. "require": {
  7394. "ext-curl": "*",
  7395. "ext-fileinfo": "*",
  7396. "ext-libxml": "*",
  7397. "ext-openssl": "*",
  7398. "ext-simplexml": "*",
  7399. "ext-sodium": "*",
  7400. "monolog/monolog": "^2.2",
  7401. "nyholm/psr7": "^1.5",
  7402. "nyholm/psr7-server": "^1.0",
  7403. "overtrue/socialite": "^3.5|^4.0.1",
  7404. "php": ">=8.0.2",
  7405. "psr/http-client": "^1.0",
  7406. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7407. "symfony/cache": "^5.4|^6.0",
  7408. "symfony/http-client": "^5.4|^6.0",
  7409. "symfony/http-foundation": "^5.4|^6.0",
  7410. "symfony/mime": "^5.4|^6.0",
  7411. "symfony/polyfill-php81": "^1.25",
  7412. "symfony/psr-http-message-bridge": "^2.1.2",
  7413. "thenorthmemory/xml": "^1.0"
  7414. },
  7415. "require-dev": {
  7416. "brainmaestro/composer-git-hooks": "^2.8",
  7417. "jetbrains/phpstorm-attributes": "^1.0",
  7418. "laravel/pint": "^1.2",
  7419. "mikey179/vfsstream": "^1.6",
  7420. "mockery/mockery": "^1.4.4",
  7421. "phpstan/phpstan": "^1.0",
  7422. "phpunit/phpunit": "^9.5",
  7423. "symfony/var-dumper": "^5.2"
  7424. },
  7425. "type": "library",
  7426. "extra": {
  7427. "hooks": {
  7428. "pre-commit": [
  7429. "composer check-style",
  7430. "composer phpstan",
  7431. "composer test"
  7432. ],
  7433. "pre-push": [
  7434. "composer check-style"
  7435. ],
  7436. "config": {
  7437. "stop-on-failure": [
  7438. "pre-commit",
  7439. "pre-push"
  7440. ]
  7441. }
  7442. }
  7443. },
  7444. "autoload": {
  7445. "psr-4": {
  7446. "EasyWeChat\\": "src/"
  7447. }
  7448. },
  7449. "notification-url": "https://packagist.org/downloads/",
  7450. "license": [
  7451. "MIT"
  7452. ],
  7453. "authors": [
  7454. {
  7455. "name": "overtrue",
  7456. "email": "anzhengchao@gmail.com"
  7457. }
  7458. ],
  7459. "description": "微信SDK",
  7460. "keywords": [
  7461. "easywechat",
  7462. "sdk",
  7463. "wechat",
  7464. "weixin",
  7465. "weixin-sdk"
  7466. ],
  7467. "support": {
  7468. "issues": "https://github.com/w7corp/easywechat/issues",
  7469. "source": "https://github.com/w7corp/easywechat/tree/6.8.0"
  7470. },
  7471. "funding": [
  7472. {
  7473. "url": "https://github.com/overtrue",
  7474. "type": "github"
  7475. }
  7476. ],
  7477. "time": "2022-09-25T13:05:18+00:00"
  7478. },
  7479. {
  7480. "name": "webmozart/assert",
  7481. "version": "1.11.0",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://github.com/webmozarts/assert.git",
  7485. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7490. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7491. "shasum": "",
  7492. "mirrors": [
  7493. {
  7494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7495. "preferred": true
  7496. }
  7497. ]
  7498. },
  7499. "require": {
  7500. "ext-ctype": "*",
  7501. "php": "^7.2 || ^8.0"
  7502. },
  7503. "conflict": {
  7504. "phpstan/phpstan": "<0.12.20",
  7505. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7506. },
  7507. "require-dev": {
  7508. "phpunit/phpunit": "^8.5.13"
  7509. },
  7510. "type": "library",
  7511. "extra": {
  7512. "branch-alias": {
  7513. "dev-master": "1.10-dev"
  7514. }
  7515. },
  7516. "autoload": {
  7517. "psr-4": {
  7518. "Webmozart\\Assert\\": "src/"
  7519. }
  7520. },
  7521. "notification-url": "https://packagist.org/downloads/",
  7522. "license": [
  7523. "MIT"
  7524. ],
  7525. "authors": [
  7526. {
  7527. "name": "Bernhard Schussek",
  7528. "email": "bschussek@gmail.com"
  7529. }
  7530. ],
  7531. "description": "Assertions to validate method input/output with nice error messages.",
  7532. "keywords": [
  7533. "assert",
  7534. "check",
  7535. "validate"
  7536. ],
  7537. "support": {
  7538. "issues": "https://github.com/webmozarts/assert/issues",
  7539. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7540. },
  7541. "time": "2022-06-03T18:03:27+00:00"
  7542. }
  7543. ],
  7544. "packages-dev": [
  7545. {
  7546. "name": "barryvdh/laravel-ide-helper",
  7547. "version": "v2.12.3",
  7548. "source": {
  7549. "type": "git",
  7550. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7551. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  7552. },
  7553. "dist": {
  7554. "type": "zip",
  7555. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7556. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7557. "shasum": "",
  7558. "mirrors": [
  7559. {
  7560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7561. "preferred": true
  7562. }
  7563. ]
  7564. },
  7565. "require": {
  7566. "barryvdh/reflection-docblock": "^2.0.6",
  7567. "composer/pcre": "^1 || ^2 || ^3",
  7568. "doctrine/dbal": "^2.6 || ^3",
  7569. "ext-json": "*",
  7570. "illuminate/console": "^8 || ^9",
  7571. "illuminate/filesystem": "^8 || ^9",
  7572. "illuminate/support": "^8 || ^9",
  7573. "nikic/php-parser": "^4.7",
  7574. "php": "^7.3 || ^8.0",
  7575. "phpdocumentor/type-resolver": "^1.1.0"
  7576. },
  7577. "require-dev": {
  7578. "ext-pdo_sqlite": "*",
  7579. "friendsofphp/php-cs-fixer": "^2",
  7580. "illuminate/config": "^8 || ^9",
  7581. "illuminate/view": "^8 || ^9",
  7582. "mockery/mockery": "^1.4",
  7583. "orchestra/testbench": "^6 || ^7",
  7584. "phpunit/phpunit": "^8.5 || ^9",
  7585. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  7586. "vimeo/psalm": "^3.12"
  7587. },
  7588. "suggest": {
  7589. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-master": "2.12-dev"
  7595. },
  7596. "laravel": {
  7597. "providers": [
  7598. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7599. ]
  7600. }
  7601. },
  7602. "autoload": {
  7603. "psr-4": {
  7604. "Barryvdh\\LaravelIdeHelper\\": "src"
  7605. }
  7606. },
  7607. "notification-url": "https://packagist.org/downloads/",
  7608. "license": [
  7609. "MIT"
  7610. ],
  7611. "authors": [
  7612. {
  7613. "name": "Barry vd. Heuvel",
  7614. "email": "barryvdh@gmail.com"
  7615. }
  7616. ],
  7617. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7618. "keywords": [
  7619. "autocomplete",
  7620. "codeintel",
  7621. "helper",
  7622. "ide",
  7623. "laravel",
  7624. "netbeans",
  7625. "phpdoc",
  7626. "phpstorm",
  7627. "sublime"
  7628. ],
  7629. "support": {
  7630. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7631. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  7632. },
  7633. "funding": [
  7634. {
  7635. "url": "https://fruitcake.nl",
  7636. "type": "custom"
  7637. },
  7638. {
  7639. "url": "https://github.com/barryvdh",
  7640. "type": "github"
  7641. }
  7642. ],
  7643. "time": "2022-03-06T14:33:42+00:00"
  7644. },
  7645. {
  7646. "name": "barryvdh/reflection-docblock",
  7647. "version": "v2.1.0",
  7648. "source": {
  7649. "type": "git",
  7650. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7651. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  7652. },
  7653. "dist": {
  7654. "type": "zip",
  7655. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  7656. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  7657. "shasum": "",
  7658. "mirrors": [
  7659. {
  7660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7661. "preferred": true
  7662. }
  7663. ]
  7664. },
  7665. "require": {
  7666. "php": ">=5.3.3"
  7667. },
  7668. "require-dev": {
  7669. "phpunit/phpunit": "^8.5.14|^9"
  7670. },
  7671. "suggest": {
  7672. "dflydev/markdown": "~1.0",
  7673. "erusev/parsedown": "~1.0"
  7674. },
  7675. "type": "library",
  7676. "extra": {
  7677. "branch-alias": {
  7678. "dev-master": "2.0.x-dev"
  7679. }
  7680. },
  7681. "autoload": {
  7682. "psr-0": {
  7683. "Barryvdh": [
  7684. "src/"
  7685. ]
  7686. }
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "MIT"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Mike van Riel",
  7695. "email": "mike.vanriel@naenius.com"
  7696. }
  7697. ],
  7698. "support": {
  7699. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  7700. },
  7701. "time": "2022-10-31T15:35:43+00:00"
  7702. },
  7703. {
  7704. "name": "composer/pcre",
  7705. "version": "3.0.2",
  7706. "source": {
  7707. "type": "git",
  7708. "url": "https://github.com/composer/pcre.git",
  7709. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb"
  7710. },
  7711. "dist": {
  7712. "type": "zip",
  7713. "url": "https://api.github.com/repos/composer/pcre/zipball/4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  7714. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  7715. "shasum": "",
  7716. "mirrors": [
  7717. {
  7718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7719. "preferred": true
  7720. }
  7721. ]
  7722. },
  7723. "require": {
  7724. "php": "^7.4 || ^8.0"
  7725. },
  7726. "require-dev": {
  7727. "phpstan/phpstan": "^1.3",
  7728. "phpstan/phpstan-strict-rules": "^1.1",
  7729. "symfony/phpunit-bridge": "^5"
  7730. },
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-main": "3.x-dev"
  7735. }
  7736. },
  7737. "autoload": {
  7738. "psr-4": {
  7739. "Composer\\Pcre\\": "src"
  7740. }
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Jordi Boggiano",
  7749. "email": "j.boggiano@seld.be",
  7750. "homepage": "http://seld.be"
  7751. }
  7752. ],
  7753. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7754. "keywords": [
  7755. "PCRE",
  7756. "preg",
  7757. "regex",
  7758. "regular expression"
  7759. ],
  7760. "support": {
  7761. "issues": "https://github.com/composer/pcre/issues",
  7762. "source": "https://github.com/composer/pcre/tree/3.0.2"
  7763. },
  7764. "funding": [
  7765. {
  7766. "url": "https://packagist.com",
  7767. "type": "custom"
  7768. },
  7769. {
  7770. "url": "https://github.com/composer",
  7771. "type": "github"
  7772. },
  7773. {
  7774. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7775. "type": "tidelift"
  7776. }
  7777. ],
  7778. "time": "2022-11-03T20:24:16+00:00"
  7779. },
  7780. {
  7781. "name": "doctrine/cache",
  7782. "version": "2.2.0",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/doctrine/cache.git",
  7786. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  7791. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  7792. "shasum": "",
  7793. "mirrors": [
  7794. {
  7795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7796. "preferred": true
  7797. }
  7798. ]
  7799. },
  7800. "require": {
  7801. "php": "~7.1 || ^8.0"
  7802. },
  7803. "conflict": {
  7804. "doctrine/common": ">2.2,<2.4"
  7805. },
  7806. "require-dev": {
  7807. "cache/integration-tests": "dev-master",
  7808. "doctrine/coding-standard": "^9",
  7809. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7810. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  7811. "symfony/cache": "^4.4 || ^5.4 || ^6",
  7812. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  7813. },
  7814. "type": "library",
  7815. "autoload": {
  7816. "psr-4": {
  7817. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7818. }
  7819. },
  7820. "notification-url": "https://packagist.org/downloads/",
  7821. "license": [
  7822. "MIT"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Guilherme Blanco",
  7827. "email": "guilhermeblanco@gmail.com"
  7828. },
  7829. {
  7830. "name": "Roman Borschel",
  7831. "email": "roman@code-factory.org"
  7832. },
  7833. {
  7834. "name": "Benjamin Eberlei",
  7835. "email": "kontakt@beberlei.de"
  7836. },
  7837. {
  7838. "name": "Jonathan Wage",
  7839. "email": "jonwage@gmail.com"
  7840. },
  7841. {
  7842. "name": "Johannes Schmitt",
  7843. "email": "schmittjoh@gmail.com"
  7844. }
  7845. ],
  7846. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7847. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7848. "keywords": [
  7849. "abstraction",
  7850. "apcu",
  7851. "cache",
  7852. "caching",
  7853. "couchdb",
  7854. "memcached",
  7855. "php",
  7856. "redis",
  7857. "xcache"
  7858. ],
  7859. "support": {
  7860. "issues": "https://github.com/doctrine/cache/issues",
  7861. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  7862. },
  7863. "funding": [
  7864. {
  7865. "url": "https://www.doctrine-project.org/sponsorship.html",
  7866. "type": "custom"
  7867. },
  7868. {
  7869. "url": "https://www.patreon.com/phpdoctrine",
  7870. "type": "patreon"
  7871. },
  7872. {
  7873. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7874. "type": "tidelift"
  7875. }
  7876. ],
  7877. "time": "2022-05-20T20:07:39+00:00"
  7878. },
  7879. {
  7880. "name": "doctrine/dbal",
  7881. "version": "3.6.1",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/doctrine/dbal.git",
  7885. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  7890. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  7891. "shasum": "",
  7892. "mirrors": [
  7893. {
  7894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7895. "preferred": true
  7896. }
  7897. ]
  7898. },
  7899. "require": {
  7900. "composer-runtime-api": "^2",
  7901. "doctrine/cache": "^1.11|^2.0",
  7902. "doctrine/deprecations": "^0.5.3|^1",
  7903. "doctrine/event-manager": "^1|^2",
  7904. "php": "^7.4 || ^8.0",
  7905. "psr/cache": "^1|^2|^3",
  7906. "psr/log": "^1|^2|^3"
  7907. },
  7908. "require-dev": {
  7909. "doctrine/coding-standard": "11.1.0",
  7910. "fig/log-test": "^1",
  7911. "jetbrains/phpstorm-stubs": "2022.3",
  7912. "phpstan/phpstan": "1.10.3",
  7913. "phpstan/phpstan-strict-rules": "^1.5",
  7914. "phpunit/phpunit": "9.6.4",
  7915. "psalm/plugin-phpunit": "0.18.4",
  7916. "squizlabs/php_codesniffer": "3.7.2",
  7917. "symfony/cache": "^5.4|^6.0",
  7918. "symfony/console": "^4.4|^5.4|^6.0",
  7919. "vimeo/psalm": "4.30.0"
  7920. },
  7921. "suggest": {
  7922. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7923. },
  7924. "bin": [
  7925. "bin/doctrine-dbal"
  7926. ],
  7927. "type": "library",
  7928. "autoload": {
  7929. "psr-4": {
  7930. "Doctrine\\DBAL\\": "src"
  7931. }
  7932. },
  7933. "notification-url": "https://packagist.org/downloads/",
  7934. "license": [
  7935. "MIT"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "Guilherme Blanco",
  7940. "email": "guilhermeblanco@gmail.com"
  7941. },
  7942. {
  7943. "name": "Roman Borschel",
  7944. "email": "roman@code-factory.org"
  7945. },
  7946. {
  7947. "name": "Benjamin Eberlei",
  7948. "email": "kontakt@beberlei.de"
  7949. },
  7950. {
  7951. "name": "Jonathan Wage",
  7952. "email": "jonwage@gmail.com"
  7953. }
  7954. ],
  7955. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7956. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7957. "keywords": [
  7958. "abstraction",
  7959. "database",
  7960. "db2",
  7961. "dbal",
  7962. "mariadb",
  7963. "mssql",
  7964. "mysql",
  7965. "oci8",
  7966. "oracle",
  7967. "pdo",
  7968. "pgsql",
  7969. "postgresql",
  7970. "queryobject",
  7971. "sasql",
  7972. "sql",
  7973. "sqlite",
  7974. "sqlserver",
  7975. "sqlsrv"
  7976. ],
  7977. "support": {
  7978. "issues": "https://github.com/doctrine/dbal/issues",
  7979. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  7980. },
  7981. "funding": [
  7982. {
  7983. "url": "https://www.doctrine-project.org/sponsorship.html",
  7984. "type": "custom"
  7985. },
  7986. {
  7987. "url": "https://www.patreon.com/phpdoctrine",
  7988. "type": "patreon"
  7989. },
  7990. {
  7991. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7992. "type": "tidelift"
  7993. }
  7994. ],
  7995. "time": "2023-03-02T19:26:24+00:00"
  7996. },
  7997. {
  7998. "name": "doctrine/event-manager",
  7999. "version": "1.1.1",
  8000. "source": {
  8001. "type": "git",
  8002. "url": "https://github.com/doctrine/event-manager.git",
  8003. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  8004. },
  8005. "dist": {
  8006. "type": "zip",
  8007. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  8008. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  8009. "shasum": "",
  8010. "mirrors": [
  8011. {
  8012. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8013. "preferred": true
  8014. }
  8015. ]
  8016. },
  8017. "require": {
  8018. "php": "^7.1 || ^8.0"
  8019. },
  8020. "conflict": {
  8021. "doctrine/common": "<2.9@dev"
  8022. },
  8023. "require-dev": {
  8024. "doctrine/coding-standard": "^6.0",
  8025. "phpunit/phpunit": "^7.0"
  8026. },
  8027. "type": "library",
  8028. "extra": {
  8029. "branch-alias": {
  8030. "dev-master": "1.0.x-dev"
  8031. }
  8032. },
  8033. "autoload": {
  8034. "psr-4": {
  8035. "Doctrine\\Common\\": "lib/Doctrine/Common"
  8036. }
  8037. },
  8038. "notification-url": "https://packagist.org/downloads/",
  8039. "license": [
  8040. "MIT"
  8041. ],
  8042. "authors": [
  8043. {
  8044. "name": "Guilherme Blanco",
  8045. "email": "guilhermeblanco@gmail.com"
  8046. },
  8047. {
  8048. "name": "Roman Borschel",
  8049. "email": "roman@code-factory.org"
  8050. },
  8051. {
  8052. "name": "Benjamin Eberlei",
  8053. "email": "kontakt@beberlei.de"
  8054. },
  8055. {
  8056. "name": "Jonathan Wage",
  8057. "email": "jonwage@gmail.com"
  8058. },
  8059. {
  8060. "name": "Johannes Schmitt",
  8061. "email": "schmittjoh@gmail.com"
  8062. },
  8063. {
  8064. "name": "Marco Pivetta",
  8065. "email": "ocramius@gmail.com"
  8066. }
  8067. ],
  8068. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  8069. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  8070. "keywords": [
  8071. "event",
  8072. "event dispatcher",
  8073. "event manager",
  8074. "event system",
  8075. "events"
  8076. ],
  8077. "support": {
  8078. "issues": "https://github.com/doctrine/event-manager/issues",
  8079. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  8080. },
  8081. "funding": [
  8082. {
  8083. "url": "https://www.doctrine-project.org/sponsorship.html",
  8084. "type": "custom"
  8085. },
  8086. {
  8087. "url": "https://www.patreon.com/phpdoctrine",
  8088. "type": "patreon"
  8089. },
  8090. {
  8091. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  8092. "type": "tidelift"
  8093. }
  8094. ],
  8095. "time": "2020-05-29T18:28:51+00:00"
  8096. },
  8097. {
  8098. "name": "doctrine/instantiator",
  8099. "version": "1.5.0",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/doctrine/instantiator.git",
  8103. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8108. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8109. "shasum": "",
  8110. "mirrors": [
  8111. {
  8112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8113. "preferred": true
  8114. }
  8115. ]
  8116. },
  8117. "require": {
  8118. "php": "^7.1 || ^8.0"
  8119. },
  8120. "require-dev": {
  8121. "doctrine/coding-standard": "^9 || ^11",
  8122. "ext-pdo": "*",
  8123. "ext-phar": "*",
  8124. "phpbench/phpbench": "^0.16 || ^1",
  8125. "phpstan/phpstan": "^1.4",
  8126. "phpstan/phpstan-phpunit": "^1",
  8127. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8128. "vimeo/psalm": "^4.30 || ^5.4"
  8129. },
  8130. "type": "library",
  8131. "autoload": {
  8132. "psr-4": {
  8133. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8134. }
  8135. },
  8136. "notification-url": "https://packagist.org/downloads/",
  8137. "license": [
  8138. "MIT"
  8139. ],
  8140. "authors": [
  8141. {
  8142. "name": "Marco Pivetta",
  8143. "email": "ocramius@gmail.com",
  8144. "homepage": "https://ocramius.github.io/"
  8145. }
  8146. ],
  8147. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8148. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8149. "keywords": [
  8150. "constructor",
  8151. "instantiate"
  8152. ],
  8153. "support": {
  8154. "issues": "https://github.com/doctrine/instantiator/issues",
  8155. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://www.doctrine-project.org/sponsorship.html",
  8160. "type": "custom"
  8161. },
  8162. {
  8163. "url": "https://www.patreon.com/phpdoctrine",
  8164. "type": "patreon"
  8165. },
  8166. {
  8167. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8168. "type": "tidelift"
  8169. }
  8170. ],
  8171. "time": "2022-12-30T00:15:36+00:00"
  8172. },
  8173. {
  8174. "name": "fakerphp/faker",
  8175. "version": "v1.21.0",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/FakerPHP/Faker.git",
  8179. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8184. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8185. "shasum": "",
  8186. "mirrors": [
  8187. {
  8188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8189. "preferred": true
  8190. }
  8191. ]
  8192. },
  8193. "require": {
  8194. "php": "^7.4 || ^8.0",
  8195. "psr/container": "^1.0 || ^2.0",
  8196. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8197. },
  8198. "conflict": {
  8199. "fzaninotto/faker": "*"
  8200. },
  8201. "require-dev": {
  8202. "bamarni/composer-bin-plugin": "^1.4.1",
  8203. "doctrine/persistence": "^1.3 || ^2.0",
  8204. "ext-intl": "*",
  8205. "phpunit/phpunit": "^9.5.26",
  8206. "symfony/phpunit-bridge": "^5.4.16"
  8207. },
  8208. "suggest": {
  8209. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8210. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8211. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8212. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8213. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8214. },
  8215. "type": "library",
  8216. "extra": {
  8217. "branch-alias": {
  8218. "dev-main": "v1.21-dev"
  8219. }
  8220. },
  8221. "autoload": {
  8222. "psr-4": {
  8223. "Faker\\": "src/Faker/"
  8224. }
  8225. },
  8226. "notification-url": "https://packagist.org/downloads/",
  8227. "license": [
  8228. "MIT"
  8229. ],
  8230. "authors": [
  8231. {
  8232. "name": "François Zaninotto"
  8233. }
  8234. ],
  8235. "description": "Faker is a PHP library that generates fake data for you.",
  8236. "keywords": [
  8237. "data",
  8238. "faker",
  8239. "fixtures"
  8240. ],
  8241. "support": {
  8242. "issues": "https://github.com/FakerPHP/Faker/issues",
  8243. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8244. },
  8245. "time": "2022-12-13T13:54:32+00:00"
  8246. },
  8247. {
  8248. "name": "filp/whoops",
  8249. "version": "2.15.2",
  8250. "source": {
  8251. "type": "git",
  8252. "url": "https://github.com/filp/whoops.git",
  8253. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  8254. },
  8255. "dist": {
  8256. "type": "zip",
  8257. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8258. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8259. "shasum": "",
  8260. "mirrors": [
  8261. {
  8262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8263. "preferred": true
  8264. }
  8265. ]
  8266. },
  8267. "require": {
  8268. "php": "^5.5.9 || ^7.0 || ^8.0",
  8269. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8270. },
  8271. "require-dev": {
  8272. "mockery/mockery": "^0.9 || ^1.0",
  8273. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8274. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8275. },
  8276. "suggest": {
  8277. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8278. "whoops/soap": "Formats errors as SOAP responses"
  8279. },
  8280. "type": "library",
  8281. "extra": {
  8282. "branch-alias": {
  8283. "dev-master": "2.7-dev"
  8284. }
  8285. },
  8286. "autoload": {
  8287. "psr-4": {
  8288. "Whoops\\": "src/Whoops/"
  8289. }
  8290. },
  8291. "notification-url": "https://packagist.org/downloads/",
  8292. "license": [
  8293. "MIT"
  8294. ],
  8295. "authors": [
  8296. {
  8297. "name": "Filipe Dobreira",
  8298. "homepage": "https://github.com/filp",
  8299. "role": "Developer"
  8300. }
  8301. ],
  8302. "description": "php error handling for cool kids",
  8303. "homepage": "https://filp.github.io/whoops/",
  8304. "keywords": [
  8305. "error",
  8306. "exception",
  8307. "handling",
  8308. "library",
  8309. "throwable",
  8310. "whoops"
  8311. ],
  8312. "support": {
  8313. "issues": "https://github.com/filp/whoops/issues",
  8314. "source": "https://github.com/filp/whoops/tree/2.15.2"
  8315. },
  8316. "funding": [
  8317. {
  8318. "url": "https://github.com/denis-sokolov",
  8319. "type": "github"
  8320. }
  8321. ],
  8322. "time": "2023-04-12T12:00:00+00:00"
  8323. },
  8324. {
  8325. "name": "hamcrest/hamcrest-php",
  8326. "version": "v2.0.1",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8330. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8335. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8336. "shasum": "",
  8337. "mirrors": [
  8338. {
  8339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8340. "preferred": true
  8341. }
  8342. ]
  8343. },
  8344. "require": {
  8345. "php": "^5.3|^7.0|^8.0"
  8346. },
  8347. "replace": {
  8348. "cordoval/hamcrest-php": "*",
  8349. "davedevelopment/hamcrest-php": "*",
  8350. "kodova/hamcrest-php": "*"
  8351. },
  8352. "require-dev": {
  8353. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8354. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8355. },
  8356. "type": "library",
  8357. "extra": {
  8358. "branch-alias": {
  8359. "dev-master": "2.1-dev"
  8360. }
  8361. },
  8362. "autoload": {
  8363. "classmap": [
  8364. "hamcrest"
  8365. ]
  8366. },
  8367. "notification-url": "https://packagist.org/downloads/",
  8368. "license": [
  8369. "BSD-3-Clause"
  8370. ],
  8371. "description": "This is the PHP port of Hamcrest Matchers",
  8372. "keywords": [
  8373. "test"
  8374. ],
  8375. "support": {
  8376. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8377. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8378. },
  8379. "time": "2020-07-09T08:09:16+00:00"
  8380. },
  8381. {
  8382. "name": "laravel/pint",
  8383. "version": "v1.5.0",
  8384. "source": {
  8385. "type": "git",
  8386. "url": "https://github.com/laravel/pint.git",
  8387. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362"
  8388. },
  8389. "dist": {
  8390. "type": "zip",
  8391. "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362",
  8392. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362",
  8393. "shasum": "",
  8394. "mirrors": [
  8395. {
  8396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8397. "preferred": true
  8398. }
  8399. ]
  8400. },
  8401. "require": {
  8402. "ext-json": "*",
  8403. "ext-mbstring": "*",
  8404. "ext-tokenizer": "*",
  8405. "ext-xml": "*",
  8406. "php": "^8.0"
  8407. },
  8408. "require-dev": {
  8409. "friendsofphp/php-cs-fixer": "^3.14.4",
  8410. "illuminate/view": "^9.51.0",
  8411. "laravel-zero/framework": "^9.2.0",
  8412. "mockery/mockery": "^1.5.1",
  8413. "nunomaduro/larastan": "^2.4.0",
  8414. "nunomaduro/termwind": "^1.15.1",
  8415. "pestphp/pest": "^1.22.4"
  8416. },
  8417. "bin": [
  8418. "builds/pint"
  8419. ],
  8420. "type": "project",
  8421. "autoload": {
  8422. "psr-4": {
  8423. "App\\": "app/",
  8424. "Database\\Seeders\\": "database/seeders/",
  8425. "Database\\Factories\\": "database/factories/"
  8426. }
  8427. },
  8428. "notification-url": "https://packagist.org/downloads/",
  8429. "license": [
  8430. "MIT"
  8431. ],
  8432. "authors": [
  8433. {
  8434. "name": "Nuno Maduro",
  8435. "email": "enunomaduro@gmail.com"
  8436. }
  8437. ],
  8438. "description": "An opinionated code formatter for PHP.",
  8439. "homepage": "https://laravel.com",
  8440. "keywords": [
  8441. "format",
  8442. "formatter",
  8443. "lint",
  8444. "linter",
  8445. "php"
  8446. ],
  8447. "support": {
  8448. "issues": "https://github.com/laravel/pint/issues",
  8449. "source": "https://github.com/laravel/pint"
  8450. },
  8451. "time": "2023-02-14T16:31:02+00:00"
  8452. },
  8453. {
  8454. "name": "laravel/sail",
  8455. "version": "v1.21.5",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/laravel/sail.git",
  8459. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/laravel/sail/zipball/27af207bb1c53faddcba34c7528b3e969f6a646d",
  8464. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d",
  8465. "shasum": "",
  8466. "mirrors": [
  8467. {
  8468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8469. "preferred": true
  8470. }
  8471. ]
  8472. },
  8473. "require": {
  8474. "illuminate/console": "^8.0|^9.0|^10.0",
  8475. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8476. "illuminate/support": "^8.0|^9.0|^10.0",
  8477. "php": "^7.3|^8.0",
  8478. "symfony/yaml": "^6.0"
  8479. },
  8480. "require-dev": {
  8481. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8482. "phpstan/phpstan": "^1.10"
  8483. },
  8484. "bin": [
  8485. "bin/sail"
  8486. ],
  8487. "type": "library",
  8488. "extra": {
  8489. "branch-alias": {
  8490. "dev-master": "1.x-dev"
  8491. },
  8492. "laravel": {
  8493. "providers": [
  8494. "Laravel\\Sail\\SailServiceProvider"
  8495. ]
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "Laravel\\Sail\\": "src/"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "MIT"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Taylor Otwell",
  8510. "email": "taylor@laravel.com"
  8511. }
  8512. ],
  8513. "description": "Docker files for running a basic Laravel application.",
  8514. "keywords": [
  8515. "docker",
  8516. "laravel"
  8517. ],
  8518. "support": {
  8519. "issues": "https://github.com/laravel/sail/issues",
  8520. "source": "https://github.com/laravel/sail"
  8521. },
  8522. "time": "2023-04-24T13:29:38+00:00"
  8523. },
  8524. {
  8525. "name": "laravel/telescope",
  8526. "version": "v4.14.2",
  8527. "source": {
  8528. "type": "git",
  8529. "url": "https://github.com/laravel/telescope.git",
  8530. "reference": "222bbea975d9f3a10879af153db5c34ffac08034"
  8531. },
  8532. "dist": {
  8533. "type": "zip",
  8534. "url": "https://api.github.com/repos/laravel/telescope/zipball/222bbea975d9f3a10879af153db5c34ffac08034",
  8535. "reference": "222bbea975d9f3a10879af153db5c34ffac08034",
  8536. "shasum": "",
  8537. "mirrors": [
  8538. {
  8539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8540. "preferred": true
  8541. }
  8542. ]
  8543. },
  8544. "require": {
  8545. "ext-json": "*",
  8546. "laravel/framework": "^8.37|^9.0|^10.0",
  8547. "php": "^8.0",
  8548. "symfony/var-dumper": "^5.0|^6.0"
  8549. },
  8550. "require-dev": {
  8551. "ext-gd": "*",
  8552. "guzzlehttp/guzzle": "^6.0|^7.0",
  8553. "laravel/octane": "^1.4",
  8554. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8555. "phpstan/phpstan": "^1.10",
  8556. "phpunit/phpunit": "^9.0"
  8557. },
  8558. "type": "library",
  8559. "extra": {
  8560. "branch-alias": {
  8561. "dev-master": "4.x-dev"
  8562. },
  8563. "laravel": {
  8564. "providers": [
  8565. "Laravel\\Telescope\\TelescopeServiceProvider"
  8566. ]
  8567. }
  8568. },
  8569. "autoload": {
  8570. "psr-4": {
  8571. "Laravel\\Telescope\\": "src/",
  8572. "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
  8573. }
  8574. },
  8575. "notification-url": "https://packagist.org/downloads/",
  8576. "license": [
  8577. "MIT"
  8578. ],
  8579. "authors": [
  8580. {
  8581. "name": "Taylor Otwell",
  8582. "email": "taylor@laravel.com"
  8583. },
  8584. {
  8585. "name": "Mohamed Said",
  8586. "email": "mohamed@laravel.com"
  8587. }
  8588. ],
  8589. "description": "An elegant debug assistant for the Laravel framework.",
  8590. "keywords": [
  8591. "debugging",
  8592. "laravel",
  8593. "monitoring"
  8594. ],
  8595. "support": {
  8596. "issues": "https://github.com/laravel/telescope/issues",
  8597. "source": "https://github.com/laravel/telescope/tree/v4.14.2"
  8598. },
  8599. "time": "2023-04-19T15:24:14+00:00"
  8600. },
  8601. {
  8602. "name": "mockery/mockery",
  8603. "version": "1.5.1",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/mockery/mockery.git",
  8607. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8612. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8613. "shasum": "",
  8614. "mirrors": [
  8615. {
  8616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8617. "preferred": true
  8618. }
  8619. ]
  8620. },
  8621. "require": {
  8622. "hamcrest/hamcrest-php": "^2.0.1",
  8623. "lib-pcre": ">=7.0",
  8624. "php": "^7.3 || ^8.0"
  8625. },
  8626. "conflict": {
  8627. "phpunit/phpunit": "<8.0"
  8628. },
  8629. "require-dev": {
  8630. "phpunit/phpunit": "^8.5 || ^9.3"
  8631. },
  8632. "type": "library",
  8633. "extra": {
  8634. "branch-alias": {
  8635. "dev-master": "1.4.x-dev"
  8636. }
  8637. },
  8638. "autoload": {
  8639. "psr-0": {
  8640. "Mockery": "library/"
  8641. }
  8642. },
  8643. "notification-url": "https://packagist.org/downloads/",
  8644. "license": [
  8645. "BSD-3-Clause"
  8646. ],
  8647. "authors": [
  8648. {
  8649. "name": "Pádraic Brady",
  8650. "email": "padraic.brady@gmail.com",
  8651. "homepage": "http://blog.astrumfutura.com"
  8652. },
  8653. {
  8654. "name": "Dave Marshall",
  8655. "email": "dave.marshall@atstsolutions.co.uk",
  8656. "homepage": "http://davedevelopment.co.uk"
  8657. }
  8658. ],
  8659. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8660. "homepage": "https://github.com/mockery/mockery",
  8661. "keywords": [
  8662. "BDD",
  8663. "TDD",
  8664. "library",
  8665. "mock",
  8666. "mock objects",
  8667. "mockery",
  8668. "stub",
  8669. "test",
  8670. "test double",
  8671. "testing"
  8672. ],
  8673. "support": {
  8674. "issues": "https://github.com/mockery/mockery/issues",
  8675. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8676. },
  8677. "time": "2022-09-07T15:32:08+00:00"
  8678. },
  8679. {
  8680. "name": "myclabs/deep-copy",
  8681. "version": "1.11.1",
  8682. "source": {
  8683. "type": "git",
  8684. "url": "https://github.com/myclabs/DeepCopy.git",
  8685. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8686. },
  8687. "dist": {
  8688. "type": "zip",
  8689. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8690. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8691. "shasum": "",
  8692. "mirrors": [
  8693. {
  8694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8695. "preferred": true
  8696. }
  8697. ]
  8698. },
  8699. "require": {
  8700. "php": "^7.1 || ^8.0"
  8701. },
  8702. "conflict": {
  8703. "doctrine/collections": "<1.6.8",
  8704. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8705. },
  8706. "require-dev": {
  8707. "doctrine/collections": "^1.6.8",
  8708. "doctrine/common": "^2.13.3 || ^3.2.2",
  8709. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8710. },
  8711. "type": "library",
  8712. "autoload": {
  8713. "files": [
  8714. "src/DeepCopy/deep_copy.php"
  8715. ],
  8716. "psr-4": {
  8717. "DeepCopy\\": "src/DeepCopy/"
  8718. }
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "MIT"
  8723. ],
  8724. "description": "Create deep copies (clones) of your objects",
  8725. "keywords": [
  8726. "clone",
  8727. "copy",
  8728. "duplicate",
  8729. "object",
  8730. "object graph"
  8731. ],
  8732. "support": {
  8733. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8734. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8735. },
  8736. "funding": [
  8737. {
  8738. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8739. "type": "tidelift"
  8740. }
  8741. ],
  8742. "time": "2023-03-08T13:26:56+00:00"
  8743. },
  8744. {
  8745. "name": "nunomaduro/collision",
  8746. "version": "v6.4.0",
  8747. "source": {
  8748. "type": "git",
  8749. "url": "https://github.com/nunomaduro/collision.git",
  8750. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  8751. },
  8752. "dist": {
  8753. "type": "zip",
  8754. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  8755. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  8756. "shasum": "",
  8757. "mirrors": [
  8758. {
  8759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8760. "preferred": true
  8761. }
  8762. ]
  8763. },
  8764. "require": {
  8765. "filp/whoops": "^2.14.5",
  8766. "php": "^8.0.0",
  8767. "symfony/console": "^6.0.2"
  8768. },
  8769. "require-dev": {
  8770. "brianium/paratest": "^6.4.1",
  8771. "laravel/framework": "^9.26.1",
  8772. "laravel/pint": "^1.1.1",
  8773. "nunomaduro/larastan": "^1.0.3",
  8774. "nunomaduro/mock-final-classes": "^1.1.0",
  8775. "orchestra/testbench": "^7.7",
  8776. "phpunit/phpunit": "^9.5.23",
  8777. "spatie/ignition": "^1.4.1"
  8778. },
  8779. "type": "library",
  8780. "extra": {
  8781. "branch-alias": {
  8782. "dev-develop": "6.x-dev"
  8783. },
  8784. "laravel": {
  8785. "providers": [
  8786. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8787. ]
  8788. }
  8789. },
  8790. "autoload": {
  8791. "psr-4": {
  8792. "NunoMaduro\\Collision\\": "src/"
  8793. }
  8794. },
  8795. "notification-url": "https://packagist.org/downloads/",
  8796. "license": [
  8797. "MIT"
  8798. ],
  8799. "authors": [
  8800. {
  8801. "name": "Nuno Maduro",
  8802. "email": "enunomaduro@gmail.com"
  8803. }
  8804. ],
  8805. "description": "Cli error handling for console/command-line PHP applications.",
  8806. "keywords": [
  8807. "artisan",
  8808. "cli",
  8809. "command-line",
  8810. "console",
  8811. "error",
  8812. "handling",
  8813. "laravel",
  8814. "laravel-zero",
  8815. "php",
  8816. "symfony"
  8817. ],
  8818. "support": {
  8819. "issues": "https://github.com/nunomaduro/collision/issues",
  8820. "source": "https://github.com/nunomaduro/collision"
  8821. },
  8822. "funding": [
  8823. {
  8824. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8825. "type": "custom"
  8826. },
  8827. {
  8828. "url": "https://github.com/nunomaduro",
  8829. "type": "github"
  8830. },
  8831. {
  8832. "url": "https://www.patreon.com/nunomaduro",
  8833. "type": "patreon"
  8834. }
  8835. ],
  8836. "time": "2023-01-03T12:54:54+00:00"
  8837. },
  8838. {
  8839. "name": "phar-io/manifest",
  8840. "version": "2.0.3",
  8841. "source": {
  8842. "type": "git",
  8843. "url": "https://github.com/phar-io/manifest.git",
  8844. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8845. },
  8846. "dist": {
  8847. "type": "zip",
  8848. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8849. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8850. "shasum": "",
  8851. "mirrors": [
  8852. {
  8853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8854. "preferred": true
  8855. }
  8856. ]
  8857. },
  8858. "require": {
  8859. "ext-dom": "*",
  8860. "ext-phar": "*",
  8861. "ext-xmlwriter": "*",
  8862. "phar-io/version": "^3.0.1",
  8863. "php": "^7.2 || ^8.0"
  8864. },
  8865. "type": "library",
  8866. "extra": {
  8867. "branch-alias": {
  8868. "dev-master": "2.0.x-dev"
  8869. }
  8870. },
  8871. "autoload": {
  8872. "classmap": [
  8873. "src/"
  8874. ]
  8875. },
  8876. "notification-url": "https://packagist.org/downloads/",
  8877. "license": [
  8878. "BSD-3-Clause"
  8879. ],
  8880. "authors": [
  8881. {
  8882. "name": "Arne Blankerts",
  8883. "email": "arne@blankerts.de",
  8884. "role": "Developer"
  8885. },
  8886. {
  8887. "name": "Sebastian Heuer",
  8888. "email": "sebastian@phpeople.de",
  8889. "role": "Developer"
  8890. },
  8891. {
  8892. "name": "Sebastian Bergmann",
  8893. "email": "sebastian@phpunit.de",
  8894. "role": "Developer"
  8895. }
  8896. ],
  8897. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8898. "support": {
  8899. "issues": "https://github.com/phar-io/manifest/issues",
  8900. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8901. },
  8902. "time": "2021-07-20T11:28:43+00:00"
  8903. },
  8904. {
  8905. "name": "phar-io/version",
  8906. "version": "3.2.1",
  8907. "source": {
  8908. "type": "git",
  8909. "url": "https://github.com/phar-io/version.git",
  8910. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8911. },
  8912. "dist": {
  8913. "type": "zip",
  8914. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8915. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8916. "shasum": "",
  8917. "mirrors": [
  8918. {
  8919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8920. "preferred": true
  8921. }
  8922. ]
  8923. },
  8924. "require": {
  8925. "php": "^7.2 || ^8.0"
  8926. },
  8927. "type": "library",
  8928. "autoload": {
  8929. "classmap": [
  8930. "src/"
  8931. ]
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "BSD-3-Clause"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Arne Blankerts",
  8940. "email": "arne@blankerts.de",
  8941. "role": "Developer"
  8942. },
  8943. {
  8944. "name": "Sebastian Heuer",
  8945. "email": "sebastian@phpeople.de",
  8946. "role": "Developer"
  8947. },
  8948. {
  8949. "name": "Sebastian Bergmann",
  8950. "email": "sebastian@phpunit.de",
  8951. "role": "Developer"
  8952. }
  8953. ],
  8954. "description": "Library for handling version information and constraints",
  8955. "support": {
  8956. "issues": "https://github.com/phar-io/version/issues",
  8957. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8958. },
  8959. "time": "2022-02-21T01:04:05+00:00"
  8960. },
  8961. {
  8962. "name": "phpdocumentor/reflection-common",
  8963. "version": "2.2.0",
  8964. "source": {
  8965. "type": "git",
  8966. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8967. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8968. },
  8969. "dist": {
  8970. "type": "zip",
  8971. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8972. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8973. "shasum": "",
  8974. "mirrors": [
  8975. {
  8976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8977. "preferred": true
  8978. }
  8979. ]
  8980. },
  8981. "require": {
  8982. "php": "^7.2 || ^8.0"
  8983. },
  8984. "type": "library",
  8985. "extra": {
  8986. "branch-alias": {
  8987. "dev-2.x": "2.x-dev"
  8988. }
  8989. },
  8990. "autoload": {
  8991. "psr-4": {
  8992. "phpDocumentor\\Reflection\\": "src/"
  8993. }
  8994. },
  8995. "notification-url": "https://packagist.org/downloads/",
  8996. "license": [
  8997. "MIT"
  8998. ],
  8999. "authors": [
  9000. {
  9001. "name": "Jaap van Otterdijk",
  9002. "email": "opensource@ijaap.nl"
  9003. }
  9004. ],
  9005. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9006. "homepage": "http://www.phpdoc.org",
  9007. "keywords": [
  9008. "FQSEN",
  9009. "phpDocumentor",
  9010. "phpdoc",
  9011. "reflection",
  9012. "static analysis"
  9013. ],
  9014. "support": {
  9015. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9016. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9017. },
  9018. "time": "2020-06-27T09:03:43+00:00"
  9019. },
  9020. {
  9021. "name": "phpdocumentor/type-resolver",
  9022. "version": "1.7.1",
  9023. "source": {
  9024. "type": "git",
  9025. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9026. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  9027. },
  9028. "dist": {
  9029. "type": "zip",
  9030. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  9031. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  9032. "shasum": "",
  9033. "mirrors": [
  9034. {
  9035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9036. "preferred": true
  9037. }
  9038. ]
  9039. },
  9040. "require": {
  9041. "doctrine/deprecations": "^1.0",
  9042. "php": "^7.4 || ^8.0",
  9043. "phpdocumentor/reflection-common": "^2.0",
  9044. "phpstan/phpdoc-parser": "^1.13"
  9045. },
  9046. "require-dev": {
  9047. "ext-tokenizer": "*",
  9048. "phpbench/phpbench": "^1.2",
  9049. "phpstan/extension-installer": "^1.1",
  9050. "phpstan/phpstan": "^1.8",
  9051. "phpstan/phpstan-phpunit": "^1.1",
  9052. "phpunit/phpunit": "^9.5",
  9053. "rector/rector": "^0.13.9",
  9054. "vimeo/psalm": "^4.25"
  9055. },
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-1.x": "1.x-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "psr-4": {
  9064. "phpDocumentor\\Reflection\\": "src"
  9065. }
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "MIT"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Mike van Riel",
  9074. "email": "me@mikevanriel.com"
  9075. }
  9076. ],
  9077. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9078. "support": {
  9079. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9080. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  9081. },
  9082. "time": "2023-03-27T19:02:04+00:00"
  9083. },
  9084. {
  9085. "name": "phpstan/phpdoc-parser",
  9086. "version": "1.20.3",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9090. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6c04009f6cae6eda2f040745b6b846080ef069c2",
  9095. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2",
  9096. "shasum": "",
  9097. "mirrors": [
  9098. {
  9099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9100. "preferred": true
  9101. }
  9102. ]
  9103. },
  9104. "require": {
  9105. "php": "^7.2 || ^8.0"
  9106. },
  9107. "require-dev": {
  9108. "php-parallel-lint/php-parallel-lint": "^1.2",
  9109. "phpstan/extension-installer": "^1.0",
  9110. "phpstan/phpstan": "^1.5",
  9111. "phpstan/phpstan-phpunit": "^1.1",
  9112. "phpstan/phpstan-strict-rules": "^1.0",
  9113. "phpunit/phpunit": "^9.5",
  9114. "symfony/process": "^5.2"
  9115. },
  9116. "type": "library",
  9117. "autoload": {
  9118. "psr-4": {
  9119. "PHPStan\\PhpDocParser\\": [
  9120. "src/"
  9121. ]
  9122. }
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "MIT"
  9127. ],
  9128. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9129. "support": {
  9130. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9131. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.3"
  9132. },
  9133. "time": "2023-04-25T09:01:03+00:00"
  9134. },
  9135. {
  9136. "name": "phpunit/php-code-coverage",
  9137. "version": "9.2.26",
  9138. "source": {
  9139. "type": "git",
  9140. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9141. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9142. },
  9143. "dist": {
  9144. "type": "zip",
  9145. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9146. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9147. "shasum": "",
  9148. "mirrors": [
  9149. {
  9150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9151. "preferred": true
  9152. }
  9153. ]
  9154. },
  9155. "require": {
  9156. "ext-dom": "*",
  9157. "ext-libxml": "*",
  9158. "ext-xmlwriter": "*",
  9159. "nikic/php-parser": "^4.15",
  9160. "php": ">=7.3",
  9161. "phpunit/php-file-iterator": "^3.0.3",
  9162. "phpunit/php-text-template": "^2.0.2",
  9163. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9164. "sebastian/complexity": "^2.0",
  9165. "sebastian/environment": "^5.1.2",
  9166. "sebastian/lines-of-code": "^1.0.3",
  9167. "sebastian/version": "^3.0.1",
  9168. "theseer/tokenizer": "^1.2.0"
  9169. },
  9170. "require-dev": {
  9171. "phpunit/phpunit": "^9.3"
  9172. },
  9173. "suggest": {
  9174. "ext-pcov": "PHP extension that provides line coverage",
  9175. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9176. },
  9177. "type": "library",
  9178. "extra": {
  9179. "branch-alias": {
  9180. "dev-master": "9.2-dev"
  9181. }
  9182. },
  9183. "autoload": {
  9184. "classmap": [
  9185. "src/"
  9186. ]
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "BSD-3-Clause"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "Sebastian Bergmann",
  9195. "email": "sebastian@phpunit.de",
  9196. "role": "lead"
  9197. }
  9198. ],
  9199. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9200. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9201. "keywords": [
  9202. "coverage",
  9203. "testing",
  9204. "xunit"
  9205. ],
  9206. "support": {
  9207. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9208. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9209. },
  9210. "funding": [
  9211. {
  9212. "url": "https://github.com/sebastianbergmann",
  9213. "type": "github"
  9214. }
  9215. ],
  9216. "time": "2023-03-06T12:58:08+00:00"
  9217. },
  9218. {
  9219. "name": "phpunit/php-file-iterator",
  9220. "version": "3.0.6",
  9221. "source": {
  9222. "type": "git",
  9223. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9224. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9225. },
  9226. "dist": {
  9227. "type": "zip",
  9228. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9229. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9230. "shasum": "",
  9231. "mirrors": [
  9232. {
  9233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9234. "preferred": true
  9235. }
  9236. ]
  9237. },
  9238. "require": {
  9239. "php": ">=7.3"
  9240. },
  9241. "require-dev": {
  9242. "phpunit/phpunit": "^9.3"
  9243. },
  9244. "type": "library",
  9245. "extra": {
  9246. "branch-alias": {
  9247. "dev-master": "3.0-dev"
  9248. }
  9249. },
  9250. "autoload": {
  9251. "classmap": [
  9252. "src/"
  9253. ]
  9254. },
  9255. "notification-url": "https://packagist.org/downloads/",
  9256. "license": [
  9257. "BSD-3-Clause"
  9258. ],
  9259. "authors": [
  9260. {
  9261. "name": "Sebastian Bergmann",
  9262. "email": "sebastian@phpunit.de",
  9263. "role": "lead"
  9264. }
  9265. ],
  9266. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9267. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9268. "keywords": [
  9269. "filesystem",
  9270. "iterator"
  9271. ],
  9272. "support": {
  9273. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9274. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9275. },
  9276. "funding": [
  9277. {
  9278. "url": "https://github.com/sebastianbergmann",
  9279. "type": "github"
  9280. }
  9281. ],
  9282. "time": "2021-12-02T12:48:52+00:00"
  9283. },
  9284. {
  9285. "name": "phpunit/php-invoker",
  9286. "version": "3.1.1",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9290. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9295. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9296. "shasum": "",
  9297. "mirrors": [
  9298. {
  9299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9300. "preferred": true
  9301. }
  9302. ]
  9303. },
  9304. "require": {
  9305. "php": ">=7.3"
  9306. },
  9307. "require-dev": {
  9308. "ext-pcntl": "*",
  9309. "phpunit/phpunit": "^9.3"
  9310. },
  9311. "suggest": {
  9312. "ext-pcntl": "*"
  9313. },
  9314. "type": "library",
  9315. "extra": {
  9316. "branch-alias": {
  9317. "dev-master": "3.1-dev"
  9318. }
  9319. },
  9320. "autoload": {
  9321. "classmap": [
  9322. "src/"
  9323. ]
  9324. },
  9325. "notification-url": "https://packagist.org/downloads/",
  9326. "license": [
  9327. "BSD-3-Clause"
  9328. ],
  9329. "authors": [
  9330. {
  9331. "name": "Sebastian Bergmann",
  9332. "email": "sebastian@phpunit.de",
  9333. "role": "lead"
  9334. }
  9335. ],
  9336. "description": "Invoke callables with a timeout",
  9337. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9338. "keywords": [
  9339. "process"
  9340. ],
  9341. "support": {
  9342. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9343. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9344. },
  9345. "funding": [
  9346. {
  9347. "url": "https://github.com/sebastianbergmann",
  9348. "type": "github"
  9349. }
  9350. ],
  9351. "time": "2020-09-28T05:58:55+00:00"
  9352. },
  9353. {
  9354. "name": "phpunit/php-text-template",
  9355. "version": "2.0.4",
  9356. "source": {
  9357. "type": "git",
  9358. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9359. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9360. },
  9361. "dist": {
  9362. "type": "zip",
  9363. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9364. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9365. "shasum": "",
  9366. "mirrors": [
  9367. {
  9368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9369. "preferred": true
  9370. }
  9371. ]
  9372. },
  9373. "require": {
  9374. "php": ">=7.3"
  9375. },
  9376. "require-dev": {
  9377. "phpunit/phpunit": "^9.3"
  9378. },
  9379. "type": "library",
  9380. "extra": {
  9381. "branch-alias": {
  9382. "dev-master": "2.0-dev"
  9383. }
  9384. },
  9385. "autoload": {
  9386. "classmap": [
  9387. "src/"
  9388. ]
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "BSD-3-Clause"
  9393. ],
  9394. "authors": [
  9395. {
  9396. "name": "Sebastian Bergmann",
  9397. "email": "sebastian@phpunit.de",
  9398. "role": "lead"
  9399. }
  9400. ],
  9401. "description": "Simple template engine.",
  9402. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9403. "keywords": [
  9404. "template"
  9405. ],
  9406. "support": {
  9407. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9408. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://github.com/sebastianbergmann",
  9413. "type": "github"
  9414. }
  9415. ],
  9416. "time": "2020-10-26T05:33:50+00:00"
  9417. },
  9418. {
  9419. "name": "phpunit/php-timer",
  9420. "version": "5.0.3",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9424. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9429. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9430. "shasum": "",
  9431. "mirrors": [
  9432. {
  9433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9434. "preferred": true
  9435. }
  9436. ]
  9437. },
  9438. "require": {
  9439. "php": ">=7.3"
  9440. },
  9441. "require-dev": {
  9442. "phpunit/phpunit": "^9.3"
  9443. },
  9444. "type": "library",
  9445. "extra": {
  9446. "branch-alias": {
  9447. "dev-master": "5.0-dev"
  9448. }
  9449. },
  9450. "autoload": {
  9451. "classmap": [
  9452. "src/"
  9453. ]
  9454. },
  9455. "notification-url": "https://packagist.org/downloads/",
  9456. "license": [
  9457. "BSD-3-Clause"
  9458. ],
  9459. "authors": [
  9460. {
  9461. "name": "Sebastian Bergmann",
  9462. "email": "sebastian@phpunit.de",
  9463. "role": "lead"
  9464. }
  9465. ],
  9466. "description": "Utility class for timing",
  9467. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9468. "keywords": [
  9469. "timer"
  9470. ],
  9471. "support": {
  9472. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9473. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9474. },
  9475. "funding": [
  9476. {
  9477. "url": "https://github.com/sebastianbergmann",
  9478. "type": "github"
  9479. }
  9480. ],
  9481. "time": "2020-10-26T13:16:10+00:00"
  9482. },
  9483. {
  9484. "name": "phpunit/phpunit",
  9485. "version": "9.6.7",
  9486. "source": {
  9487. "type": "git",
  9488. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9489. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
  9490. },
  9491. "dist": {
  9492. "type": "zip",
  9493. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9494. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9495. "shasum": "",
  9496. "mirrors": [
  9497. {
  9498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9499. "preferred": true
  9500. }
  9501. ]
  9502. },
  9503. "require": {
  9504. "doctrine/instantiator": "^1.3.1 || ^2",
  9505. "ext-dom": "*",
  9506. "ext-json": "*",
  9507. "ext-libxml": "*",
  9508. "ext-mbstring": "*",
  9509. "ext-xml": "*",
  9510. "ext-xmlwriter": "*",
  9511. "myclabs/deep-copy": "^1.10.1",
  9512. "phar-io/manifest": "^2.0.3",
  9513. "phar-io/version": "^3.0.2",
  9514. "php": ">=7.3",
  9515. "phpunit/php-code-coverage": "^9.2.13",
  9516. "phpunit/php-file-iterator": "^3.0.5",
  9517. "phpunit/php-invoker": "^3.1.1",
  9518. "phpunit/php-text-template": "^2.0.3",
  9519. "phpunit/php-timer": "^5.0.2",
  9520. "sebastian/cli-parser": "^1.0.1",
  9521. "sebastian/code-unit": "^1.0.6",
  9522. "sebastian/comparator": "^4.0.8",
  9523. "sebastian/diff": "^4.0.3",
  9524. "sebastian/environment": "^5.1.3",
  9525. "sebastian/exporter": "^4.0.5",
  9526. "sebastian/global-state": "^5.0.1",
  9527. "sebastian/object-enumerator": "^4.0.3",
  9528. "sebastian/resource-operations": "^3.0.3",
  9529. "sebastian/type": "^3.2",
  9530. "sebastian/version": "^3.0.2"
  9531. },
  9532. "suggest": {
  9533. "ext-soap": "To be able to generate mocks based on WSDL files",
  9534. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9535. },
  9536. "bin": [
  9537. "phpunit"
  9538. ],
  9539. "type": "library",
  9540. "extra": {
  9541. "branch-alias": {
  9542. "dev-master": "9.6-dev"
  9543. }
  9544. },
  9545. "autoload": {
  9546. "files": [
  9547. "src/Framework/Assert/Functions.php"
  9548. ],
  9549. "classmap": [
  9550. "src/"
  9551. ]
  9552. },
  9553. "notification-url": "https://packagist.org/downloads/",
  9554. "license": [
  9555. "BSD-3-Clause"
  9556. ],
  9557. "authors": [
  9558. {
  9559. "name": "Sebastian Bergmann",
  9560. "email": "sebastian@phpunit.de",
  9561. "role": "lead"
  9562. }
  9563. ],
  9564. "description": "The PHP Unit Testing framework.",
  9565. "homepage": "https://phpunit.de/",
  9566. "keywords": [
  9567. "phpunit",
  9568. "testing",
  9569. "xunit"
  9570. ],
  9571. "support": {
  9572. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9573. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9574. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
  9575. },
  9576. "funding": [
  9577. {
  9578. "url": "https://phpunit.de/sponsors.html",
  9579. "type": "custom"
  9580. },
  9581. {
  9582. "url": "https://github.com/sebastianbergmann",
  9583. "type": "github"
  9584. },
  9585. {
  9586. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9587. "type": "tidelift"
  9588. }
  9589. ],
  9590. "time": "2023-04-14T08:58:40+00:00"
  9591. },
  9592. {
  9593. "name": "sebastian/cli-parser",
  9594. "version": "1.0.1",
  9595. "source": {
  9596. "type": "git",
  9597. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9598. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9599. },
  9600. "dist": {
  9601. "type": "zip",
  9602. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9603. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9604. "shasum": "",
  9605. "mirrors": [
  9606. {
  9607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9608. "preferred": true
  9609. }
  9610. ]
  9611. },
  9612. "require": {
  9613. "php": ">=7.3"
  9614. },
  9615. "require-dev": {
  9616. "phpunit/phpunit": "^9.3"
  9617. },
  9618. "type": "library",
  9619. "extra": {
  9620. "branch-alias": {
  9621. "dev-master": "1.0-dev"
  9622. }
  9623. },
  9624. "autoload": {
  9625. "classmap": [
  9626. "src/"
  9627. ]
  9628. },
  9629. "notification-url": "https://packagist.org/downloads/",
  9630. "license": [
  9631. "BSD-3-Clause"
  9632. ],
  9633. "authors": [
  9634. {
  9635. "name": "Sebastian Bergmann",
  9636. "email": "sebastian@phpunit.de",
  9637. "role": "lead"
  9638. }
  9639. ],
  9640. "description": "Library for parsing CLI options",
  9641. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9642. "support": {
  9643. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9644. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9645. },
  9646. "funding": [
  9647. {
  9648. "url": "https://github.com/sebastianbergmann",
  9649. "type": "github"
  9650. }
  9651. ],
  9652. "time": "2020-09-28T06:08:49+00:00"
  9653. },
  9654. {
  9655. "name": "sebastian/code-unit",
  9656. "version": "1.0.8",
  9657. "source": {
  9658. "type": "git",
  9659. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9660. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9661. },
  9662. "dist": {
  9663. "type": "zip",
  9664. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9665. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9666. "shasum": "",
  9667. "mirrors": [
  9668. {
  9669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9670. "preferred": true
  9671. }
  9672. ]
  9673. },
  9674. "require": {
  9675. "php": ">=7.3"
  9676. },
  9677. "require-dev": {
  9678. "phpunit/phpunit": "^9.3"
  9679. },
  9680. "type": "library",
  9681. "extra": {
  9682. "branch-alias": {
  9683. "dev-master": "1.0-dev"
  9684. }
  9685. },
  9686. "autoload": {
  9687. "classmap": [
  9688. "src/"
  9689. ]
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "BSD-3-Clause"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Sebastian Bergmann",
  9698. "email": "sebastian@phpunit.de",
  9699. "role": "lead"
  9700. }
  9701. ],
  9702. "description": "Collection of value objects that represent the PHP code units",
  9703. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9704. "support": {
  9705. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9706. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9707. },
  9708. "funding": [
  9709. {
  9710. "url": "https://github.com/sebastianbergmann",
  9711. "type": "github"
  9712. }
  9713. ],
  9714. "time": "2020-10-26T13:08:54+00:00"
  9715. },
  9716. {
  9717. "name": "sebastian/code-unit-reverse-lookup",
  9718. "version": "2.0.3",
  9719. "source": {
  9720. "type": "git",
  9721. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9722. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9723. },
  9724. "dist": {
  9725. "type": "zip",
  9726. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9727. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9728. "shasum": "",
  9729. "mirrors": [
  9730. {
  9731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9732. "preferred": true
  9733. }
  9734. ]
  9735. },
  9736. "require": {
  9737. "php": ">=7.3"
  9738. },
  9739. "require-dev": {
  9740. "phpunit/phpunit": "^9.3"
  9741. },
  9742. "type": "library",
  9743. "extra": {
  9744. "branch-alias": {
  9745. "dev-master": "2.0-dev"
  9746. }
  9747. },
  9748. "autoload": {
  9749. "classmap": [
  9750. "src/"
  9751. ]
  9752. },
  9753. "notification-url": "https://packagist.org/downloads/",
  9754. "license": [
  9755. "BSD-3-Clause"
  9756. ],
  9757. "authors": [
  9758. {
  9759. "name": "Sebastian Bergmann",
  9760. "email": "sebastian@phpunit.de"
  9761. }
  9762. ],
  9763. "description": "Looks up which function or method a line of code belongs to",
  9764. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9765. "support": {
  9766. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9767. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9768. },
  9769. "funding": [
  9770. {
  9771. "url": "https://github.com/sebastianbergmann",
  9772. "type": "github"
  9773. }
  9774. ],
  9775. "time": "2020-09-28T05:30:19+00:00"
  9776. },
  9777. {
  9778. "name": "sebastian/comparator",
  9779. "version": "4.0.8",
  9780. "source": {
  9781. "type": "git",
  9782. "url": "https://github.com/sebastianbergmann/comparator.git",
  9783. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9784. },
  9785. "dist": {
  9786. "type": "zip",
  9787. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9788. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9789. "shasum": "",
  9790. "mirrors": [
  9791. {
  9792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9793. "preferred": true
  9794. }
  9795. ]
  9796. },
  9797. "require": {
  9798. "php": ">=7.3",
  9799. "sebastian/diff": "^4.0",
  9800. "sebastian/exporter": "^4.0"
  9801. },
  9802. "require-dev": {
  9803. "phpunit/phpunit": "^9.3"
  9804. },
  9805. "type": "library",
  9806. "extra": {
  9807. "branch-alias": {
  9808. "dev-master": "4.0-dev"
  9809. }
  9810. },
  9811. "autoload": {
  9812. "classmap": [
  9813. "src/"
  9814. ]
  9815. },
  9816. "notification-url": "https://packagist.org/downloads/",
  9817. "license": [
  9818. "BSD-3-Clause"
  9819. ],
  9820. "authors": [
  9821. {
  9822. "name": "Sebastian Bergmann",
  9823. "email": "sebastian@phpunit.de"
  9824. },
  9825. {
  9826. "name": "Jeff Welch",
  9827. "email": "whatthejeff@gmail.com"
  9828. },
  9829. {
  9830. "name": "Volker Dusch",
  9831. "email": "github@wallbash.com"
  9832. },
  9833. {
  9834. "name": "Bernhard Schussek",
  9835. "email": "bschussek@2bepublished.at"
  9836. }
  9837. ],
  9838. "description": "Provides the functionality to compare PHP values for equality",
  9839. "homepage": "https://github.com/sebastianbergmann/comparator",
  9840. "keywords": [
  9841. "comparator",
  9842. "compare",
  9843. "equality"
  9844. ],
  9845. "support": {
  9846. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9847. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9848. },
  9849. "funding": [
  9850. {
  9851. "url": "https://github.com/sebastianbergmann",
  9852. "type": "github"
  9853. }
  9854. ],
  9855. "time": "2022-09-14T12:41:17+00:00"
  9856. },
  9857. {
  9858. "name": "sebastian/complexity",
  9859. "version": "2.0.2",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/sebastianbergmann/complexity.git",
  9863. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9868. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9869. "shasum": "",
  9870. "mirrors": [
  9871. {
  9872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9873. "preferred": true
  9874. }
  9875. ]
  9876. },
  9877. "require": {
  9878. "nikic/php-parser": "^4.7",
  9879. "php": ">=7.3"
  9880. },
  9881. "require-dev": {
  9882. "phpunit/phpunit": "^9.3"
  9883. },
  9884. "type": "library",
  9885. "extra": {
  9886. "branch-alias": {
  9887. "dev-master": "2.0-dev"
  9888. }
  9889. },
  9890. "autoload": {
  9891. "classmap": [
  9892. "src/"
  9893. ]
  9894. },
  9895. "notification-url": "https://packagist.org/downloads/",
  9896. "license": [
  9897. "BSD-3-Clause"
  9898. ],
  9899. "authors": [
  9900. {
  9901. "name": "Sebastian Bergmann",
  9902. "email": "sebastian@phpunit.de",
  9903. "role": "lead"
  9904. }
  9905. ],
  9906. "description": "Library for calculating the complexity of PHP code units",
  9907. "homepage": "https://github.com/sebastianbergmann/complexity",
  9908. "support": {
  9909. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9910. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://github.com/sebastianbergmann",
  9915. "type": "github"
  9916. }
  9917. ],
  9918. "time": "2020-10-26T15:52:27+00:00"
  9919. },
  9920. {
  9921. "name": "sebastian/diff",
  9922. "version": "4.0.4",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/sebastianbergmann/diff.git",
  9926. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9931. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9932. "shasum": "",
  9933. "mirrors": [
  9934. {
  9935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9936. "preferred": true
  9937. }
  9938. ]
  9939. },
  9940. "require": {
  9941. "php": ">=7.3"
  9942. },
  9943. "require-dev": {
  9944. "phpunit/phpunit": "^9.3",
  9945. "symfony/process": "^4.2 || ^5"
  9946. },
  9947. "type": "library",
  9948. "extra": {
  9949. "branch-alias": {
  9950. "dev-master": "4.0-dev"
  9951. }
  9952. },
  9953. "autoload": {
  9954. "classmap": [
  9955. "src/"
  9956. ]
  9957. },
  9958. "notification-url": "https://packagist.org/downloads/",
  9959. "license": [
  9960. "BSD-3-Clause"
  9961. ],
  9962. "authors": [
  9963. {
  9964. "name": "Sebastian Bergmann",
  9965. "email": "sebastian@phpunit.de"
  9966. },
  9967. {
  9968. "name": "Kore Nordmann",
  9969. "email": "mail@kore-nordmann.de"
  9970. }
  9971. ],
  9972. "description": "Diff implementation",
  9973. "homepage": "https://github.com/sebastianbergmann/diff",
  9974. "keywords": [
  9975. "diff",
  9976. "udiff",
  9977. "unidiff",
  9978. "unified diff"
  9979. ],
  9980. "support": {
  9981. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9982. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9983. },
  9984. "funding": [
  9985. {
  9986. "url": "https://github.com/sebastianbergmann",
  9987. "type": "github"
  9988. }
  9989. ],
  9990. "time": "2020-10-26T13:10:38+00:00"
  9991. },
  9992. {
  9993. "name": "sebastian/environment",
  9994. "version": "5.1.5",
  9995. "source": {
  9996. "type": "git",
  9997. "url": "https://github.com/sebastianbergmann/environment.git",
  9998. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9999. },
  10000. "dist": {
  10001. "type": "zip",
  10002. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10003. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10004. "shasum": "",
  10005. "mirrors": [
  10006. {
  10007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10008. "preferred": true
  10009. }
  10010. ]
  10011. },
  10012. "require": {
  10013. "php": ">=7.3"
  10014. },
  10015. "require-dev": {
  10016. "phpunit/phpunit": "^9.3"
  10017. },
  10018. "suggest": {
  10019. "ext-posix": "*"
  10020. },
  10021. "type": "library",
  10022. "extra": {
  10023. "branch-alias": {
  10024. "dev-master": "5.1-dev"
  10025. }
  10026. },
  10027. "autoload": {
  10028. "classmap": [
  10029. "src/"
  10030. ]
  10031. },
  10032. "notification-url": "https://packagist.org/downloads/",
  10033. "license": [
  10034. "BSD-3-Clause"
  10035. ],
  10036. "authors": [
  10037. {
  10038. "name": "Sebastian Bergmann",
  10039. "email": "sebastian@phpunit.de"
  10040. }
  10041. ],
  10042. "description": "Provides functionality to handle HHVM/PHP environments",
  10043. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10044. "keywords": [
  10045. "Xdebug",
  10046. "environment",
  10047. "hhvm"
  10048. ],
  10049. "support": {
  10050. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10051. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10052. },
  10053. "funding": [
  10054. {
  10055. "url": "https://github.com/sebastianbergmann",
  10056. "type": "github"
  10057. }
  10058. ],
  10059. "time": "2023-02-03T06:03:51+00:00"
  10060. },
  10061. {
  10062. "name": "sebastian/exporter",
  10063. "version": "4.0.5",
  10064. "source": {
  10065. "type": "git",
  10066. "url": "https://github.com/sebastianbergmann/exporter.git",
  10067. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10068. },
  10069. "dist": {
  10070. "type": "zip",
  10071. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10072. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10073. "shasum": "",
  10074. "mirrors": [
  10075. {
  10076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10077. "preferred": true
  10078. }
  10079. ]
  10080. },
  10081. "require": {
  10082. "php": ">=7.3",
  10083. "sebastian/recursion-context": "^4.0"
  10084. },
  10085. "require-dev": {
  10086. "ext-mbstring": "*",
  10087. "phpunit/phpunit": "^9.3"
  10088. },
  10089. "type": "library",
  10090. "extra": {
  10091. "branch-alias": {
  10092. "dev-master": "4.0-dev"
  10093. }
  10094. },
  10095. "autoload": {
  10096. "classmap": [
  10097. "src/"
  10098. ]
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "BSD-3-Clause"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Sebastian Bergmann",
  10107. "email": "sebastian@phpunit.de"
  10108. },
  10109. {
  10110. "name": "Jeff Welch",
  10111. "email": "whatthejeff@gmail.com"
  10112. },
  10113. {
  10114. "name": "Volker Dusch",
  10115. "email": "github@wallbash.com"
  10116. },
  10117. {
  10118. "name": "Adam Harvey",
  10119. "email": "aharvey@php.net"
  10120. },
  10121. {
  10122. "name": "Bernhard Schussek",
  10123. "email": "bschussek@gmail.com"
  10124. }
  10125. ],
  10126. "description": "Provides the functionality to export PHP variables for visualization",
  10127. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10128. "keywords": [
  10129. "export",
  10130. "exporter"
  10131. ],
  10132. "support": {
  10133. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10134. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10135. },
  10136. "funding": [
  10137. {
  10138. "url": "https://github.com/sebastianbergmann",
  10139. "type": "github"
  10140. }
  10141. ],
  10142. "time": "2022-09-14T06:03:37+00:00"
  10143. },
  10144. {
  10145. "name": "sebastian/global-state",
  10146. "version": "5.0.5",
  10147. "source": {
  10148. "type": "git",
  10149. "url": "https://github.com/sebastianbergmann/global-state.git",
  10150. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10151. },
  10152. "dist": {
  10153. "type": "zip",
  10154. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10155. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10156. "shasum": "",
  10157. "mirrors": [
  10158. {
  10159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10160. "preferred": true
  10161. }
  10162. ]
  10163. },
  10164. "require": {
  10165. "php": ">=7.3",
  10166. "sebastian/object-reflector": "^2.0",
  10167. "sebastian/recursion-context": "^4.0"
  10168. },
  10169. "require-dev": {
  10170. "ext-dom": "*",
  10171. "phpunit/phpunit": "^9.3"
  10172. },
  10173. "suggest": {
  10174. "ext-uopz": "*"
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "5.0-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "classmap": [
  10184. "src/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Sebastian Bergmann",
  10194. "email": "sebastian@phpunit.de"
  10195. }
  10196. ],
  10197. "description": "Snapshotting of global state",
  10198. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10199. "keywords": [
  10200. "global state"
  10201. ],
  10202. "support": {
  10203. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10204. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10205. },
  10206. "funding": [
  10207. {
  10208. "url": "https://github.com/sebastianbergmann",
  10209. "type": "github"
  10210. }
  10211. ],
  10212. "time": "2022-02-14T08:28:10+00:00"
  10213. },
  10214. {
  10215. "name": "sebastian/lines-of-code",
  10216. "version": "1.0.3",
  10217. "source": {
  10218. "type": "git",
  10219. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10220. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10221. },
  10222. "dist": {
  10223. "type": "zip",
  10224. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10225. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10226. "shasum": "",
  10227. "mirrors": [
  10228. {
  10229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10230. "preferred": true
  10231. }
  10232. ]
  10233. },
  10234. "require": {
  10235. "nikic/php-parser": "^4.6",
  10236. "php": ">=7.3"
  10237. },
  10238. "require-dev": {
  10239. "phpunit/phpunit": "^9.3"
  10240. },
  10241. "type": "library",
  10242. "extra": {
  10243. "branch-alias": {
  10244. "dev-master": "1.0-dev"
  10245. }
  10246. },
  10247. "autoload": {
  10248. "classmap": [
  10249. "src/"
  10250. ]
  10251. },
  10252. "notification-url": "https://packagist.org/downloads/",
  10253. "license": [
  10254. "BSD-3-Clause"
  10255. ],
  10256. "authors": [
  10257. {
  10258. "name": "Sebastian Bergmann",
  10259. "email": "sebastian@phpunit.de",
  10260. "role": "lead"
  10261. }
  10262. ],
  10263. "description": "Library for counting the lines of code in PHP source code",
  10264. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10265. "support": {
  10266. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10267. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10268. },
  10269. "funding": [
  10270. {
  10271. "url": "https://github.com/sebastianbergmann",
  10272. "type": "github"
  10273. }
  10274. ],
  10275. "time": "2020-11-28T06:42:11+00:00"
  10276. },
  10277. {
  10278. "name": "sebastian/object-enumerator",
  10279. "version": "4.0.4",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10283. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10288. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  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/object-reflector": "^2.0",
  10300. "sebastian/recursion-context": "^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. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10327. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10328. "support": {
  10329. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10330. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10331. },
  10332. "funding": [
  10333. {
  10334. "url": "https://github.com/sebastianbergmann",
  10335. "type": "github"
  10336. }
  10337. ],
  10338. "time": "2020-10-26T13:12:34+00:00"
  10339. },
  10340. {
  10341. "name": "sebastian/object-reflector",
  10342. "version": "2.0.4",
  10343. "source": {
  10344. "type": "git",
  10345. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10346. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10347. },
  10348. "dist": {
  10349. "type": "zip",
  10350. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10351. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10352. "shasum": "",
  10353. "mirrors": [
  10354. {
  10355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10356. "preferred": true
  10357. }
  10358. ]
  10359. },
  10360. "require": {
  10361. "php": ">=7.3"
  10362. },
  10363. "require-dev": {
  10364. "phpunit/phpunit": "^9.3"
  10365. },
  10366. "type": "library",
  10367. "extra": {
  10368. "branch-alias": {
  10369. "dev-master": "2.0-dev"
  10370. }
  10371. },
  10372. "autoload": {
  10373. "classmap": [
  10374. "src/"
  10375. ]
  10376. },
  10377. "notification-url": "https://packagist.org/downloads/",
  10378. "license": [
  10379. "BSD-3-Clause"
  10380. ],
  10381. "authors": [
  10382. {
  10383. "name": "Sebastian Bergmann",
  10384. "email": "sebastian@phpunit.de"
  10385. }
  10386. ],
  10387. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10388. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10389. "support": {
  10390. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10391. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10392. },
  10393. "funding": [
  10394. {
  10395. "url": "https://github.com/sebastianbergmann",
  10396. "type": "github"
  10397. }
  10398. ],
  10399. "time": "2020-10-26T13:14:26+00:00"
  10400. },
  10401. {
  10402. "name": "sebastian/recursion-context",
  10403. "version": "4.0.5",
  10404. "source": {
  10405. "type": "git",
  10406. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10407. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10408. },
  10409. "dist": {
  10410. "type": "zip",
  10411. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10412. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10413. "shasum": "",
  10414. "mirrors": [
  10415. {
  10416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10417. "preferred": true
  10418. }
  10419. ]
  10420. },
  10421. "require": {
  10422. "php": ">=7.3"
  10423. },
  10424. "require-dev": {
  10425. "phpunit/phpunit": "^9.3"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-master": "4.0-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "classmap": [
  10435. "src/"
  10436. ]
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "BSD-3-Clause"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Sebastian Bergmann",
  10445. "email": "sebastian@phpunit.de"
  10446. },
  10447. {
  10448. "name": "Jeff Welch",
  10449. "email": "whatthejeff@gmail.com"
  10450. },
  10451. {
  10452. "name": "Adam Harvey",
  10453. "email": "aharvey@php.net"
  10454. }
  10455. ],
  10456. "description": "Provides functionality to recursively process PHP variables",
  10457. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10458. "support": {
  10459. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10460. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10461. },
  10462. "funding": [
  10463. {
  10464. "url": "https://github.com/sebastianbergmann",
  10465. "type": "github"
  10466. }
  10467. ],
  10468. "time": "2023-02-03T06:07:39+00:00"
  10469. },
  10470. {
  10471. "name": "sebastian/resource-operations",
  10472. "version": "3.0.3",
  10473. "source": {
  10474. "type": "git",
  10475. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10476. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10477. },
  10478. "dist": {
  10479. "type": "zip",
  10480. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10481. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10482. "shasum": "",
  10483. "mirrors": [
  10484. {
  10485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10486. "preferred": true
  10487. }
  10488. ]
  10489. },
  10490. "require": {
  10491. "php": ">=7.3"
  10492. },
  10493. "require-dev": {
  10494. "phpunit/phpunit": "^9.0"
  10495. },
  10496. "type": "library",
  10497. "extra": {
  10498. "branch-alias": {
  10499. "dev-master": "3.0-dev"
  10500. }
  10501. },
  10502. "autoload": {
  10503. "classmap": [
  10504. "src/"
  10505. ]
  10506. },
  10507. "notification-url": "https://packagist.org/downloads/",
  10508. "license": [
  10509. "BSD-3-Clause"
  10510. ],
  10511. "authors": [
  10512. {
  10513. "name": "Sebastian Bergmann",
  10514. "email": "sebastian@phpunit.de"
  10515. }
  10516. ],
  10517. "description": "Provides a list of PHP built-in functions that operate on resources",
  10518. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10519. "support": {
  10520. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10521. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10522. },
  10523. "funding": [
  10524. {
  10525. "url": "https://github.com/sebastianbergmann",
  10526. "type": "github"
  10527. }
  10528. ],
  10529. "time": "2020-09-28T06:45:17+00:00"
  10530. },
  10531. {
  10532. "name": "sebastian/type",
  10533. "version": "3.2.1",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/sebastianbergmann/type.git",
  10537. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10542. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10543. "shasum": "",
  10544. "mirrors": [
  10545. {
  10546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10547. "preferred": true
  10548. }
  10549. ]
  10550. },
  10551. "require": {
  10552. "php": ">=7.3"
  10553. },
  10554. "require-dev": {
  10555. "phpunit/phpunit": "^9.5"
  10556. },
  10557. "type": "library",
  10558. "extra": {
  10559. "branch-alias": {
  10560. "dev-master": "3.2-dev"
  10561. }
  10562. },
  10563. "autoload": {
  10564. "classmap": [
  10565. "src/"
  10566. ]
  10567. },
  10568. "notification-url": "https://packagist.org/downloads/",
  10569. "license": [
  10570. "BSD-3-Clause"
  10571. ],
  10572. "authors": [
  10573. {
  10574. "name": "Sebastian Bergmann",
  10575. "email": "sebastian@phpunit.de",
  10576. "role": "lead"
  10577. }
  10578. ],
  10579. "description": "Collection of value objects that represent the types of the PHP type system",
  10580. "homepage": "https://github.com/sebastianbergmann/type",
  10581. "support": {
  10582. "issues": "https://github.com/sebastianbergmann/type/issues",
  10583. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10584. },
  10585. "funding": [
  10586. {
  10587. "url": "https://github.com/sebastianbergmann",
  10588. "type": "github"
  10589. }
  10590. ],
  10591. "time": "2023-02-03T06:13:03+00:00"
  10592. },
  10593. {
  10594. "name": "sebastian/version",
  10595. "version": "3.0.2",
  10596. "source": {
  10597. "type": "git",
  10598. "url": "https://github.com/sebastianbergmann/version.git",
  10599. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10600. },
  10601. "dist": {
  10602. "type": "zip",
  10603. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10604. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10605. "shasum": "",
  10606. "mirrors": [
  10607. {
  10608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10609. "preferred": true
  10610. }
  10611. ]
  10612. },
  10613. "require": {
  10614. "php": ">=7.3"
  10615. },
  10616. "type": "library",
  10617. "extra": {
  10618. "branch-alias": {
  10619. "dev-master": "3.0-dev"
  10620. }
  10621. },
  10622. "autoload": {
  10623. "classmap": [
  10624. "src/"
  10625. ]
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "BSD-3-Clause"
  10630. ],
  10631. "authors": [
  10632. {
  10633. "name": "Sebastian Bergmann",
  10634. "email": "sebastian@phpunit.de",
  10635. "role": "lead"
  10636. }
  10637. ],
  10638. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10639. "homepage": "https://github.com/sebastianbergmann/version",
  10640. "support": {
  10641. "issues": "https://github.com/sebastianbergmann/version/issues",
  10642. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10643. },
  10644. "funding": [
  10645. {
  10646. "url": "https://github.com/sebastianbergmann",
  10647. "type": "github"
  10648. }
  10649. ],
  10650. "time": "2020-09-28T06:39:44+00:00"
  10651. },
  10652. {
  10653. "name": "spatie/backtrace",
  10654. "version": "1.3.0",
  10655. "source": {
  10656. "type": "git",
  10657. "url": "https://github.com/spatie/backtrace.git",
  10658. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec"
  10659. },
  10660. "dist": {
  10661. "type": "zip",
  10662. "url": "https://api.github.com/repos/spatie/backtrace/zipball/6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  10663. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  10664. "shasum": "",
  10665. "mirrors": [
  10666. {
  10667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10668. "preferred": true
  10669. }
  10670. ]
  10671. },
  10672. "require": {
  10673. "php": "^7.3|^8.0"
  10674. },
  10675. "require-dev": {
  10676. "ext-json": "*",
  10677. "phpunit/phpunit": "^9.3",
  10678. "spatie/phpunit-snapshot-assertions": "^4.2",
  10679. "symfony/var-dumper": "^5.1"
  10680. },
  10681. "type": "library",
  10682. "autoload": {
  10683. "psr-4": {
  10684. "Spatie\\Backtrace\\": "src"
  10685. }
  10686. },
  10687. "notification-url": "https://packagist.org/downloads/",
  10688. "license": [
  10689. "MIT"
  10690. ],
  10691. "authors": [
  10692. {
  10693. "name": "Freek Van de Herten",
  10694. "email": "freek@spatie.be",
  10695. "homepage": "https://spatie.be",
  10696. "role": "Developer"
  10697. }
  10698. ],
  10699. "description": "A better backtrace",
  10700. "homepage": "https://github.com/spatie/backtrace",
  10701. "keywords": [
  10702. "Backtrace",
  10703. "spatie"
  10704. ],
  10705. "support": {
  10706. "source": "https://github.com/spatie/backtrace/tree/1.3.0"
  10707. },
  10708. "funding": [
  10709. {
  10710. "url": "https://github.com/sponsors/spatie",
  10711. "type": "github"
  10712. },
  10713. {
  10714. "url": "https://spatie.be/open-source/support-us",
  10715. "type": "other"
  10716. }
  10717. ],
  10718. "time": "2023-03-04T08:31:24+00:00"
  10719. },
  10720. {
  10721. "name": "spatie/flare-client-php",
  10722. "version": "1.3.5",
  10723. "source": {
  10724. "type": "git",
  10725. "url": "https://github.com/spatie/flare-client-php.git",
  10726. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42"
  10727. },
  10728. "dist": {
  10729. "type": "zip",
  10730. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10731. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10732. "shasum": "",
  10733. "mirrors": [
  10734. {
  10735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10736. "preferred": true
  10737. }
  10738. ]
  10739. },
  10740. "require": {
  10741. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10742. "php": "^8.0",
  10743. "spatie/backtrace": "^1.2",
  10744. "symfony/http-foundation": "^5.0|^6.0",
  10745. "symfony/mime": "^5.2|^6.0",
  10746. "symfony/process": "^5.2|^6.0",
  10747. "symfony/var-dumper": "^5.2|^6.0"
  10748. },
  10749. "require-dev": {
  10750. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10751. "pestphp/pest": "^1.20",
  10752. "phpstan/extension-installer": "^1.1",
  10753. "phpstan/phpstan-deprecation-rules": "^1.0",
  10754. "phpstan/phpstan-phpunit": "^1.0",
  10755. "spatie/phpunit-snapshot-assertions": "^4.0"
  10756. },
  10757. "type": "library",
  10758. "extra": {
  10759. "branch-alias": {
  10760. "dev-main": "1.1.x-dev"
  10761. }
  10762. },
  10763. "autoload": {
  10764. "files": [
  10765. "src/helpers.php"
  10766. ],
  10767. "psr-4": {
  10768. "Spatie\\FlareClient\\": "src"
  10769. }
  10770. },
  10771. "notification-url": "https://packagist.org/downloads/",
  10772. "license": [
  10773. "MIT"
  10774. ],
  10775. "description": "Send PHP errors to Flare",
  10776. "homepage": "https://github.com/spatie/flare-client-php",
  10777. "keywords": [
  10778. "exception",
  10779. "flare",
  10780. "reporting",
  10781. "spatie"
  10782. ],
  10783. "support": {
  10784. "issues": "https://github.com/spatie/flare-client-php/issues",
  10785. "source": "https://github.com/spatie/flare-client-php/tree/1.3.5"
  10786. },
  10787. "funding": [
  10788. {
  10789. "url": "https://github.com/spatie",
  10790. "type": "github"
  10791. }
  10792. ],
  10793. "time": "2023-01-23T15:58:46+00:00"
  10794. },
  10795. {
  10796. "name": "spatie/ignition",
  10797. "version": "1.4.5",
  10798. "source": {
  10799. "type": "git",
  10800. "url": "https://github.com/spatie/ignition.git",
  10801. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6"
  10802. },
  10803. "dist": {
  10804. "type": "zip",
  10805. "url": "https://api.github.com/repos/spatie/ignition/zipball/cc09114b7057bd217b676f047544b33f5b6247e6",
  10806. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6",
  10807. "shasum": "",
  10808. "mirrors": [
  10809. {
  10810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10811. "preferred": true
  10812. }
  10813. ]
  10814. },
  10815. "require": {
  10816. "ext-json": "*",
  10817. "ext-mbstring": "*",
  10818. "php": "^8.0",
  10819. "spatie/flare-client-php": "^1.1",
  10820. "symfony/console": "^5.4|^6.0",
  10821. "symfony/var-dumper": "^5.4|^6.0"
  10822. },
  10823. "require-dev": {
  10824. "mockery/mockery": "^1.4",
  10825. "pestphp/pest": "^1.20",
  10826. "phpstan/extension-installer": "^1.1",
  10827. "phpstan/phpstan-deprecation-rules": "^1.0",
  10828. "phpstan/phpstan-phpunit": "^1.0",
  10829. "symfony/process": "^5.4|^6.0"
  10830. },
  10831. "type": "library",
  10832. "extra": {
  10833. "branch-alias": {
  10834. "dev-main": "1.4.x-dev"
  10835. }
  10836. },
  10837. "autoload": {
  10838. "psr-4": {
  10839. "Spatie\\Ignition\\": "src"
  10840. }
  10841. },
  10842. "notification-url": "https://packagist.org/downloads/",
  10843. "license": [
  10844. "MIT"
  10845. ],
  10846. "authors": [
  10847. {
  10848. "name": "Spatie",
  10849. "email": "info@spatie.be",
  10850. "role": "Developer"
  10851. }
  10852. ],
  10853. "description": "A beautiful error page for PHP applications.",
  10854. "homepage": "https://flareapp.io/ignition",
  10855. "keywords": [
  10856. "error",
  10857. "flare",
  10858. "laravel",
  10859. "page"
  10860. ],
  10861. "support": {
  10862. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10863. "forum": "https://twitter.com/flareappio",
  10864. "issues": "https://github.com/spatie/ignition/issues",
  10865. "source": "https://github.com/spatie/ignition"
  10866. },
  10867. "funding": [
  10868. {
  10869. "url": "https://github.com/spatie",
  10870. "type": "github"
  10871. }
  10872. ],
  10873. "time": "2023-02-28T16:49:47+00:00"
  10874. },
  10875. {
  10876. "name": "spatie/laravel-ignition",
  10877. "version": "1.6.4",
  10878. "source": {
  10879. "type": "git",
  10880. "url": "https://github.com/spatie/laravel-ignition.git",
  10881. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10882. },
  10883. "dist": {
  10884. "type": "zip",
  10885. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10886. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10887. "shasum": "",
  10888. "mirrors": [
  10889. {
  10890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10891. "preferred": true
  10892. }
  10893. ]
  10894. },
  10895. "require": {
  10896. "ext-curl": "*",
  10897. "ext-json": "*",
  10898. "ext-mbstring": "*",
  10899. "illuminate/support": "^8.77|^9.27",
  10900. "monolog/monolog": "^2.3",
  10901. "php": "^8.0",
  10902. "spatie/flare-client-php": "^1.0.1",
  10903. "spatie/ignition": "^1.4.1",
  10904. "symfony/console": "^5.0|^6.0",
  10905. "symfony/var-dumper": "^5.0|^6.0"
  10906. },
  10907. "require-dev": {
  10908. "filp/whoops": "^2.14",
  10909. "livewire/livewire": "^2.8|dev-develop",
  10910. "mockery/mockery": "^1.4",
  10911. "nunomaduro/larastan": "^1.0",
  10912. "orchestra/testbench": "^6.23|^7.0",
  10913. "pestphp/pest": "^1.20",
  10914. "phpstan/extension-installer": "^1.1",
  10915. "phpstan/phpstan-deprecation-rules": "^1.0",
  10916. "phpstan/phpstan-phpunit": "^1.0",
  10917. "spatie/laravel-ray": "^1.27"
  10918. },
  10919. "type": "library",
  10920. "extra": {
  10921. "laravel": {
  10922. "providers": [
  10923. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10924. ],
  10925. "aliases": {
  10926. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10927. }
  10928. }
  10929. },
  10930. "autoload": {
  10931. "files": [
  10932. "src/helpers.php"
  10933. ],
  10934. "psr-4": {
  10935. "Spatie\\LaravelIgnition\\": "src"
  10936. }
  10937. },
  10938. "notification-url": "https://packagist.org/downloads/",
  10939. "license": [
  10940. "MIT"
  10941. ],
  10942. "authors": [
  10943. {
  10944. "name": "Spatie",
  10945. "email": "info@spatie.be",
  10946. "role": "Developer"
  10947. }
  10948. ],
  10949. "description": "A beautiful error page for Laravel applications.",
  10950. "homepage": "https://flareapp.io/ignition",
  10951. "keywords": [
  10952. "error",
  10953. "flare",
  10954. "laravel",
  10955. "page"
  10956. ],
  10957. "support": {
  10958. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10959. "forum": "https://twitter.com/flareappio",
  10960. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10961. "source": "https://github.com/spatie/laravel-ignition"
  10962. },
  10963. "funding": [
  10964. {
  10965. "url": "https://github.com/spatie",
  10966. "type": "github"
  10967. }
  10968. ],
  10969. "time": "2023-01-03T19:28:04+00:00"
  10970. },
  10971. {
  10972. "name": "symfony/yaml",
  10973. "version": "v6.0.19",
  10974. "source": {
  10975. "type": "git",
  10976. "url": "https://github.com/symfony/yaml.git",
  10977. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  10978. },
  10979. "dist": {
  10980. "type": "zip",
  10981. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  10982. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  10983. "shasum": "",
  10984. "mirrors": [
  10985. {
  10986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10987. "preferred": true
  10988. }
  10989. ]
  10990. },
  10991. "require": {
  10992. "php": ">=8.0.2",
  10993. "symfony/polyfill-ctype": "^1.8"
  10994. },
  10995. "conflict": {
  10996. "symfony/console": "<5.4"
  10997. },
  10998. "require-dev": {
  10999. "symfony/console": "^5.4|^6.0"
  11000. },
  11001. "suggest": {
  11002. "symfony/console": "For validating YAML files using the lint command"
  11003. },
  11004. "bin": [
  11005. "Resources/bin/yaml-lint"
  11006. ],
  11007. "type": "library",
  11008. "autoload": {
  11009. "psr-4": {
  11010. "Symfony\\Component\\Yaml\\": ""
  11011. },
  11012. "exclude-from-classmap": [
  11013. "/Tests/"
  11014. ]
  11015. },
  11016. "notification-url": "https://packagist.org/downloads/",
  11017. "license": [
  11018. "MIT"
  11019. ],
  11020. "authors": [
  11021. {
  11022. "name": "Fabien Potencier",
  11023. "email": "fabien@symfony.com"
  11024. },
  11025. {
  11026. "name": "Symfony Community",
  11027. "homepage": "https://symfony.com/contributors"
  11028. }
  11029. ],
  11030. "description": "Loads and dumps YAML files",
  11031. "homepage": "https://symfony.com",
  11032. "support": {
  11033. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  11034. },
  11035. "funding": [
  11036. {
  11037. "url": "https://symfony.com/sponsor",
  11038. "type": "custom"
  11039. },
  11040. {
  11041. "url": "https://github.com/fabpot",
  11042. "type": "github"
  11043. },
  11044. {
  11045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11046. "type": "tidelift"
  11047. }
  11048. ],
  11049. "time": "2023-01-11T11:50:03+00:00"
  11050. },
  11051. {
  11052. "name": "theseer/tokenizer",
  11053. "version": "1.2.1",
  11054. "source": {
  11055. "type": "git",
  11056. "url": "https://github.com/theseer/tokenizer.git",
  11057. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11058. },
  11059. "dist": {
  11060. "type": "zip",
  11061. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11062. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11063. "shasum": "",
  11064. "mirrors": [
  11065. {
  11066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11067. "preferred": true
  11068. }
  11069. ]
  11070. },
  11071. "require": {
  11072. "ext-dom": "*",
  11073. "ext-tokenizer": "*",
  11074. "ext-xmlwriter": "*",
  11075. "php": "^7.2 || ^8.0"
  11076. },
  11077. "type": "library",
  11078. "autoload": {
  11079. "classmap": [
  11080. "src/"
  11081. ]
  11082. },
  11083. "notification-url": "https://packagist.org/downloads/",
  11084. "license": [
  11085. "BSD-3-Clause"
  11086. ],
  11087. "authors": [
  11088. {
  11089. "name": "Arne Blankerts",
  11090. "email": "arne@blankerts.de",
  11091. "role": "Developer"
  11092. }
  11093. ],
  11094. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11095. "support": {
  11096. "issues": "https://github.com/theseer/tokenizer/issues",
  11097. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11098. },
  11099. "funding": [
  11100. {
  11101. "url": "https://github.com/theseer",
  11102. "type": "github"
  11103. }
  11104. ],
  11105. "time": "2021-07-28T10:34:58+00:00"
  11106. }
  11107. ],
  11108. "aliases": [],
  11109. "minimum-stability": "stable",
  11110. "stability-flags": [],
  11111. "prefer-stable": true,
  11112. "prefer-lowest": false,
  11113. "platform": {
  11114. "php": "^8.0.2"
  11115. },
  11116. "platform-dev": [],
  11117. "plugin-api-version": "2.3.0"
  11118. }