composer.lock 361 KB

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