composer.lock 397 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049
  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.13.0",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://github.com/thephpleague/flysystem.git",
  1842. "reference": "1a402d49b75d61ac33a09661fa8583bbaba11636"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1a402d49b75d61ac33a09661fa8583bbaba11636",
  1847. "reference": "1a402d49b75d61ac33a09661fa8583bbaba11636",
  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/mime-type-detection": "^1.0.0",
  1858. "php": "^8.0.2"
  1859. },
  1860. "conflict": {
  1861. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1862. "guzzlehttp/guzzle": "<7.0",
  1863. "guzzlehttp/ringphp": "<1.1.1",
  1864. "phpseclib/phpseclib": "3.0.15",
  1865. "symfony/http-client": "<5.2"
  1866. },
  1867. "require-dev": {
  1868. "async-aws/s3": "^1.5",
  1869. "async-aws/simple-s3": "^1.1",
  1870. "aws/aws-sdk-php": "^3.220.0",
  1871. "composer/semver": "^3.0",
  1872. "ext-fileinfo": "*",
  1873. "ext-ftp": "*",
  1874. "ext-zip": "*",
  1875. "friendsofphp/php-cs-fixer": "^3.5",
  1876. "google/cloud-storage": "^1.23",
  1877. "microsoft/azure-storage-blob": "^1.1",
  1878. "phpseclib/phpseclib": "^3.0.14",
  1879. "phpstan/phpstan": "^0.12.26",
  1880. "phpunit/phpunit": "^9.5.11",
  1881. "sabre/dav": "^4.3.1"
  1882. },
  1883. "type": "library",
  1884. "autoload": {
  1885. "psr-4": {
  1886. "League\\Flysystem\\": "src"
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Frank de Jonge",
  1896. "email": "info@frankdejonge.nl"
  1897. }
  1898. ],
  1899. "description": "File storage abstraction for PHP",
  1900. "keywords": [
  1901. "WebDAV",
  1902. "aws",
  1903. "cloud",
  1904. "file",
  1905. "files",
  1906. "filesystem",
  1907. "filesystems",
  1908. "ftp",
  1909. "s3",
  1910. "sftp",
  1911. "storage"
  1912. ],
  1913. "support": {
  1914. "issues": "https://github.com/thephpleague/flysystem/issues",
  1915. "source": "https://github.com/thephpleague/flysystem/tree/3.13.0"
  1916. },
  1917. "funding": [
  1918. {
  1919. "url": "https://ecologi.com/frankdejonge",
  1920. "type": "custom"
  1921. },
  1922. {
  1923. "url": "https://github.com/frankdejonge",
  1924. "type": "github"
  1925. }
  1926. ],
  1927. "time": "2023-04-11T17:39:37+00:00"
  1928. },
  1929. {
  1930. "name": "league/mime-type-detection",
  1931. "version": "1.11.0",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1935. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1940. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1941. "shasum": "",
  1942. "mirrors": [
  1943. {
  1944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1945. "preferred": true
  1946. }
  1947. ]
  1948. },
  1949. "require": {
  1950. "ext-fileinfo": "*",
  1951. "php": "^7.2 || ^8.0"
  1952. },
  1953. "require-dev": {
  1954. "friendsofphp/php-cs-fixer": "^3.2",
  1955. "phpstan/phpstan": "^0.12.68",
  1956. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1957. },
  1958. "type": "library",
  1959. "autoload": {
  1960. "psr-4": {
  1961. "League\\MimeTypeDetection\\": "src"
  1962. }
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Frank de Jonge",
  1971. "email": "info@frankdejonge.nl"
  1972. }
  1973. ],
  1974. "description": "Mime-type detection for Flysystem",
  1975. "support": {
  1976. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1977. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1978. },
  1979. "funding": [
  1980. {
  1981. "url": "https://github.com/frankdejonge",
  1982. "type": "github"
  1983. },
  1984. {
  1985. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1986. "type": "tidelift"
  1987. }
  1988. ],
  1989. "time": "2022-04-17T13:12:02+00:00"
  1990. },
  1991. {
  1992. "name": "monolog/monolog",
  1993. "version": "2.9.0",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/Seldaek/monolog.git",
  1997. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2002. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2003. "shasum": "",
  2004. "mirrors": [
  2005. {
  2006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2007. "preferred": true
  2008. }
  2009. ]
  2010. },
  2011. "require": {
  2012. "php": ">=7.2",
  2013. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2014. },
  2015. "provide": {
  2016. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2017. },
  2018. "require-dev": {
  2019. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2020. "doctrine/couchdb": "~1.0@dev",
  2021. "elasticsearch/elasticsearch": "^7 || ^8",
  2022. "ext-json": "*",
  2023. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2024. "guzzlehttp/guzzle": "^7.4",
  2025. "guzzlehttp/psr7": "^2.2",
  2026. "mongodb/mongodb": "^1.8",
  2027. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2028. "phpspec/prophecy": "^1.15",
  2029. "phpstan/phpstan": "^0.12.91",
  2030. "phpunit/phpunit": "^8.5.14",
  2031. "predis/predis": "^1.1 || ^2.0",
  2032. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2033. "ruflin/elastica": "^7",
  2034. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2035. "symfony/mailer": "^5.4 || ^6",
  2036. "symfony/mime": "^5.4 || ^6"
  2037. },
  2038. "suggest": {
  2039. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2040. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2041. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2042. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2043. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2044. "ext-mbstring": "Allow to work properly with unicode symbols",
  2045. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2046. "ext-openssl": "Required to send log messages using SSL",
  2047. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2048. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2049. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2050. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2051. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2052. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-main": "2.x-dev"
  2058. }
  2059. },
  2060. "autoload": {
  2061. "psr-4": {
  2062. "Monolog\\": "src/Monolog"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Jordi Boggiano",
  2072. "email": "j.boggiano@seld.be",
  2073. "homepage": "https://seld.be"
  2074. }
  2075. ],
  2076. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2077. "homepage": "https://github.com/Seldaek/monolog",
  2078. "keywords": [
  2079. "log",
  2080. "logging",
  2081. "psr-3"
  2082. ],
  2083. "support": {
  2084. "issues": "https://github.com/Seldaek/monolog/issues",
  2085. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  2086. },
  2087. "funding": [
  2088. {
  2089. "url": "https://github.com/Seldaek",
  2090. "type": "github"
  2091. },
  2092. {
  2093. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2094. "type": "tidelift"
  2095. }
  2096. ],
  2097. "time": "2023-02-05T13:07:32+00:00"
  2098. },
  2099. {
  2100. "name": "nesbot/carbon",
  2101. "version": "2.66.0",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/briannesbitt/Carbon.git",
  2105. "reference": "496712849902241f04902033b0441b269effe001"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  2110. "reference": "496712849902241f04902033b0441b269effe001",
  2111. "shasum": "",
  2112. "mirrors": [
  2113. {
  2114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2115. "preferred": true
  2116. }
  2117. ]
  2118. },
  2119. "require": {
  2120. "ext-json": "*",
  2121. "php": "^7.1.8 || ^8.0",
  2122. "symfony/polyfill-mbstring": "^1.0",
  2123. "symfony/polyfill-php80": "^1.16",
  2124. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2125. },
  2126. "require-dev": {
  2127. "doctrine/dbal": "^2.0 || ^3.1.4",
  2128. "doctrine/orm": "^2.7",
  2129. "friendsofphp/php-cs-fixer": "^3.0",
  2130. "kylekatarnls/multi-tester": "^2.0",
  2131. "ondrejmirtes/better-reflection": "*",
  2132. "phpmd/phpmd": "^2.9",
  2133. "phpstan/extension-installer": "^1.0",
  2134. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2135. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2136. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2137. "squizlabs/php_codesniffer": "^3.4"
  2138. },
  2139. "bin": [
  2140. "bin/carbon"
  2141. ],
  2142. "type": "library",
  2143. "extra": {
  2144. "branch-alias": {
  2145. "dev-3.x": "3.x-dev",
  2146. "dev-master": "2.x-dev"
  2147. },
  2148. "laravel": {
  2149. "providers": [
  2150. "Carbon\\Laravel\\ServiceProvider"
  2151. ]
  2152. },
  2153. "phpstan": {
  2154. "includes": [
  2155. "extension.neon"
  2156. ]
  2157. }
  2158. },
  2159. "autoload": {
  2160. "psr-4": {
  2161. "Carbon\\": "src/Carbon/"
  2162. }
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "MIT"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "Brian Nesbitt",
  2171. "email": "brian@nesbot.com",
  2172. "homepage": "https://markido.com"
  2173. },
  2174. {
  2175. "name": "kylekatarnls",
  2176. "homepage": "https://github.com/kylekatarnls"
  2177. }
  2178. ],
  2179. "description": "An API extension for DateTime that supports 281 different languages.",
  2180. "homepage": "https://carbon.nesbot.com",
  2181. "keywords": [
  2182. "date",
  2183. "datetime",
  2184. "time"
  2185. ],
  2186. "support": {
  2187. "docs": "https://carbon.nesbot.com/docs",
  2188. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2189. "source": "https://github.com/briannesbitt/Carbon"
  2190. },
  2191. "funding": [
  2192. {
  2193. "url": "https://github.com/sponsors/kylekatarnls",
  2194. "type": "github"
  2195. },
  2196. {
  2197. "url": "https://opencollective.com/Carbon#sponsor",
  2198. "type": "opencollective"
  2199. },
  2200. {
  2201. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2202. "type": "tidelift"
  2203. }
  2204. ],
  2205. "time": "2023-01-29T18:53:47+00:00"
  2206. },
  2207. {
  2208. "name": "nette/schema",
  2209. "version": "v1.2.3",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/nette/schema.git",
  2213. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2218. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2219. "shasum": "",
  2220. "mirrors": [
  2221. {
  2222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2223. "preferred": true
  2224. }
  2225. ]
  2226. },
  2227. "require": {
  2228. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2229. "php": ">=7.1 <8.3"
  2230. },
  2231. "require-dev": {
  2232. "nette/tester": "^2.3 || ^2.4",
  2233. "phpstan/phpstan-nette": "^1.0",
  2234. "tracy/tracy": "^2.7"
  2235. },
  2236. "type": "library",
  2237. "extra": {
  2238. "branch-alias": {
  2239. "dev-master": "1.2-dev"
  2240. }
  2241. },
  2242. "autoload": {
  2243. "classmap": [
  2244. "src/"
  2245. ]
  2246. },
  2247. "notification-url": "https://packagist.org/downloads/",
  2248. "license": [
  2249. "BSD-3-Clause",
  2250. "GPL-2.0-only",
  2251. "GPL-3.0-only"
  2252. ],
  2253. "authors": [
  2254. {
  2255. "name": "David Grudl",
  2256. "homepage": "https://davidgrudl.com"
  2257. },
  2258. {
  2259. "name": "Nette Community",
  2260. "homepage": "https://nette.org/contributors"
  2261. }
  2262. ],
  2263. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2264. "homepage": "https://nette.org",
  2265. "keywords": [
  2266. "config",
  2267. "nette"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/nette/schema/issues",
  2271. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2272. },
  2273. "time": "2022-10-13T01:24:26+00:00"
  2274. },
  2275. {
  2276. "name": "nette/utils",
  2277. "version": "v4.0.0",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/nette/utils.git",
  2281. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2286. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2287. "shasum": "",
  2288. "mirrors": [
  2289. {
  2290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2291. "preferred": true
  2292. }
  2293. ]
  2294. },
  2295. "require": {
  2296. "php": ">=8.0 <8.3"
  2297. },
  2298. "conflict": {
  2299. "nette/finder": "<3",
  2300. "nette/schema": "<1.2.2"
  2301. },
  2302. "require-dev": {
  2303. "jetbrains/phpstorm-attributes": "dev-master",
  2304. "nette/tester": "^2.4",
  2305. "phpstan/phpstan": "^1.0",
  2306. "tracy/tracy": "^2.9"
  2307. },
  2308. "suggest": {
  2309. "ext-gd": "to use Image",
  2310. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2311. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2312. "ext-json": "to use Nette\\Utils\\Json",
  2313. "ext-mbstring": "to use Strings::lower() etc...",
  2314. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2315. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2316. },
  2317. "type": "library",
  2318. "extra": {
  2319. "branch-alias": {
  2320. "dev-master": "4.0-dev"
  2321. }
  2322. },
  2323. "autoload": {
  2324. "classmap": [
  2325. "src/"
  2326. ]
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "BSD-3-Clause",
  2331. "GPL-2.0-only",
  2332. "GPL-3.0-only"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "David Grudl",
  2337. "homepage": "https://davidgrudl.com"
  2338. },
  2339. {
  2340. "name": "Nette Community",
  2341. "homepage": "https://nette.org/contributors"
  2342. }
  2343. ],
  2344. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2345. "homepage": "https://nette.org",
  2346. "keywords": [
  2347. "array",
  2348. "core",
  2349. "datetime",
  2350. "images",
  2351. "json",
  2352. "nette",
  2353. "paginator",
  2354. "password",
  2355. "slugify",
  2356. "string",
  2357. "unicode",
  2358. "utf-8",
  2359. "utility",
  2360. "validation"
  2361. ],
  2362. "support": {
  2363. "issues": "https://github.com/nette/utils/issues",
  2364. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2365. },
  2366. "time": "2023-02-02T10:41:53+00:00"
  2367. },
  2368. {
  2369. "name": "nikic/php-parser",
  2370. "version": "v4.15.4",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://github.com/nikic/PHP-Parser.git",
  2374. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2379. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2380. "shasum": "",
  2381. "mirrors": [
  2382. {
  2383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2384. "preferred": true
  2385. }
  2386. ]
  2387. },
  2388. "require": {
  2389. "ext-tokenizer": "*",
  2390. "php": ">=7.0"
  2391. },
  2392. "require-dev": {
  2393. "ircmaxell/php-yacc": "^0.0.7",
  2394. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2395. },
  2396. "bin": [
  2397. "bin/php-parse"
  2398. ],
  2399. "type": "library",
  2400. "extra": {
  2401. "branch-alias": {
  2402. "dev-master": "4.9-dev"
  2403. }
  2404. },
  2405. "autoload": {
  2406. "psr-4": {
  2407. "PhpParser\\": "lib/PhpParser"
  2408. }
  2409. },
  2410. "notification-url": "https://packagist.org/downloads/",
  2411. "license": [
  2412. "BSD-3-Clause"
  2413. ],
  2414. "authors": [
  2415. {
  2416. "name": "Nikita Popov"
  2417. }
  2418. ],
  2419. "description": "A PHP parser written in PHP",
  2420. "keywords": [
  2421. "parser",
  2422. "php"
  2423. ],
  2424. "support": {
  2425. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2426. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  2427. },
  2428. "time": "2023-03-05T19:49:14+00:00"
  2429. },
  2430. {
  2431. "name": "nunomaduro/termwind",
  2432. "version": "v1.15.1",
  2433. "source": {
  2434. "type": "git",
  2435. "url": "https://github.com/nunomaduro/termwind.git",
  2436. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  2437. },
  2438. "dist": {
  2439. "type": "zip",
  2440. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2441. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2442. "shasum": "",
  2443. "mirrors": [
  2444. {
  2445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2446. "preferred": true
  2447. }
  2448. ]
  2449. },
  2450. "require": {
  2451. "ext-mbstring": "*",
  2452. "php": "^8.0",
  2453. "symfony/console": "^5.3.0|^6.0.0"
  2454. },
  2455. "require-dev": {
  2456. "ergebnis/phpstan-rules": "^1.0.",
  2457. "illuminate/console": "^8.0|^9.0",
  2458. "illuminate/support": "^8.0|^9.0",
  2459. "laravel/pint": "^1.0.0",
  2460. "pestphp/pest": "^1.21.0",
  2461. "pestphp/pest-plugin-mock": "^1.0",
  2462. "phpstan/phpstan": "^1.4.6",
  2463. "phpstan/phpstan-strict-rules": "^1.1.0",
  2464. "symfony/var-dumper": "^5.2.7|^6.0.0",
  2465. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2466. },
  2467. "type": "library",
  2468. "extra": {
  2469. "laravel": {
  2470. "providers": [
  2471. "Termwind\\Laravel\\TermwindServiceProvider"
  2472. ]
  2473. }
  2474. },
  2475. "autoload": {
  2476. "files": [
  2477. "src/Functions.php"
  2478. ],
  2479. "psr-4": {
  2480. "Termwind\\": "src/"
  2481. }
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "MIT"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "Nuno Maduro",
  2490. "email": "enunomaduro@gmail.com"
  2491. }
  2492. ],
  2493. "description": "Its like Tailwind CSS, but for the console.",
  2494. "keywords": [
  2495. "cli",
  2496. "console",
  2497. "css",
  2498. "package",
  2499. "php",
  2500. "style"
  2501. ],
  2502. "support": {
  2503. "issues": "https://github.com/nunomaduro/termwind/issues",
  2504. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  2505. },
  2506. "funding": [
  2507. {
  2508. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2509. "type": "custom"
  2510. },
  2511. {
  2512. "url": "https://github.com/nunomaduro",
  2513. "type": "github"
  2514. },
  2515. {
  2516. "url": "https://github.com/xiCO2k",
  2517. "type": "github"
  2518. }
  2519. ],
  2520. "time": "2023-02-08T01:06:31+00:00"
  2521. },
  2522. {
  2523. "name": "nyholm/psr7",
  2524. "version": "1.8.0",
  2525. "source": {
  2526. "type": "git",
  2527. "url": "https://github.com/Nyholm/psr7.git",
  2528. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be"
  2529. },
  2530. "dist": {
  2531. "type": "zip",
  2532. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  2533. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  2534. "shasum": "",
  2535. "mirrors": [
  2536. {
  2537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2538. "preferred": true
  2539. }
  2540. ]
  2541. },
  2542. "require": {
  2543. "php": ">=7.2",
  2544. "psr/http-factory": "^1.0",
  2545. "psr/http-message": "^1.1 || ^2.0"
  2546. },
  2547. "provide": {
  2548. "php-http/message-factory-implementation": "1.0",
  2549. "psr/http-factory-implementation": "1.0",
  2550. "psr/http-message-implementation": "1.0"
  2551. },
  2552. "require-dev": {
  2553. "http-interop/http-factory-tests": "^0.9",
  2554. "php-http/message-factory": "^1.0",
  2555. "php-http/psr7-integration-tests": "^1.0",
  2556. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  2557. "symfony/error-handler": "^4.4"
  2558. },
  2559. "type": "library",
  2560. "extra": {
  2561. "branch-alias": {
  2562. "dev-master": "1.8-dev"
  2563. }
  2564. },
  2565. "autoload": {
  2566. "psr-4": {
  2567. "Nyholm\\Psr7\\": "src/"
  2568. }
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "MIT"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "Tobias Nyholm",
  2577. "email": "tobias.nyholm@gmail.com"
  2578. },
  2579. {
  2580. "name": "Martijn van der Ven",
  2581. "email": "martijn@vanderven.se"
  2582. }
  2583. ],
  2584. "description": "A fast PHP7 implementation of PSR-7",
  2585. "homepage": "https://tnyholm.se",
  2586. "keywords": [
  2587. "psr-17",
  2588. "psr-7"
  2589. ],
  2590. "support": {
  2591. "issues": "https://github.com/Nyholm/psr7/issues",
  2592. "source": "https://github.com/Nyholm/psr7/tree/1.8.0"
  2593. },
  2594. "funding": [
  2595. {
  2596. "url": "https://github.com/Zegnat",
  2597. "type": "github"
  2598. },
  2599. {
  2600. "url": "https://github.com/nyholm",
  2601. "type": "github"
  2602. }
  2603. ],
  2604. "time": "2023-05-02T11:26:24+00:00"
  2605. },
  2606. {
  2607. "name": "nyholm/psr7-server",
  2608. "version": "1.0.2",
  2609. "source": {
  2610. "type": "git",
  2611. "url": "https://github.com/Nyholm/psr7-server.git",
  2612. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3"
  2613. },
  2614. "dist": {
  2615. "type": "zip",
  2616. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/b846a689844cef114e8079d8c80f0afd96745ae3",
  2617. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3",
  2618. "shasum": "",
  2619. "mirrors": [
  2620. {
  2621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2622. "preferred": true
  2623. }
  2624. ]
  2625. },
  2626. "require": {
  2627. "php": "^7.1 || ^8.0",
  2628. "psr/http-factory": "^1.0",
  2629. "psr/http-message": "^1.0"
  2630. },
  2631. "require-dev": {
  2632. "nyholm/nsa": "^1.1",
  2633. "nyholm/psr7": "^1.3",
  2634. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  2635. },
  2636. "type": "library",
  2637. "autoload": {
  2638. "psr-4": {
  2639. "Nyholm\\Psr7Server\\": "src/"
  2640. }
  2641. },
  2642. "notification-url": "https://packagist.org/downloads/",
  2643. "license": [
  2644. "MIT"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "Tobias Nyholm",
  2649. "email": "tobias.nyholm@gmail.com"
  2650. },
  2651. {
  2652. "name": "Martijn van der Ven",
  2653. "email": "martijn@vanderven.se"
  2654. }
  2655. ],
  2656. "description": "Helper classes to handle PSR-7 server requests",
  2657. "homepage": "http://tnyholm.se",
  2658. "keywords": [
  2659. "psr-17",
  2660. "psr-7"
  2661. ],
  2662. "support": {
  2663. "issues": "https://github.com/Nyholm/psr7-server/issues",
  2664. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.2"
  2665. },
  2666. "funding": [
  2667. {
  2668. "url": "https://github.com/Zegnat",
  2669. "type": "github"
  2670. },
  2671. {
  2672. "url": "https://github.com/nyholm",
  2673. "type": "github"
  2674. }
  2675. ],
  2676. "time": "2021-05-12T11:11:27+00:00"
  2677. },
  2678. {
  2679. "name": "overtrue/laravel-wechat",
  2680. "version": "7.2.0",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/overtrue/laravel-wechat.git",
  2684. "reference": "2ef8b18b525e054838770c60bfcfbd30ac9ede65"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/2ef8b18b525e054838770c60bfcfbd30ac9ede65",
  2689. "reference": "2ef8b18b525e054838770c60bfcfbd30ac9ede65",
  2690. "shasum": "",
  2691. "mirrors": [
  2692. {
  2693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2694. "preferred": true
  2695. }
  2696. ]
  2697. },
  2698. "require": {
  2699. "illuminate/container": "^9.0|^10.0",
  2700. "w7corp/easywechat": "^6.0.0"
  2701. },
  2702. "require-dev": {
  2703. "brainmaestro/composer-git-hooks": "dev-master",
  2704. "jetbrains/phpstorm-attributes": "^1.0",
  2705. "laravel/framework": "^10.0",
  2706. "laravel/pint": "^1.5"
  2707. },
  2708. "type": "library",
  2709. "extra": {
  2710. "laravel": {
  2711. "providers": [
  2712. "Overtrue\\LaravelWeChat\\ServiceProvider"
  2713. ]
  2714. },
  2715. "hooks": {
  2716. "pre-commit": [
  2717. "composer check-style"
  2718. ],
  2719. "pre-push": [
  2720. "composer check-style"
  2721. ]
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Overtrue\\LaravelWeChat\\": "src/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "overtrue",
  2736. "email": "anzhengchao@gmail.com"
  2737. }
  2738. ],
  2739. "description": "微信 SDK for Laravel",
  2740. "keywords": [
  2741. "laravel",
  2742. "sdk",
  2743. "wechat",
  2744. "weixin"
  2745. ],
  2746. "support": {
  2747. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  2748. "source": "https://github.com/overtrue/laravel-wechat/tree/7.2.0"
  2749. },
  2750. "funding": [
  2751. {
  2752. "url": "https://github.com/overtrue",
  2753. "type": "github"
  2754. }
  2755. ],
  2756. "time": "2023-02-15T08:16:22+00:00"
  2757. },
  2758. {
  2759. "name": "overtrue/socialite",
  2760. "version": "4.8.0",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/overtrue/socialite.git",
  2764. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  2769. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  2770. "shasum": "",
  2771. "mirrors": [
  2772. {
  2773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2774. "preferred": true
  2775. }
  2776. ]
  2777. },
  2778. "require": {
  2779. "ext-json": "*",
  2780. "ext-openssl": "*",
  2781. "guzzlehttp/guzzle": "^7.0",
  2782. "php": ">=8.0.2",
  2783. "symfony/http-foundation": "^6.0",
  2784. "symfony/psr-http-message-bridge": "^2.1"
  2785. },
  2786. "require-dev": {
  2787. "jetbrains/phpstorm-attributes": "^1.0",
  2788. "laravel/pint": "^1.2",
  2789. "mockery/mockery": "^1.3",
  2790. "phpstan/phpstan": "^1.7",
  2791. "phpunit/phpunit": "^9.0"
  2792. },
  2793. "type": "library",
  2794. "autoload": {
  2795. "files": [
  2796. "src/Contracts/FactoryInterface.php",
  2797. "src/Contracts/UserInterface.php",
  2798. "src/Contracts/ProviderInterface.php"
  2799. ],
  2800. "psr-4": {
  2801. "Overtrue\\Socialite\\": "src/"
  2802. }
  2803. },
  2804. "notification-url": "https://packagist.org/downloads/",
  2805. "license": [
  2806. "MIT"
  2807. ],
  2808. "authors": [
  2809. {
  2810. "name": "overtrue",
  2811. "email": "anzhengchao@gmail.com"
  2812. }
  2813. ],
  2814. "description": "A collection of OAuth 2 packages.",
  2815. "keywords": [
  2816. "Feishu",
  2817. "login",
  2818. "oauth",
  2819. "qcloud",
  2820. "qq",
  2821. "social",
  2822. "wechat",
  2823. "weibo"
  2824. ],
  2825. "support": {
  2826. "issues": "https://github.com/overtrue/socialite/issues",
  2827. "source": "https://github.com/overtrue/socialite/tree/4.8.0"
  2828. },
  2829. "funding": [
  2830. {
  2831. "url": "https://github.com/overtrue",
  2832. "type": "github"
  2833. }
  2834. ],
  2835. "time": "2023-01-10T14:29:55+00:00"
  2836. },
  2837. {
  2838. "name": "paragonie/constant_time_encoding",
  2839. "version": "v2.6.3",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2843. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  2848. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  2849. "shasum": "",
  2850. "mirrors": [
  2851. {
  2852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2853. "preferred": true
  2854. }
  2855. ]
  2856. },
  2857. "require": {
  2858. "php": "^7|^8"
  2859. },
  2860. "require-dev": {
  2861. "phpunit/phpunit": "^6|^7|^8|^9",
  2862. "vimeo/psalm": "^1|^2|^3|^4"
  2863. },
  2864. "type": "library",
  2865. "autoload": {
  2866. "psr-4": {
  2867. "ParagonIE\\ConstantTime\\": "src/"
  2868. }
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "MIT"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Paragon Initiative Enterprises",
  2877. "email": "security@paragonie.com",
  2878. "homepage": "https://paragonie.com",
  2879. "role": "Maintainer"
  2880. },
  2881. {
  2882. "name": "Steve 'Sc00bz' Thomas",
  2883. "email": "steve@tobtu.com",
  2884. "homepage": "https://www.tobtu.com",
  2885. "role": "Original Developer"
  2886. }
  2887. ],
  2888. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2889. "keywords": [
  2890. "base16",
  2891. "base32",
  2892. "base32_decode",
  2893. "base32_encode",
  2894. "base64",
  2895. "base64_decode",
  2896. "base64_encode",
  2897. "bin2hex",
  2898. "encoding",
  2899. "hex",
  2900. "hex2bin",
  2901. "rfc4648"
  2902. ],
  2903. "support": {
  2904. "email": "info@paragonie.com",
  2905. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  2906. "source": "https://github.com/paragonie/constant_time_encoding"
  2907. },
  2908. "time": "2022-06-14T06:56:20+00:00"
  2909. },
  2910. {
  2911. "name": "paragonie/random_compat",
  2912. "version": "v9.99.100",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/paragonie/random_compat.git",
  2916. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2921. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2922. "shasum": "",
  2923. "mirrors": [
  2924. {
  2925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2926. "preferred": true
  2927. }
  2928. ]
  2929. },
  2930. "require": {
  2931. "php": ">= 7"
  2932. },
  2933. "require-dev": {
  2934. "phpunit/phpunit": "4.*|5.*",
  2935. "vimeo/psalm": "^1"
  2936. },
  2937. "suggest": {
  2938. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2939. },
  2940. "type": "library",
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Paragon Initiative Enterprises",
  2948. "email": "security@paragonie.com",
  2949. "homepage": "https://paragonie.com"
  2950. }
  2951. ],
  2952. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2953. "keywords": [
  2954. "csprng",
  2955. "polyfill",
  2956. "pseudorandom",
  2957. "random"
  2958. ],
  2959. "support": {
  2960. "email": "info@paragonie.com",
  2961. "issues": "https://github.com/paragonie/random_compat/issues",
  2962. "source": "https://github.com/paragonie/random_compat"
  2963. },
  2964. "time": "2020-10-15T08:29:30+00:00"
  2965. },
  2966. {
  2967. "name": "phpoption/phpoption",
  2968. "version": "1.9.1",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/schmittjoh/php-option.git",
  2972. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  2977. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  2978. "shasum": "",
  2979. "mirrors": [
  2980. {
  2981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2982. "preferred": true
  2983. }
  2984. ]
  2985. },
  2986. "require": {
  2987. "php": "^7.2.5 || ^8.0"
  2988. },
  2989. "require-dev": {
  2990. "bamarni/composer-bin-plugin": "^1.8.2",
  2991. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  2992. },
  2993. "type": "library",
  2994. "extra": {
  2995. "bamarni-bin": {
  2996. "bin-links": true,
  2997. "forward-command": true
  2998. },
  2999. "branch-alias": {
  3000. "dev-master": "1.9-dev"
  3001. }
  3002. },
  3003. "autoload": {
  3004. "psr-4": {
  3005. "PhpOption\\": "src/PhpOption/"
  3006. }
  3007. },
  3008. "notification-url": "https://packagist.org/downloads/",
  3009. "license": [
  3010. "Apache-2.0"
  3011. ],
  3012. "authors": [
  3013. {
  3014. "name": "Johannes M. Schmitt",
  3015. "email": "schmittjoh@gmail.com",
  3016. "homepage": "https://github.com/schmittjoh"
  3017. },
  3018. {
  3019. "name": "Graham Campbell",
  3020. "email": "hello@gjcampbell.co.uk",
  3021. "homepage": "https://github.com/GrahamCampbell"
  3022. }
  3023. ],
  3024. "description": "Option Type for PHP",
  3025. "keywords": [
  3026. "language",
  3027. "option",
  3028. "php",
  3029. "type"
  3030. ],
  3031. "support": {
  3032. "issues": "https://github.com/schmittjoh/php-option/issues",
  3033. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3034. },
  3035. "funding": [
  3036. {
  3037. "url": "https://github.com/GrahamCampbell",
  3038. "type": "github"
  3039. },
  3040. {
  3041. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3042. "type": "tidelift"
  3043. }
  3044. ],
  3045. "time": "2023-02-25T19:38:58+00:00"
  3046. },
  3047. {
  3048. "name": "phpseclib/phpseclib",
  3049. "version": "3.0.19",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/phpseclib/phpseclib.git",
  3053. "reference": "cc181005cf548bfd8a4896383bb825d859259f95"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95",
  3058. "reference": "cc181005cf548bfd8a4896383bb825d859259f95",
  3059. "shasum": "",
  3060. "mirrors": [
  3061. {
  3062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3063. "preferred": true
  3064. }
  3065. ]
  3066. },
  3067. "require": {
  3068. "paragonie/constant_time_encoding": "^1|^2",
  3069. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3070. "php": ">=5.6.1"
  3071. },
  3072. "require-dev": {
  3073. "phpunit/phpunit": "*"
  3074. },
  3075. "suggest": {
  3076. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3077. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3078. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3079. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3080. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3081. },
  3082. "type": "library",
  3083. "autoload": {
  3084. "files": [
  3085. "phpseclib/bootstrap.php"
  3086. ],
  3087. "psr-4": {
  3088. "phpseclib3\\": "phpseclib/"
  3089. }
  3090. },
  3091. "notification-url": "https://packagist.org/downloads/",
  3092. "license": [
  3093. "MIT"
  3094. ],
  3095. "authors": [
  3096. {
  3097. "name": "Jim Wigginton",
  3098. "email": "terrafrost@php.net",
  3099. "role": "Lead Developer"
  3100. },
  3101. {
  3102. "name": "Patrick Monnerat",
  3103. "email": "pm@datasphere.ch",
  3104. "role": "Developer"
  3105. },
  3106. {
  3107. "name": "Andreas Fischer",
  3108. "email": "bantu@phpbb.com",
  3109. "role": "Developer"
  3110. },
  3111. {
  3112. "name": "Hans-Jürgen Petrich",
  3113. "email": "petrich@tronic-media.com",
  3114. "role": "Developer"
  3115. },
  3116. {
  3117. "name": "Graham Campbell",
  3118. "email": "graham@alt-three.com",
  3119. "role": "Developer"
  3120. }
  3121. ],
  3122. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3123. "homepage": "http://phpseclib.sourceforge.net",
  3124. "keywords": [
  3125. "BigInteger",
  3126. "aes",
  3127. "asn.1",
  3128. "asn1",
  3129. "blowfish",
  3130. "crypto",
  3131. "cryptography",
  3132. "encryption",
  3133. "rsa",
  3134. "security",
  3135. "sftp",
  3136. "signature",
  3137. "signing",
  3138. "ssh",
  3139. "twofish",
  3140. "x.509",
  3141. "x509"
  3142. ],
  3143. "support": {
  3144. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3145. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.19"
  3146. },
  3147. "funding": [
  3148. {
  3149. "url": "https://github.com/terrafrost",
  3150. "type": "github"
  3151. },
  3152. {
  3153. "url": "https://www.patreon.com/phpseclib",
  3154. "type": "patreon"
  3155. },
  3156. {
  3157. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3158. "type": "tidelift"
  3159. }
  3160. ],
  3161. "time": "2023-03-05T17:13:09+00:00"
  3162. },
  3163. {
  3164. "name": "psr/cache",
  3165. "version": "3.0.0",
  3166. "source": {
  3167. "type": "git",
  3168. "url": "https://github.com/php-fig/cache.git",
  3169. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3170. },
  3171. "dist": {
  3172. "type": "zip",
  3173. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3174. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3175. "shasum": "",
  3176. "mirrors": [
  3177. {
  3178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3179. "preferred": true
  3180. }
  3181. ]
  3182. },
  3183. "require": {
  3184. "php": ">=8.0.0"
  3185. },
  3186. "type": "library",
  3187. "extra": {
  3188. "branch-alias": {
  3189. "dev-master": "1.0.x-dev"
  3190. }
  3191. },
  3192. "autoload": {
  3193. "psr-4": {
  3194. "Psr\\Cache\\": "src/"
  3195. }
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "authors": [
  3202. {
  3203. "name": "PHP-FIG",
  3204. "homepage": "https://www.php-fig.org/"
  3205. }
  3206. ],
  3207. "description": "Common interface for caching libraries",
  3208. "keywords": [
  3209. "cache",
  3210. "psr",
  3211. "psr-6"
  3212. ],
  3213. "support": {
  3214. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3215. },
  3216. "time": "2021-02-03T23:26:27+00:00"
  3217. },
  3218. {
  3219. "name": "psr/container",
  3220. "version": "2.0.2",
  3221. "source": {
  3222. "type": "git",
  3223. "url": "https://github.com/php-fig/container.git",
  3224. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3225. },
  3226. "dist": {
  3227. "type": "zip",
  3228. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3229. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3230. "shasum": "",
  3231. "mirrors": [
  3232. {
  3233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3234. "preferred": true
  3235. }
  3236. ]
  3237. },
  3238. "require": {
  3239. "php": ">=7.4.0"
  3240. },
  3241. "type": "library",
  3242. "extra": {
  3243. "branch-alias": {
  3244. "dev-master": "2.0.x-dev"
  3245. }
  3246. },
  3247. "autoload": {
  3248. "psr-4": {
  3249. "Psr\\Container\\": "src/"
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "MIT"
  3255. ],
  3256. "authors": [
  3257. {
  3258. "name": "PHP-FIG",
  3259. "homepage": "https://www.php-fig.org/"
  3260. }
  3261. ],
  3262. "description": "Common Container Interface (PHP FIG PSR-11)",
  3263. "homepage": "https://github.com/php-fig/container",
  3264. "keywords": [
  3265. "PSR-11",
  3266. "container",
  3267. "container-interface",
  3268. "container-interop",
  3269. "psr"
  3270. ],
  3271. "support": {
  3272. "issues": "https://github.com/php-fig/container/issues",
  3273. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3274. },
  3275. "time": "2021-11-05T16:47:00+00:00"
  3276. },
  3277. {
  3278. "name": "psr/event-dispatcher",
  3279. "version": "1.0.0",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/php-fig/event-dispatcher.git",
  3283. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3288. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3289. "shasum": "",
  3290. "mirrors": [
  3291. {
  3292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3293. "preferred": true
  3294. }
  3295. ]
  3296. },
  3297. "require": {
  3298. "php": ">=7.2.0"
  3299. },
  3300. "type": "library",
  3301. "extra": {
  3302. "branch-alias": {
  3303. "dev-master": "1.0.x-dev"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "psr-4": {
  3308. "Psr\\EventDispatcher\\": "src/"
  3309. }
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "PHP-FIG",
  3318. "homepage": "http://www.php-fig.org/"
  3319. }
  3320. ],
  3321. "description": "Standard interfaces for event handling.",
  3322. "keywords": [
  3323. "events",
  3324. "psr",
  3325. "psr-14"
  3326. ],
  3327. "support": {
  3328. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3329. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3330. },
  3331. "time": "2019-01-08T18:20:26+00:00"
  3332. },
  3333. {
  3334. "name": "psr/http-client",
  3335. "version": "1.0.1",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/php-fig/http-client.git",
  3339. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3344. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3345. "shasum": "",
  3346. "mirrors": [
  3347. {
  3348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3349. "preferred": true
  3350. }
  3351. ]
  3352. },
  3353. "require": {
  3354. "php": "^7.0 || ^8.0",
  3355. "psr/http-message": "^1.0"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "1.0.x-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Psr\\Http\\Client\\": "src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "PHP-FIG",
  3375. "homepage": "http://www.php-fig.org/"
  3376. }
  3377. ],
  3378. "description": "Common interface for HTTP clients",
  3379. "homepage": "https://github.com/php-fig/http-client",
  3380. "keywords": [
  3381. "http",
  3382. "http-client",
  3383. "psr",
  3384. "psr-18"
  3385. ],
  3386. "support": {
  3387. "source": "https://github.com/php-fig/http-client/tree/master"
  3388. },
  3389. "time": "2020-06-29T06:28:15+00:00"
  3390. },
  3391. {
  3392. "name": "psr/http-factory",
  3393. "version": "1.0.2",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://github.com/php-fig/http-factory.git",
  3397. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3402. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3403. "shasum": "",
  3404. "mirrors": [
  3405. {
  3406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3407. "preferred": true
  3408. }
  3409. ]
  3410. },
  3411. "require": {
  3412. "php": ">=7.0.0",
  3413. "psr/http-message": "^1.0 || ^2.0"
  3414. },
  3415. "type": "library",
  3416. "extra": {
  3417. "branch-alias": {
  3418. "dev-master": "1.0.x-dev"
  3419. }
  3420. },
  3421. "autoload": {
  3422. "psr-4": {
  3423. "Psr\\Http\\Message\\": "src/"
  3424. }
  3425. },
  3426. "notification-url": "https://packagist.org/downloads/",
  3427. "license": [
  3428. "MIT"
  3429. ],
  3430. "authors": [
  3431. {
  3432. "name": "PHP-FIG",
  3433. "homepage": "https://www.php-fig.org/"
  3434. }
  3435. ],
  3436. "description": "Common interfaces for PSR-7 HTTP message factories",
  3437. "keywords": [
  3438. "factory",
  3439. "http",
  3440. "message",
  3441. "psr",
  3442. "psr-17",
  3443. "psr-7",
  3444. "request",
  3445. "response"
  3446. ],
  3447. "support": {
  3448. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3449. },
  3450. "time": "2023-04-10T20:10:41+00:00"
  3451. },
  3452. {
  3453. "name": "psr/http-message",
  3454. "version": "1.1",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/php-fig/http-message.git",
  3458. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3463. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3464. "shasum": "",
  3465. "mirrors": [
  3466. {
  3467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3468. "preferred": true
  3469. }
  3470. ]
  3471. },
  3472. "require": {
  3473. "php": "^7.2 || ^8.0"
  3474. },
  3475. "type": "library",
  3476. "extra": {
  3477. "branch-alias": {
  3478. "dev-master": "1.1.x-dev"
  3479. }
  3480. },
  3481. "autoload": {
  3482. "psr-4": {
  3483. "Psr\\Http\\Message\\": "src/"
  3484. }
  3485. },
  3486. "notification-url": "https://packagist.org/downloads/",
  3487. "license": [
  3488. "MIT"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "PHP-FIG",
  3493. "homepage": "http://www.php-fig.org/"
  3494. }
  3495. ],
  3496. "description": "Common interface for HTTP messages",
  3497. "homepage": "https://github.com/php-fig/http-message",
  3498. "keywords": [
  3499. "http",
  3500. "http-message",
  3501. "psr",
  3502. "psr-7",
  3503. "request",
  3504. "response"
  3505. ],
  3506. "support": {
  3507. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3508. },
  3509. "time": "2023-04-04T09:50:52+00:00"
  3510. },
  3511. {
  3512. "name": "psr/log",
  3513. "version": "3.0.0",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/php-fig/log.git",
  3517. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3522. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3523. "shasum": "",
  3524. "mirrors": [
  3525. {
  3526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3527. "preferred": true
  3528. }
  3529. ]
  3530. },
  3531. "require": {
  3532. "php": ">=8.0.0"
  3533. },
  3534. "type": "library",
  3535. "extra": {
  3536. "branch-alias": {
  3537. "dev-master": "3.x-dev"
  3538. }
  3539. },
  3540. "autoload": {
  3541. "psr-4": {
  3542. "Psr\\Log\\": "src"
  3543. }
  3544. },
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "MIT"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "PHP-FIG",
  3552. "homepage": "https://www.php-fig.org/"
  3553. }
  3554. ],
  3555. "description": "Common interface for logging libraries",
  3556. "homepage": "https://github.com/php-fig/log",
  3557. "keywords": [
  3558. "log",
  3559. "psr",
  3560. "psr-3"
  3561. ],
  3562. "support": {
  3563. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3564. },
  3565. "time": "2021-07-14T16:46:02+00:00"
  3566. },
  3567. {
  3568. "name": "psr/simple-cache",
  3569. "version": "3.0.0",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/php-fig/simple-cache.git",
  3573. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3578. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3579. "shasum": "",
  3580. "mirrors": [
  3581. {
  3582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3583. "preferred": true
  3584. }
  3585. ]
  3586. },
  3587. "require": {
  3588. "php": ">=8.0.0"
  3589. },
  3590. "type": "library",
  3591. "extra": {
  3592. "branch-alias": {
  3593. "dev-master": "3.0.x-dev"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "psr-4": {
  3598. "Psr\\SimpleCache\\": "src/"
  3599. }
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "MIT"
  3604. ],
  3605. "authors": [
  3606. {
  3607. "name": "PHP-FIG",
  3608. "homepage": "https://www.php-fig.org/"
  3609. }
  3610. ],
  3611. "description": "Common interfaces for simple caching",
  3612. "keywords": [
  3613. "cache",
  3614. "caching",
  3615. "psr",
  3616. "psr-16",
  3617. "simple-cache"
  3618. ],
  3619. "support": {
  3620. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3621. },
  3622. "time": "2021-10-29T13:26:27+00:00"
  3623. },
  3624. {
  3625. "name": "psy/psysh",
  3626. "version": "v0.11.14",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/bobthecow/psysh.git",
  3630. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  3635. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  3636. "shasum": "",
  3637. "mirrors": [
  3638. {
  3639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3640. "preferred": true
  3641. }
  3642. ]
  3643. },
  3644. "require": {
  3645. "ext-json": "*",
  3646. "ext-tokenizer": "*",
  3647. "nikic/php-parser": "^4.0 || ^3.1",
  3648. "php": "^8.0 || ^7.0.8",
  3649. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  3650. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  3651. },
  3652. "conflict": {
  3653. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3654. },
  3655. "require-dev": {
  3656. "bamarni/composer-bin-plugin": "^1.2"
  3657. },
  3658. "suggest": {
  3659. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3660. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3661. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3662. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  3663. },
  3664. "bin": [
  3665. "bin/psysh"
  3666. ],
  3667. "type": "library",
  3668. "extra": {
  3669. "branch-alias": {
  3670. "dev-main": "0.11.x-dev"
  3671. }
  3672. },
  3673. "autoload": {
  3674. "files": [
  3675. "src/functions.php"
  3676. ],
  3677. "psr-4": {
  3678. "Psy\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "Justin Hileman",
  3688. "email": "justin@justinhileman.info",
  3689. "homepage": "http://justinhileman.com"
  3690. }
  3691. ],
  3692. "description": "An interactive shell for modern PHP.",
  3693. "homepage": "http://psysh.org",
  3694. "keywords": [
  3695. "REPL",
  3696. "console",
  3697. "interactive",
  3698. "shell"
  3699. ],
  3700. "support": {
  3701. "issues": "https://github.com/bobthecow/psysh/issues",
  3702. "source": "https://github.com/bobthecow/psysh/tree/v0.11.14"
  3703. },
  3704. "time": "2023-03-28T03:41:01+00:00"
  3705. },
  3706. {
  3707. "name": "ralouphie/getallheaders",
  3708. "version": "3.0.3",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/ralouphie/getallheaders.git",
  3712. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3717. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3718. "shasum": "",
  3719. "mirrors": [
  3720. {
  3721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3722. "preferred": true
  3723. }
  3724. ]
  3725. },
  3726. "require": {
  3727. "php": ">=5.6"
  3728. },
  3729. "require-dev": {
  3730. "php-coveralls/php-coveralls": "^2.1",
  3731. "phpunit/phpunit": "^5 || ^6.5"
  3732. },
  3733. "type": "library",
  3734. "autoload": {
  3735. "files": [
  3736. "src/getallheaders.php"
  3737. ]
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "authors": [
  3744. {
  3745. "name": "Ralph Khattar",
  3746. "email": "ralph.khattar@gmail.com"
  3747. }
  3748. ],
  3749. "description": "A polyfill for getallheaders.",
  3750. "support": {
  3751. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3752. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3753. },
  3754. "time": "2019-03-08T08:55:37+00:00"
  3755. },
  3756. {
  3757. "name": "ramsey/collection",
  3758. "version": "1.3.0",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/ramsey/collection.git",
  3762. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3767. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3768. "shasum": "",
  3769. "mirrors": [
  3770. {
  3771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3772. "preferred": true
  3773. }
  3774. ]
  3775. },
  3776. "require": {
  3777. "php": "^7.4 || ^8.0",
  3778. "symfony/polyfill-php81": "^1.23"
  3779. },
  3780. "require-dev": {
  3781. "captainhook/plugin-composer": "^5.3",
  3782. "ergebnis/composer-normalize": "^2.28.3",
  3783. "fakerphp/faker": "^1.21",
  3784. "hamcrest/hamcrest-php": "^2.0",
  3785. "jangregor/phpstan-prophecy": "^1.0",
  3786. "mockery/mockery": "^1.5",
  3787. "php-parallel-lint/php-console-highlighter": "^1.0",
  3788. "php-parallel-lint/php-parallel-lint": "^1.3",
  3789. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3790. "phpspec/prophecy-phpunit": "^2.0",
  3791. "phpstan/extension-installer": "^1.2",
  3792. "phpstan/phpstan": "^1.9",
  3793. "phpstan/phpstan-mockery": "^1.1",
  3794. "phpstan/phpstan-phpunit": "^1.3",
  3795. "phpunit/phpunit": "^9.5",
  3796. "psalm/plugin-mockery": "^1.1",
  3797. "psalm/plugin-phpunit": "^0.18.4",
  3798. "ramsey/coding-standard": "^2.0.3",
  3799. "ramsey/conventional-commits": "^1.3",
  3800. "vimeo/psalm": "^5.4"
  3801. },
  3802. "type": "library",
  3803. "extra": {
  3804. "captainhook": {
  3805. "force-install": true
  3806. },
  3807. "ramsey/conventional-commits": {
  3808. "configFile": "conventional-commits.json"
  3809. }
  3810. },
  3811. "autoload": {
  3812. "psr-4": {
  3813. "Ramsey\\Collection\\": "src/"
  3814. }
  3815. },
  3816. "notification-url": "https://packagist.org/downloads/",
  3817. "license": [
  3818. "MIT"
  3819. ],
  3820. "authors": [
  3821. {
  3822. "name": "Ben Ramsey",
  3823. "email": "ben@benramsey.com",
  3824. "homepage": "https://benramsey.com"
  3825. }
  3826. ],
  3827. "description": "A PHP library for representing and manipulating collections.",
  3828. "keywords": [
  3829. "array",
  3830. "collection",
  3831. "hash",
  3832. "map",
  3833. "queue",
  3834. "set"
  3835. ],
  3836. "support": {
  3837. "issues": "https://github.com/ramsey/collection/issues",
  3838. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  3839. },
  3840. "funding": [
  3841. {
  3842. "url": "https://github.com/ramsey",
  3843. "type": "github"
  3844. },
  3845. {
  3846. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3847. "type": "tidelift"
  3848. }
  3849. ],
  3850. "time": "2022-12-27T19:12:24+00:00"
  3851. },
  3852. {
  3853. "name": "ramsey/uuid",
  3854. "version": "4.7.4",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://github.com/ramsey/uuid.git",
  3858. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  3863. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  3864. "shasum": "",
  3865. "mirrors": [
  3866. {
  3867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3868. "preferred": true
  3869. }
  3870. ]
  3871. },
  3872. "require": {
  3873. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3874. "ext-json": "*",
  3875. "php": "^8.0",
  3876. "ramsey/collection": "^1.2 || ^2.0"
  3877. },
  3878. "replace": {
  3879. "rhumsaa/uuid": "self.version"
  3880. },
  3881. "require-dev": {
  3882. "captainhook/captainhook": "^5.10",
  3883. "captainhook/plugin-composer": "^5.3",
  3884. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3885. "doctrine/annotations": "^1.8",
  3886. "ergebnis/composer-normalize": "^2.15",
  3887. "mockery/mockery": "^1.3",
  3888. "paragonie/random-lib": "^2",
  3889. "php-mock/php-mock": "^2.2",
  3890. "php-mock/php-mock-mockery": "^1.3",
  3891. "php-parallel-lint/php-parallel-lint": "^1.1",
  3892. "phpbench/phpbench": "^1.0",
  3893. "phpstan/extension-installer": "^1.1",
  3894. "phpstan/phpstan": "^1.8",
  3895. "phpstan/phpstan-mockery": "^1.1",
  3896. "phpstan/phpstan-phpunit": "^1.1",
  3897. "phpunit/phpunit": "^8.5 || ^9",
  3898. "ramsey/composer-repl": "^1.4",
  3899. "slevomat/coding-standard": "^8.4",
  3900. "squizlabs/php_codesniffer": "^3.5",
  3901. "vimeo/psalm": "^4.9"
  3902. },
  3903. "suggest": {
  3904. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3905. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3906. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3907. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3908. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3909. },
  3910. "type": "library",
  3911. "extra": {
  3912. "captainhook": {
  3913. "force-install": true
  3914. }
  3915. },
  3916. "autoload": {
  3917. "files": [
  3918. "src/functions.php"
  3919. ],
  3920. "psr-4": {
  3921. "Ramsey\\Uuid\\": "src/"
  3922. }
  3923. },
  3924. "notification-url": "https://packagist.org/downloads/",
  3925. "license": [
  3926. "MIT"
  3927. ],
  3928. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3929. "keywords": [
  3930. "guid",
  3931. "identifier",
  3932. "uuid"
  3933. ],
  3934. "support": {
  3935. "issues": "https://github.com/ramsey/uuid/issues",
  3936. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  3937. },
  3938. "funding": [
  3939. {
  3940. "url": "https://github.com/ramsey",
  3941. "type": "github"
  3942. },
  3943. {
  3944. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3945. "type": "tidelift"
  3946. }
  3947. ],
  3948. "time": "2023-04-15T23:01:58+00:00"
  3949. },
  3950. {
  3951. "name": "symfony/cache",
  3952. "version": "v6.0.19",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/symfony/cache.git",
  3956. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  3961. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  3962. "shasum": "",
  3963. "mirrors": [
  3964. {
  3965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3966. "preferred": true
  3967. }
  3968. ]
  3969. },
  3970. "require": {
  3971. "php": ">=8.0.2",
  3972. "psr/cache": "^2.0|^3.0",
  3973. "psr/log": "^1.1|^2|^3",
  3974. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3975. "symfony/service-contracts": "^1.1|^2|^3",
  3976. "symfony/var-exporter": "^5.4|^6.0"
  3977. },
  3978. "conflict": {
  3979. "doctrine/dbal": "<2.13.1",
  3980. "symfony/dependency-injection": "<5.4",
  3981. "symfony/http-kernel": "<5.4",
  3982. "symfony/var-dumper": "<5.4"
  3983. },
  3984. "provide": {
  3985. "psr/cache-implementation": "2.0|3.0",
  3986. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3987. "symfony/cache-implementation": "1.1|2.0|3.0"
  3988. },
  3989. "require-dev": {
  3990. "cache/integration-tests": "dev-master",
  3991. "doctrine/dbal": "^2.13.1|^3.0",
  3992. "predis/predis": "^1.1",
  3993. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3994. "symfony/config": "^5.4|^6.0",
  3995. "symfony/dependency-injection": "^5.4|^6.0",
  3996. "symfony/filesystem": "^5.4|^6.0",
  3997. "symfony/http-kernel": "^5.4|^6.0",
  3998. "symfony/messenger": "^5.4|^6.0",
  3999. "symfony/var-dumper": "^5.4|^6.0"
  4000. },
  4001. "type": "library",
  4002. "autoload": {
  4003. "psr-4": {
  4004. "Symfony\\Component\\Cache\\": ""
  4005. },
  4006. "exclude-from-classmap": [
  4007. "/Tests/"
  4008. ]
  4009. },
  4010. "notification-url": "https://packagist.org/downloads/",
  4011. "license": [
  4012. "MIT"
  4013. ],
  4014. "authors": [
  4015. {
  4016. "name": "Nicolas Grekas",
  4017. "email": "p@tchwork.com"
  4018. },
  4019. {
  4020. "name": "Symfony Community",
  4021. "homepage": "https://symfony.com/contributors"
  4022. }
  4023. ],
  4024. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4025. "homepage": "https://symfony.com",
  4026. "keywords": [
  4027. "caching",
  4028. "psr6"
  4029. ],
  4030. "support": {
  4031. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  4032. },
  4033. "funding": [
  4034. {
  4035. "url": "https://symfony.com/sponsor",
  4036. "type": "custom"
  4037. },
  4038. {
  4039. "url": "https://github.com/fabpot",
  4040. "type": "github"
  4041. },
  4042. {
  4043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4044. "type": "tidelift"
  4045. }
  4046. ],
  4047. "time": "2023-01-20T17:44:14+00:00"
  4048. },
  4049. {
  4050. "name": "symfony/cache-contracts",
  4051. "version": "v3.0.2",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/symfony/cache-contracts.git",
  4055. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4060. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4061. "shasum": "",
  4062. "mirrors": [
  4063. {
  4064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4065. "preferred": true
  4066. }
  4067. ]
  4068. },
  4069. "require": {
  4070. "php": ">=8.0.2",
  4071. "psr/cache": "^3.0"
  4072. },
  4073. "suggest": {
  4074. "symfony/cache-implementation": ""
  4075. },
  4076. "type": "library",
  4077. "extra": {
  4078. "branch-alias": {
  4079. "dev-main": "3.0-dev"
  4080. },
  4081. "thanks": {
  4082. "name": "symfony/contracts",
  4083. "url": "https://github.com/symfony/contracts"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "Symfony\\Contracts\\Cache\\": ""
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "Nicolas Grekas",
  4098. "email": "p@tchwork.com"
  4099. },
  4100. {
  4101. "name": "Symfony Community",
  4102. "homepage": "https://symfony.com/contributors"
  4103. }
  4104. ],
  4105. "description": "Generic abstractions related to caching",
  4106. "homepage": "https://symfony.com",
  4107. "keywords": [
  4108. "abstractions",
  4109. "contracts",
  4110. "decoupling",
  4111. "interfaces",
  4112. "interoperability",
  4113. "standards"
  4114. ],
  4115. "support": {
  4116. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  4117. },
  4118. "funding": [
  4119. {
  4120. "url": "https://symfony.com/sponsor",
  4121. "type": "custom"
  4122. },
  4123. {
  4124. "url": "https://github.com/fabpot",
  4125. "type": "github"
  4126. },
  4127. {
  4128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4129. "type": "tidelift"
  4130. }
  4131. ],
  4132. "time": "2022-01-02T09:55:41+00:00"
  4133. },
  4134. {
  4135. "name": "symfony/console",
  4136. "version": "v6.0.19",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://github.com/symfony/console.git",
  4140. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4145. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4146. "shasum": "",
  4147. "mirrors": [
  4148. {
  4149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4150. "preferred": true
  4151. }
  4152. ]
  4153. },
  4154. "require": {
  4155. "php": ">=8.0.2",
  4156. "symfony/polyfill-mbstring": "~1.0",
  4157. "symfony/service-contracts": "^1.1|^2|^3",
  4158. "symfony/string": "^5.4|^6.0"
  4159. },
  4160. "conflict": {
  4161. "symfony/dependency-injection": "<5.4",
  4162. "symfony/dotenv": "<5.4",
  4163. "symfony/event-dispatcher": "<5.4",
  4164. "symfony/lock": "<5.4",
  4165. "symfony/process": "<5.4"
  4166. },
  4167. "provide": {
  4168. "psr/log-implementation": "1.0|2.0|3.0"
  4169. },
  4170. "require-dev": {
  4171. "psr/log": "^1|^2|^3",
  4172. "symfony/config": "^5.4|^6.0",
  4173. "symfony/dependency-injection": "^5.4|^6.0",
  4174. "symfony/event-dispatcher": "^5.4|^6.0",
  4175. "symfony/lock": "^5.4|^6.0",
  4176. "symfony/process": "^5.4|^6.0",
  4177. "symfony/var-dumper": "^5.4|^6.0"
  4178. },
  4179. "suggest": {
  4180. "psr/log": "For using the console logger",
  4181. "symfony/event-dispatcher": "",
  4182. "symfony/lock": "",
  4183. "symfony/process": ""
  4184. },
  4185. "type": "library",
  4186. "autoload": {
  4187. "psr-4": {
  4188. "Symfony\\Component\\Console\\": ""
  4189. },
  4190. "exclude-from-classmap": [
  4191. "/Tests/"
  4192. ]
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "MIT"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Fabien Potencier",
  4201. "email": "fabien@symfony.com"
  4202. },
  4203. {
  4204. "name": "Symfony Community",
  4205. "homepage": "https://symfony.com/contributors"
  4206. }
  4207. ],
  4208. "description": "Eases the creation of beautiful and testable command line interfaces",
  4209. "homepage": "https://symfony.com",
  4210. "keywords": [
  4211. "cli",
  4212. "command line",
  4213. "console",
  4214. "terminal"
  4215. ],
  4216. "support": {
  4217. "source": "https://github.com/symfony/console/tree/v6.0.19"
  4218. },
  4219. "funding": [
  4220. {
  4221. "url": "https://symfony.com/sponsor",
  4222. "type": "custom"
  4223. },
  4224. {
  4225. "url": "https://github.com/fabpot",
  4226. "type": "github"
  4227. },
  4228. {
  4229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4230. "type": "tidelift"
  4231. }
  4232. ],
  4233. "time": "2023-01-01T08:36:10+00:00"
  4234. },
  4235. {
  4236. "name": "symfony/css-selector",
  4237. "version": "v6.0.19",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/symfony/css-selector.git",
  4241. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4246. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4247. "shasum": "",
  4248. "mirrors": [
  4249. {
  4250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4251. "preferred": true
  4252. }
  4253. ]
  4254. },
  4255. "require": {
  4256. "php": ">=8.0.2"
  4257. },
  4258. "type": "library",
  4259. "autoload": {
  4260. "psr-4": {
  4261. "Symfony\\Component\\CssSelector\\": ""
  4262. },
  4263. "exclude-from-classmap": [
  4264. "/Tests/"
  4265. ]
  4266. },
  4267. "notification-url": "https://packagist.org/downloads/",
  4268. "license": [
  4269. "MIT"
  4270. ],
  4271. "authors": [
  4272. {
  4273. "name": "Fabien Potencier",
  4274. "email": "fabien@symfony.com"
  4275. },
  4276. {
  4277. "name": "Jean-François Simon",
  4278. "email": "jeanfrancois.simon@sensiolabs.com"
  4279. },
  4280. {
  4281. "name": "Symfony Community",
  4282. "homepage": "https://symfony.com/contributors"
  4283. }
  4284. ],
  4285. "description": "Converts CSS selectors to XPath expressions",
  4286. "homepage": "https://symfony.com",
  4287. "support": {
  4288. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  4289. },
  4290. "funding": [
  4291. {
  4292. "url": "https://symfony.com/sponsor",
  4293. "type": "custom"
  4294. },
  4295. {
  4296. "url": "https://github.com/fabpot",
  4297. "type": "github"
  4298. },
  4299. {
  4300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4301. "type": "tidelift"
  4302. }
  4303. ],
  4304. "time": "2023-01-01T08:36:10+00:00"
  4305. },
  4306. {
  4307. "name": "symfony/deprecation-contracts",
  4308. "version": "v3.0.2",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/symfony/deprecation-contracts.git",
  4312. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4317. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4318. "shasum": "",
  4319. "mirrors": [
  4320. {
  4321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4322. "preferred": true
  4323. }
  4324. ]
  4325. },
  4326. "require": {
  4327. "php": ">=8.0.2"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-main": "3.0-dev"
  4333. },
  4334. "thanks": {
  4335. "name": "symfony/contracts",
  4336. "url": "https://github.com/symfony/contracts"
  4337. }
  4338. },
  4339. "autoload": {
  4340. "files": [
  4341. "function.php"
  4342. ]
  4343. },
  4344. "notification-url": "https://packagist.org/downloads/",
  4345. "license": [
  4346. "MIT"
  4347. ],
  4348. "authors": [
  4349. {
  4350. "name": "Nicolas Grekas",
  4351. "email": "p@tchwork.com"
  4352. },
  4353. {
  4354. "name": "Symfony Community",
  4355. "homepage": "https://symfony.com/contributors"
  4356. }
  4357. ],
  4358. "description": "A generic function and convention to trigger deprecation notices",
  4359. "homepage": "https://symfony.com",
  4360. "support": {
  4361. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  4362. },
  4363. "funding": [
  4364. {
  4365. "url": "https://symfony.com/sponsor",
  4366. "type": "custom"
  4367. },
  4368. {
  4369. "url": "https://github.com/fabpot",
  4370. "type": "github"
  4371. },
  4372. {
  4373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4374. "type": "tidelift"
  4375. }
  4376. ],
  4377. "time": "2022-01-02T09:55:41+00:00"
  4378. },
  4379. {
  4380. "name": "symfony/error-handler",
  4381. "version": "v6.0.19",
  4382. "source": {
  4383. "type": "git",
  4384. "url": "https://github.com/symfony/error-handler.git",
  4385. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67"
  4386. },
  4387. "dist": {
  4388. "type": "zip",
  4389. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67",
  4390. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67",
  4391. "shasum": "",
  4392. "mirrors": [
  4393. {
  4394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4395. "preferred": true
  4396. }
  4397. ]
  4398. },
  4399. "require": {
  4400. "php": ">=8.0.2",
  4401. "psr/log": "^1|^2|^3",
  4402. "symfony/var-dumper": "^5.4|^6.0"
  4403. },
  4404. "require-dev": {
  4405. "symfony/deprecation-contracts": "^2.1|^3",
  4406. "symfony/http-kernel": "^5.4|^6.0",
  4407. "symfony/serializer": "^5.4|^6.0"
  4408. },
  4409. "bin": [
  4410. "Resources/bin/patch-type-declarations"
  4411. ],
  4412. "type": "library",
  4413. "autoload": {
  4414. "psr-4": {
  4415. "Symfony\\Component\\ErrorHandler\\": ""
  4416. },
  4417. "exclude-from-classmap": [
  4418. "/Tests/"
  4419. ]
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Fabien Potencier",
  4428. "email": "fabien@symfony.com"
  4429. },
  4430. {
  4431. "name": "Symfony Community",
  4432. "homepage": "https://symfony.com/contributors"
  4433. }
  4434. ],
  4435. "description": "Provides tools to manage errors and ease debugging PHP code",
  4436. "homepage": "https://symfony.com",
  4437. "support": {
  4438. "source": "https://github.com/symfony/error-handler/tree/v6.0.19"
  4439. },
  4440. "funding": [
  4441. {
  4442. "url": "https://symfony.com/sponsor",
  4443. "type": "custom"
  4444. },
  4445. {
  4446. "url": "https://github.com/fabpot",
  4447. "type": "github"
  4448. },
  4449. {
  4450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4451. "type": "tidelift"
  4452. }
  4453. ],
  4454. "time": "2023-01-01T08:36:10+00:00"
  4455. },
  4456. {
  4457. "name": "symfony/event-dispatcher",
  4458. "version": "v6.0.19",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/symfony/event-dispatcher.git",
  4462. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  4467. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  4468. "shasum": "",
  4469. "mirrors": [
  4470. {
  4471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4472. "preferred": true
  4473. }
  4474. ]
  4475. },
  4476. "require": {
  4477. "php": ">=8.0.2",
  4478. "symfony/event-dispatcher-contracts": "^2|^3"
  4479. },
  4480. "conflict": {
  4481. "symfony/dependency-injection": "<5.4"
  4482. },
  4483. "provide": {
  4484. "psr/event-dispatcher-implementation": "1.0",
  4485. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4486. },
  4487. "require-dev": {
  4488. "psr/log": "^1|^2|^3",
  4489. "symfony/config": "^5.4|^6.0",
  4490. "symfony/dependency-injection": "^5.4|^6.0",
  4491. "symfony/error-handler": "^5.4|^6.0",
  4492. "symfony/expression-language": "^5.4|^6.0",
  4493. "symfony/http-foundation": "^5.4|^6.0",
  4494. "symfony/service-contracts": "^1.1|^2|^3",
  4495. "symfony/stopwatch": "^5.4|^6.0"
  4496. },
  4497. "suggest": {
  4498. "symfony/dependency-injection": "",
  4499. "symfony/http-kernel": ""
  4500. },
  4501. "type": "library",
  4502. "autoload": {
  4503. "psr-4": {
  4504. "Symfony\\Component\\EventDispatcher\\": ""
  4505. },
  4506. "exclude-from-classmap": [
  4507. "/Tests/"
  4508. ]
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "MIT"
  4513. ],
  4514. "authors": [
  4515. {
  4516. "name": "Fabien Potencier",
  4517. "email": "fabien@symfony.com"
  4518. },
  4519. {
  4520. "name": "Symfony Community",
  4521. "homepage": "https://symfony.com/contributors"
  4522. }
  4523. ],
  4524. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4525. "homepage": "https://symfony.com",
  4526. "support": {
  4527. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  4528. },
  4529. "funding": [
  4530. {
  4531. "url": "https://symfony.com/sponsor",
  4532. "type": "custom"
  4533. },
  4534. {
  4535. "url": "https://github.com/fabpot",
  4536. "type": "github"
  4537. },
  4538. {
  4539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4540. "type": "tidelift"
  4541. }
  4542. ],
  4543. "time": "2023-01-01T08:36:10+00:00"
  4544. },
  4545. {
  4546. "name": "symfony/event-dispatcher-contracts",
  4547. "version": "v3.0.2",
  4548. "source": {
  4549. "type": "git",
  4550. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4551. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  4552. },
  4553. "dist": {
  4554. "type": "zip",
  4555. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  4556. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  4557. "shasum": "",
  4558. "mirrors": [
  4559. {
  4560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4561. "preferred": true
  4562. }
  4563. ]
  4564. },
  4565. "require": {
  4566. "php": ">=8.0.2",
  4567. "psr/event-dispatcher": "^1"
  4568. },
  4569. "suggest": {
  4570. "symfony/event-dispatcher-implementation": ""
  4571. },
  4572. "type": "library",
  4573. "extra": {
  4574. "branch-alias": {
  4575. "dev-main": "3.0-dev"
  4576. },
  4577. "thanks": {
  4578. "name": "symfony/contracts",
  4579. "url": "https://github.com/symfony/contracts"
  4580. }
  4581. },
  4582. "autoload": {
  4583. "psr-4": {
  4584. "Symfony\\Contracts\\EventDispatcher\\": ""
  4585. }
  4586. },
  4587. "notification-url": "https://packagist.org/downloads/",
  4588. "license": [
  4589. "MIT"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "Nicolas Grekas",
  4594. "email": "p@tchwork.com"
  4595. },
  4596. {
  4597. "name": "Symfony Community",
  4598. "homepage": "https://symfony.com/contributors"
  4599. }
  4600. ],
  4601. "description": "Generic abstractions related to dispatching event",
  4602. "homepage": "https://symfony.com",
  4603. "keywords": [
  4604. "abstractions",
  4605. "contracts",
  4606. "decoupling",
  4607. "interfaces",
  4608. "interoperability",
  4609. "standards"
  4610. ],
  4611. "support": {
  4612. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  4613. },
  4614. "funding": [
  4615. {
  4616. "url": "https://symfony.com/sponsor",
  4617. "type": "custom"
  4618. },
  4619. {
  4620. "url": "https://github.com/fabpot",
  4621. "type": "github"
  4622. },
  4623. {
  4624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4625. "type": "tidelift"
  4626. }
  4627. ],
  4628. "time": "2022-01-02T09:55:41+00:00"
  4629. },
  4630. {
  4631. "name": "symfony/finder",
  4632. "version": "v6.0.19",
  4633. "source": {
  4634. "type": "git",
  4635. "url": "https://github.com/symfony/finder.git",
  4636. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
  4637. },
  4638. "dist": {
  4639. "type": "zip",
  4640. "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
  4641. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
  4642. "shasum": "",
  4643. "mirrors": [
  4644. {
  4645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4646. "preferred": true
  4647. }
  4648. ]
  4649. },
  4650. "require": {
  4651. "php": ">=8.0.2"
  4652. },
  4653. "type": "library",
  4654. "autoload": {
  4655. "psr-4": {
  4656. "Symfony\\Component\\Finder\\": ""
  4657. },
  4658. "exclude-from-classmap": [
  4659. "/Tests/"
  4660. ]
  4661. },
  4662. "notification-url": "https://packagist.org/downloads/",
  4663. "license": [
  4664. "MIT"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "Fabien Potencier",
  4669. "email": "fabien@symfony.com"
  4670. },
  4671. {
  4672. "name": "Symfony Community",
  4673. "homepage": "https://symfony.com/contributors"
  4674. }
  4675. ],
  4676. "description": "Finds files and directories via an intuitive fluent interface",
  4677. "homepage": "https://symfony.com",
  4678. "support": {
  4679. "source": "https://github.com/symfony/finder/tree/v6.0.19"
  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": "2023-01-20T17:44:14+00:00"
  4696. },
  4697. {
  4698. "name": "symfony/http-client",
  4699. "version": "v6.0.20",
  4700. "source": {
  4701. "type": "git",
  4702. "url": "https://github.com/symfony/http-client.git",
  4703. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11"
  4704. },
  4705. "dist": {
  4706. "type": "zip",
  4707. "url": "https://api.github.com/repos/symfony/http-client/zipball/541c04560da1875f62c963c3aab6ea12a7314e11",
  4708. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11",
  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. "psr/log": "^1|^2|^3",
  4720. "symfony/http-client-contracts": "^3",
  4721. "symfony/service-contracts": "^1.0|^2|^3"
  4722. },
  4723. "provide": {
  4724. "php-http/async-client-implementation": "*",
  4725. "php-http/client-implementation": "*",
  4726. "psr/http-client-implementation": "1.0",
  4727. "symfony/http-client-implementation": "3.0"
  4728. },
  4729. "require-dev": {
  4730. "amphp/amp": "^2.5",
  4731. "amphp/http-client": "^4.2.1",
  4732. "amphp/http-tunnel": "^1.0",
  4733. "amphp/socket": "^1.1",
  4734. "guzzlehttp/promises": "^1.4",
  4735. "nyholm/psr7": "^1.0",
  4736. "php-http/httplug": "^1.0|^2.0",
  4737. "psr/http-client": "^1.0",
  4738. "symfony/dependency-injection": "^5.4|^6.0",
  4739. "symfony/http-kernel": "^5.4|^6.0",
  4740. "symfony/process": "^5.4|^6.0",
  4741. "symfony/stopwatch": "^5.4|^6.0"
  4742. },
  4743. "type": "library",
  4744. "autoload": {
  4745. "psr-4": {
  4746. "Symfony\\Component\\HttpClient\\": ""
  4747. },
  4748. "exclude-from-classmap": [
  4749. "/Tests/"
  4750. ]
  4751. },
  4752. "notification-url": "https://packagist.org/downloads/",
  4753. "license": [
  4754. "MIT"
  4755. ],
  4756. "authors": [
  4757. {
  4758. "name": "Nicolas Grekas",
  4759. "email": "p@tchwork.com"
  4760. },
  4761. {
  4762. "name": "Symfony Community",
  4763. "homepage": "https://symfony.com/contributors"
  4764. }
  4765. ],
  4766. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4767. "homepage": "https://symfony.com",
  4768. "support": {
  4769. "source": "https://github.com/symfony/http-client/tree/v6.0.20"
  4770. },
  4771. "funding": [
  4772. {
  4773. "url": "https://symfony.com/sponsor",
  4774. "type": "custom"
  4775. },
  4776. {
  4777. "url": "https://github.com/fabpot",
  4778. "type": "github"
  4779. },
  4780. {
  4781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4782. "type": "tidelift"
  4783. }
  4784. ],
  4785. "time": "2023-01-30T15:41:07+00:00"
  4786. },
  4787. {
  4788. "name": "symfony/http-client-contracts",
  4789. "version": "v3.0.2",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/symfony/http-client-contracts.git",
  4793. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4798. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4799. "shasum": "",
  4800. "mirrors": [
  4801. {
  4802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4803. "preferred": true
  4804. }
  4805. ]
  4806. },
  4807. "require": {
  4808. "php": ">=8.0.2"
  4809. },
  4810. "suggest": {
  4811. "symfony/http-client-implementation": ""
  4812. },
  4813. "type": "library",
  4814. "extra": {
  4815. "branch-alias": {
  4816. "dev-main": "3.0-dev"
  4817. },
  4818. "thanks": {
  4819. "name": "symfony/contracts",
  4820. "url": "https://github.com/symfony/contracts"
  4821. }
  4822. },
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Symfony\\Contracts\\HttpClient\\": ""
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Nicolas Grekas",
  4835. "email": "p@tchwork.com"
  4836. },
  4837. {
  4838. "name": "Symfony Community",
  4839. "homepage": "https://symfony.com/contributors"
  4840. }
  4841. ],
  4842. "description": "Generic abstractions related to HTTP clients",
  4843. "homepage": "https://symfony.com",
  4844. "keywords": [
  4845. "abstractions",
  4846. "contracts",
  4847. "decoupling",
  4848. "interfaces",
  4849. "interoperability",
  4850. "standards"
  4851. ],
  4852. "support": {
  4853. "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.2"
  4854. },
  4855. "funding": [
  4856. {
  4857. "url": "https://symfony.com/sponsor",
  4858. "type": "custom"
  4859. },
  4860. {
  4861. "url": "https://github.com/fabpot",
  4862. "type": "github"
  4863. },
  4864. {
  4865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4866. "type": "tidelift"
  4867. }
  4868. ],
  4869. "time": "2022-04-12T16:11:42+00:00"
  4870. },
  4871. {
  4872. "name": "symfony/http-foundation",
  4873. "version": "v6.0.20",
  4874. "source": {
  4875. "type": "git",
  4876. "url": "https://github.com/symfony/http-foundation.git",
  4877. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6"
  4878. },
  4879. "dist": {
  4880. "type": "zip",
  4881. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4882. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4883. "shasum": "",
  4884. "mirrors": [
  4885. {
  4886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4887. "preferred": true
  4888. }
  4889. ]
  4890. },
  4891. "require": {
  4892. "php": ">=8.0.2",
  4893. "symfony/deprecation-contracts": "^2.1|^3",
  4894. "symfony/polyfill-mbstring": "~1.1"
  4895. },
  4896. "require-dev": {
  4897. "predis/predis": "~1.0",
  4898. "symfony/cache": "^5.4|^6.0",
  4899. "symfony/dependency-injection": "^5.4|^6.0",
  4900. "symfony/expression-language": "^5.4|^6.0",
  4901. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4902. "symfony/mime": "^5.4|^6.0",
  4903. "symfony/rate-limiter": "^5.2|^6.0"
  4904. },
  4905. "suggest": {
  4906. "symfony/mime": "To use the file extension guesser"
  4907. },
  4908. "type": "library",
  4909. "autoload": {
  4910. "psr-4": {
  4911. "Symfony\\Component\\HttpFoundation\\": ""
  4912. },
  4913. "exclude-from-classmap": [
  4914. "/Tests/"
  4915. ]
  4916. },
  4917. "notification-url": "https://packagist.org/downloads/",
  4918. "license": [
  4919. "MIT"
  4920. ],
  4921. "authors": [
  4922. {
  4923. "name": "Fabien Potencier",
  4924. "email": "fabien@symfony.com"
  4925. },
  4926. {
  4927. "name": "Symfony Community",
  4928. "homepage": "https://symfony.com/contributors"
  4929. }
  4930. ],
  4931. "description": "Defines an object-oriented layer for the HTTP specification",
  4932. "homepage": "https://symfony.com",
  4933. "support": {
  4934. "source": "https://github.com/symfony/http-foundation/tree/v6.0.20"
  4935. },
  4936. "funding": [
  4937. {
  4938. "url": "https://symfony.com/sponsor",
  4939. "type": "custom"
  4940. },
  4941. {
  4942. "url": "https://github.com/fabpot",
  4943. "type": "github"
  4944. },
  4945. {
  4946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4947. "type": "tidelift"
  4948. }
  4949. ],
  4950. "time": "2023-01-30T15:41:07+00:00"
  4951. },
  4952. {
  4953. "name": "symfony/http-kernel",
  4954. "version": "v6.0.20",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/symfony/http-kernel.git",
  4958. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349",
  4963. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349",
  4964. "shasum": "",
  4965. "mirrors": [
  4966. {
  4967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4968. "preferred": true
  4969. }
  4970. ]
  4971. },
  4972. "require": {
  4973. "php": ">=8.0.2",
  4974. "psr/log": "^1|^2|^3",
  4975. "symfony/error-handler": "^5.4|^6.0",
  4976. "symfony/event-dispatcher": "^5.4|^6.0",
  4977. "symfony/http-foundation": "^5.4|^6.0",
  4978. "symfony/polyfill-ctype": "^1.8"
  4979. },
  4980. "conflict": {
  4981. "symfony/browser-kit": "<5.4",
  4982. "symfony/cache": "<5.4",
  4983. "symfony/config": "<5.4",
  4984. "symfony/console": "<5.4",
  4985. "symfony/dependency-injection": "<5.4",
  4986. "symfony/doctrine-bridge": "<5.4",
  4987. "symfony/form": "<5.4",
  4988. "symfony/http-client": "<5.4",
  4989. "symfony/mailer": "<5.4",
  4990. "symfony/messenger": "<5.4",
  4991. "symfony/translation": "<5.4",
  4992. "symfony/twig-bridge": "<5.4",
  4993. "symfony/validator": "<5.4",
  4994. "twig/twig": "<2.13"
  4995. },
  4996. "provide": {
  4997. "psr/log-implementation": "1.0|2.0|3.0"
  4998. },
  4999. "require-dev": {
  5000. "psr/cache": "^1.0|^2.0|^3.0",
  5001. "symfony/browser-kit": "^5.4|^6.0",
  5002. "symfony/config": "^5.4|^6.0",
  5003. "symfony/console": "^5.4|^6.0",
  5004. "symfony/css-selector": "^5.4|^6.0",
  5005. "symfony/dependency-injection": "^5.4|^6.0",
  5006. "symfony/dom-crawler": "^5.4|^6.0",
  5007. "symfony/expression-language": "^5.4|^6.0",
  5008. "symfony/finder": "^5.4|^6.0",
  5009. "symfony/http-client-contracts": "^1.1|^2|^3",
  5010. "symfony/process": "^5.4|^6.0",
  5011. "symfony/routing": "^5.4|^6.0",
  5012. "symfony/stopwatch": "^5.4|^6.0",
  5013. "symfony/translation": "^5.4|^6.0",
  5014. "symfony/translation-contracts": "^1.1|^2|^3",
  5015. "twig/twig": "^2.13|^3.0.4"
  5016. },
  5017. "suggest": {
  5018. "symfony/browser-kit": "",
  5019. "symfony/config": "",
  5020. "symfony/console": "",
  5021. "symfony/dependency-injection": ""
  5022. },
  5023. "type": "library",
  5024. "autoload": {
  5025. "psr-4": {
  5026. "Symfony\\Component\\HttpKernel\\": ""
  5027. },
  5028. "exclude-from-classmap": [
  5029. "/Tests/"
  5030. ]
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Fabien Potencier",
  5039. "email": "fabien@symfony.com"
  5040. },
  5041. {
  5042. "name": "Symfony Community",
  5043. "homepage": "https://symfony.com/contributors"
  5044. }
  5045. ],
  5046. "description": "Provides a structured process for converting a Request into a Response",
  5047. "homepage": "https://symfony.com",
  5048. "support": {
  5049. "source": "https://github.com/symfony/http-kernel/tree/v6.0.20"
  5050. },
  5051. "funding": [
  5052. {
  5053. "url": "https://symfony.com/sponsor",
  5054. "type": "custom"
  5055. },
  5056. {
  5057. "url": "https://github.com/fabpot",
  5058. "type": "github"
  5059. },
  5060. {
  5061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5062. "type": "tidelift"
  5063. }
  5064. ],
  5065. "time": "2023-02-01T08:22:55+00:00"
  5066. },
  5067. {
  5068. "name": "symfony/mailer",
  5069. "version": "v6.0.19",
  5070. "source": {
  5071. "type": "git",
  5072. "url": "https://github.com/symfony/mailer.git",
  5073. "reference": "cd60799210c488f545ddde2444dc1aa548322872"
  5074. },
  5075. "dist": {
  5076. "type": "zip",
  5077. "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872",
  5078. "reference": "cd60799210c488f545ddde2444dc1aa548322872",
  5079. "shasum": "",
  5080. "mirrors": [
  5081. {
  5082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5083. "preferred": true
  5084. }
  5085. ]
  5086. },
  5087. "require": {
  5088. "egulias/email-validator": "^2.1.10|^3|^4",
  5089. "php": ">=8.0.2",
  5090. "psr/event-dispatcher": "^1",
  5091. "psr/log": "^1|^2|^3",
  5092. "symfony/event-dispatcher": "^5.4|^6.0",
  5093. "symfony/mime": "^5.4|^6.0",
  5094. "symfony/service-contracts": "^1.1|^2|^3"
  5095. },
  5096. "conflict": {
  5097. "symfony/http-kernel": "<5.4"
  5098. },
  5099. "require-dev": {
  5100. "symfony/http-client-contracts": "^1.1|^2|^3",
  5101. "symfony/messenger": "^5.4|^6.0"
  5102. },
  5103. "type": "library",
  5104. "autoload": {
  5105. "psr-4": {
  5106. "Symfony\\Component\\Mailer\\": ""
  5107. },
  5108. "exclude-from-classmap": [
  5109. "/Tests/"
  5110. ]
  5111. },
  5112. "notification-url": "https://packagist.org/downloads/",
  5113. "license": [
  5114. "MIT"
  5115. ],
  5116. "authors": [
  5117. {
  5118. "name": "Fabien Potencier",
  5119. "email": "fabien@symfony.com"
  5120. },
  5121. {
  5122. "name": "Symfony Community",
  5123. "homepage": "https://symfony.com/contributors"
  5124. }
  5125. ],
  5126. "description": "Helps sending emails",
  5127. "homepage": "https://symfony.com",
  5128. "support": {
  5129. "source": "https://github.com/symfony/mailer/tree/v6.0.19"
  5130. },
  5131. "funding": [
  5132. {
  5133. "url": "https://symfony.com/sponsor",
  5134. "type": "custom"
  5135. },
  5136. {
  5137. "url": "https://github.com/fabpot",
  5138. "type": "github"
  5139. },
  5140. {
  5141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5142. "type": "tidelift"
  5143. }
  5144. ],
  5145. "time": "2023-01-11T11:50:03+00:00"
  5146. },
  5147. {
  5148. "name": "symfony/mime",
  5149. "version": "v6.0.19",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/symfony/mime.git",
  5153. "reference": "d7052547a0070cbeadd474e172b527a00d657301"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301",
  5158. "reference": "d7052547a0070cbeadd474e172b527a00d657301",
  5159. "shasum": "",
  5160. "mirrors": [
  5161. {
  5162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5163. "preferred": true
  5164. }
  5165. ]
  5166. },
  5167. "require": {
  5168. "php": ">=8.0.2",
  5169. "symfony/polyfill-intl-idn": "^1.10",
  5170. "symfony/polyfill-mbstring": "^1.0"
  5171. },
  5172. "conflict": {
  5173. "egulias/email-validator": "~3.0.0",
  5174. "phpdocumentor/reflection-docblock": "<3.2.2",
  5175. "phpdocumentor/type-resolver": "<1.4.0",
  5176. "symfony/mailer": "<5.4",
  5177. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  5178. },
  5179. "require-dev": {
  5180. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5181. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5182. "symfony/dependency-injection": "^5.4|^6.0",
  5183. "symfony/property-access": "^5.4|^6.0",
  5184. "symfony/property-info": "^5.4|^6.0",
  5185. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  5186. },
  5187. "type": "library",
  5188. "autoload": {
  5189. "psr-4": {
  5190. "Symfony\\Component\\Mime\\": ""
  5191. },
  5192. "exclude-from-classmap": [
  5193. "/Tests/"
  5194. ]
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "MIT"
  5199. ],
  5200. "authors": [
  5201. {
  5202. "name": "Fabien Potencier",
  5203. "email": "fabien@symfony.com"
  5204. },
  5205. {
  5206. "name": "Symfony Community",
  5207. "homepage": "https://symfony.com/contributors"
  5208. }
  5209. ],
  5210. "description": "Allows manipulating MIME messages",
  5211. "homepage": "https://symfony.com",
  5212. "keywords": [
  5213. "mime",
  5214. "mime-type"
  5215. ],
  5216. "support": {
  5217. "source": "https://github.com/symfony/mime/tree/v6.0.19"
  5218. },
  5219. "funding": [
  5220. {
  5221. "url": "https://symfony.com/sponsor",
  5222. "type": "custom"
  5223. },
  5224. {
  5225. "url": "https://github.com/fabpot",
  5226. "type": "github"
  5227. },
  5228. {
  5229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5230. "type": "tidelift"
  5231. }
  5232. ],
  5233. "time": "2023-01-11T11:50:03+00:00"
  5234. },
  5235. {
  5236. "name": "symfony/polyfill-ctype",
  5237. "version": "v1.27.0",
  5238. "source": {
  5239. "type": "git",
  5240. "url": "https://github.com/symfony/polyfill-ctype.git",
  5241. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5242. },
  5243. "dist": {
  5244. "type": "zip",
  5245. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5246. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5247. "shasum": "",
  5248. "mirrors": [
  5249. {
  5250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5251. "preferred": true
  5252. }
  5253. ]
  5254. },
  5255. "require": {
  5256. "php": ">=7.1"
  5257. },
  5258. "provide": {
  5259. "ext-ctype": "*"
  5260. },
  5261. "suggest": {
  5262. "ext-ctype": "For best performance"
  5263. },
  5264. "type": "library",
  5265. "extra": {
  5266. "branch-alias": {
  5267. "dev-main": "1.27-dev"
  5268. },
  5269. "thanks": {
  5270. "name": "symfony/polyfill",
  5271. "url": "https://github.com/symfony/polyfill"
  5272. }
  5273. },
  5274. "autoload": {
  5275. "files": [
  5276. "bootstrap.php"
  5277. ],
  5278. "psr-4": {
  5279. "Symfony\\Polyfill\\Ctype\\": ""
  5280. }
  5281. },
  5282. "notification-url": "https://packagist.org/downloads/",
  5283. "license": [
  5284. "MIT"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Gert de Pagter",
  5289. "email": "BackEndTea@gmail.com"
  5290. },
  5291. {
  5292. "name": "Symfony Community",
  5293. "homepage": "https://symfony.com/contributors"
  5294. }
  5295. ],
  5296. "description": "Symfony polyfill for ctype functions",
  5297. "homepage": "https://symfony.com",
  5298. "keywords": [
  5299. "compatibility",
  5300. "ctype",
  5301. "polyfill",
  5302. "portable"
  5303. ],
  5304. "support": {
  5305. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5306. },
  5307. "funding": [
  5308. {
  5309. "url": "https://symfony.com/sponsor",
  5310. "type": "custom"
  5311. },
  5312. {
  5313. "url": "https://github.com/fabpot",
  5314. "type": "github"
  5315. },
  5316. {
  5317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5318. "type": "tidelift"
  5319. }
  5320. ],
  5321. "time": "2022-11-03T14:55:06+00:00"
  5322. },
  5323. {
  5324. "name": "symfony/polyfill-intl-grapheme",
  5325. "version": "v1.27.0",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5329. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5334. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5335. "shasum": "",
  5336. "mirrors": [
  5337. {
  5338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5339. "preferred": true
  5340. }
  5341. ]
  5342. },
  5343. "require": {
  5344. "php": ">=7.1"
  5345. },
  5346. "suggest": {
  5347. "ext-intl": "For best performance"
  5348. },
  5349. "type": "library",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-main": "1.27-dev"
  5353. },
  5354. "thanks": {
  5355. "name": "symfony/polyfill",
  5356. "url": "https://github.com/symfony/polyfill"
  5357. }
  5358. },
  5359. "autoload": {
  5360. "files": [
  5361. "bootstrap.php"
  5362. ],
  5363. "psr-4": {
  5364. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5365. }
  5366. },
  5367. "notification-url": "https://packagist.org/downloads/",
  5368. "license": [
  5369. "MIT"
  5370. ],
  5371. "authors": [
  5372. {
  5373. "name": "Nicolas Grekas",
  5374. "email": "p@tchwork.com"
  5375. },
  5376. {
  5377. "name": "Symfony Community",
  5378. "homepage": "https://symfony.com/contributors"
  5379. }
  5380. ],
  5381. "description": "Symfony polyfill for intl's grapheme_* functions",
  5382. "homepage": "https://symfony.com",
  5383. "keywords": [
  5384. "compatibility",
  5385. "grapheme",
  5386. "intl",
  5387. "polyfill",
  5388. "portable",
  5389. "shim"
  5390. ],
  5391. "support": {
  5392. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5393. },
  5394. "funding": [
  5395. {
  5396. "url": "https://symfony.com/sponsor",
  5397. "type": "custom"
  5398. },
  5399. {
  5400. "url": "https://github.com/fabpot",
  5401. "type": "github"
  5402. },
  5403. {
  5404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5405. "type": "tidelift"
  5406. }
  5407. ],
  5408. "time": "2022-11-03T14:55:06+00:00"
  5409. },
  5410. {
  5411. "name": "symfony/polyfill-intl-idn",
  5412. "version": "v1.27.0",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5416. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5421. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5422. "shasum": "",
  5423. "mirrors": [
  5424. {
  5425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5426. "preferred": true
  5427. }
  5428. ]
  5429. },
  5430. "require": {
  5431. "php": ">=7.1",
  5432. "symfony/polyfill-intl-normalizer": "^1.10",
  5433. "symfony/polyfill-php72": "^1.10"
  5434. },
  5435. "suggest": {
  5436. "ext-intl": "For best performance"
  5437. },
  5438. "type": "library",
  5439. "extra": {
  5440. "branch-alias": {
  5441. "dev-main": "1.27-dev"
  5442. },
  5443. "thanks": {
  5444. "name": "symfony/polyfill",
  5445. "url": "https://github.com/symfony/polyfill"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "files": [
  5450. "bootstrap.php"
  5451. ],
  5452. "psr-4": {
  5453. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5454. }
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "MIT"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Laurent Bassin",
  5463. "email": "laurent@bassin.info"
  5464. },
  5465. {
  5466. "name": "Trevor Rowbotham",
  5467. "email": "trevor.rowbotham@pm.me"
  5468. },
  5469. {
  5470. "name": "Symfony Community",
  5471. "homepage": "https://symfony.com/contributors"
  5472. }
  5473. ],
  5474. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5475. "homepage": "https://symfony.com",
  5476. "keywords": [
  5477. "compatibility",
  5478. "idn",
  5479. "intl",
  5480. "polyfill",
  5481. "portable",
  5482. "shim"
  5483. ],
  5484. "support": {
  5485. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5486. },
  5487. "funding": [
  5488. {
  5489. "url": "https://symfony.com/sponsor",
  5490. "type": "custom"
  5491. },
  5492. {
  5493. "url": "https://github.com/fabpot",
  5494. "type": "github"
  5495. },
  5496. {
  5497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5498. "type": "tidelift"
  5499. }
  5500. ],
  5501. "time": "2022-11-03T14:55:06+00:00"
  5502. },
  5503. {
  5504. "name": "symfony/polyfill-intl-normalizer",
  5505. "version": "v1.27.0",
  5506. "source": {
  5507. "type": "git",
  5508. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5509. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5510. },
  5511. "dist": {
  5512. "type": "zip",
  5513. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5514. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5515. "shasum": "",
  5516. "mirrors": [
  5517. {
  5518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5519. "preferred": true
  5520. }
  5521. ]
  5522. },
  5523. "require": {
  5524. "php": ">=7.1"
  5525. },
  5526. "suggest": {
  5527. "ext-intl": "For best performance"
  5528. },
  5529. "type": "library",
  5530. "extra": {
  5531. "branch-alias": {
  5532. "dev-main": "1.27-dev"
  5533. },
  5534. "thanks": {
  5535. "name": "symfony/polyfill",
  5536. "url": "https://github.com/symfony/polyfill"
  5537. }
  5538. },
  5539. "autoload": {
  5540. "files": [
  5541. "bootstrap.php"
  5542. ],
  5543. "psr-4": {
  5544. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5545. },
  5546. "classmap": [
  5547. "Resources/stubs"
  5548. ]
  5549. },
  5550. "notification-url": "https://packagist.org/downloads/",
  5551. "license": [
  5552. "MIT"
  5553. ],
  5554. "authors": [
  5555. {
  5556. "name": "Nicolas Grekas",
  5557. "email": "p@tchwork.com"
  5558. },
  5559. {
  5560. "name": "Symfony Community",
  5561. "homepage": "https://symfony.com/contributors"
  5562. }
  5563. ],
  5564. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5565. "homepage": "https://symfony.com",
  5566. "keywords": [
  5567. "compatibility",
  5568. "intl",
  5569. "normalizer",
  5570. "polyfill",
  5571. "portable",
  5572. "shim"
  5573. ],
  5574. "support": {
  5575. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5576. },
  5577. "funding": [
  5578. {
  5579. "url": "https://symfony.com/sponsor",
  5580. "type": "custom"
  5581. },
  5582. {
  5583. "url": "https://github.com/fabpot",
  5584. "type": "github"
  5585. },
  5586. {
  5587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5588. "type": "tidelift"
  5589. }
  5590. ],
  5591. "time": "2022-11-03T14:55:06+00:00"
  5592. },
  5593. {
  5594. "name": "symfony/polyfill-mbstring",
  5595. "version": "v1.27.0",
  5596. "source": {
  5597. "type": "git",
  5598. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5599. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5600. },
  5601. "dist": {
  5602. "type": "zip",
  5603. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5604. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5605. "shasum": "",
  5606. "mirrors": [
  5607. {
  5608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5609. "preferred": true
  5610. }
  5611. ]
  5612. },
  5613. "require": {
  5614. "php": ">=7.1"
  5615. },
  5616. "provide": {
  5617. "ext-mbstring": "*"
  5618. },
  5619. "suggest": {
  5620. "ext-mbstring": "For best performance"
  5621. },
  5622. "type": "library",
  5623. "extra": {
  5624. "branch-alias": {
  5625. "dev-main": "1.27-dev"
  5626. },
  5627. "thanks": {
  5628. "name": "symfony/polyfill",
  5629. "url": "https://github.com/symfony/polyfill"
  5630. }
  5631. },
  5632. "autoload": {
  5633. "files": [
  5634. "bootstrap.php"
  5635. ],
  5636. "psr-4": {
  5637. "Symfony\\Polyfill\\Mbstring\\": ""
  5638. }
  5639. },
  5640. "notification-url": "https://packagist.org/downloads/",
  5641. "license": [
  5642. "MIT"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "Nicolas Grekas",
  5647. "email": "p@tchwork.com"
  5648. },
  5649. {
  5650. "name": "Symfony Community",
  5651. "homepage": "https://symfony.com/contributors"
  5652. }
  5653. ],
  5654. "description": "Symfony polyfill for the Mbstring extension",
  5655. "homepage": "https://symfony.com",
  5656. "keywords": [
  5657. "compatibility",
  5658. "mbstring",
  5659. "polyfill",
  5660. "portable",
  5661. "shim"
  5662. ],
  5663. "support": {
  5664. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5665. },
  5666. "funding": [
  5667. {
  5668. "url": "https://symfony.com/sponsor",
  5669. "type": "custom"
  5670. },
  5671. {
  5672. "url": "https://github.com/fabpot",
  5673. "type": "github"
  5674. },
  5675. {
  5676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5677. "type": "tidelift"
  5678. }
  5679. ],
  5680. "time": "2022-11-03T14:55:06+00:00"
  5681. },
  5682. {
  5683. "name": "symfony/polyfill-php72",
  5684. "version": "v1.27.0",
  5685. "source": {
  5686. "type": "git",
  5687. "url": "https://github.com/symfony/polyfill-php72.git",
  5688. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5689. },
  5690. "dist": {
  5691. "type": "zip",
  5692. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5693. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5694. "shasum": "",
  5695. "mirrors": [
  5696. {
  5697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5698. "preferred": true
  5699. }
  5700. ]
  5701. },
  5702. "require": {
  5703. "php": ">=7.1"
  5704. },
  5705. "type": "library",
  5706. "extra": {
  5707. "branch-alias": {
  5708. "dev-main": "1.27-dev"
  5709. },
  5710. "thanks": {
  5711. "name": "symfony/polyfill",
  5712. "url": "https://github.com/symfony/polyfill"
  5713. }
  5714. },
  5715. "autoload": {
  5716. "files": [
  5717. "bootstrap.php"
  5718. ],
  5719. "psr-4": {
  5720. "Symfony\\Polyfill\\Php72\\": ""
  5721. }
  5722. },
  5723. "notification-url": "https://packagist.org/downloads/",
  5724. "license": [
  5725. "MIT"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "Nicolas Grekas",
  5730. "email": "p@tchwork.com"
  5731. },
  5732. {
  5733. "name": "Symfony Community",
  5734. "homepage": "https://symfony.com/contributors"
  5735. }
  5736. ],
  5737. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5738. "homepage": "https://symfony.com",
  5739. "keywords": [
  5740. "compatibility",
  5741. "polyfill",
  5742. "portable",
  5743. "shim"
  5744. ],
  5745. "support": {
  5746. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5747. },
  5748. "funding": [
  5749. {
  5750. "url": "https://symfony.com/sponsor",
  5751. "type": "custom"
  5752. },
  5753. {
  5754. "url": "https://github.com/fabpot",
  5755. "type": "github"
  5756. },
  5757. {
  5758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5759. "type": "tidelift"
  5760. }
  5761. ],
  5762. "time": "2022-11-03T14:55:06+00:00"
  5763. },
  5764. {
  5765. "name": "symfony/polyfill-php80",
  5766. "version": "v1.27.0",
  5767. "source": {
  5768. "type": "git",
  5769. "url": "https://github.com/symfony/polyfill-php80.git",
  5770. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5771. },
  5772. "dist": {
  5773. "type": "zip",
  5774. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5775. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5776. "shasum": "",
  5777. "mirrors": [
  5778. {
  5779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5780. "preferred": true
  5781. }
  5782. ]
  5783. },
  5784. "require": {
  5785. "php": ">=7.1"
  5786. },
  5787. "type": "library",
  5788. "extra": {
  5789. "branch-alias": {
  5790. "dev-main": "1.27-dev"
  5791. },
  5792. "thanks": {
  5793. "name": "symfony/polyfill",
  5794. "url": "https://github.com/symfony/polyfill"
  5795. }
  5796. },
  5797. "autoload": {
  5798. "files": [
  5799. "bootstrap.php"
  5800. ],
  5801. "psr-4": {
  5802. "Symfony\\Polyfill\\Php80\\": ""
  5803. },
  5804. "classmap": [
  5805. "Resources/stubs"
  5806. ]
  5807. },
  5808. "notification-url": "https://packagist.org/downloads/",
  5809. "license": [
  5810. "MIT"
  5811. ],
  5812. "authors": [
  5813. {
  5814. "name": "Ion Bazan",
  5815. "email": "ion.bazan@gmail.com"
  5816. },
  5817. {
  5818. "name": "Nicolas Grekas",
  5819. "email": "p@tchwork.com"
  5820. },
  5821. {
  5822. "name": "Symfony Community",
  5823. "homepage": "https://symfony.com/contributors"
  5824. }
  5825. ],
  5826. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5827. "homepage": "https://symfony.com",
  5828. "keywords": [
  5829. "compatibility",
  5830. "polyfill",
  5831. "portable",
  5832. "shim"
  5833. ],
  5834. "support": {
  5835. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5836. },
  5837. "funding": [
  5838. {
  5839. "url": "https://symfony.com/sponsor",
  5840. "type": "custom"
  5841. },
  5842. {
  5843. "url": "https://github.com/fabpot",
  5844. "type": "github"
  5845. },
  5846. {
  5847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5848. "type": "tidelift"
  5849. }
  5850. ],
  5851. "time": "2022-11-03T14:55:06+00:00"
  5852. },
  5853. {
  5854. "name": "symfony/polyfill-php81",
  5855. "version": "v1.27.0",
  5856. "source": {
  5857. "type": "git",
  5858. "url": "https://github.com/symfony/polyfill-php81.git",
  5859. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  5860. },
  5861. "dist": {
  5862. "type": "zip",
  5863. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  5864. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  5865. "shasum": "",
  5866. "mirrors": [
  5867. {
  5868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5869. "preferred": true
  5870. }
  5871. ]
  5872. },
  5873. "require": {
  5874. "php": ">=7.1"
  5875. },
  5876. "type": "library",
  5877. "extra": {
  5878. "branch-alias": {
  5879. "dev-main": "1.27-dev"
  5880. },
  5881. "thanks": {
  5882. "name": "symfony/polyfill",
  5883. "url": "https://github.com/symfony/polyfill"
  5884. }
  5885. },
  5886. "autoload": {
  5887. "files": [
  5888. "bootstrap.php"
  5889. ],
  5890. "psr-4": {
  5891. "Symfony\\Polyfill\\Php81\\": ""
  5892. },
  5893. "classmap": [
  5894. "Resources/stubs"
  5895. ]
  5896. },
  5897. "notification-url": "https://packagist.org/downloads/",
  5898. "license": [
  5899. "MIT"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "Nicolas Grekas",
  5904. "email": "p@tchwork.com"
  5905. },
  5906. {
  5907. "name": "Symfony Community",
  5908. "homepage": "https://symfony.com/contributors"
  5909. }
  5910. ],
  5911. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5912. "homepage": "https://symfony.com",
  5913. "keywords": [
  5914. "compatibility",
  5915. "polyfill",
  5916. "portable",
  5917. "shim"
  5918. ],
  5919. "support": {
  5920. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  5921. },
  5922. "funding": [
  5923. {
  5924. "url": "https://symfony.com/sponsor",
  5925. "type": "custom"
  5926. },
  5927. {
  5928. "url": "https://github.com/fabpot",
  5929. "type": "github"
  5930. },
  5931. {
  5932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5933. "type": "tidelift"
  5934. }
  5935. ],
  5936. "time": "2022-11-03T14:55:06+00:00"
  5937. },
  5938. {
  5939. "name": "symfony/polyfill-uuid",
  5940. "version": "v1.27.0",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://github.com/symfony/polyfill-uuid.git",
  5944. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  5949. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  5950. "shasum": "",
  5951. "mirrors": [
  5952. {
  5953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5954. "preferred": true
  5955. }
  5956. ]
  5957. },
  5958. "require": {
  5959. "php": ">=7.1"
  5960. },
  5961. "provide": {
  5962. "ext-uuid": "*"
  5963. },
  5964. "suggest": {
  5965. "ext-uuid": "For best performance"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-main": "1.27-dev"
  5971. },
  5972. "thanks": {
  5973. "name": "symfony/polyfill",
  5974. "url": "https://github.com/symfony/polyfill"
  5975. }
  5976. },
  5977. "autoload": {
  5978. "files": [
  5979. "bootstrap.php"
  5980. ],
  5981. "psr-4": {
  5982. "Symfony\\Polyfill\\Uuid\\": ""
  5983. }
  5984. },
  5985. "notification-url": "https://packagist.org/downloads/",
  5986. "license": [
  5987. "MIT"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "Grégoire Pineau",
  5992. "email": "lyrixx@lyrixx.info"
  5993. },
  5994. {
  5995. "name": "Symfony Community",
  5996. "homepage": "https://symfony.com/contributors"
  5997. }
  5998. ],
  5999. "description": "Symfony polyfill for uuid functions",
  6000. "homepage": "https://symfony.com",
  6001. "keywords": [
  6002. "compatibility",
  6003. "polyfill",
  6004. "portable",
  6005. "uuid"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  6009. },
  6010. "funding": [
  6011. {
  6012. "url": "https://symfony.com/sponsor",
  6013. "type": "custom"
  6014. },
  6015. {
  6016. "url": "https://github.com/fabpot",
  6017. "type": "github"
  6018. },
  6019. {
  6020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6021. "type": "tidelift"
  6022. }
  6023. ],
  6024. "time": "2022-11-03T14:55:06+00:00"
  6025. },
  6026. {
  6027. "name": "symfony/process",
  6028. "version": "v6.0.19",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/symfony/process.git",
  6032. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
  6037. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
  6038. "shasum": "",
  6039. "mirrors": [
  6040. {
  6041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6042. "preferred": true
  6043. }
  6044. ]
  6045. },
  6046. "require": {
  6047. "php": ">=8.0.2"
  6048. },
  6049. "type": "library",
  6050. "autoload": {
  6051. "psr-4": {
  6052. "Symfony\\Component\\Process\\": ""
  6053. },
  6054. "exclude-from-classmap": [
  6055. "/Tests/"
  6056. ]
  6057. },
  6058. "notification-url": "https://packagist.org/downloads/",
  6059. "license": [
  6060. "MIT"
  6061. ],
  6062. "authors": [
  6063. {
  6064. "name": "Fabien Potencier",
  6065. "email": "fabien@symfony.com"
  6066. },
  6067. {
  6068. "name": "Symfony Community",
  6069. "homepage": "https://symfony.com/contributors"
  6070. }
  6071. ],
  6072. "description": "Executes commands in sub-processes",
  6073. "homepage": "https://symfony.com",
  6074. "support": {
  6075. "source": "https://github.com/symfony/process/tree/v6.0.19"
  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": "2023-01-01T08:36:10+00:00"
  6092. },
  6093. {
  6094. "name": "symfony/psr-http-message-bridge",
  6095. "version": "v2.2.0",
  6096. "source": {
  6097. "type": "git",
  6098. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6099. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  6100. },
  6101. "dist": {
  6102. "type": "zip",
  6103. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  6104. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  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": ">=7.2.5",
  6115. "psr/http-message": "^1.0 || ^2.0",
  6116. "symfony/http-foundation": "^5.4 || ^6.0"
  6117. },
  6118. "require-dev": {
  6119. "nyholm/psr7": "^1.1",
  6120. "psr/log": "^1.1 || ^2 || ^3",
  6121. "symfony/browser-kit": "^5.4 || ^6.0",
  6122. "symfony/config": "^5.4 || ^6.0",
  6123. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6124. "symfony/framework-bundle": "^5.4 || ^6.0",
  6125. "symfony/http-kernel": "^5.4 || ^6.0",
  6126. "symfony/phpunit-bridge": "^6.2"
  6127. },
  6128. "suggest": {
  6129. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6130. },
  6131. "type": "symfony-bridge",
  6132. "extra": {
  6133. "branch-alias": {
  6134. "dev-main": "2.2-dev"
  6135. }
  6136. },
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6140. },
  6141. "exclude-from-classmap": [
  6142. "/Tests/"
  6143. ]
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Fabien Potencier",
  6152. "email": "fabien@symfony.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "http://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "PSR HTTP message bridge",
  6160. "homepage": "http://symfony.com",
  6161. "keywords": [
  6162. "http",
  6163. "http-message",
  6164. "psr-17",
  6165. "psr-7"
  6166. ],
  6167. "support": {
  6168. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6169. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  6170. },
  6171. "funding": [
  6172. {
  6173. "url": "https://symfony.com/sponsor",
  6174. "type": "custom"
  6175. },
  6176. {
  6177. "url": "https://github.com/fabpot",
  6178. "type": "github"
  6179. },
  6180. {
  6181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6182. "type": "tidelift"
  6183. }
  6184. ],
  6185. "time": "2023-04-21T08:40:19+00:00"
  6186. },
  6187. {
  6188. "name": "symfony/routing",
  6189. "version": "v6.0.19",
  6190. "source": {
  6191. "type": "git",
  6192. "url": "https://github.com/symfony/routing.git",
  6193. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac"
  6194. },
  6195. "dist": {
  6196. "type": "zip",
  6197. "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6198. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6199. "shasum": "",
  6200. "mirrors": [
  6201. {
  6202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6203. "preferred": true
  6204. }
  6205. ]
  6206. },
  6207. "require": {
  6208. "php": ">=8.0.2"
  6209. },
  6210. "conflict": {
  6211. "doctrine/annotations": "<1.12",
  6212. "symfony/config": "<5.4",
  6213. "symfony/dependency-injection": "<5.4",
  6214. "symfony/yaml": "<5.4"
  6215. },
  6216. "require-dev": {
  6217. "doctrine/annotations": "^1.12|^2",
  6218. "psr/log": "^1|^2|^3",
  6219. "symfony/config": "^5.4|^6.0",
  6220. "symfony/dependency-injection": "^5.4|^6.0",
  6221. "symfony/expression-language": "^5.4|^6.0",
  6222. "symfony/http-foundation": "^5.4|^6.0",
  6223. "symfony/yaml": "^5.4|^6.0"
  6224. },
  6225. "suggest": {
  6226. "symfony/config": "For using the all-in-one router or any loader",
  6227. "symfony/expression-language": "For using expression matching",
  6228. "symfony/http-foundation": "For using a Symfony Request object",
  6229. "symfony/yaml": "For using the YAML loader"
  6230. },
  6231. "type": "library",
  6232. "autoload": {
  6233. "psr-4": {
  6234. "Symfony\\Component\\Routing\\": ""
  6235. },
  6236. "exclude-from-classmap": [
  6237. "/Tests/"
  6238. ]
  6239. },
  6240. "notification-url": "https://packagist.org/downloads/",
  6241. "license": [
  6242. "MIT"
  6243. ],
  6244. "authors": [
  6245. {
  6246. "name": "Fabien Potencier",
  6247. "email": "fabien@symfony.com"
  6248. },
  6249. {
  6250. "name": "Symfony Community",
  6251. "homepage": "https://symfony.com/contributors"
  6252. }
  6253. ],
  6254. "description": "Maps an HTTP request to a set of configuration variables",
  6255. "homepage": "https://symfony.com",
  6256. "keywords": [
  6257. "router",
  6258. "routing",
  6259. "uri",
  6260. "url"
  6261. ],
  6262. "support": {
  6263. "source": "https://github.com/symfony/routing/tree/v6.0.19"
  6264. },
  6265. "funding": [
  6266. {
  6267. "url": "https://symfony.com/sponsor",
  6268. "type": "custom"
  6269. },
  6270. {
  6271. "url": "https://github.com/fabpot",
  6272. "type": "github"
  6273. },
  6274. {
  6275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6276. "type": "tidelift"
  6277. }
  6278. ],
  6279. "time": "2023-01-01T08:36:10+00:00"
  6280. },
  6281. {
  6282. "name": "symfony/service-contracts",
  6283. "version": "v3.0.2",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/symfony/service-contracts.git",
  6287. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6292. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6293. "shasum": "",
  6294. "mirrors": [
  6295. {
  6296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6297. "preferred": true
  6298. }
  6299. ]
  6300. },
  6301. "require": {
  6302. "php": ">=8.0.2",
  6303. "psr/container": "^2.0"
  6304. },
  6305. "conflict": {
  6306. "ext-psr": "<1.1|>=2"
  6307. },
  6308. "suggest": {
  6309. "symfony/service-implementation": ""
  6310. },
  6311. "type": "library",
  6312. "extra": {
  6313. "branch-alias": {
  6314. "dev-main": "3.0-dev"
  6315. },
  6316. "thanks": {
  6317. "name": "symfony/contracts",
  6318. "url": "https://github.com/symfony/contracts"
  6319. }
  6320. },
  6321. "autoload": {
  6322. "psr-4": {
  6323. "Symfony\\Contracts\\Service\\": ""
  6324. }
  6325. },
  6326. "notification-url": "https://packagist.org/downloads/",
  6327. "license": [
  6328. "MIT"
  6329. ],
  6330. "authors": [
  6331. {
  6332. "name": "Nicolas Grekas",
  6333. "email": "p@tchwork.com"
  6334. },
  6335. {
  6336. "name": "Symfony Community",
  6337. "homepage": "https://symfony.com/contributors"
  6338. }
  6339. ],
  6340. "description": "Generic abstractions related to writing services",
  6341. "homepage": "https://symfony.com",
  6342. "keywords": [
  6343. "abstractions",
  6344. "contracts",
  6345. "decoupling",
  6346. "interfaces",
  6347. "interoperability",
  6348. "standards"
  6349. ],
  6350. "support": {
  6351. "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
  6352. },
  6353. "funding": [
  6354. {
  6355. "url": "https://symfony.com/sponsor",
  6356. "type": "custom"
  6357. },
  6358. {
  6359. "url": "https://github.com/fabpot",
  6360. "type": "github"
  6361. },
  6362. {
  6363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6364. "type": "tidelift"
  6365. }
  6366. ],
  6367. "time": "2022-05-30T19:17:58+00:00"
  6368. },
  6369. {
  6370. "name": "symfony/string",
  6371. "version": "v6.0.19",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://github.com/symfony/string.git",
  6375. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  6380. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  6381. "shasum": "",
  6382. "mirrors": [
  6383. {
  6384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6385. "preferred": true
  6386. }
  6387. ]
  6388. },
  6389. "require": {
  6390. "php": ">=8.0.2",
  6391. "symfony/polyfill-ctype": "~1.8",
  6392. "symfony/polyfill-intl-grapheme": "~1.0",
  6393. "symfony/polyfill-intl-normalizer": "~1.0",
  6394. "symfony/polyfill-mbstring": "~1.0"
  6395. },
  6396. "conflict": {
  6397. "symfony/translation-contracts": "<2.0"
  6398. },
  6399. "require-dev": {
  6400. "symfony/error-handler": "^5.4|^6.0",
  6401. "symfony/http-client": "^5.4|^6.0",
  6402. "symfony/translation-contracts": "^2.0|^3.0",
  6403. "symfony/var-exporter": "^5.4|^6.0"
  6404. },
  6405. "type": "library",
  6406. "autoload": {
  6407. "files": [
  6408. "Resources/functions.php"
  6409. ],
  6410. "psr-4": {
  6411. "Symfony\\Component\\String\\": ""
  6412. },
  6413. "exclude-from-classmap": [
  6414. "/Tests/"
  6415. ]
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "Nicolas Grekas",
  6424. "email": "p@tchwork.com"
  6425. },
  6426. {
  6427. "name": "Symfony Community",
  6428. "homepage": "https://symfony.com/contributors"
  6429. }
  6430. ],
  6431. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6432. "homepage": "https://symfony.com",
  6433. "keywords": [
  6434. "grapheme",
  6435. "i18n",
  6436. "string",
  6437. "unicode",
  6438. "utf-8",
  6439. "utf8"
  6440. ],
  6441. "support": {
  6442. "source": "https://github.com/symfony/string/tree/v6.0.19"
  6443. },
  6444. "funding": [
  6445. {
  6446. "url": "https://symfony.com/sponsor",
  6447. "type": "custom"
  6448. },
  6449. {
  6450. "url": "https://github.com/fabpot",
  6451. "type": "github"
  6452. },
  6453. {
  6454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6455. "type": "tidelift"
  6456. }
  6457. ],
  6458. "time": "2023-01-01T08:36:10+00:00"
  6459. },
  6460. {
  6461. "name": "symfony/translation",
  6462. "version": "v6.0.19",
  6463. "source": {
  6464. "type": "git",
  6465. "url": "https://github.com/symfony/translation.git",
  6466. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  6467. },
  6468. "dist": {
  6469. "type": "zip",
  6470. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  6471. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  6472. "shasum": "",
  6473. "mirrors": [
  6474. {
  6475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6476. "preferred": true
  6477. }
  6478. ]
  6479. },
  6480. "require": {
  6481. "php": ">=8.0.2",
  6482. "symfony/polyfill-mbstring": "~1.0",
  6483. "symfony/translation-contracts": "^2.3|^3.0"
  6484. },
  6485. "conflict": {
  6486. "symfony/config": "<5.4",
  6487. "symfony/console": "<5.4",
  6488. "symfony/dependency-injection": "<5.4",
  6489. "symfony/http-kernel": "<5.4",
  6490. "symfony/twig-bundle": "<5.4",
  6491. "symfony/yaml": "<5.4"
  6492. },
  6493. "provide": {
  6494. "symfony/translation-implementation": "2.3|3.0"
  6495. },
  6496. "require-dev": {
  6497. "psr/log": "^1|^2|^3",
  6498. "symfony/config": "^5.4|^6.0",
  6499. "symfony/console": "^5.4|^6.0",
  6500. "symfony/dependency-injection": "^5.4|^6.0",
  6501. "symfony/finder": "^5.4|^6.0",
  6502. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6503. "symfony/http-kernel": "^5.4|^6.0",
  6504. "symfony/intl": "^5.4|^6.0",
  6505. "symfony/polyfill-intl-icu": "^1.21",
  6506. "symfony/service-contracts": "^1.1.2|^2|^3",
  6507. "symfony/yaml": "^5.4|^6.0"
  6508. },
  6509. "suggest": {
  6510. "psr/log-implementation": "To use logging capability in translator",
  6511. "symfony/config": "",
  6512. "symfony/yaml": ""
  6513. },
  6514. "type": "library",
  6515. "autoload": {
  6516. "files": [
  6517. "Resources/functions.php"
  6518. ],
  6519. "psr-4": {
  6520. "Symfony\\Component\\Translation\\": ""
  6521. },
  6522. "exclude-from-classmap": [
  6523. "/Tests/"
  6524. ]
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Fabien Potencier",
  6533. "email": "fabien@symfony.com"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Provides tools to internationalize your application",
  6541. "homepage": "https://symfony.com",
  6542. "support": {
  6543. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  6544. },
  6545. "funding": [
  6546. {
  6547. "url": "https://symfony.com/sponsor",
  6548. "type": "custom"
  6549. },
  6550. {
  6551. "url": "https://github.com/fabpot",
  6552. "type": "github"
  6553. },
  6554. {
  6555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6556. "type": "tidelift"
  6557. }
  6558. ],
  6559. "time": "2023-01-01T08:36:10+00:00"
  6560. },
  6561. {
  6562. "name": "symfony/translation-contracts",
  6563. "version": "v3.0.2",
  6564. "source": {
  6565. "type": "git",
  6566. "url": "https://github.com/symfony/translation-contracts.git",
  6567. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  6568. },
  6569. "dist": {
  6570. "type": "zip",
  6571. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  6572. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  6573. "shasum": "",
  6574. "mirrors": [
  6575. {
  6576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6577. "preferred": true
  6578. }
  6579. ]
  6580. },
  6581. "require": {
  6582. "php": ">=8.0.2"
  6583. },
  6584. "suggest": {
  6585. "symfony/translation-implementation": ""
  6586. },
  6587. "type": "library",
  6588. "extra": {
  6589. "branch-alias": {
  6590. "dev-main": "3.0-dev"
  6591. },
  6592. "thanks": {
  6593. "name": "symfony/contracts",
  6594. "url": "https://github.com/symfony/contracts"
  6595. }
  6596. },
  6597. "autoload": {
  6598. "psr-4": {
  6599. "Symfony\\Contracts\\Translation\\": ""
  6600. }
  6601. },
  6602. "notification-url": "https://packagist.org/downloads/",
  6603. "license": [
  6604. "MIT"
  6605. ],
  6606. "authors": [
  6607. {
  6608. "name": "Nicolas Grekas",
  6609. "email": "p@tchwork.com"
  6610. },
  6611. {
  6612. "name": "Symfony Community",
  6613. "homepage": "https://symfony.com/contributors"
  6614. }
  6615. ],
  6616. "description": "Generic abstractions related to translation",
  6617. "homepage": "https://symfony.com",
  6618. "keywords": [
  6619. "abstractions",
  6620. "contracts",
  6621. "decoupling",
  6622. "interfaces",
  6623. "interoperability",
  6624. "standards"
  6625. ],
  6626. "support": {
  6627. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  6628. },
  6629. "funding": [
  6630. {
  6631. "url": "https://symfony.com/sponsor",
  6632. "type": "custom"
  6633. },
  6634. {
  6635. "url": "https://github.com/fabpot",
  6636. "type": "github"
  6637. },
  6638. {
  6639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6640. "type": "tidelift"
  6641. }
  6642. ],
  6643. "time": "2022-06-27T17:10:44+00:00"
  6644. },
  6645. {
  6646. "name": "symfony/uid",
  6647. "version": "v6.0.19",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://github.com/symfony/uid.git",
  6651. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  6656. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  6657. "shasum": "",
  6658. "mirrors": [
  6659. {
  6660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6661. "preferred": true
  6662. }
  6663. ]
  6664. },
  6665. "require": {
  6666. "php": ">=8.0.2",
  6667. "symfony/polyfill-uuid": "^1.15"
  6668. },
  6669. "require-dev": {
  6670. "symfony/console": "^5.4|^6.0"
  6671. },
  6672. "type": "library",
  6673. "autoload": {
  6674. "psr-4": {
  6675. "Symfony\\Component\\Uid\\": ""
  6676. },
  6677. "exclude-from-classmap": [
  6678. "/Tests/"
  6679. ]
  6680. },
  6681. "notification-url": "https://packagist.org/downloads/",
  6682. "license": [
  6683. "MIT"
  6684. ],
  6685. "authors": [
  6686. {
  6687. "name": "Grégoire Pineau",
  6688. "email": "lyrixx@lyrixx.info"
  6689. },
  6690. {
  6691. "name": "Nicolas Grekas",
  6692. "email": "p@tchwork.com"
  6693. },
  6694. {
  6695. "name": "Symfony Community",
  6696. "homepage": "https://symfony.com/contributors"
  6697. }
  6698. ],
  6699. "description": "Provides an object-oriented API to generate and represent UIDs",
  6700. "homepage": "https://symfony.com",
  6701. "keywords": [
  6702. "UID",
  6703. "ulid",
  6704. "uuid"
  6705. ],
  6706. "support": {
  6707. "source": "https://github.com/symfony/uid/tree/v6.0.19"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://symfony.com/sponsor",
  6712. "type": "custom"
  6713. },
  6714. {
  6715. "url": "https://github.com/fabpot",
  6716. "type": "github"
  6717. },
  6718. {
  6719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6720. "type": "tidelift"
  6721. }
  6722. ],
  6723. "time": "2023-01-01T08:36:10+00:00"
  6724. },
  6725. {
  6726. "name": "symfony/var-dumper",
  6727. "version": "v6.0.19",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://github.com/symfony/var-dumper.git",
  6731. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6736. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6737. "shasum": "",
  6738. "mirrors": [
  6739. {
  6740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6741. "preferred": true
  6742. }
  6743. ]
  6744. },
  6745. "require": {
  6746. "php": ">=8.0.2",
  6747. "symfony/polyfill-mbstring": "~1.0"
  6748. },
  6749. "conflict": {
  6750. "phpunit/phpunit": "<5.4.3",
  6751. "symfony/console": "<5.4"
  6752. },
  6753. "require-dev": {
  6754. "ext-iconv": "*",
  6755. "symfony/console": "^5.4|^6.0",
  6756. "symfony/process": "^5.4|^6.0",
  6757. "symfony/uid": "^5.4|^6.0",
  6758. "twig/twig": "^2.13|^3.0.4"
  6759. },
  6760. "suggest": {
  6761. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6762. "ext-intl": "To show region name in time zone dump",
  6763. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6764. },
  6765. "bin": [
  6766. "Resources/bin/var-dump-server"
  6767. ],
  6768. "type": "library",
  6769. "autoload": {
  6770. "files": [
  6771. "Resources/functions/dump.php"
  6772. ],
  6773. "psr-4": {
  6774. "Symfony\\Component\\VarDumper\\": ""
  6775. },
  6776. "exclude-from-classmap": [
  6777. "/Tests/"
  6778. ]
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "MIT"
  6783. ],
  6784. "authors": [
  6785. {
  6786. "name": "Nicolas Grekas",
  6787. "email": "p@tchwork.com"
  6788. },
  6789. {
  6790. "name": "Symfony Community",
  6791. "homepage": "https://symfony.com/contributors"
  6792. }
  6793. ],
  6794. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6795. "homepage": "https://symfony.com",
  6796. "keywords": [
  6797. "debug",
  6798. "dump"
  6799. ],
  6800. "support": {
  6801. "source": "https://github.com/symfony/var-dumper/tree/v6.0.19"
  6802. },
  6803. "funding": [
  6804. {
  6805. "url": "https://symfony.com/sponsor",
  6806. "type": "custom"
  6807. },
  6808. {
  6809. "url": "https://github.com/fabpot",
  6810. "type": "github"
  6811. },
  6812. {
  6813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6814. "type": "tidelift"
  6815. }
  6816. ],
  6817. "time": "2023-01-20T17:44:14+00:00"
  6818. },
  6819. {
  6820. "name": "symfony/var-exporter",
  6821. "version": "v6.0.19",
  6822. "source": {
  6823. "type": "git",
  6824. "url": "https://github.com/symfony/var-exporter.git",
  6825. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  6826. },
  6827. "dist": {
  6828. "type": "zip",
  6829. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  6830. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  6831. "shasum": "",
  6832. "mirrors": [
  6833. {
  6834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6835. "preferred": true
  6836. }
  6837. ]
  6838. },
  6839. "require": {
  6840. "php": ">=8.0.2"
  6841. },
  6842. "require-dev": {
  6843. "symfony/var-dumper": "^5.4|^6.0"
  6844. },
  6845. "type": "library",
  6846. "autoload": {
  6847. "psr-4": {
  6848. "Symfony\\Component\\VarExporter\\": ""
  6849. },
  6850. "exclude-from-classmap": [
  6851. "/Tests/"
  6852. ]
  6853. },
  6854. "notification-url": "https://packagist.org/downloads/",
  6855. "license": [
  6856. "MIT"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Nicolas Grekas",
  6861. "email": "p@tchwork.com"
  6862. },
  6863. {
  6864. "name": "Symfony Community",
  6865. "homepage": "https://symfony.com/contributors"
  6866. }
  6867. ],
  6868. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6869. "homepage": "https://symfony.com",
  6870. "keywords": [
  6871. "clone",
  6872. "construct",
  6873. "export",
  6874. "hydrate",
  6875. "instantiate",
  6876. "serialize"
  6877. ],
  6878. "support": {
  6879. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  6880. },
  6881. "funding": [
  6882. {
  6883. "url": "https://symfony.com/sponsor",
  6884. "type": "custom"
  6885. },
  6886. {
  6887. "url": "https://github.com/fabpot",
  6888. "type": "github"
  6889. },
  6890. {
  6891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6892. "type": "tidelift"
  6893. }
  6894. ],
  6895. "time": "2023-01-13T08:34:10+00:00"
  6896. },
  6897. {
  6898. "name": "th3n3rd/cartesian-product",
  6899. "version": "v0.3.0",
  6900. "source": {
  6901. "type": "git",
  6902. "url": "https://github.com/th3n3rd/cartesian-product.git",
  6903. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d"
  6904. },
  6905. "dist": {
  6906. "type": "zip",
  6907. "url": "https://api.github.com/repos/th3n3rd/cartesian-product/zipball/78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  6908. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  6909. "shasum": "",
  6910. "mirrors": [
  6911. {
  6912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6913. "preferred": true
  6914. }
  6915. ]
  6916. },
  6917. "require": {
  6918. "php": ">=5.3.3"
  6919. },
  6920. "require-dev": {
  6921. "devster/ubench": "~1.1",
  6922. "phpunit/phpunit": "~4.4"
  6923. },
  6924. "type": "library",
  6925. "extra": {
  6926. "branch-alias": {
  6927. "dev-master": "0.3-dev"
  6928. }
  6929. },
  6930. "autoload": {
  6931. "psr-4": {
  6932. "Nerd\\CartesianProduct\\": "src"
  6933. }
  6934. },
  6935. "notification-url": "https://packagist.org/downloads/",
  6936. "license": [
  6937. "MIT"
  6938. ],
  6939. "authors": [
  6940. {
  6941. "name": "Marco Garofalo",
  6942. "email": "marcogarofalo.personal@gmail.com"
  6943. }
  6944. ],
  6945. "description": "Memory efficient Cartesian Product implementation",
  6946. "keywords": [
  6947. "cartesian",
  6948. "product"
  6949. ],
  6950. "support": {
  6951. "issues": "https://github.com/th3n3rd/cartesian-product/issues",
  6952. "source": "https://github.com/th3n3rd/cartesian-product/tree/master"
  6953. },
  6954. "time": "2015-05-30T08:42:25+00:00"
  6955. },
  6956. {
  6957. "name": "thenorthmemory/xml",
  6958. "version": "1.1.1",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/TheNorthMemory/xml.git",
  6962. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6967. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6968. "shasum": "",
  6969. "mirrors": [
  6970. {
  6971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6972. "preferred": true
  6973. }
  6974. ]
  6975. },
  6976. "require": {
  6977. "ext-libxml": "*",
  6978. "ext-simplexml": "*",
  6979. "php": ">=7.1.2"
  6980. },
  6981. "require-dev": {
  6982. "phpstan/phpstan": "^0.12.89 || ^1.0",
  6983. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  6984. },
  6985. "type": "library",
  6986. "autoload": {
  6987. "psr-4": {
  6988. "TheNorthMemory\\Xml\\": "src/"
  6989. }
  6990. },
  6991. "notification-url": "https://packagist.org/downloads/",
  6992. "license": [
  6993. "Apache-2.0"
  6994. ],
  6995. "authors": [
  6996. {
  6997. "name": "James ZHANG",
  6998. "homepage": "https://github.com/TheNorthMemory"
  6999. }
  7000. ],
  7001. "description": "A wrapper of the XML parser and builder",
  7002. "homepage": "https://github.com/TheNorthMemory/xml",
  7003. "keywords": [
  7004. "xml-builder",
  7005. "xml-parser"
  7006. ],
  7007. "support": {
  7008. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7009. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7010. },
  7011. "time": "2023-01-15T06:01:13+00:00"
  7012. },
  7013. {
  7014. "name": "tijsverkoyen/css-to-inline-styles",
  7015. "version": "2.2.6",
  7016. "source": {
  7017. "type": "git",
  7018. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7019. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7020. },
  7021. "dist": {
  7022. "type": "zip",
  7023. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7024. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7025. "shasum": "",
  7026. "mirrors": [
  7027. {
  7028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7029. "preferred": true
  7030. }
  7031. ]
  7032. },
  7033. "require": {
  7034. "ext-dom": "*",
  7035. "ext-libxml": "*",
  7036. "php": "^5.5 || ^7.0 || ^8.0",
  7037. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7038. },
  7039. "require-dev": {
  7040. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7041. },
  7042. "type": "library",
  7043. "extra": {
  7044. "branch-alias": {
  7045. "dev-master": "2.2.x-dev"
  7046. }
  7047. },
  7048. "autoload": {
  7049. "psr-4": {
  7050. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "BSD-3-Clause"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Tijs Verkoyen",
  7060. "email": "css_to_inline_styles@verkoyen.eu",
  7061. "role": "Developer"
  7062. }
  7063. ],
  7064. "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.",
  7065. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7066. "support": {
  7067. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7068. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7069. },
  7070. "time": "2023-01-03T09:29:04+00:00"
  7071. },
  7072. {
  7073. "name": "tuupola/base62",
  7074. "version": "2.1.0",
  7075. "source": {
  7076. "type": "git",
  7077. "url": "https://github.com/tuupola/base62.git",
  7078. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb"
  7079. },
  7080. "dist": {
  7081. "type": "zip",
  7082. "url": "https://api.github.com/repos/tuupola/base62/zipball/7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7083. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7084. "shasum": "",
  7085. "mirrors": [
  7086. {
  7087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7088. "preferred": true
  7089. }
  7090. ]
  7091. },
  7092. "require": {
  7093. "php": "^7.1|^8.0"
  7094. },
  7095. "require-dev": {
  7096. "overtrue/phplint": "^1.0",
  7097. "phpbench/phpbench": "^0.15.0",
  7098. "phpstan/phpstan": "^0.12.38",
  7099. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  7100. "squizlabs/php_codesniffer": "^3.0"
  7101. },
  7102. "suggest": {
  7103. "ext-gmp": "GMP extension provides the fastest encoding and decoding."
  7104. },
  7105. "type": "library",
  7106. "autoload": {
  7107. "psr-4": {
  7108. "Tuupola\\": "src"
  7109. }
  7110. },
  7111. "notification-url": "https://packagist.org/downloads/",
  7112. "license": [
  7113. "MIT"
  7114. ],
  7115. "authors": [
  7116. {
  7117. "name": "Mika Tuupola",
  7118. "email": "tuupola@appelsiini.net",
  7119. "homepage": "https://appelsiini.net/",
  7120. "role": "Developer"
  7121. }
  7122. ],
  7123. "description": "Base62 encoder and decoder for arbitrary data",
  7124. "homepage": "https://github.com/tuupola/base62",
  7125. "keywords": [
  7126. "base62"
  7127. ],
  7128. "support": {
  7129. "issues": "https://github.com/tuupola/base62/issues",
  7130. "source": "https://github.com/tuupola/base62/tree/2.1.0"
  7131. },
  7132. "funding": [
  7133. {
  7134. "url": "https://github.com/tuupola",
  7135. "type": "github"
  7136. }
  7137. ],
  7138. "time": "2020-09-09T15:05:36+00:00"
  7139. },
  7140. {
  7141. "name": "vlucas/phpdotenv",
  7142. "version": "v5.4.1",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/vlucas/phpdotenv.git",
  7146. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7151. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7152. "shasum": "",
  7153. "mirrors": [
  7154. {
  7155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7156. "preferred": true
  7157. }
  7158. ]
  7159. },
  7160. "require": {
  7161. "ext-pcre": "*",
  7162. "graham-campbell/result-type": "^1.0.2",
  7163. "php": "^7.1.3 || ^8.0",
  7164. "phpoption/phpoption": "^1.8",
  7165. "symfony/polyfill-ctype": "^1.23",
  7166. "symfony/polyfill-mbstring": "^1.23.1",
  7167. "symfony/polyfill-php80": "^1.23.1"
  7168. },
  7169. "require-dev": {
  7170. "bamarni/composer-bin-plugin": "^1.4.1",
  7171. "ext-filter": "*",
  7172. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  7173. },
  7174. "suggest": {
  7175. "ext-filter": "Required to use the boolean validator."
  7176. },
  7177. "type": "library",
  7178. "extra": {
  7179. "branch-alias": {
  7180. "dev-master": "5.4-dev"
  7181. }
  7182. },
  7183. "autoload": {
  7184. "psr-4": {
  7185. "Dotenv\\": "src/"
  7186. }
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "BSD-3-Clause"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Graham Campbell",
  7195. "email": "hello@gjcampbell.co.uk",
  7196. "homepage": "https://github.com/GrahamCampbell"
  7197. },
  7198. {
  7199. "name": "Vance Lucas",
  7200. "email": "vance@vancelucas.com",
  7201. "homepage": "https://github.com/vlucas"
  7202. }
  7203. ],
  7204. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7205. "keywords": [
  7206. "dotenv",
  7207. "env",
  7208. "environment"
  7209. ],
  7210. "support": {
  7211. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7212. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  7213. },
  7214. "funding": [
  7215. {
  7216. "url": "https://github.com/GrahamCampbell",
  7217. "type": "github"
  7218. },
  7219. {
  7220. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7221. "type": "tidelift"
  7222. }
  7223. ],
  7224. "time": "2021-12-12T23:22:04+00:00"
  7225. },
  7226. {
  7227. "name": "voku/portable-ascii",
  7228. "version": "2.0.1",
  7229. "source": {
  7230. "type": "git",
  7231. "url": "https://github.com/voku/portable-ascii.git",
  7232. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7233. },
  7234. "dist": {
  7235. "type": "zip",
  7236. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7237. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7238. "shasum": "",
  7239. "mirrors": [
  7240. {
  7241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7242. "preferred": true
  7243. }
  7244. ]
  7245. },
  7246. "require": {
  7247. "php": ">=7.0.0"
  7248. },
  7249. "require-dev": {
  7250. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7251. },
  7252. "suggest": {
  7253. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7254. },
  7255. "type": "library",
  7256. "autoload": {
  7257. "psr-4": {
  7258. "voku\\": "src/voku/"
  7259. }
  7260. },
  7261. "notification-url": "https://packagist.org/downloads/",
  7262. "license": [
  7263. "MIT"
  7264. ],
  7265. "authors": [
  7266. {
  7267. "name": "Lars Moelleken",
  7268. "homepage": "http://www.moelleken.org/"
  7269. }
  7270. ],
  7271. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7272. "homepage": "https://github.com/voku/portable-ascii",
  7273. "keywords": [
  7274. "ascii",
  7275. "clean",
  7276. "php"
  7277. ],
  7278. "support": {
  7279. "issues": "https://github.com/voku/portable-ascii/issues",
  7280. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7281. },
  7282. "funding": [
  7283. {
  7284. "url": "https://www.paypal.me/moelleken",
  7285. "type": "custom"
  7286. },
  7287. {
  7288. "url": "https://github.com/voku",
  7289. "type": "github"
  7290. },
  7291. {
  7292. "url": "https://opencollective.com/portable-ascii",
  7293. "type": "open_collective"
  7294. },
  7295. {
  7296. "url": "https://www.patreon.com/voku",
  7297. "type": "patreon"
  7298. },
  7299. {
  7300. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7301. "type": "tidelift"
  7302. }
  7303. ],
  7304. "time": "2022-03-08T17:03:00+00:00"
  7305. },
  7306. {
  7307. "name": "w7corp/easywechat",
  7308. "version": "6.8.0",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://github.com/w7corp/easywechat.git",
  7312. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7317. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7318. "shasum": "",
  7319. "mirrors": [
  7320. {
  7321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7322. "preferred": true
  7323. }
  7324. ]
  7325. },
  7326. "require": {
  7327. "ext-curl": "*",
  7328. "ext-fileinfo": "*",
  7329. "ext-libxml": "*",
  7330. "ext-openssl": "*",
  7331. "ext-simplexml": "*",
  7332. "ext-sodium": "*",
  7333. "monolog/monolog": "^2.2",
  7334. "nyholm/psr7": "^1.5",
  7335. "nyholm/psr7-server": "^1.0",
  7336. "overtrue/socialite": "^3.5|^4.0.1",
  7337. "php": ">=8.0.2",
  7338. "psr/http-client": "^1.0",
  7339. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7340. "symfony/cache": "^5.4|^6.0",
  7341. "symfony/http-client": "^5.4|^6.0",
  7342. "symfony/http-foundation": "^5.4|^6.0",
  7343. "symfony/mime": "^5.4|^6.0",
  7344. "symfony/polyfill-php81": "^1.25",
  7345. "symfony/psr-http-message-bridge": "^2.1.2",
  7346. "thenorthmemory/xml": "^1.0"
  7347. },
  7348. "require-dev": {
  7349. "brainmaestro/composer-git-hooks": "^2.8",
  7350. "jetbrains/phpstorm-attributes": "^1.0",
  7351. "laravel/pint": "^1.2",
  7352. "mikey179/vfsstream": "^1.6",
  7353. "mockery/mockery": "^1.4.4",
  7354. "phpstan/phpstan": "^1.0",
  7355. "phpunit/phpunit": "^9.5",
  7356. "symfony/var-dumper": "^5.2"
  7357. },
  7358. "type": "library",
  7359. "extra": {
  7360. "hooks": {
  7361. "pre-commit": [
  7362. "composer check-style",
  7363. "composer phpstan",
  7364. "composer test"
  7365. ],
  7366. "pre-push": [
  7367. "composer check-style"
  7368. ],
  7369. "config": {
  7370. "stop-on-failure": [
  7371. "pre-commit",
  7372. "pre-push"
  7373. ]
  7374. }
  7375. }
  7376. },
  7377. "autoload": {
  7378. "psr-4": {
  7379. "EasyWeChat\\": "src/"
  7380. }
  7381. },
  7382. "notification-url": "https://packagist.org/downloads/",
  7383. "license": [
  7384. "MIT"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "overtrue",
  7389. "email": "anzhengchao@gmail.com"
  7390. }
  7391. ],
  7392. "description": "微信SDK",
  7393. "keywords": [
  7394. "easywechat",
  7395. "sdk",
  7396. "wechat",
  7397. "weixin",
  7398. "weixin-sdk"
  7399. ],
  7400. "support": {
  7401. "issues": "https://github.com/w7corp/easywechat/issues",
  7402. "source": "https://github.com/w7corp/easywechat/tree/6.8.0"
  7403. },
  7404. "funding": [
  7405. {
  7406. "url": "https://github.com/overtrue",
  7407. "type": "github"
  7408. }
  7409. ],
  7410. "time": "2022-09-25T13:05:18+00:00"
  7411. },
  7412. {
  7413. "name": "webmozart/assert",
  7414. "version": "1.11.0",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/webmozarts/assert.git",
  7418. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7423. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7424. "shasum": "",
  7425. "mirrors": [
  7426. {
  7427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7428. "preferred": true
  7429. }
  7430. ]
  7431. },
  7432. "require": {
  7433. "ext-ctype": "*",
  7434. "php": "^7.2 || ^8.0"
  7435. },
  7436. "conflict": {
  7437. "phpstan/phpstan": "<0.12.20",
  7438. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7439. },
  7440. "require-dev": {
  7441. "phpunit/phpunit": "^8.5.13"
  7442. },
  7443. "type": "library",
  7444. "extra": {
  7445. "branch-alias": {
  7446. "dev-master": "1.10-dev"
  7447. }
  7448. },
  7449. "autoload": {
  7450. "psr-4": {
  7451. "Webmozart\\Assert\\": "src/"
  7452. }
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "Bernhard Schussek",
  7461. "email": "bschussek@gmail.com"
  7462. }
  7463. ],
  7464. "description": "Assertions to validate method input/output with nice error messages.",
  7465. "keywords": [
  7466. "assert",
  7467. "check",
  7468. "validate"
  7469. ],
  7470. "support": {
  7471. "issues": "https://github.com/webmozarts/assert/issues",
  7472. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7473. },
  7474. "time": "2022-06-03T18:03:27+00:00"
  7475. }
  7476. ],
  7477. "packages-dev": [
  7478. {
  7479. "name": "barryvdh/laravel-ide-helper",
  7480. "version": "v2.12.3",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7484. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7489. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7490. "shasum": "",
  7491. "mirrors": [
  7492. {
  7493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7494. "preferred": true
  7495. }
  7496. ]
  7497. },
  7498. "require": {
  7499. "barryvdh/reflection-docblock": "^2.0.6",
  7500. "composer/pcre": "^1 || ^2 || ^3",
  7501. "doctrine/dbal": "^2.6 || ^3",
  7502. "ext-json": "*",
  7503. "illuminate/console": "^8 || ^9",
  7504. "illuminate/filesystem": "^8 || ^9",
  7505. "illuminate/support": "^8 || ^9",
  7506. "nikic/php-parser": "^4.7",
  7507. "php": "^7.3 || ^8.0",
  7508. "phpdocumentor/type-resolver": "^1.1.0"
  7509. },
  7510. "require-dev": {
  7511. "ext-pdo_sqlite": "*",
  7512. "friendsofphp/php-cs-fixer": "^2",
  7513. "illuminate/config": "^8 || ^9",
  7514. "illuminate/view": "^8 || ^9",
  7515. "mockery/mockery": "^1.4",
  7516. "orchestra/testbench": "^6 || ^7",
  7517. "phpunit/phpunit": "^8.5 || ^9",
  7518. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  7519. "vimeo/psalm": "^3.12"
  7520. },
  7521. "suggest": {
  7522. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  7523. },
  7524. "type": "library",
  7525. "extra": {
  7526. "branch-alias": {
  7527. "dev-master": "2.12-dev"
  7528. },
  7529. "laravel": {
  7530. "providers": [
  7531. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7532. ]
  7533. }
  7534. },
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Barryvdh\\LaravelIdeHelper\\": "src"
  7538. }
  7539. },
  7540. "notification-url": "https://packagist.org/downloads/",
  7541. "license": [
  7542. "MIT"
  7543. ],
  7544. "authors": [
  7545. {
  7546. "name": "Barry vd. Heuvel",
  7547. "email": "barryvdh@gmail.com"
  7548. }
  7549. ],
  7550. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7551. "keywords": [
  7552. "autocomplete",
  7553. "codeintel",
  7554. "helper",
  7555. "ide",
  7556. "laravel",
  7557. "netbeans",
  7558. "phpdoc",
  7559. "phpstorm",
  7560. "sublime"
  7561. ],
  7562. "support": {
  7563. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7564. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  7565. },
  7566. "funding": [
  7567. {
  7568. "url": "https://fruitcake.nl",
  7569. "type": "custom"
  7570. },
  7571. {
  7572. "url": "https://github.com/barryvdh",
  7573. "type": "github"
  7574. }
  7575. ],
  7576. "time": "2022-03-06T14:33:42+00:00"
  7577. },
  7578. {
  7579. "name": "barryvdh/reflection-docblock",
  7580. "version": "v2.1.0",
  7581. "source": {
  7582. "type": "git",
  7583. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7584. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  7585. },
  7586. "dist": {
  7587. "type": "zip",
  7588. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  7589. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  7590. "shasum": "",
  7591. "mirrors": [
  7592. {
  7593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7594. "preferred": true
  7595. }
  7596. ]
  7597. },
  7598. "require": {
  7599. "php": ">=5.3.3"
  7600. },
  7601. "require-dev": {
  7602. "phpunit/phpunit": "^8.5.14|^9"
  7603. },
  7604. "suggest": {
  7605. "dflydev/markdown": "~1.0",
  7606. "erusev/parsedown": "~1.0"
  7607. },
  7608. "type": "library",
  7609. "extra": {
  7610. "branch-alias": {
  7611. "dev-master": "2.0.x-dev"
  7612. }
  7613. },
  7614. "autoload": {
  7615. "psr-0": {
  7616. "Barryvdh": [
  7617. "src/"
  7618. ]
  7619. }
  7620. },
  7621. "notification-url": "https://packagist.org/downloads/",
  7622. "license": [
  7623. "MIT"
  7624. ],
  7625. "authors": [
  7626. {
  7627. "name": "Mike van Riel",
  7628. "email": "mike.vanriel@naenius.com"
  7629. }
  7630. ],
  7631. "support": {
  7632. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  7633. },
  7634. "time": "2022-10-31T15:35:43+00:00"
  7635. },
  7636. {
  7637. "name": "composer/pcre",
  7638. "version": "3.0.2",
  7639. "source": {
  7640. "type": "git",
  7641. "url": "https://github.com/composer/pcre.git",
  7642. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb"
  7643. },
  7644. "dist": {
  7645. "type": "zip",
  7646. "url": "https://api.github.com/repos/composer/pcre/zipball/4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  7647. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  7648. "shasum": "",
  7649. "mirrors": [
  7650. {
  7651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7652. "preferred": true
  7653. }
  7654. ]
  7655. },
  7656. "require": {
  7657. "php": "^7.4 || ^8.0"
  7658. },
  7659. "require-dev": {
  7660. "phpstan/phpstan": "^1.3",
  7661. "phpstan/phpstan-strict-rules": "^1.1",
  7662. "symfony/phpunit-bridge": "^5"
  7663. },
  7664. "type": "library",
  7665. "extra": {
  7666. "branch-alias": {
  7667. "dev-main": "3.x-dev"
  7668. }
  7669. },
  7670. "autoload": {
  7671. "psr-4": {
  7672. "Composer\\Pcre\\": "src"
  7673. }
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "license": [
  7677. "MIT"
  7678. ],
  7679. "authors": [
  7680. {
  7681. "name": "Jordi Boggiano",
  7682. "email": "j.boggiano@seld.be",
  7683. "homepage": "http://seld.be"
  7684. }
  7685. ],
  7686. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7687. "keywords": [
  7688. "PCRE",
  7689. "preg",
  7690. "regex",
  7691. "regular expression"
  7692. ],
  7693. "support": {
  7694. "issues": "https://github.com/composer/pcre/issues",
  7695. "source": "https://github.com/composer/pcre/tree/3.0.2"
  7696. },
  7697. "funding": [
  7698. {
  7699. "url": "https://packagist.com",
  7700. "type": "custom"
  7701. },
  7702. {
  7703. "url": "https://github.com/composer",
  7704. "type": "github"
  7705. },
  7706. {
  7707. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7708. "type": "tidelift"
  7709. }
  7710. ],
  7711. "time": "2022-11-03T20:24:16+00:00"
  7712. },
  7713. {
  7714. "name": "doctrine/cache",
  7715. "version": "2.2.0",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://github.com/doctrine/cache.git",
  7719. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  7724. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  7725. "shasum": "",
  7726. "mirrors": [
  7727. {
  7728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7729. "preferred": true
  7730. }
  7731. ]
  7732. },
  7733. "require": {
  7734. "php": "~7.1 || ^8.0"
  7735. },
  7736. "conflict": {
  7737. "doctrine/common": ">2.2,<2.4"
  7738. },
  7739. "require-dev": {
  7740. "cache/integration-tests": "dev-master",
  7741. "doctrine/coding-standard": "^9",
  7742. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7743. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  7744. "symfony/cache": "^4.4 || ^5.4 || ^6",
  7745. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  7746. },
  7747. "type": "library",
  7748. "autoload": {
  7749. "psr-4": {
  7750. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7751. }
  7752. },
  7753. "notification-url": "https://packagist.org/downloads/",
  7754. "license": [
  7755. "MIT"
  7756. ],
  7757. "authors": [
  7758. {
  7759. "name": "Guilherme Blanco",
  7760. "email": "guilhermeblanco@gmail.com"
  7761. },
  7762. {
  7763. "name": "Roman Borschel",
  7764. "email": "roman@code-factory.org"
  7765. },
  7766. {
  7767. "name": "Benjamin Eberlei",
  7768. "email": "kontakt@beberlei.de"
  7769. },
  7770. {
  7771. "name": "Jonathan Wage",
  7772. "email": "jonwage@gmail.com"
  7773. },
  7774. {
  7775. "name": "Johannes Schmitt",
  7776. "email": "schmittjoh@gmail.com"
  7777. }
  7778. ],
  7779. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7780. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7781. "keywords": [
  7782. "abstraction",
  7783. "apcu",
  7784. "cache",
  7785. "caching",
  7786. "couchdb",
  7787. "memcached",
  7788. "php",
  7789. "redis",
  7790. "xcache"
  7791. ],
  7792. "support": {
  7793. "issues": "https://github.com/doctrine/cache/issues",
  7794. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  7795. },
  7796. "funding": [
  7797. {
  7798. "url": "https://www.doctrine-project.org/sponsorship.html",
  7799. "type": "custom"
  7800. },
  7801. {
  7802. "url": "https://www.patreon.com/phpdoctrine",
  7803. "type": "patreon"
  7804. },
  7805. {
  7806. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7807. "type": "tidelift"
  7808. }
  7809. ],
  7810. "time": "2022-05-20T20:07:39+00:00"
  7811. },
  7812. {
  7813. "name": "doctrine/dbal",
  7814. "version": "3.6.1",
  7815. "source": {
  7816. "type": "git",
  7817. "url": "https://github.com/doctrine/dbal.git",
  7818. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  7819. },
  7820. "dist": {
  7821. "type": "zip",
  7822. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  7823. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  7824. "shasum": "",
  7825. "mirrors": [
  7826. {
  7827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7828. "preferred": true
  7829. }
  7830. ]
  7831. },
  7832. "require": {
  7833. "composer-runtime-api": "^2",
  7834. "doctrine/cache": "^1.11|^2.0",
  7835. "doctrine/deprecations": "^0.5.3|^1",
  7836. "doctrine/event-manager": "^1|^2",
  7837. "php": "^7.4 || ^8.0",
  7838. "psr/cache": "^1|^2|^3",
  7839. "psr/log": "^1|^2|^3"
  7840. },
  7841. "require-dev": {
  7842. "doctrine/coding-standard": "11.1.0",
  7843. "fig/log-test": "^1",
  7844. "jetbrains/phpstorm-stubs": "2022.3",
  7845. "phpstan/phpstan": "1.10.3",
  7846. "phpstan/phpstan-strict-rules": "^1.5",
  7847. "phpunit/phpunit": "9.6.4",
  7848. "psalm/plugin-phpunit": "0.18.4",
  7849. "squizlabs/php_codesniffer": "3.7.2",
  7850. "symfony/cache": "^5.4|^6.0",
  7851. "symfony/console": "^4.4|^5.4|^6.0",
  7852. "vimeo/psalm": "4.30.0"
  7853. },
  7854. "suggest": {
  7855. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7856. },
  7857. "bin": [
  7858. "bin/doctrine-dbal"
  7859. ],
  7860. "type": "library",
  7861. "autoload": {
  7862. "psr-4": {
  7863. "Doctrine\\DBAL\\": "src"
  7864. }
  7865. },
  7866. "notification-url": "https://packagist.org/downloads/",
  7867. "license": [
  7868. "MIT"
  7869. ],
  7870. "authors": [
  7871. {
  7872. "name": "Guilherme Blanco",
  7873. "email": "guilhermeblanco@gmail.com"
  7874. },
  7875. {
  7876. "name": "Roman Borschel",
  7877. "email": "roman@code-factory.org"
  7878. },
  7879. {
  7880. "name": "Benjamin Eberlei",
  7881. "email": "kontakt@beberlei.de"
  7882. },
  7883. {
  7884. "name": "Jonathan Wage",
  7885. "email": "jonwage@gmail.com"
  7886. }
  7887. ],
  7888. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7889. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7890. "keywords": [
  7891. "abstraction",
  7892. "database",
  7893. "db2",
  7894. "dbal",
  7895. "mariadb",
  7896. "mssql",
  7897. "mysql",
  7898. "oci8",
  7899. "oracle",
  7900. "pdo",
  7901. "pgsql",
  7902. "postgresql",
  7903. "queryobject",
  7904. "sasql",
  7905. "sql",
  7906. "sqlite",
  7907. "sqlserver",
  7908. "sqlsrv"
  7909. ],
  7910. "support": {
  7911. "issues": "https://github.com/doctrine/dbal/issues",
  7912. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  7913. },
  7914. "funding": [
  7915. {
  7916. "url": "https://www.doctrine-project.org/sponsorship.html",
  7917. "type": "custom"
  7918. },
  7919. {
  7920. "url": "https://www.patreon.com/phpdoctrine",
  7921. "type": "patreon"
  7922. },
  7923. {
  7924. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7925. "type": "tidelift"
  7926. }
  7927. ],
  7928. "time": "2023-03-02T19:26:24+00:00"
  7929. },
  7930. {
  7931. "name": "doctrine/event-manager",
  7932. "version": "1.1.1",
  7933. "source": {
  7934. "type": "git",
  7935. "url": "https://github.com/doctrine/event-manager.git",
  7936. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7937. },
  7938. "dist": {
  7939. "type": "zip",
  7940. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7941. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7942. "shasum": "",
  7943. "mirrors": [
  7944. {
  7945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7946. "preferred": true
  7947. }
  7948. ]
  7949. },
  7950. "require": {
  7951. "php": "^7.1 || ^8.0"
  7952. },
  7953. "conflict": {
  7954. "doctrine/common": "<2.9@dev"
  7955. },
  7956. "require-dev": {
  7957. "doctrine/coding-standard": "^6.0",
  7958. "phpunit/phpunit": "^7.0"
  7959. },
  7960. "type": "library",
  7961. "extra": {
  7962. "branch-alias": {
  7963. "dev-master": "1.0.x-dev"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "psr-4": {
  7968. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7969. }
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Guilherme Blanco",
  7978. "email": "guilhermeblanco@gmail.com"
  7979. },
  7980. {
  7981. "name": "Roman Borschel",
  7982. "email": "roman@code-factory.org"
  7983. },
  7984. {
  7985. "name": "Benjamin Eberlei",
  7986. "email": "kontakt@beberlei.de"
  7987. },
  7988. {
  7989. "name": "Jonathan Wage",
  7990. "email": "jonwage@gmail.com"
  7991. },
  7992. {
  7993. "name": "Johannes Schmitt",
  7994. "email": "schmittjoh@gmail.com"
  7995. },
  7996. {
  7997. "name": "Marco Pivetta",
  7998. "email": "ocramius@gmail.com"
  7999. }
  8000. ],
  8001. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  8002. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  8003. "keywords": [
  8004. "event",
  8005. "event dispatcher",
  8006. "event manager",
  8007. "event system",
  8008. "events"
  8009. ],
  8010. "support": {
  8011. "issues": "https://github.com/doctrine/event-manager/issues",
  8012. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  8013. },
  8014. "funding": [
  8015. {
  8016. "url": "https://www.doctrine-project.org/sponsorship.html",
  8017. "type": "custom"
  8018. },
  8019. {
  8020. "url": "https://www.patreon.com/phpdoctrine",
  8021. "type": "patreon"
  8022. },
  8023. {
  8024. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  8025. "type": "tidelift"
  8026. }
  8027. ],
  8028. "time": "2020-05-29T18:28:51+00:00"
  8029. },
  8030. {
  8031. "name": "doctrine/instantiator",
  8032. "version": "1.5.0",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/doctrine/instantiator.git",
  8036. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8041. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8042. "shasum": "",
  8043. "mirrors": [
  8044. {
  8045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8046. "preferred": true
  8047. }
  8048. ]
  8049. },
  8050. "require": {
  8051. "php": "^7.1 || ^8.0"
  8052. },
  8053. "require-dev": {
  8054. "doctrine/coding-standard": "^9 || ^11",
  8055. "ext-pdo": "*",
  8056. "ext-phar": "*",
  8057. "phpbench/phpbench": "^0.16 || ^1",
  8058. "phpstan/phpstan": "^1.4",
  8059. "phpstan/phpstan-phpunit": "^1",
  8060. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8061. "vimeo/psalm": "^4.30 || ^5.4"
  8062. },
  8063. "type": "library",
  8064. "autoload": {
  8065. "psr-4": {
  8066. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8067. }
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Marco Pivetta",
  8076. "email": "ocramius@gmail.com",
  8077. "homepage": "https://ocramius.github.io/"
  8078. }
  8079. ],
  8080. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8081. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8082. "keywords": [
  8083. "constructor",
  8084. "instantiate"
  8085. ],
  8086. "support": {
  8087. "issues": "https://github.com/doctrine/instantiator/issues",
  8088. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8089. },
  8090. "funding": [
  8091. {
  8092. "url": "https://www.doctrine-project.org/sponsorship.html",
  8093. "type": "custom"
  8094. },
  8095. {
  8096. "url": "https://www.patreon.com/phpdoctrine",
  8097. "type": "patreon"
  8098. },
  8099. {
  8100. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8101. "type": "tidelift"
  8102. }
  8103. ],
  8104. "time": "2022-12-30T00:15:36+00:00"
  8105. },
  8106. {
  8107. "name": "fakerphp/faker",
  8108. "version": "v1.21.0",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/FakerPHP/Faker.git",
  8112. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8117. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8118. "shasum": "",
  8119. "mirrors": [
  8120. {
  8121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8122. "preferred": true
  8123. }
  8124. ]
  8125. },
  8126. "require": {
  8127. "php": "^7.4 || ^8.0",
  8128. "psr/container": "^1.0 || ^2.0",
  8129. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8130. },
  8131. "conflict": {
  8132. "fzaninotto/faker": "*"
  8133. },
  8134. "require-dev": {
  8135. "bamarni/composer-bin-plugin": "^1.4.1",
  8136. "doctrine/persistence": "^1.3 || ^2.0",
  8137. "ext-intl": "*",
  8138. "phpunit/phpunit": "^9.5.26",
  8139. "symfony/phpunit-bridge": "^5.4.16"
  8140. },
  8141. "suggest": {
  8142. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8143. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8144. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8145. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8146. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8147. },
  8148. "type": "library",
  8149. "extra": {
  8150. "branch-alias": {
  8151. "dev-main": "v1.21-dev"
  8152. }
  8153. },
  8154. "autoload": {
  8155. "psr-4": {
  8156. "Faker\\": "src/Faker/"
  8157. }
  8158. },
  8159. "notification-url": "https://packagist.org/downloads/",
  8160. "license": [
  8161. "MIT"
  8162. ],
  8163. "authors": [
  8164. {
  8165. "name": "François Zaninotto"
  8166. }
  8167. ],
  8168. "description": "Faker is a PHP library that generates fake data for you.",
  8169. "keywords": [
  8170. "data",
  8171. "faker",
  8172. "fixtures"
  8173. ],
  8174. "support": {
  8175. "issues": "https://github.com/FakerPHP/Faker/issues",
  8176. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8177. },
  8178. "time": "2022-12-13T13:54:32+00:00"
  8179. },
  8180. {
  8181. "name": "filp/whoops",
  8182. "version": "2.15.2",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/filp/whoops.git",
  8186. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8191. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8192. "shasum": "",
  8193. "mirrors": [
  8194. {
  8195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8196. "preferred": true
  8197. }
  8198. ]
  8199. },
  8200. "require": {
  8201. "php": "^5.5.9 || ^7.0 || ^8.0",
  8202. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8203. },
  8204. "require-dev": {
  8205. "mockery/mockery": "^0.9 || ^1.0",
  8206. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8207. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8208. },
  8209. "suggest": {
  8210. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8211. "whoops/soap": "Formats errors as SOAP responses"
  8212. },
  8213. "type": "library",
  8214. "extra": {
  8215. "branch-alias": {
  8216. "dev-master": "2.7-dev"
  8217. }
  8218. },
  8219. "autoload": {
  8220. "psr-4": {
  8221. "Whoops\\": "src/Whoops/"
  8222. }
  8223. },
  8224. "notification-url": "https://packagist.org/downloads/",
  8225. "license": [
  8226. "MIT"
  8227. ],
  8228. "authors": [
  8229. {
  8230. "name": "Filipe Dobreira",
  8231. "homepage": "https://github.com/filp",
  8232. "role": "Developer"
  8233. }
  8234. ],
  8235. "description": "php error handling for cool kids",
  8236. "homepage": "https://filp.github.io/whoops/",
  8237. "keywords": [
  8238. "error",
  8239. "exception",
  8240. "handling",
  8241. "library",
  8242. "throwable",
  8243. "whoops"
  8244. ],
  8245. "support": {
  8246. "issues": "https://github.com/filp/whoops/issues",
  8247. "source": "https://github.com/filp/whoops/tree/2.15.2"
  8248. },
  8249. "funding": [
  8250. {
  8251. "url": "https://github.com/denis-sokolov",
  8252. "type": "github"
  8253. }
  8254. ],
  8255. "time": "2023-04-12T12:00:00+00:00"
  8256. },
  8257. {
  8258. "name": "hamcrest/hamcrest-php",
  8259. "version": "v2.0.1",
  8260. "source": {
  8261. "type": "git",
  8262. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8263. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8264. },
  8265. "dist": {
  8266. "type": "zip",
  8267. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8268. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8269. "shasum": "",
  8270. "mirrors": [
  8271. {
  8272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8273. "preferred": true
  8274. }
  8275. ]
  8276. },
  8277. "require": {
  8278. "php": "^5.3|^7.0|^8.0"
  8279. },
  8280. "replace": {
  8281. "cordoval/hamcrest-php": "*",
  8282. "davedevelopment/hamcrest-php": "*",
  8283. "kodova/hamcrest-php": "*"
  8284. },
  8285. "require-dev": {
  8286. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8287. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8288. },
  8289. "type": "library",
  8290. "extra": {
  8291. "branch-alias": {
  8292. "dev-master": "2.1-dev"
  8293. }
  8294. },
  8295. "autoload": {
  8296. "classmap": [
  8297. "hamcrest"
  8298. ]
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "BSD-3-Clause"
  8303. ],
  8304. "description": "This is the PHP port of Hamcrest Matchers",
  8305. "keywords": [
  8306. "test"
  8307. ],
  8308. "support": {
  8309. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8310. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8311. },
  8312. "time": "2020-07-09T08:09:16+00:00"
  8313. },
  8314. {
  8315. "name": "laravel/pint",
  8316. "version": "v1.5.0",
  8317. "source": {
  8318. "type": "git",
  8319. "url": "https://github.com/laravel/pint.git",
  8320. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362"
  8321. },
  8322. "dist": {
  8323. "type": "zip",
  8324. "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362",
  8325. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362",
  8326. "shasum": "",
  8327. "mirrors": [
  8328. {
  8329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8330. "preferred": true
  8331. }
  8332. ]
  8333. },
  8334. "require": {
  8335. "ext-json": "*",
  8336. "ext-mbstring": "*",
  8337. "ext-tokenizer": "*",
  8338. "ext-xml": "*",
  8339. "php": "^8.0"
  8340. },
  8341. "require-dev": {
  8342. "friendsofphp/php-cs-fixer": "^3.14.4",
  8343. "illuminate/view": "^9.51.0",
  8344. "laravel-zero/framework": "^9.2.0",
  8345. "mockery/mockery": "^1.5.1",
  8346. "nunomaduro/larastan": "^2.4.0",
  8347. "nunomaduro/termwind": "^1.15.1",
  8348. "pestphp/pest": "^1.22.4"
  8349. },
  8350. "bin": [
  8351. "builds/pint"
  8352. ],
  8353. "type": "project",
  8354. "autoload": {
  8355. "psr-4": {
  8356. "App\\": "app/",
  8357. "Database\\Seeders\\": "database/seeders/",
  8358. "Database\\Factories\\": "database/factories/"
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "MIT"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Nuno Maduro",
  8368. "email": "enunomaduro@gmail.com"
  8369. }
  8370. ],
  8371. "description": "An opinionated code formatter for PHP.",
  8372. "homepage": "https://laravel.com",
  8373. "keywords": [
  8374. "format",
  8375. "formatter",
  8376. "lint",
  8377. "linter",
  8378. "php"
  8379. ],
  8380. "support": {
  8381. "issues": "https://github.com/laravel/pint/issues",
  8382. "source": "https://github.com/laravel/pint"
  8383. },
  8384. "time": "2023-02-14T16:31:02+00:00"
  8385. },
  8386. {
  8387. "name": "laravel/sail",
  8388. "version": "v1.21.4",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/laravel/sail.git",
  8392. "reference": "5e59b4a57181020477e2b18943b27493638e3f89"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/laravel/sail/zipball/5e59b4a57181020477e2b18943b27493638e3f89",
  8397. "reference": "5e59b4a57181020477e2b18943b27493638e3f89",
  8398. "shasum": "",
  8399. "mirrors": [
  8400. {
  8401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8402. "preferred": true
  8403. }
  8404. ]
  8405. },
  8406. "require": {
  8407. "illuminate/console": "^8.0|^9.0|^10.0",
  8408. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8409. "illuminate/support": "^8.0|^9.0|^10.0",
  8410. "php": "^7.3|^8.0",
  8411. "symfony/yaml": "^6.0"
  8412. },
  8413. "require-dev": {
  8414. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8415. "phpstan/phpstan": "^1.10"
  8416. },
  8417. "bin": [
  8418. "bin/sail"
  8419. ],
  8420. "type": "library",
  8421. "extra": {
  8422. "branch-alias": {
  8423. "dev-master": "1.x-dev"
  8424. },
  8425. "laravel": {
  8426. "providers": [
  8427. "Laravel\\Sail\\SailServiceProvider"
  8428. ]
  8429. }
  8430. },
  8431. "autoload": {
  8432. "psr-4": {
  8433. "Laravel\\Sail\\": "src/"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Taylor Otwell",
  8443. "email": "taylor@laravel.com"
  8444. }
  8445. ],
  8446. "description": "Docker files for running a basic Laravel application.",
  8447. "keywords": [
  8448. "docker",
  8449. "laravel"
  8450. ],
  8451. "support": {
  8452. "issues": "https://github.com/laravel/sail/issues",
  8453. "source": "https://github.com/laravel/sail"
  8454. },
  8455. "time": "2023-03-30T12:28:55+00:00"
  8456. },
  8457. {
  8458. "name": "laravel/telescope",
  8459. "version": "v4.14.0",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/laravel/telescope.git",
  8463. "reference": "fafad2e32883eb9dc03b646d0f82b2987e8af880"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/laravel/telescope/zipball/fafad2e32883eb9dc03b646d0f82b2987e8af880",
  8468. "reference": "fafad2e32883eb9dc03b646d0f82b2987e8af880",
  8469. "shasum": "",
  8470. "mirrors": [
  8471. {
  8472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8473. "preferred": true
  8474. }
  8475. ]
  8476. },
  8477. "require": {
  8478. "ext-json": "*",
  8479. "laravel/framework": "^8.37|^9.0|^10.0",
  8480. "php": "^8.0",
  8481. "symfony/var-dumper": "^5.0|^6.0"
  8482. },
  8483. "require-dev": {
  8484. "ext-gd": "*",
  8485. "guzzlehttp/guzzle": "^6.0|^7.0",
  8486. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8487. "phpunit/phpunit": "^9.0"
  8488. },
  8489. "type": "library",
  8490. "extra": {
  8491. "branch-alias": {
  8492. "dev-master": "4.x-dev"
  8493. },
  8494. "laravel": {
  8495. "providers": [
  8496. "Laravel\\Telescope\\TelescopeServiceProvider"
  8497. ]
  8498. }
  8499. },
  8500. "autoload": {
  8501. "psr-4": {
  8502. "Laravel\\Telescope\\": "src/",
  8503. "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
  8504. }
  8505. },
  8506. "notification-url": "https://packagist.org/downloads/",
  8507. "license": [
  8508. "MIT"
  8509. ],
  8510. "authors": [
  8511. {
  8512. "name": "Taylor Otwell",
  8513. "email": "taylor@laravel.com"
  8514. },
  8515. {
  8516. "name": "Mohamed Said",
  8517. "email": "mohamed@laravel.com"
  8518. }
  8519. ],
  8520. "description": "An elegant debug assistant for the Laravel framework.",
  8521. "keywords": [
  8522. "debugging",
  8523. "laravel",
  8524. "monitoring"
  8525. ],
  8526. "support": {
  8527. "issues": "https://github.com/laravel/telescope/issues",
  8528. "source": "https://github.com/laravel/telescope/tree/v4.14.0"
  8529. },
  8530. "time": "2023-02-21T15:49:06+00:00"
  8531. },
  8532. {
  8533. "name": "mockery/mockery",
  8534. "version": "1.5.1",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/mockery/mockery.git",
  8538. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8543. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8544. "shasum": "",
  8545. "mirrors": [
  8546. {
  8547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8548. "preferred": true
  8549. }
  8550. ]
  8551. },
  8552. "require": {
  8553. "hamcrest/hamcrest-php": "^2.0.1",
  8554. "lib-pcre": ">=7.0",
  8555. "php": "^7.3 || ^8.0"
  8556. },
  8557. "conflict": {
  8558. "phpunit/phpunit": "<8.0"
  8559. },
  8560. "require-dev": {
  8561. "phpunit/phpunit": "^8.5 || ^9.3"
  8562. },
  8563. "type": "library",
  8564. "extra": {
  8565. "branch-alias": {
  8566. "dev-master": "1.4.x-dev"
  8567. }
  8568. },
  8569. "autoload": {
  8570. "psr-0": {
  8571. "Mockery": "library/"
  8572. }
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "BSD-3-Clause"
  8577. ],
  8578. "authors": [
  8579. {
  8580. "name": "Pádraic Brady",
  8581. "email": "padraic.brady@gmail.com",
  8582. "homepage": "http://blog.astrumfutura.com"
  8583. },
  8584. {
  8585. "name": "Dave Marshall",
  8586. "email": "dave.marshall@atstsolutions.co.uk",
  8587. "homepage": "http://davedevelopment.co.uk"
  8588. }
  8589. ],
  8590. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8591. "homepage": "https://github.com/mockery/mockery",
  8592. "keywords": [
  8593. "BDD",
  8594. "TDD",
  8595. "library",
  8596. "mock",
  8597. "mock objects",
  8598. "mockery",
  8599. "stub",
  8600. "test",
  8601. "test double",
  8602. "testing"
  8603. ],
  8604. "support": {
  8605. "issues": "https://github.com/mockery/mockery/issues",
  8606. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8607. },
  8608. "time": "2022-09-07T15:32:08+00:00"
  8609. },
  8610. {
  8611. "name": "myclabs/deep-copy",
  8612. "version": "1.11.1",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/myclabs/DeepCopy.git",
  8616. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8621. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8622. "shasum": "",
  8623. "mirrors": [
  8624. {
  8625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8626. "preferred": true
  8627. }
  8628. ]
  8629. },
  8630. "require": {
  8631. "php": "^7.1 || ^8.0"
  8632. },
  8633. "conflict": {
  8634. "doctrine/collections": "<1.6.8",
  8635. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8636. },
  8637. "require-dev": {
  8638. "doctrine/collections": "^1.6.8",
  8639. "doctrine/common": "^2.13.3 || ^3.2.2",
  8640. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8641. },
  8642. "type": "library",
  8643. "autoload": {
  8644. "files": [
  8645. "src/DeepCopy/deep_copy.php"
  8646. ],
  8647. "psr-4": {
  8648. "DeepCopy\\": "src/DeepCopy/"
  8649. }
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "MIT"
  8654. ],
  8655. "description": "Create deep copies (clones) of your objects",
  8656. "keywords": [
  8657. "clone",
  8658. "copy",
  8659. "duplicate",
  8660. "object",
  8661. "object graph"
  8662. ],
  8663. "support": {
  8664. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8665. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8666. },
  8667. "funding": [
  8668. {
  8669. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8670. "type": "tidelift"
  8671. }
  8672. ],
  8673. "time": "2023-03-08T13:26:56+00:00"
  8674. },
  8675. {
  8676. "name": "nunomaduro/collision",
  8677. "version": "v6.4.0",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/nunomaduro/collision.git",
  8681. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  8686. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  8687. "shasum": "",
  8688. "mirrors": [
  8689. {
  8690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8691. "preferred": true
  8692. }
  8693. ]
  8694. },
  8695. "require": {
  8696. "filp/whoops": "^2.14.5",
  8697. "php": "^8.0.0",
  8698. "symfony/console": "^6.0.2"
  8699. },
  8700. "require-dev": {
  8701. "brianium/paratest": "^6.4.1",
  8702. "laravel/framework": "^9.26.1",
  8703. "laravel/pint": "^1.1.1",
  8704. "nunomaduro/larastan": "^1.0.3",
  8705. "nunomaduro/mock-final-classes": "^1.1.0",
  8706. "orchestra/testbench": "^7.7",
  8707. "phpunit/phpunit": "^9.5.23",
  8708. "spatie/ignition": "^1.4.1"
  8709. },
  8710. "type": "library",
  8711. "extra": {
  8712. "branch-alias": {
  8713. "dev-develop": "6.x-dev"
  8714. },
  8715. "laravel": {
  8716. "providers": [
  8717. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8718. ]
  8719. }
  8720. },
  8721. "autoload": {
  8722. "psr-4": {
  8723. "NunoMaduro\\Collision\\": "src/"
  8724. }
  8725. },
  8726. "notification-url": "https://packagist.org/downloads/",
  8727. "license": [
  8728. "MIT"
  8729. ],
  8730. "authors": [
  8731. {
  8732. "name": "Nuno Maduro",
  8733. "email": "enunomaduro@gmail.com"
  8734. }
  8735. ],
  8736. "description": "Cli error handling for console/command-line PHP applications.",
  8737. "keywords": [
  8738. "artisan",
  8739. "cli",
  8740. "command-line",
  8741. "console",
  8742. "error",
  8743. "handling",
  8744. "laravel",
  8745. "laravel-zero",
  8746. "php",
  8747. "symfony"
  8748. ],
  8749. "support": {
  8750. "issues": "https://github.com/nunomaduro/collision/issues",
  8751. "source": "https://github.com/nunomaduro/collision"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8756. "type": "custom"
  8757. },
  8758. {
  8759. "url": "https://github.com/nunomaduro",
  8760. "type": "github"
  8761. },
  8762. {
  8763. "url": "https://www.patreon.com/nunomaduro",
  8764. "type": "patreon"
  8765. }
  8766. ],
  8767. "time": "2023-01-03T12:54:54+00:00"
  8768. },
  8769. {
  8770. "name": "phar-io/manifest",
  8771. "version": "2.0.3",
  8772. "source": {
  8773. "type": "git",
  8774. "url": "https://github.com/phar-io/manifest.git",
  8775. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8776. },
  8777. "dist": {
  8778. "type": "zip",
  8779. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8780. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8781. "shasum": "",
  8782. "mirrors": [
  8783. {
  8784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8785. "preferred": true
  8786. }
  8787. ]
  8788. },
  8789. "require": {
  8790. "ext-dom": "*",
  8791. "ext-phar": "*",
  8792. "ext-xmlwriter": "*",
  8793. "phar-io/version": "^3.0.1",
  8794. "php": "^7.2 || ^8.0"
  8795. },
  8796. "type": "library",
  8797. "extra": {
  8798. "branch-alias": {
  8799. "dev-master": "2.0.x-dev"
  8800. }
  8801. },
  8802. "autoload": {
  8803. "classmap": [
  8804. "src/"
  8805. ]
  8806. },
  8807. "notification-url": "https://packagist.org/downloads/",
  8808. "license": [
  8809. "BSD-3-Clause"
  8810. ],
  8811. "authors": [
  8812. {
  8813. "name": "Arne Blankerts",
  8814. "email": "arne@blankerts.de",
  8815. "role": "Developer"
  8816. },
  8817. {
  8818. "name": "Sebastian Heuer",
  8819. "email": "sebastian@phpeople.de",
  8820. "role": "Developer"
  8821. },
  8822. {
  8823. "name": "Sebastian Bergmann",
  8824. "email": "sebastian@phpunit.de",
  8825. "role": "Developer"
  8826. }
  8827. ],
  8828. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8829. "support": {
  8830. "issues": "https://github.com/phar-io/manifest/issues",
  8831. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8832. },
  8833. "time": "2021-07-20T11:28:43+00:00"
  8834. },
  8835. {
  8836. "name": "phar-io/version",
  8837. "version": "3.2.1",
  8838. "source": {
  8839. "type": "git",
  8840. "url": "https://github.com/phar-io/version.git",
  8841. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8842. },
  8843. "dist": {
  8844. "type": "zip",
  8845. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8846. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8847. "shasum": "",
  8848. "mirrors": [
  8849. {
  8850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8851. "preferred": true
  8852. }
  8853. ]
  8854. },
  8855. "require": {
  8856. "php": "^7.2 || ^8.0"
  8857. },
  8858. "type": "library",
  8859. "autoload": {
  8860. "classmap": [
  8861. "src/"
  8862. ]
  8863. },
  8864. "notification-url": "https://packagist.org/downloads/",
  8865. "license": [
  8866. "BSD-3-Clause"
  8867. ],
  8868. "authors": [
  8869. {
  8870. "name": "Arne Blankerts",
  8871. "email": "arne@blankerts.de",
  8872. "role": "Developer"
  8873. },
  8874. {
  8875. "name": "Sebastian Heuer",
  8876. "email": "sebastian@phpeople.de",
  8877. "role": "Developer"
  8878. },
  8879. {
  8880. "name": "Sebastian Bergmann",
  8881. "email": "sebastian@phpunit.de",
  8882. "role": "Developer"
  8883. }
  8884. ],
  8885. "description": "Library for handling version information and constraints",
  8886. "support": {
  8887. "issues": "https://github.com/phar-io/version/issues",
  8888. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8889. },
  8890. "time": "2022-02-21T01:04:05+00:00"
  8891. },
  8892. {
  8893. "name": "phpdocumentor/reflection-common",
  8894. "version": "2.2.0",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8898. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8903. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8904. "shasum": "",
  8905. "mirrors": [
  8906. {
  8907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8908. "preferred": true
  8909. }
  8910. ]
  8911. },
  8912. "require": {
  8913. "php": "^7.2 || ^8.0"
  8914. },
  8915. "type": "library",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-2.x": "2.x-dev"
  8919. }
  8920. },
  8921. "autoload": {
  8922. "psr-4": {
  8923. "phpDocumentor\\Reflection\\": "src/"
  8924. }
  8925. },
  8926. "notification-url": "https://packagist.org/downloads/",
  8927. "license": [
  8928. "MIT"
  8929. ],
  8930. "authors": [
  8931. {
  8932. "name": "Jaap van Otterdijk",
  8933. "email": "opensource@ijaap.nl"
  8934. }
  8935. ],
  8936. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8937. "homepage": "http://www.phpdoc.org",
  8938. "keywords": [
  8939. "FQSEN",
  8940. "phpDocumentor",
  8941. "phpdoc",
  8942. "reflection",
  8943. "static analysis"
  8944. ],
  8945. "support": {
  8946. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8947. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8948. },
  8949. "time": "2020-06-27T09:03:43+00:00"
  8950. },
  8951. {
  8952. "name": "phpdocumentor/type-resolver",
  8953. "version": "1.7.1",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8957. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  8962. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  8963. "shasum": "",
  8964. "mirrors": [
  8965. {
  8966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8967. "preferred": true
  8968. }
  8969. ]
  8970. },
  8971. "require": {
  8972. "doctrine/deprecations": "^1.0",
  8973. "php": "^7.4 || ^8.0",
  8974. "phpdocumentor/reflection-common": "^2.0",
  8975. "phpstan/phpdoc-parser": "^1.13"
  8976. },
  8977. "require-dev": {
  8978. "ext-tokenizer": "*",
  8979. "phpbench/phpbench": "^1.2",
  8980. "phpstan/extension-installer": "^1.1",
  8981. "phpstan/phpstan": "^1.8",
  8982. "phpstan/phpstan-phpunit": "^1.1",
  8983. "phpunit/phpunit": "^9.5",
  8984. "rector/rector": "^0.13.9",
  8985. "vimeo/psalm": "^4.25"
  8986. },
  8987. "type": "library",
  8988. "extra": {
  8989. "branch-alias": {
  8990. "dev-1.x": "1.x-dev"
  8991. }
  8992. },
  8993. "autoload": {
  8994. "psr-4": {
  8995. "phpDocumentor\\Reflection\\": "src"
  8996. }
  8997. },
  8998. "notification-url": "https://packagist.org/downloads/",
  8999. "license": [
  9000. "MIT"
  9001. ],
  9002. "authors": [
  9003. {
  9004. "name": "Mike van Riel",
  9005. "email": "me@mikevanriel.com"
  9006. }
  9007. ],
  9008. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9009. "support": {
  9010. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9011. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  9012. },
  9013. "time": "2023-03-27T19:02:04+00:00"
  9014. },
  9015. {
  9016. "name": "phpstan/phpdoc-parser",
  9017. "version": "1.20.0",
  9018. "source": {
  9019. "type": "git",
  9020. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9021. "reference": "10553ab3f0337ff1a71433c3417d7eb2a3eec1fd"
  9022. },
  9023. "dist": {
  9024. "type": "zip",
  9025. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/10553ab3f0337ff1a71433c3417d7eb2a3eec1fd",
  9026. "reference": "10553ab3f0337ff1a71433c3417d7eb2a3eec1fd",
  9027. "shasum": "",
  9028. "mirrors": [
  9029. {
  9030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9031. "preferred": true
  9032. }
  9033. ]
  9034. },
  9035. "require": {
  9036. "php": "^7.2 || ^8.0"
  9037. },
  9038. "require-dev": {
  9039. "php-parallel-lint/php-parallel-lint": "^1.2",
  9040. "phpstan/extension-installer": "^1.0",
  9041. "phpstan/phpstan": "^1.5",
  9042. "phpstan/phpstan-phpunit": "^1.1",
  9043. "phpstan/phpstan-strict-rules": "^1.0",
  9044. "phpunit/phpunit": "^9.5",
  9045. "symfony/process": "^5.2"
  9046. },
  9047. "type": "library",
  9048. "autoload": {
  9049. "psr-4": {
  9050. "PHPStan\\PhpDocParser\\": [
  9051. "src/"
  9052. ]
  9053. }
  9054. },
  9055. "notification-url": "https://packagist.org/downloads/",
  9056. "license": [
  9057. "MIT"
  9058. ],
  9059. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9060. "support": {
  9061. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9062. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.0"
  9063. },
  9064. "time": "2023-04-20T11:18:07+00:00"
  9065. },
  9066. {
  9067. "name": "phpunit/php-code-coverage",
  9068. "version": "9.2.26",
  9069. "source": {
  9070. "type": "git",
  9071. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9072. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9073. },
  9074. "dist": {
  9075. "type": "zip",
  9076. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9077. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9078. "shasum": "",
  9079. "mirrors": [
  9080. {
  9081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9082. "preferred": true
  9083. }
  9084. ]
  9085. },
  9086. "require": {
  9087. "ext-dom": "*",
  9088. "ext-libxml": "*",
  9089. "ext-xmlwriter": "*",
  9090. "nikic/php-parser": "^4.15",
  9091. "php": ">=7.3",
  9092. "phpunit/php-file-iterator": "^3.0.3",
  9093. "phpunit/php-text-template": "^2.0.2",
  9094. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9095. "sebastian/complexity": "^2.0",
  9096. "sebastian/environment": "^5.1.2",
  9097. "sebastian/lines-of-code": "^1.0.3",
  9098. "sebastian/version": "^3.0.1",
  9099. "theseer/tokenizer": "^1.2.0"
  9100. },
  9101. "require-dev": {
  9102. "phpunit/phpunit": "^9.3"
  9103. },
  9104. "suggest": {
  9105. "ext-pcov": "PHP extension that provides line coverage",
  9106. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-master": "9.2-dev"
  9112. }
  9113. },
  9114. "autoload": {
  9115. "classmap": [
  9116. "src/"
  9117. ]
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "BSD-3-Clause"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Sebastian Bergmann",
  9126. "email": "sebastian@phpunit.de",
  9127. "role": "lead"
  9128. }
  9129. ],
  9130. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9131. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9132. "keywords": [
  9133. "coverage",
  9134. "testing",
  9135. "xunit"
  9136. ],
  9137. "support": {
  9138. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9139. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9140. },
  9141. "funding": [
  9142. {
  9143. "url": "https://github.com/sebastianbergmann",
  9144. "type": "github"
  9145. }
  9146. ],
  9147. "time": "2023-03-06T12:58:08+00:00"
  9148. },
  9149. {
  9150. "name": "phpunit/php-file-iterator",
  9151. "version": "3.0.6",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9155. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9160. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9161. "shasum": "",
  9162. "mirrors": [
  9163. {
  9164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9165. "preferred": true
  9166. }
  9167. ]
  9168. },
  9169. "require": {
  9170. "php": ">=7.3"
  9171. },
  9172. "require-dev": {
  9173. "phpunit/phpunit": "^9.3"
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-master": "3.0-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "classmap": [
  9183. "src/"
  9184. ]
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "BSD-3-Clause"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Sebastian Bergmann",
  9193. "email": "sebastian@phpunit.de",
  9194. "role": "lead"
  9195. }
  9196. ],
  9197. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9198. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9199. "keywords": [
  9200. "filesystem",
  9201. "iterator"
  9202. ],
  9203. "support": {
  9204. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9205. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9206. },
  9207. "funding": [
  9208. {
  9209. "url": "https://github.com/sebastianbergmann",
  9210. "type": "github"
  9211. }
  9212. ],
  9213. "time": "2021-12-02T12:48:52+00:00"
  9214. },
  9215. {
  9216. "name": "phpunit/php-invoker",
  9217. "version": "3.1.1",
  9218. "source": {
  9219. "type": "git",
  9220. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9221. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9222. },
  9223. "dist": {
  9224. "type": "zip",
  9225. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9226. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9227. "shasum": "",
  9228. "mirrors": [
  9229. {
  9230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9231. "preferred": true
  9232. }
  9233. ]
  9234. },
  9235. "require": {
  9236. "php": ">=7.3"
  9237. },
  9238. "require-dev": {
  9239. "ext-pcntl": "*",
  9240. "phpunit/phpunit": "^9.3"
  9241. },
  9242. "suggest": {
  9243. "ext-pcntl": "*"
  9244. },
  9245. "type": "library",
  9246. "extra": {
  9247. "branch-alias": {
  9248. "dev-master": "3.1-dev"
  9249. }
  9250. },
  9251. "autoload": {
  9252. "classmap": [
  9253. "src/"
  9254. ]
  9255. },
  9256. "notification-url": "https://packagist.org/downloads/",
  9257. "license": [
  9258. "BSD-3-Clause"
  9259. ],
  9260. "authors": [
  9261. {
  9262. "name": "Sebastian Bergmann",
  9263. "email": "sebastian@phpunit.de",
  9264. "role": "lead"
  9265. }
  9266. ],
  9267. "description": "Invoke callables with a timeout",
  9268. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9269. "keywords": [
  9270. "process"
  9271. ],
  9272. "support": {
  9273. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9274. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9275. },
  9276. "funding": [
  9277. {
  9278. "url": "https://github.com/sebastianbergmann",
  9279. "type": "github"
  9280. }
  9281. ],
  9282. "time": "2020-09-28T05:58:55+00:00"
  9283. },
  9284. {
  9285. "name": "phpunit/php-text-template",
  9286. "version": "2.0.4",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9290. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9295. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  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. "phpunit/phpunit": "^9.3"
  9309. },
  9310. "type": "library",
  9311. "extra": {
  9312. "branch-alias": {
  9313. "dev-master": "2.0-dev"
  9314. }
  9315. },
  9316. "autoload": {
  9317. "classmap": [
  9318. "src/"
  9319. ]
  9320. },
  9321. "notification-url": "https://packagist.org/downloads/",
  9322. "license": [
  9323. "BSD-3-Clause"
  9324. ],
  9325. "authors": [
  9326. {
  9327. "name": "Sebastian Bergmann",
  9328. "email": "sebastian@phpunit.de",
  9329. "role": "lead"
  9330. }
  9331. ],
  9332. "description": "Simple template engine.",
  9333. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9334. "keywords": [
  9335. "template"
  9336. ],
  9337. "support": {
  9338. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9339. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9340. },
  9341. "funding": [
  9342. {
  9343. "url": "https://github.com/sebastianbergmann",
  9344. "type": "github"
  9345. }
  9346. ],
  9347. "time": "2020-10-26T05:33:50+00:00"
  9348. },
  9349. {
  9350. "name": "phpunit/php-timer",
  9351. "version": "5.0.3",
  9352. "source": {
  9353. "type": "git",
  9354. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9355. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9356. },
  9357. "dist": {
  9358. "type": "zip",
  9359. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9360. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9361. "shasum": "",
  9362. "mirrors": [
  9363. {
  9364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9365. "preferred": true
  9366. }
  9367. ]
  9368. },
  9369. "require": {
  9370. "php": ">=7.3"
  9371. },
  9372. "require-dev": {
  9373. "phpunit/phpunit": "^9.3"
  9374. },
  9375. "type": "library",
  9376. "extra": {
  9377. "branch-alias": {
  9378. "dev-master": "5.0-dev"
  9379. }
  9380. },
  9381. "autoload": {
  9382. "classmap": [
  9383. "src/"
  9384. ]
  9385. },
  9386. "notification-url": "https://packagist.org/downloads/",
  9387. "license": [
  9388. "BSD-3-Clause"
  9389. ],
  9390. "authors": [
  9391. {
  9392. "name": "Sebastian Bergmann",
  9393. "email": "sebastian@phpunit.de",
  9394. "role": "lead"
  9395. }
  9396. ],
  9397. "description": "Utility class for timing",
  9398. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9399. "keywords": [
  9400. "timer"
  9401. ],
  9402. "support": {
  9403. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9404. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9405. },
  9406. "funding": [
  9407. {
  9408. "url": "https://github.com/sebastianbergmann",
  9409. "type": "github"
  9410. }
  9411. ],
  9412. "time": "2020-10-26T13:16:10+00:00"
  9413. },
  9414. {
  9415. "name": "phpunit/phpunit",
  9416. "version": "9.6.7",
  9417. "source": {
  9418. "type": "git",
  9419. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9420. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
  9421. },
  9422. "dist": {
  9423. "type": "zip",
  9424. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9425. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9426. "shasum": "",
  9427. "mirrors": [
  9428. {
  9429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9430. "preferred": true
  9431. }
  9432. ]
  9433. },
  9434. "require": {
  9435. "doctrine/instantiator": "^1.3.1 || ^2",
  9436. "ext-dom": "*",
  9437. "ext-json": "*",
  9438. "ext-libxml": "*",
  9439. "ext-mbstring": "*",
  9440. "ext-xml": "*",
  9441. "ext-xmlwriter": "*",
  9442. "myclabs/deep-copy": "^1.10.1",
  9443. "phar-io/manifest": "^2.0.3",
  9444. "phar-io/version": "^3.0.2",
  9445. "php": ">=7.3",
  9446. "phpunit/php-code-coverage": "^9.2.13",
  9447. "phpunit/php-file-iterator": "^3.0.5",
  9448. "phpunit/php-invoker": "^3.1.1",
  9449. "phpunit/php-text-template": "^2.0.3",
  9450. "phpunit/php-timer": "^5.0.2",
  9451. "sebastian/cli-parser": "^1.0.1",
  9452. "sebastian/code-unit": "^1.0.6",
  9453. "sebastian/comparator": "^4.0.8",
  9454. "sebastian/diff": "^4.0.3",
  9455. "sebastian/environment": "^5.1.3",
  9456. "sebastian/exporter": "^4.0.5",
  9457. "sebastian/global-state": "^5.0.1",
  9458. "sebastian/object-enumerator": "^4.0.3",
  9459. "sebastian/resource-operations": "^3.0.3",
  9460. "sebastian/type": "^3.2",
  9461. "sebastian/version": "^3.0.2"
  9462. },
  9463. "suggest": {
  9464. "ext-soap": "To be able to generate mocks based on WSDL files",
  9465. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9466. },
  9467. "bin": [
  9468. "phpunit"
  9469. ],
  9470. "type": "library",
  9471. "extra": {
  9472. "branch-alias": {
  9473. "dev-master": "9.6-dev"
  9474. }
  9475. },
  9476. "autoload": {
  9477. "files": [
  9478. "src/Framework/Assert/Functions.php"
  9479. ],
  9480. "classmap": [
  9481. "src/"
  9482. ]
  9483. },
  9484. "notification-url": "https://packagist.org/downloads/",
  9485. "license": [
  9486. "BSD-3-Clause"
  9487. ],
  9488. "authors": [
  9489. {
  9490. "name": "Sebastian Bergmann",
  9491. "email": "sebastian@phpunit.de",
  9492. "role": "lead"
  9493. }
  9494. ],
  9495. "description": "The PHP Unit Testing framework.",
  9496. "homepage": "https://phpunit.de/",
  9497. "keywords": [
  9498. "phpunit",
  9499. "testing",
  9500. "xunit"
  9501. ],
  9502. "support": {
  9503. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9504. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9505. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
  9506. },
  9507. "funding": [
  9508. {
  9509. "url": "https://phpunit.de/sponsors.html",
  9510. "type": "custom"
  9511. },
  9512. {
  9513. "url": "https://github.com/sebastianbergmann",
  9514. "type": "github"
  9515. },
  9516. {
  9517. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9518. "type": "tidelift"
  9519. }
  9520. ],
  9521. "time": "2023-04-14T08:58:40+00:00"
  9522. },
  9523. {
  9524. "name": "sebastian/cli-parser",
  9525. "version": "1.0.1",
  9526. "source": {
  9527. "type": "git",
  9528. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9529. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9530. },
  9531. "dist": {
  9532. "type": "zip",
  9533. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9534. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9535. "shasum": "",
  9536. "mirrors": [
  9537. {
  9538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9539. "preferred": true
  9540. }
  9541. ]
  9542. },
  9543. "require": {
  9544. "php": ">=7.3"
  9545. },
  9546. "require-dev": {
  9547. "phpunit/phpunit": "^9.3"
  9548. },
  9549. "type": "library",
  9550. "extra": {
  9551. "branch-alias": {
  9552. "dev-master": "1.0-dev"
  9553. }
  9554. },
  9555. "autoload": {
  9556. "classmap": [
  9557. "src/"
  9558. ]
  9559. },
  9560. "notification-url": "https://packagist.org/downloads/",
  9561. "license": [
  9562. "BSD-3-Clause"
  9563. ],
  9564. "authors": [
  9565. {
  9566. "name": "Sebastian Bergmann",
  9567. "email": "sebastian@phpunit.de",
  9568. "role": "lead"
  9569. }
  9570. ],
  9571. "description": "Library for parsing CLI options",
  9572. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9573. "support": {
  9574. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9575. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9576. },
  9577. "funding": [
  9578. {
  9579. "url": "https://github.com/sebastianbergmann",
  9580. "type": "github"
  9581. }
  9582. ],
  9583. "time": "2020-09-28T06:08:49+00:00"
  9584. },
  9585. {
  9586. "name": "sebastian/code-unit",
  9587. "version": "1.0.8",
  9588. "source": {
  9589. "type": "git",
  9590. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9591. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9592. },
  9593. "dist": {
  9594. "type": "zip",
  9595. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9596. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9597. "shasum": "",
  9598. "mirrors": [
  9599. {
  9600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9601. "preferred": true
  9602. }
  9603. ]
  9604. },
  9605. "require": {
  9606. "php": ">=7.3"
  9607. },
  9608. "require-dev": {
  9609. "phpunit/phpunit": "^9.3"
  9610. },
  9611. "type": "library",
  9612. "extra": {
  9613. "branch-alias": {
  9614. "dev-master": "1.0-dev"
  9615. }
  9616. },
  9617. "autoload": {
  9618. "classmap": [
  9619. "src/"
  9620. ]
  9621. },
  9622. "notification-url": "https://packagist.org/downloads/",
  9623. "license": [
  9624. "BSD-3-Clause"
  9625. ],
  9626. "authors": [
  9627. {
  9628. "name": "Sebastian Bergmann",
  9629. "email": "sebastian@phpunit.de",
  9630. "role": "lead"
  9631. }
  9632. ],
  9633. "description": "Collection of value objects that represent the PHP code units",
  9634. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9635. "support": {
  9636. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9637. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9638. },
  9639. "funding": [
  9640. {
  9641. "url": "https://github.com/sebastianbergmann",
  9642. "type": "github"
  9643. }
  9644. ],
  9645. "time": "2020-10-26T13:08:54+00:00"
  9646. },
  9647. {
  9648. "name": "sebastian/code-unit-reverse-lookup",
  9649. "version": "2.0.3",
  9650. "source": {
  9651. "type": "git",
  9652. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9653. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9654. },
  9655. "dist": {
  9656. "type": "zip",
  9657. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9658. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9659. "shasum": "",
  9660. "mirrors": [
  9661. {
  9662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9663. "preferred": true
  9664. }
  9665. ]
  9666. },
  9667. "require": {
  9668. "php": ">=7.3"
  9669. },
  9670. "require-dev": {
  9671. "phpunit/phpunit": "^9.3"
  9672. },
  9673. "type": "library",
  9674. "extra": {
  9675. "branch-alias": {
  9676. "dev-master": "2.0-dev"
  9677. }
  9678. },
  9679. "autoload": {
  9680. "classmap": [
  9681. "src/"
  9682. ]
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "BSD-3-Clause"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Sebastian Bergmann",
  9691. "email": "sebastian@phpunit.de"
  9692. }
  9693. ],
  9694. "description": "Looks up which function or method a line of code belongs to",
  9695. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9696. "support": {
  9697. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9698. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9699. },
  9700. "funding": [
  9701. {
  9702. "url": "https://github.com/sebastianbergmann",
  9703. "type": "github"
  9704. }
  9705. ],
  9706. "time": "2020-09-28T05:30:19+00:00"
  9707. },
  9708. {
  9709. "name": "sebastian/comparator",
  9710. "version": "4.0.8",
  9711. "source": {
  9712. "type": "git",
  9713. "url": "https://github.com/sebastianbergmann/comparator.git",
  9714. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9715. },
  9716. "dist": {
  9717. "type": "zip",
  9718. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9719. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9720. "shasum": "",
  9721. "mirrors": [
  9722. {
  9723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9724. "preferred": true
  9725. }
  9726. ]
  9727. },
  9728. "require": {
  9729. "php": ">=7.3",
  9730. "sebastian/diff": "^4.0",
  9731. "sebastian/exporter": "^4.0"
  9732. },
  9733. "require-dev": {
  9734. "phpunit/phpunit": "^9.3"
  9735. },
  9736. "type": "library",
  9737. "extra": {
  9738. "branch-alias": {
  9739. "dev-master": "4.0-dev"
  9740. }
  9741. },
  9742. "autoload": {
  9743. "classmap": [
  9744. "src/"
  9745. ]
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "BSD-3-Clause"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Sebastian Bergmann",
  9754. "email": "sebastian@phpunit.de"
  9755. },
  9756. {
  9757. "name": "Jeff Welch",
  9758. "email": "whatthejeff@gmail.com"
  9759. },
  9760. {
  9761. "name": "Volker Dusch",
  9762. "email": "github@wallbash.com"
  9763. },
  9764. {
  9765. "name": "Bernhard Schussek",
  9766. "email": "bschussek@2bepublished.at"
  9767. }
  9768. ],
  9769. "description": "Provides the functionality to compare PHP values for equality",
  9770. "homepage": "https://github.com/sebastianbergmann/comparator",
  9771. "keywords": [
  9772. "comparator",
  9773. "compare",
  9774. "equality"
  9775. ],
  9776. "support": {
  9777. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9778. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9779. },
  9780. "funding": [
  9781. {
  9782. "url": "https://github.com/sebastianbergmann",
  9783. "type": "github"
  9784. }
  9785. ],
  9786. "time": "2022-09-14T12:41:17+00:00"
  9787. },
  9788. {
  9789. "name": "sebastian/complexity",
  9790. "version": "2.0.2",
  9791. "source": {
  9792. "type": "git",
  9793. "url": "https://github.com/sebastianbergmann/complexity.git",
  9794. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9795. },
  9796. "dist": {
  9797. "type": "zip",
  9798. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9799. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9800. "shasum": "",
  9801. "mirrors": [
  9802. {
  9803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9804. "preferred": true
  9805. }
  9806. ]
  9807. },
  9808. "require": {
  9809. "nikic/php-parser": "^4.7",
  9810. "php": ">=7.3"
  9811. },
  9812. "require-dev": {
  9813. "phpunit/phpunit": "^9.3"
  9814. },
  9815. "type": "library",
  9816. "extra": {
  9817. "branch-alias": {
  9818. "dev-master": "2.0-dev"
  9819. }
  9820. },
  9821. "autoload": {
  9822. "classmap": [
  9823. "src/"
  9824. ]
  9825. },
  9826. "notification-url": "https://packagist.org/downloads/",
  9827. "license": [
  9828. "BSD-3-Clause"
  9829. ],
  9830. "authors": [
  9831. {
  9832. "name": "Sebastian Bergmann",
  9833. "email": "sebastian@phpunit.de",
  9834. "role": "lead"
  9835. }
  9836. ],
  9837. "description": "Library for calculating the complexity of PHP code units",
  9838. "homepage": "https://github.com/sebastianbergmann/complexity",
  9839. "support": {
  9840. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9841. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9842. },
  9843. "funding": [
  9844. {
  9845. "url": "https://github.com/sebastianbergmann",
  9846. "type": "github"
  9847. }
  9848. ],
  9849. "time": "2020-10-26T15:52:27+00:00"
  9850. },
  9851. {
  9852. "name": "sebastian/diff",
  9853. "version": "4.0.4",
  9854. "source": {
  9855. "type": "git",
  9856. "url": "https://github.com/sebastianbergmann/diff.git",
  9857. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9858. },
  9859. "dist": {
  9860. "type": "zip",
  9861. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9862. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9863. "shasum": "",
  9864. "mirrors": [
  9865. {
  9866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9867. "preferred": true
  9868. }
  9869. ]
  9870. },
  9871. "require": {
  9872. "php": ">=7.3"
  9873. },
  9874. "require-dev": {
  9875. "phpunit/phpunit": "^9.3",
  9876. "symfony/process": "^4.2 || ^5"
  9877. },
  9878. "type": "library",
  9879. "extra": {
  9880. "branch-alias": {
  9881. "dev-master": "4.0-dev"
  9882. }
  9883. },
  9884. "autoload": {
  9885. "classmap": [
  9886. "src/"
  9887. ]
  9888. },
  9889. "notification-url": "https://packagist.org/downloads/",
  9890. "license": [
  9891. "BSD-3-Clause"
  9892. ],
  9893. "authors": [
  9894. {
  9895. "name": "Sebastian Bergmann",
  9896. "email": "sebastian@phpunit.de"
  9897. },
  9898. {
  9899. "name": "Kore Nordmann",
  9900. "email": "mail@kore-nordmann.de"
  9901. }
  9902. ],
  9903. "description": "Diff implementation",
  9904. "homepage": "https://github.com/sebastianbergmann/diff",
  9905. "keywords": [
  9906. "diff",
  9907. "udiff",
  9908. "unidiff",
  9909. "unified diff"
  9910. ],
  9911. "support": {
  9912. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9913. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9914. },
  9915. "funding": [
  9916. {
  9917. "url": "https://github.com/sebastianbergmann",
  9918. "type": "github"
  9919. }
  9920. ],
  9921. "time": "2020-10-26T13:10:38+00:00"
  9922. },
  9923. {
  9924. "name": "sebastian/environment",
  9925. "version": "5.1.5",
  9926. "source": {
  9927. "type": "git",
  9928. "url": "https://github.com/sebastianbergmann/environment.git",
  9929. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9930. },
  9931. "dist": {
  9932. "type": "zip",
  9933. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9934. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9935. "shasum": "",
  9936. "mirrors": [
  9937. {
  9938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9939. "preferred": true
  9940. }
  9941. ]
  9942. },
  9943. "require": {
  9944. "php": ">=7.3"
  9945. },
  9946. "require-dev": {
  9947. "phpunit/phpunit": "^9.3"
  9948. },
  9949. "suggest": {
  9950. "ext-posix": "*"
  9951. },
  9952. "type": "library",
  9953. "extra": {
  9954. "branch-alias": {
  9955. "dev-master": "5.1-dev"
  9956. }
  9957. },
  9958. "autoload": {
  9959. "classmap": [
  9960. "src/"
  9961. ]
  9962. },
  9963. "notification-url": "https://packagist.org/downloads/",
  9964. "license": [
  9965. "BSD-3-Clause"
  9966. ],
  9967. "authors": [
  9968. {
  9969. "name": "Sebastian Bergmann",
  9970. "email": "sebastian@phpunit.de"
  9971. }
  9972. ],
  9973. "description": "Provides functionality to handle HHVM/PHP environments",
  9974. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9975. "keywords": [
  9976. "Xdebug",
  9977. "environment",
  9978. "hhvm"
  9979. ],
  9980. "support": {
  9981. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9982. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9983. },
  9984. "funding": [
  9985. {
  9986. "url": "https://github.com/sebastianbergmann",
  9987. "type": "github"
  9988. }
  9989. ],
  9990. "time": "2023-02-03T06:03:51+00:00"
  9991. },
  9992. {
  9993. "name": "sebastian/exporter",
  9994. "version": "4.0.5",
  9995. "source": {
  9996. "type": "git",
  9997. "url": "https://github.com/sebastianbergmann/exporter.git",
  9998. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9999. },
  10000. "dist": {
  10001. "type": "zip",
  10002. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10003. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  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. "sebastian/recursion-context": "^4.0"
  10015. },
  10016. "require-dev": {
  10017. "ext-mbstring": "*",
  10018. "phpunit/phpunit": "^9.3"
  10019. },
  10020. "type": "library",
  10021. "extra": {
  10022. "branch-alias": {
  10023. "dev-master": "4.0-dev"
  10024. }
  10025. },
  10026. "autoload": {
  10027. "classmap": [
  10028. "src/"
  10029. ]
  10030. },
  10031. "notification-url": "https://packagist.org/downloads/",
  10032. "license": [
  10033. "BSD-3-Clause"
  10034. ],
  10035. "authors": [
  10036. {
  10037. "name": "Sebastian Bergmann",
  10038. "email": "sebastian@phpunit.de"
  10039. },
  10040. {
  10041. "name": "Jeff Welch",
  10042. "email": "whatthejeff@gmail.com"
  10043. },
  10044. {
  10045. "name": "Volker Dusch",
  10046. "email": "github@wallbash.com"
  10047. },
  10048. {
  10049. "name": "Adam Harvey",
  10050. "email": "aharvey@php.net"
  10051. },
  10052. {
  10053. "name": "Bernhard Schussek",
  10054. "email": "bschussek@gmail.com"
  10055. }
  10056. ],
  10057. "description": "Provides the functionality to export PHP variables for visualization",
  10058. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10059. "keywords": [
  10060. "export",
  10061. "exporter"
  10062. ],
  10063. "support": {
  10064. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10065. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10066. },
  10067. "funding": [
  10068. {
  10069. "url": "https://github.com/sebastianbergmann",
  10070. "type": "github"
  10071. }
  10072. ],
  10073. "time": "2022-09-14T06:03:37+00:00"
  10074. },
  10075. {
  10076. "name": "sebastian/global-state",
  10077. "version": "5.0.5",
  10078. "source": {
  10079. "type": "git",
  10080. "url": "https://github.com/sebastianbergmann/global-state.git",
  10081. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10082. },
  10083. "dist": {
  10084. "type": "zip",
  10085. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10086. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10087. "shasum": "",
  10088. "mirrors": [
  10089. {
  10090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10091. "preferred": true
  10092. }
  10093. ]
  10094. },
  10095. "require": {
  10096. "php": ">=7.3",
  10097. "sebastian/object-reflector": "^2.0",
  10098. "sebastian/recursion-context": "^4.0"
  10099. },
  10100. "require-dev": {
  10101. "ext-dom": "*",
  10102. "phpunit/phpunit": "^9.3"
  10103. },
  10104. "suggest": {
  10105. "ext-uopz": "*"
  10106. },
  10107. "type": "library",
  10108. "extra": {
  10109. "branch-alias": {
  10110. "dev-master": "5.0-dev"
  10111. }
  10112. },
  10113. "autoload": {
  10114. "classmap": [
  10115. "src/"
  10116. ]
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "BSD-3-Clause"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Sebastian Bergmann",
  10125. "email": "sebastian@phpunit.de"
  10126. }
  10127. ],
  10128. "description": "Snapshotting of global state",
  10129. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10130. "keywords": [
  10131. "global state"
  10132. ],
  10133. "support": {
  10134. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10135. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://github.com/sebastianbergmann",
  10140. "type": "github"
  10141. }
  10142. ],
  10143. "time": "2022-02-14T08:28:10+00:00"
  10144. },
  10145. {
  10146. "name": "sebastian/lines-of-code",
  10147. "version": "1.0.3",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10151. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10156. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10157. "shasum": "",
  10158. "mirrors": [
  10159. {
  10160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10161. "preferred": true
  10162. }
  10163. ]
  10164. },
  10165. "require": {
  10166. "nikic/php-parser": "^4.6",
  10167. "php": ">=7.3"
  10168. },
  10169. "require-dev": {
  10170. "phpunit/phpunit": "^9.3"
  10171. },
  10172. "type": "library",
  10173. "extra": {
  10174. "branch-alias": {
  10175. "dev-master": "1.0-dev"
  10176. }
  10177. },
  10178. "autoload": {
  10179. "classmap": [
  10180. "src/"
  10181. ]
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "BSD-3-Clause"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Sebastian Bergmann",
  10190. "email": "sebastian@phpunit.de",
  10191. "role": "lead"
  10192. }
  10193. ],
  10194. "description": "Library for counting the lines of code in PHP source code",
  10195. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10196. "support": {
  10197. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10198. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10199. },
  10200. "funding": [
  10201. {
  10202. "url": "https://github.com/sebastianbergmann",
  10203. "type": "github"
  10204. }
  10205. ],
  10206. "time": "2020-11-28T06:42:11+00:00"
  10207. },
  10208. {
  10209. "name": "sebastian/object-enumerator",
  10210. "version": "4.0.4",
  10211. "source": {
  10212. "type": "git",
  10213. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10214. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10215. },
  10216. "dist": {
  10217. "type": "zip",
  10218. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10219. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10220. "shasum": "",
  10221. "mirrors": [
  10222. {
  10223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10224. "preferred": true
  10225. }
  10226. ]
  10227. },
  10228. "require": {
  10229. "php": ">=7.3",
  10230. "sebastian/object-reflector": "^2.0",
  10231. "sebastian/recursion-context": "^4.0"
  10232. },
  10233. "require-dev": {
  10234. "phpunit/phpunit": "^9.3"
  10235. },
  10236. "type": "library",
  10237. "extra": {
  10238. "branch-alias": {
  10239. "dev-master": "4.0-dev"
  10240. }
  10241. },
  10242. "autoload": {
  10243. "classmap": [
  10244. "src/"
  10245. ]
  10246. },
  10247. "notification-url": "https://packagist.org/downloads/",
  10248. "license": [
  10249. "BSD-3-Clause"
  10250. ],
  10251. "authors": [
  10252. {
  10253. "name": "Sebastian Bergmann",
  10254. "email": "sebastian@phpunit.de"
  10255. }
  10256. ],
  10257. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10258. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10261. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://github.com/sebastianbergmann",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2020-10-26T13:12:34+00:00"
  10270. },
  10271. {
  10272. "name": "sebastian/object-reflector",
  10273. "version": "2.0.4",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10277. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10282. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10283. "shasum": "",
  10284. "mirrors": [
  10285. {
  10286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10287. "preferred": true
  10288. }
  10289. ]
  10290. },
  10291. "require": {
  10292. "php": ">=7.3"
  10293. },
  10294. "require-dev": {
  10295. "phpunit/phpunit": "^9.3"
  10296. },
  10297. "type": "library",
  10298. "extra": {
  10299. "branch-alias": {
  10300. "dev-master": "2.0-dev"
  10301. }
  10302. },
  10303. "autoload": {
  10304. "classmap": [
  10305. "src/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "BSD-3-Clause"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Sebastian Bergmann",
  10315. "email": "sebastian@phpunit.de"
  10316. }
  10317. ],
  10318. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10319. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10320. "support": {
  10321. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10322. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10323. },
  10324. "funding": [
  10325. {
  10326. "url": "https://github.com/sebastianbergmann",
  10327. "type": "github"
  10328. }
  10329. ],
  10330. "time": "2020-10-26T13:14:26+00:00"
  10331. },
  10332. {
  10333. "name": "sebastian/recursion-context",
  10334. "version": "4.0.5",
  10335. "source": {
  10336. "type": "git",
  10337. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10338. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10339. },
  10340. "dist": {
  10341. "type": "zip",
  10342. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10343. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10344. "shasum": "",
  10345. "mirrors": [
  10346. {
  10347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10348. "preferred": true
  10349. }
  10350. ]
  10351. },
  10352. "require": {
  10353. "php": ">=7.3"
  10354. },
  10355. "require-dev": {
  10356. "phpunit/phpunit": "^9.3"
  10357. },
  10358. "type": "library",
  10359. "extra": {
  10360. "branch-alias": {
  10361. "dev-master": "4.0-dev"
  10362. }
  10363. },
  10364. "autoload": {
  10365. "classmap": [
  10366. "src/"
  10367. ]
  10368. },
  10369. "notification-url": "https://packagist.org/downloads/",
  10370. "license": [
  10371. "BSD-3-Clause"
  10372. ],
  10373. "authors": [
  10374. {
  10375. "name": "Sebastian Bergmann",
  10376. "email": "sebastian@phpunit.de"
  10377. },
  10378. {
  10379. "name": "Jeff Welch",
  10380. "email": "whatthejeff@gmail.com"
  10381. },
  10382. {
  10383. "name": "Adam Harvey",
  10384. "email": "aharvey@php.net"
  10385. }
  10386. ],
  10387. "description": "Provides functionality to recursively process PHP variables",
  10388. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10389. "support": {
  10390. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10391. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10392. },
  10393. "funding": [
  10394. {
  10395. "url": "https://github.com/sebastianbergmann",
  10396. "type": "github"
  10397. }
  10398. ],
  10399. "time": "2023-02-03T06:07:39+00:00"
  10400. },
  10401. {
  10402. "name": "sebastian/resource-operations",
  10403. "version": "3.0.3",
  10404. "source": {
  10405. "type": "git",
  10406. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10407. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10408. },
  10409. "dist": {
  10410. "type": "zip",
  10411. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10412. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  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.0"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-master": "3.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. "description": "Provides a list of PHP built-in functions that operate on resources",
  10449. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10450. "support": {
  10451. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10452. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10453. },
  10454. "funding": [
  10455. {
  10456. "url": "https://github.com/sebastianbergmann",
  10457. "type": "github"
  10458. }
  10459. ],
  10460. "time": "2020-09-28T06:45:17+00:00"
  10461. },
  10462. {
  10463. "name": "sebastian/type",
  10464. "version": "3.2.1",
  10465. "source": {
  10466. "type": "git",
  10467. "url": "https://github.com/sebastianbergmann/type.git",
  10468. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10469. },
  10470. "dist": {
  10471. "type": "zip",
  10472. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10473. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10474. "shasum": "",
  10475. "mirrors": [
  10476. {
  10477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10478. "preferred": true
  10479. }
  10480. ]
  10481. },
  10482. "require": {
  10483. "php": ">=7.3"
  10484. },
  10485. "require-dev": {
  10486. "phpunit/phpunit": "^9.5"
  10487. },
  10488. "type": "library",
  10489. "extra": {
  10490. "branch-alias": {
  10491. "dev-master": "3.2-dev"
  10492. }
  10493. },
  10494. "autoload": {
  10495. "classmap": [
  10496. "src/"
  10497. ]
  10498. },
  10499. "notification-url": "https://packagist.org/downloads/",
  10500. "license": [
  10501. "BSD-3-Clause"
  10502. ],
  10503. "authors": [
  10504. {
  10505. "name": "Sebastian Bergmann",
  10506. "email": "sebastian@phpunit.de",
  10507. "role": "lead"
  10508. }
  10509. ],
  10510. "description": "Collection of value objects that represent the types of the PHP type system",
  10511. "homepage": "https://github.com/sebastianbergmann/type",
  10512. "support": {
  10513. "issues": "https://github.com/sebastianbergmann/type/issues",
  10514. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10515. },
  10516. "funding": [
  10517. {
  10518. "url": "https://github.com/sebastianbergmann",
  10519. "type": "github"
  10520. }
  10521. ],
  10522. "time": "2023-02-03T06:13:03+00:00"
  10523. },
  10524. {
  10525. "name": "sebastian/version",
  10526. "version": "3.0.2",
  10527. "source": {
  10528. "type": "git",
  10529. "url": "https://github.com/sebastianbergmann/version.git",
  10530. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10531. },
  10532. "dist": {
  10533. "type": "zip",
  10534. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10535. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10536. "shasum": "",
  10537. "mirrors": [
  10538. {
  10539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10540. "preferred": true
  10541. }
  10542. ]
  10543. },
  10544. "require": {
  10545. "php": ">=7.3"
  10546. },
  10547. "type": "library",
  10548. "extra": {
  10549. "branch-alias": {
  10550. "dev-master": "3.0-dev"
  10551. }
  10552. },
  10553. "autoload": {
  10554. "classmap": [
  10555. "src/"
  10556. ]
  10557. },
  10558. "notification-url": "https://packagist.org/downloads/",
  10559. "license": [
  10560. "BSD-3-Clause"
  10561. ],
  10562. "authors": [
  10563. {
  10564. "name": "Sebastian Bergmann",
  10565. "email": "sebastian@phpunit.de",
  10566. "role": "lead"
  10567. }
  10568. ],
  10569. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10570. "homepage": "https://github.com/sebastianbergmann/version",
  10571. "support": {
  10572. "issues": "https://github.com/sebastianbergmann/version/issues",
  10573. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10574. },
  10575. "funding": [
  10576. {
  10577. "url": "https://github.com/sebastianbergmann",
  10578. "type": "github"
  10579. }
  10580. ],
  10581. "time": "2020-09-28T06:39:44+00:00"
  10582. },
  10583. {
  10584. "name": "spatie/backtrace",
  10585. "version": "1.3.0",
  10586. "source": {
  10587. "type": "git",
  10588. "url": "https://github.com/spatie/backtrace.git",
  10589. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec"
  10590. },
  10591. "dist": {
  10592. "type": "zip",
  10593. "url": "https://api.github.com/repos/spatie/backtrace/zipball/6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  10594. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  10595. "shasum": "",
  10596. "mirrors": [
  10597. {
  10598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10599. "preferred": true
  10600. }
  10601. ]
  10602. },
  10603. "require": {
  10604. "php": "^7.3|^8.0"
  10605. },
  10606. "require-dev": {
  10607. "ext-json": "*",
  10608. "phpunit/phpunit": "^9.3",
  10609. "spatie/phpunit-snapshot-assertions": "^4.2",
  10610. "symfony/var-dumper": "^5.1"
  10611. },
  10612. "type": "library",
  10613. "autoload": {
  10614. "psr-4": {
  10615. "Spatie\\Backtrace\\": "src"
  10616. }
  10617. },
  10618. "notification-url": "https://packagist.org/downloads/",
  10619. "license": [
  10620. "MIT"
  10621. ],
  10622. "authors": [
  10623. {
  10624. "name": "Freek Van de Herten",
  10625. "email": "freek@spatie.be",
  10626. "homepage": "https://spatie.be",
  10627. "role": "Developer"
  10628. }
  10629. ],
  10630. "description": "A better backtrace",
  10631. "homepage": "https://github.com/spatie/backtrace",
  10632. "keywords": [
  10633. "Backtrace",
  10634. "spatie"
  10635. ],
  10636. "support": {
  10637. "source": "https://github.com/spatie/backtrace/tree/1.3.0"
  10638. },
  10639. "funding": [
  10640. {
  10641. "url": "https://github.com/sponsors/spatie",
  10642. "type": "github"
  10643. },
  10644. {
  10645. "url": "https://spatie.be/open-source/support-us",
  10646. "type": "other"
  10647. }
  10648. ],
  10649. "time": "2023-03-04T08:31:24+00:00"
  10650. },
  10651. {
  10652. "name": "spatie/flare-client-php",
  10653. "version": "1.3.5",
  10654. "source": {
  10655. "type": "git",
  10656. "url": "https://github.com/spatie/flare-client-php.git",
  10657. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42"
  10658. },
  10659. "dist": {
  10660. "type": "zip",
  10661. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10662. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10663. "shasum": "",
  10664. "mirrors": [
  10665. {
  10666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10667. "preferred": true
  10668. }
  10669. ]
  10670. },
  10671. "require": {
  10672. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10673. "php": "^8.0",
  10674. "spatie/backtrace": "^1.2",
  10675. "symfony/http-foundation": "^5.0|^6.0",
  10676. "symfony/mime": "^5.2|^6.0",
  10677. "symfony/process": "^5.2|^6.0",
  10678. "symfony/var-dumper": "^5.2|^6.0"
  10679. },
  10680. "require-dev": {
  10681. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10682. "pestphp/pest": "^1.20",
  10683. "phpstan/extension-installer": "^1.1",
  10684. "phpstan/phpstan-deprecation-rules": "^1.0",
  10685. "phpstan/phpstan-phpunit": "^1.0",
  10686. "spatie/phpunit-snapshot-assertions": "^4.0"
  10687. },
  10688. "type": "library",
  10689. "extra": {
  10690. "branch-alias": {
  10691. "dev-main": "1.1.x-dev"
  10692. }
  10693. },
  10694. "autoload": {
  10695. "files": [
  10696. "src/helpers.php"
  10697. ],
  10698. "psr-4": {
  10699. "Spatie\\FlareClient\\": "src"
  10700. }
  10701. },
  10702. "notification-url": "https://packagist.org/downloads/",
  10703. "license": [
  10704. "MIT"
  10705. ],
  10706. "description": "Send PHP errors to Flare",
  10707. "homepage": "https://github.com/spatie/flare-client-php",
  10708. "keywords": [
  10709. "exception",
  10710. "flare",
  10711. "reporting",
  10712. "spatie"
  10713. ],
  10714. "support": {
  10715. "issues": "https://github.com/spatie/flare-client-php/issues",
  10716. "source": "https://github.com/spatie/flare-client-php/tree/1.3.5"
  10717. },
  10718. "funding": [
  10719. {
  10720. "url": "https://github.com/spatie",
  10721. "type": "github"
  10722. }
  10723. ],
  10724. "time": "2023-01-23T15:58:46+00:00"
  10725. },
  10726. {
  10727. "name": "spatie/ignition",
  10728. "version": "1.4.5",
  10729. "source": {
  10730. "type": "git",
  10731. "url": "https://github.com/spatie/ignition.git",
  10732. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6"
  10733. },
  10734. "dist": {
  10735. "type": "zip",
  10736. "url": "https://api.github.com/repos/spatie/ignition/zipball/cc09114b7057bd217b676f047544b33f5b6247e6",
  10737. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6",
  10738. "shasum": "",
  10739. "mirrors": [
  10740. {
  10741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10742. "preferred": true
  10743. }
  10744. ]
  10745. },
  10746. "require": {
  10747. "ext-json": "*",
  10748. "ext-mbstring": "*",
  10749. "php": "^8.0",
  10750. "spatie/flare-client-php": "^1.1",
  10751. "symfony/console": "^5.4|^6.0",
  10752. "symfony/var-dumper": "^5.4|^6.0"
  10753. },
  10754. "require-dev": {
  10755. "mockery/mockery": "^1.4",
  10756. "pestphp/pest": "^1.20",
  10757. "phpstan/extension-installer": "^1.1",
  10758. "phpstan/phpstan-deprecation-rules": "^1.0",
  10759. "phpstan/phpstan-phpunit": "^1.0",
  10760. "symfony/process": "^5.4|^6.0"
  10761. },
  10762. "type": "library",
  10763. "extra": {
  10764. "branch-alias": {
  10765. "dev-main": "1.4.x-dev"
  10766. }
  10767. },
  10768. "autoload": {
  10769. "psr-4": {
  10770. "Spatie\\Ignition\\": "src"
  10771. }
  10772. },
  10773. "notification-url": "https://packagist.org/downloads/",
  10774. "license": [
  10775. "MIT"
  10776. ],
  10777. "authors": [
  10778. {
  10779. "name": "Spatie",
  10780. "email": "info@spatie.be",
  10781. "role": "Developer"
  10782. }
  10783. ],
  10784. "description": "A beautiful error page for PHP applications.",
  10785. "homepage": "https://flareapp.io/ignition",
  10786. "keywords": [
  10787. "error",
  10788. "flare",
  10789. "laravel",
  10790. "page"
  10791. ],
  10792. "support": {
  10793. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10794. "forum": "https://twitter.com/flareappio",
  10795. "issues": "https://github.com/spatie/ignition/issues",
  10796. "source": "https://github.com/spatie/ignition"
  10797. },
  10798. "funding": [
  10799. {
  10800. "url": "https://github.com/spatie",
  10801. "type": "github"
  10802. }
  10803. ],
  10804. "time": "2023-02-28T16:49:47+00:00"
  10805. },
  10806. {
  10807. "name": "spatie/laravel-ignition",
  10808. "version": "1.6.4",
  10809. "source": {
  10810. "type": "git",
  10811. "url": "https://github.com/spatie/laravel-ignition.git",
  10812. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10813. },
  10814. "dist": {
  10815. "type": "zip",
  10816. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10817. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10818. "shasum": "",
  10819. "mirrors": [
  10820. {
  10821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10822. "preferred": true
  10823. }
  10824. ]
  10825. },
  10826. "require": {
  10827. "ext-curl": "*",
  10828. "ext-json": "*",
  10829. "ext-mbstring": "*",
  10830. "illuminate/support": "^8.77|^9.27",
  10831. "monolog/monolog": "^2.3",
  10832. "php": "^8.0",
  10833. "spatie/flare-client-php": "^1.0.1",
  10834. "spatie/ignition": "^1.4.1",
  10835. "symfony/console": "^5.0|^6.0",
  10836. "symfony/var-dumper": "^5.0|^6.0"
  10837. },
  10838. "require-dev": {
  10839. "filp/whoops": "^2.14",
  10840. "livewire/livewire": "^2.8|dev-develop",
  10841. "mockery/mockery": "^1.4",
  10842. "nunomaduro/larastan": "^1.0",
  10843. "orchestra/testbench": "^6.23|^7.0",
  10844. "pestphp/pest": "^1.20",
  10845. "phpstan/extension-installer": "^1.1",
  10846. "phpstan/phpstan-deprecation-rules": "^1.0",
  10847. "phpstan/phpstan-phpunit": "^1.0",
  10848. "spatie/laravel-ray": "^1.27"
  10849. },
  10850. "type": "library",
  10851. "extra": {
  10852. "laravel": {
  10853. "providers": [
  10854. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10855. ],
  10856. "aliases": {
  10857. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10858. }
  10859. }
  10860. },
  10861. "autoload": {
  10862. "files": [
  10863. "src/helpers.php"
  10864. ],
  10865. "psr-4": {
  10866. "Spatie\\LaravelIgnition\\": "src"
  10867. }
  10868. },
  10869. "notification-url": "https://packagist.org/downloads/",
  10870. "license": [
  10871. "MIT"
  10872. ],
  10873. "authors": [
  10874. {
  10875. "name": "Spatie",
  10876. "email": "info@spatie.be",
  10877. "role": "Developer"
  10878. }
  10879. ],
  10880. "description": "A beautiful error page for Laravel applications.",
  10881. "homepage": "https://flareapp.io/ignition",
  10882. "keywords": [
  10883. "error",
  10884. "flare",
  10885. "laravel",
  10886. "page"
  10887. ],
  10888. "support": {
  10889. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10890. "forum": "https://twitter.com/flareappio",
  10891. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10892. "source": "https://github.com/spatie/laravel-ignition"
  10893. },
  10894. "funding": [
  10895. {
  10896. "url": "https://github.com/spatie",
  10897. "type": "github"
  10898. }
  10899. ],
  10900. "time": "2023-01-03T19:28:04+00:00"
  10901. },
  10902. {
  10903. "name": "symfony/yaml",
  10904. "version": "v6.0.19",
  10905. "source": {
  10906. "type": "git",
  10907. "url": "https://github.com/symfony/yaml.git",
  10908. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  10909. },
  10910. "dist": {
  10911. "type": "zip",
  10912. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  10913. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  10914. "shasum": "",
  10915. "mirrors": [
  10916. {
  10917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10918. "preferred": true
  10919. }
  10920. ]
  10921. },
  10922. "require": {
  10923. "php": ">=8.0.2",
  10924. "symfony/polyfill-ctype": "^1.8"
  10925. },
  10926. "conflict": {
  10927. "symfony/console": "<5.4"
  10928. },
  10929. "require-dev": {
  10930. "symfony/console": "^5.4|^6.0"
  10931. },
  10932. "suggest": {
  10933. "symfony/console": "For validating YAML files using the lint command"
  10934. },
  10935. "bin": [
  10936. "Resources/bin/yaml-lint"
  10937. ],
  10938. "type": "library",
  10939. "autoload": {
  10940. "psr-4": {
  10941. "Symfony\\Component\\Yaml\\": ""
  10942. },
  10943. "exclude-from-classmap": [
  10944. "/Tests/"
  10945. ]
  10946. },
  10947. "notification-url": "https://packagist.org/downloads/",
  10948. "license": [
  10949. "MIT"
  10950. ],
  10951. "authors": [
  10952. {
  10953. "name": "Fabien Potencier",
  10954. "email": "fabien@symfony.com"
  10955. },
  10956. {
  10957. "name": "Symfony Community",
  10958. "homepage": "https://symfony.com/contributors"
  10959. }
  10960. ],
  10961. "description": "Loads and dumps YAML files",
  10962. "homepage": "https://symfony.com",
  10963. "support": {
  10964. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  10965. },
  10966. "funding": [
  10967. {
  10968. "url": "https://symfony.com/sponsor",
  10969. "type": "custom"
  10970. },
  10971. {
  10972. "url": "https://github.com/fabpot",
  10973. "type": "github"
  10974. },
  10975. {
  10976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10977. "type": "tidelift"
  10978. }
  10979. ],
  10980. "time": "2023-01-11T11:50:03+00:00"
  10981. },
  10982. {
  10983. "name": "theseer/tokenizer",
  10984. "version": "1.2.1",
  10985. "source": {
  10986. "type": "git",
  10987. "url": "https://github.com/theseer/tokenizer.git",
  10988. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10989. },
  10990. "dist": {
  10991. "type": "zip",
  10992. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10993. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10994. "shasum": "",
  10995. "mirrors": [
  10996. {
  10997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10998. "preferred": true
  10999. }
  11000. ]
  11001. },
  11002. "require": {
  11003. "ext-dom": "*",
  11004. "ext-tokenizer": "*",
  11005. "ext-xmlwriter": "*",
  11006. "php": "^7.2 || ^8.0"
  11007. },
  11008. "type": "library",
  11009. "autoload": {
  11010. "classmap": [
  11011. "src/"
  11012. ]
  11013. },
  11014. "notification-url": "https://packagist.org/downloads/",
  11015. "license": [
  11016. "BSD-3-Clause"
  11017. ],
  11018. "authors": [
  11019. {
  11020. "name": "Arne Blankerts",
  11021. "email": "arne@blankerts.de",
  11022. "role": "Developer"
  11023. }
  11024. ],
  11025. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11026. "support": {
  11027. "issues": "https://github.com/theseer/tokenizer/issues",
  11028. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11029. },
  11030. "funding": [
  11031. {
  11032. "url": "https://github.com/theseer",
  11033. "type": "github"
  11034. }
  11035. ],
  11036. "time": "2021-07-28T10:34:58+00:00"
  11037. }
  11038. ],
  11039. "aliases": [],
  11040. "minimum-stability": "stable",
  11041. "stability-flags": [],
  11042. "prefer-stable": true,
  11043. "prefer-lowest": false,
  11044. "platform": {
  11045. "php": "^8.0.2"
  11046. },
  11047. "platform-dev": [],
  11048. "plugin-api-version": "2.3.0"
  11049. }