composer.lock 362 KB

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