composer.lock 299 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346
  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": "17e84e72117f7db4fd2e7d220c5695b0",
  8. "packages": [
  9. {
  10. "name": "bensampo/laravel-enum",
  11. "version": "v6.11.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/BenSampo/laravel-enum.git",
  15. "reference": "facd826e65fe44b3c0a4f9c726c2433cf8a4a9ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/BenSampo/laravel-enum/zipball/facd826e65fe44b3c0a4f9c726c2433cf8a4a9ea",
  20. "reference": "facd826e65fe44b3c0a4f9c726c2433cf8a4a9ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer/class-map-generator": "^1",
  25. "illuminate/contracts": "^9 || ^10 || ^11",
  26. "illuminate/support": "^9 || ^10 || ^11",
  27. "laminas/laminas-code": "^3.4 || ^4",
  28. "nikic/php-parser": "^4.13.2 || ^5",
  29. "php": "^8"
  30. },
  31. "require-dev": {
  32. "doctrine/dbal": "^3.4",
  33. "ergebnis/composer-normalize": "^2.28.3",
  34. "larastan/larastan": "^2.6.3",
  35. "mll-lab/php-cs-fixer-config": "^5.4",
  36. "mockery/mockery": "^1.5",
  37. "orchestra/testbench": "^7.6.1 || ^8 || ^9",
  38. "phpstan/extension-installer": "^1",
  39. "phpstan/phpstan": "^1.8.2",
  40. "phpstan/phpstan-mockery": "^1.1",
  41. "phpstan/phpstan-phpunit": "^1.1.1",
  42. "phpunit/phpunit": "^9.5.21 || ^10 || ^11",
  43. "rector/rector": "^1",
  44. "symplify/rule-doc-generator": "^11 || ^12 || ^13"
  45. },
  46. "type": "library",
  47. "extra": {
  48. "laravel": {
  49. "providers": [
  50. "BenSampo\\Enum\\EnumServiceProvider"
  51. ]
  52. },
  53. "phpstan": {
  54. "includes": [
  55. "extension.neon"
  56. ]
  57. }
  58. },
  59. "autoload": {
  60. "psr-4": {
  61. "BenSampo\\Enum\\": "src"
  62. }
  63. },
  64. "notification-url": "https://packagist.org/downloads/",
  65. "license": [
  66. "MIT"
  67. ],
  68. "authors": [
  69. {
  70. "name": "Ben Sampson",
  71. "homepage": "https://sampo.co.uk",
  72. "role": "Developer"
  73. },
  74. {
  75. "name": "Benedikt Franke",
  76. "homepage": "https://franke.tech",
  77. "role": "Developer"
  78. }
  79. ],
  80. "description": "Simple, extensible and powerful enumeration implementation for Laravel.",
  81. "homepage": "https://github.com/bensampo/laravel-enum",
  82. "keywords": [
  83. "bensampo",
  84. "enum",
  85. "laravel",
  86. "package",
  87. "validation"
  88. ],
  89. "support": {
  90. "issues": "https://github.com/BenSampo/laravel-enum/issues",
  91. "source": "https://github.com/BenSampo/laravel-enum/tree/v6.11.1"
  92. },
  93. "funding": [
  94. {
  95. "url": "https://github.com/bensampo",
  96. "type": "github"
  97. }
  98. ],
  99. "time": "2024-08-21T10:45:41+00:00"
  100. },
  101. {
  102. "name": "brick/math",
  103. "version": "0.12.1",
  104. "source": {
  105. "type": "git",
  106. "url": "https://github.com/brick/math.git",
  107. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  108. },
  109. "dist": {
  110. "type": "zip",
  111. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  112. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  113. "shasum": ""
  114. },
  115. "require": {
  116. "php": "^8.1"
  117. },
  118. "require-dev": {
  119. "php-coveralls/php-coveralls": "^2.2",
  120. "phpunit/phpunit": "^10.1",
  121. "vimeo/psalm": "5.16.0"
  122. },
  123. "type": "library",
  124. "autoload": {
  125. "psr-4": {
  126. "Brick\\Math\\": "src/"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "MIT"
  132. ],
  133. "description": "Arbitrary-precision arithmetic library",
  134. "keywords": [
  135. "Arbitrary-precision",
  136. "BigInteger",
  137. "BigRational",
  138. "arithmetic",
  139. "bigdecimal",
  140. "bignum",
  141. "bignumber",
  142. "brick",
  143. "decimal",
  144. "integer",
  145. "math",
  146. "mathematics",
  147. "rational"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/brick/math/issues",
  151. "source": "https://github.com/brick/math/tree/0.12.1"
  152. },
  153. "funding": [
  154. {
  155. "url": "https://github.com/BenMorel",
  156. "type": "github"
  157. }
  158. ],
  159. "time": "2023-11-29T23:19:16+00:00"
  160. },
  161. {
  162. "name": "carbonphp/carbon-doctrine-types",
  163. "version": "3.2.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  167. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  172. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": "^8.1"
  177. },
  178. "conflict": {
  179. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  180. },
  181. "require-dev": {
  182. "doctrine/dbal": "^4.0.0",
  183. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  184. "phpunit/phpunit": "^10.3"
  185. },
  186. "type": "library",
  187. "autoload": {
  188. "psr-4": {
  189. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "KyleKatarn",
  199. "email": "kylekatarnls@gmail.com"
  200. }
  201. ],
  202. "description": "Types to use Carbon in Doctrine",
  203. "keywords": [
  204. "carbon",
  205. "date",
  206. "datetime",
  207. "doctrine",
  208. "time"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  212. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  213. },
  214. "funding": [
  215. {
  216. "url": "https://github.com/kylekatarnls",
  217. "type": "github"
  218. },
  219. {
  220. "url": "https://opencollective.com/Carbon",
  221. "type": "open_collective"
  222. },
  223. {
  224. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  225. "type": "tidelift"
  226. }
  227. ],
  228. "time": "2024-02-09T16:56:22+00:00"
  229. },
  230. {
  231. "name": "composer/class-map-generator",
  232. "version": "1.3.4",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/composer/class-map-generator.git",
  236. "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3",
  241. "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "composer/pcre": "^2.1 || ^3.1",
  246. "php": "^7.2 || ^8.0",
  247. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  248. },
  249. "require-dev": {
  250. "phpstan/phpstan": "^1.6",
  251. "phpstan/phpstan-deprecation-rules": "^1",
  252. "phpstan/phpstan-phpunit": "^1",
  253. "phpstan/phpstan-strict-rules": "^1.1",
  254. "symfony/filesystem": "^5.4 || ^6",
  255. "symfony/phpunit-bridge": "^5"
  256. },
  257. "type": "library",
  258. "extra": {
  259. "branch-alias": {
  260. "dev-main": "1.x-dev"
  261. }
  262. },
  263. "autoload": {
  264. "psr-4": {
  265. "Composer\\ClassMapGenerator\\": "src"
  266. }
  267. },
  268. "notification-url": "https://packagist.org/downloads/",
  269. "license": [
  270. "MIT"
  271. ],
  272. "authors": [
  273. {
  274. "name": "Jordi Boggiano",
  275. "email": "j.boggiano@seld.be",
  276. "homepage": "https://seld.be"
  277. }
  278. ],
  279. "description": "Utilities to scan PHP code and generate class maps.",
  280. "keywords": [
  281. "classmap"
  282. ],
  283. "support": {
  284. "issues": "https://github.com/composer/class-map-generator/issues",
  285. "source": "https://github.com/composer/class-map-generator/tree/1.3.4"
  286. },
  287. "funding": [
  288. {
  289. "url": "https://packagist.com",
  290. "type": "custom"
  291. },
  292. {
  293. "url": "https://github.com/composer",
  294. "type": "github"
  295. },
  296. {
  297. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  298. "type": "tidelift"
  299. }
  300. ],
  301. "time": "2024-06-12T14:13:04+00:00"
  302. },
  303. {
  304. "name": "composer/pcre",
  305. "version": "3.3.1",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/composer/pcre.git",
  309. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  314. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "php": "^7.4 || ^8.0"
  319. },
  320. "conflict": {
  321. "phpstan/phpstan": "<1.11.10"
  322. },
  323. "require-dev": {
  324. "phpstan/phpstan": "^1.11.10",
  325. "phpstan/phpstan-strict-rules": "^1.1",
  326. "phpunit/phpunit": "^8 || ^9"
  327. },
  328. "type": "library",
  329. "extra": {
  330. "branch-alias": {
  331. "dev-main": "3.x-dev"
  332. },
  333. "phpstan": {
  334. "includes": [
  335. "extension.neon"
  336. ]
  337. }
  338. },
  339. "autoload": {
  340. "psr-4": {
  341. "Composer\\Pcre\\": "src"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Jordi Boggiano",
  351. "email": "j.boggiano@seld.be",
  352. "homepage": "http://seld.be"
  353. }
  354. ],
  355. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  356. "keywords": [
  357. "PCRE",
  358. "preg",
  359. "regex",
  360. "regular expression"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/composer/pcre/issues",
  364. "source": "https://github.com/composer/pcre/tree/3.3.1"
  365. },
  366. "funding": [
  367. {
  368. "url": "https://packagist.com",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://github.com/composer",
  373. "type": "github"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2024-08-27T18:44:43+00:00"
  381. },
  382. {
  383. "name": "dflydev/dot-access-data",
  384. "version": "v3.0.3",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  388. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  393. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^7.1 || ^8.0"
  398. },
  399. "require-dev": {
  400. "phpstan/phpstan": "^0.12.42",
  401. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  402. "scrutinizer/ocular": "1.6.0",
  403. "squizlabs/php_codesniffer": "^3.5",
  404. "vimeo/psalm": "^4.0.0"
  405. },
  406. "type": "library",
  407. "extra": {
  408. "branch-alias": {
  409. "dev-main": "3.x-dev"
  410. }
  411. },
  412. "autoload": {
  413. "psr-4": {
  414. "Dflydev\\DotAccessData\\": "src/"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "authors": [
  422. {
  423. "name": "Dragonfly Development Inc.",
  424. "email": "info@dflydev.com",
  425. "homepage": "http://dflydev.com"
  426. },
  427. {
  428. "name": "Beau Simensen",
  429. "email": "beau@dflydev.com",
  430. "homepage": "http://beausimensen.com"
  431. },
  432. {
  433. "name": "Carlos Frutos",
  434. "email": "carlos@kiwing.it",
  435. "homepage": "https://github.com/cfrutos"
  436. },
  437. {
  438. "name": "Colin O'Dell",
  439. "email": "colinodell@gmail.com",
  440. "homepage": "https://www.colinodell.com"
  441. }
  442. ],
  443. "description": "Given a deep data structure, access data by dot notation.",
  444. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  445. "keywords": [
  446. "access",
  447. "data",
  448. "dot",
  449. "notation"
  450. ],
  451. "support": {
  452. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  453. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  454. },
  455. "time": "2024-07-08T12:26:09+00:00"
  456. },
  457. {
  458. "name": "doctrine/inflector",
  459. "version": "2.0.10",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/doctrine/inflector.git",
  463. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  468. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "php": "^7.2 || ^8.0"
  473. },
  474. "require-dev": {
  475. "doctrine/coding-standard": "^11.0",
  476. "phpstan/phpstan": "^1.8",
  477. "phpstan/phpstan-phpunit": "^1.1",
  478. "phpstan/phpstan-strict-rules": "^1.3",
  479. "phpunit/phpunit": "^8.5 || ^9.5",
  480. "vimeo/psalm": "^4.25 || ^5.4"
  481. },
  482. "type": "library",
  483. "autoload": {
  484. "psr-4": {
  485. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  486. }
  487. },
  488. "notification-url": "https://packagist.org/downloads/",
  489. "license": [
  490. "MIT"
  491. ],
  492. "authors": [
  493. {
  494. "name": "Guilherme Blanco",
  495. "email": "guilhermeblanco@gmail.com"
  496. },
  497. {
  498. "name": "Roman Borschel",
  499. "email": "roman@code-factory.org"
  500. },
  501. {
  502. "name": "Benjamin Eberlei",
  503. "email": "kontakt@beberlei.de"
  504. },
  505. {
  506. "name": "Jonathan Wage",
  507. "email": "jonwage@gmail.com"
  508. },
  509. {
  510. "name": "Johannes Schmitt",
  511. "email": "schmittjoh@gmail.com"
  512. }
  513. ],
  514. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  515. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  516. "keywords": [
  517. "inflection",
  518. "inflector",
  519. "lowercase",
  520. "manipulation",
  521. "php",
  522. "plural",
  523. "singular",
  524. "strings",
  525. "uppercase",
  526. "words"
  527. ],
  528. "support": {
  529. "issues": "https://github.com/doctrine/inflector/issues",
  530. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  531. },
  532. "funding": [
  533. {
  534. "url": "https://www.doctrine-project.org/sponsorship.html",
  535. "type": "custom"
  536. },
  537. {
  538. "url": "https://www.patreon.com/phpdoctrine",
  539. "type": "patreon"
  540. },
  541. {
  542. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  543. "type": "tidelift"
  544. }
  545. ],
  546. "time": "2024-02-18T20:23:39+00:00"
  547. },
  548. {
  549. "name": "doctrine/lexer",
  550. "version": "3.0.1",
  551. "source": {
  552. "type": "git",
  553. "url": "https://github.com/doctrine/lexer.git",
  554. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  555. },
  556. "dist": {
  557. "type": "zip",
  558. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  559. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  560. "shasum": ""
  561. },
  562. "require": {
  563. "php": "^8.1"
  564. },
  565. "require-dev": {
  566. "doctrine/coding-standard": "^12",
  567. "phpstan/phpstan": "^1.10",
  568. "phpunit/phpunit": "^10.5",
  569. "psalm/plugin-phpunit": "^0.18.3",
  570. "vimeo/psalm": "^5.21"
  571. },
  572. "type": "library",
  573. "autoload": {
  574. "psr-4": {
  575. "Doctrine\\Common\\Lexer\\": "src"
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "MIT"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Guilherme Blanco",
  585. "email": "guilhermeblanco@gmail.com"
  586. },
  587. {
  588. "name": "Roman Borschel",
  589. "email": "roman@code-factory.org"
  590. },
  591. {
  592. "name": "Johannes Schmitt",
  593. "email": "schmittjoh@gmail.com"
  594. }
  595. ],
  596. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  597. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  598. "keywords": [
  599. "annotations",
  600. "docblock",
  601. "lexer",
  602. "parser",
  603. "php"
  604. ],
  605. "support": {
  606. "issues": "https://github.com/doctrine/lexer/issues",
  607. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  608. },
  609. "funding": [
  610. {
  611. "url": "https://www.doctrine-project.org/sponsorship.html",
  612. "type": "custom"
  613. },
  614. {
  615. "url": "https://www.patreon.com/phpdoctrine",
  616. "type": "patreon"
  617. },
  618. {
  619. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  620. "type": "tidelift"
  621. }
  622. ],
  623. "time": "2024-02-05T11:56:58+00:00"
  624. },
  625. {
  626. "name": "dragonmantank/cron-expression",
  627. "version": "v3.3.3",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/dragonmantank/cron-expression.git",
  631. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  636. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "php": "^7.2|^8.0",
  641. "webmozart/assert": "^1.0"
  642. },
  643. "replace": {
  644. "mtdowling/cron-expression": "^1.0"
  645. },
  646. "require-dev": {
  647. "phpstan/extension-installer": "^1.0",
  648. "phpstan/phpstan": "^1.0",
  649. "phpstan/phpstan-webmozart-assert": "^1.0",
  650. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  651. },
  652. "type": "library",
  653. "autoload": {
  654. "psr-4": {
  655. "Cron\\": "src/Cron/"
  656. }
  657. },
  658. "notification-url": "https://packagist.org/downloads/",
  659. "license": [
  660. "MIT"
  661. ],
  662. "authors": [
  663. {
  664. "name": "Chris Tankersley",
  665. "email": "chris@ctankersley.com",
  666. "homepage": "https://github.com/dragonmantank"
  667. }
  668. ],
  669. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  670. "keywords": [
  671. "cron",
  672. "schedule"
  673. ],
  674. "support": {
  675. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  676. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  677. },
  678. "funding": [
  679. {
  680. "url": "https://github.com/dragonmantank",
  681. "type": "github"
  682. }
  683. ],
  684. "time": "2023-08-10T19:36:49+00:00"
  685. },
  686. {
  687. "name": "egulias/email-validator",
  688. "version": "4.0.2",
  689. "source": {
  690. "type": "git",
  691. "url": "https://github.com/egulias/EmailValidator.git",
  692. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  697. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  698. "shasum": ""
  699. },
  700. "require": {
  701. "doctrine/lexer": "^2.0 || ^3.0",
  702. "php": ">=8.1",
  703. "symfony/polyfill-intl-idn": "^1.26"
  704. },
  705. "require-dev": {
  706. "phpunit/phpunit": "^10.2",
  707. "vimeo/psalm": "^5.12"
  708. },
  709. "suggest": {
  710. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  711. },
  712. "type": "library",
  713. "extra": {
  714. "branch-alias": {
  715. "dev-master": "4.0.x-dev"
  716. }
  717. },
  718. "autoload": {
  719. "psr-4": {
  720. "Egulias\\EmailValidator\\": "src"
  721. }
  722. },
  723. "notification-url": "https://packagist.org/downloads/",
  724. "license": [
  725. "MIT"
  726. ],
  727. "authors": [
  728. {
  729. "name": "Eduardo Gulias Davis"
  730. }
  731. ],
  732. "description": "A library for validating emails against several RFCs",
  733. "homepage": "https://github.com/egulias/EmailValidator",
  734. "keywords": [
  735. "email",
  736. "emailvalidation",
  737. "emailvalidator",
  738. "validation",
  739. "validator"
  740. ],
  741. "support": {
  742. "issues": "https://github.com/egulias/EmailValidator/issues",
  743. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  744. },
  745. "funding": [
  746. {
  747. "url": "https://github.com/egulias",
  748. "type": "github"
  749. }
  750. ],
  751. "time": "2023-10-06T06:47:41+00:00"
  752. },
  753. {
  754. "name": "fruitcake/php-cors",
  755. "version": "v1.3.0",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/fruitcake/php-cors.git",
  759. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  764. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  765. "shasum": ""
  766. },
  767. "require": {
  768. "php": "^7.4|^8.0",
  769. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  770. },
  771. "require-dev": {
  772. "phpstan/phpstan": "^1.4",
  773. "phpunit/phpunit": "^9",
  774. "squizlabs/php_codesniffer": "^3.5"
  775. },
  776. "type": "library",
  777. "extra": {
  778. "branch-alias": {
  779. "dev-master": "1.2-dev"
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "Fruitcake\\Cors\\": "src/"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Fruitcake",
  794. "homepage": "https://fruitcake.nl"
  795. },
  796. {
  797. "name": "Barryvdh",
  798. "email": "barryvdh@gmail.com"
  799. }
  800. ],
  801. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  802. "homepage": "https://github.com/fruitcake/php-cors",
  803. "keywords": [
  804. "cors",
  805. "laravel",
  806. "symfony"
  807. ],
  808. "support": {
  809. "issues": "https://github.com/fruitcake/php-cors/issues",
  810. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  811. },
  812. "funding": [
  813. {
  814. "url": "https://fruitcake.nl",
  815. "type": "custom"
  816. },
  817. {
  818. "url": "https://github.com/barryvdh",
  819. "type": "github"
  820. }
  821. ],
  822. "time": "2023-10-12T05:21:21+00:00"
  823. },
  824. {
  825. "name": "graham-campbell/result-type",
  826. "version": "v1.1.3",
  827. "source": {
  828. "type": "git",
  829. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  830. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  831. },
  832. "dist": {
  833. "type": "zip",
  834. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  835. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  836. "shasum": ""
  837. },
  838. "require": {
  839. "php": "^7.2.5 || ^8.0",
  840. "phpoption/phpoption": "^1.9.3"
  841. },
  842. "require-dev": {
  843. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  844. },
  845. "type": "library",
  846. "autoload": {
  847. "psr-4": {
  848. "GrahamCampbell\\ResultType\\": "src/"
  849. }
  850. },
  851. "notification-url": "https://packagist.org/downloads/",
  852. "license": [
  853. "MIT"
  854. ],
  855. "authors": [
  856. {
  857. "name": "Graham Campbell",
  858. "email": "hello@gjcampbell.co.uk",
  859. "homepage": "https://github.com/GrahamCampbell"
  860. }
  861. ],
  862. "description": "An Implementation Of The Result Type",
  863. "keywords": [
  864. "Graham Campbell",
  865. "GrahamCampbell",
  866. "Result Type",
  867. "Result-Type",
  868. "result"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  872. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://github.com/GrahamCampbell",
  877. "type": "github"
  878. },
  879. {
  880. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  881. "type": "tidelift"
  882. }
  883. ],
  884. "time": "2024-07-20T21:45:45+00:00"
  885. },
  886. {
  887. "name": "guzzlehttp/guzzle",
  888. "version": "7.9.2",
  889. "source": {
  890. "type": "git",
  891. "url": "https://github.com/guzzle/guzzle.git",
  892. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  893. },
  894. "dist": {
  895. "type": "zip",
  896. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  897. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  898. "shasum": ""
  899. },
  900. "require": {
  901. "ext-json": "*",
  902. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  903. "guzzlehttp/psr7": "^2.7.0",
  904. "php": "^7.2.5 || ^8.0",
  905. "psr/http-client": "^1.0",
  906. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  907. },
  908. "provide": {
  909. "psr/http-client-implementation": "1.0"
  910. },
  911. "require-dev": {
  912. "bamarni/composer-bin-plugin": "^1.8.2",
  913. "ext-curl": "*",
  914. "guzzle/client-integration-tests": "3.0.2",
  915. "php-http/message-factory": "^1.1",
  916. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  917. "psr/log": "^1.1 || ^2.0 || ^3.0"
  918. },
  919. "suggest": {
  920. "ext-curl": "Required for CURL handler support",
  921. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  922. "psr/log": "Required for using the Log middleware"
  923. },
  924. "type": "library",
  925. "extra": {
  926. "bamarni-bin": {
  927. "bin-links": true,
  928. "forward-command": false
  929. }
  930. },
  931. "autoload": {
  932. "files": [
  933. "src/functions_include.php"
  934. ],
  935. "psr-4": {
  936. "GuzzleHttp\\": "src/"
  937. }
  938. },
  939. "notification-url": "https://packagist.org/downloads/",
  940. "license": [
  941. "MIT"
  942. ],
  943. "authors": [
  944. {
  945. "name": "Graham Campbell",
  946. "email": "hello@gjcampbell.co.uk",
  947. "homepage": "https://github.com/GrahamCampbell"
  948. },
  949. {
  950. "name": "Michael Dowling",
  951. "email": "mtdowling@gmail.com",
  952. "homepage": "https://github.com/mtdowling"
  953. },
  954. {
  955. "name": "Jeremy Lindblom",
  956. "email": "jeremeamia@gmail.com",
  957. "homepage": "https://github.com/jeremeamia"
  958. },
  959. {
  960. "name": "George Mponos",
  961. "email": "gmponos@gmail.com",
  962. "homepage": "https://github.com/gmponos"
  963. },
  964. {
  965. "name": "Tobias Nyholm",
  966. "email": "tobias.nyholm@gmail.com",
  967. "homepage": "https://github.com/Nyholm"
  968. },
  969. {
  970. "name": "Márk Sági-Kazár",
  971. "email": "mark.sagikazar@gmail.com",
  972. "homepage": "https://github.com/sagikazarmark"
  973. },
  974. {
  975. "name": "Tobias Schultze",
  976. "email": "webmaster@tubo-world.de",
  977. "homepage": "https://github.com/Tobion"
  978. }
  979. ],
  980. "description": "Guzzle is a PHP HTTP client library",
  981. "keywords": [
  982. "client",
  983. "curl",
  984. "framework",
  985. "http",
  986. "http client",
  987. "psr-18",
  988. "psr-7",
  989. "rest",
  990. "web service"
  991. ],
  992. "support": {
  993. "issues": "https://github.com/guzzle/guzzle/issues",
  994. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  995. },
  996. "funding": [
  997. {
  998. "url": "https://github.com/GrahamCampbell",
  999. "type": "github"
  1000. },
  1001. {
  1002. "url": "https://github.com/Nyholm",
  1003. "type": "github"
  1004. },
  1005. {
  1006. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1007. "type": "tidelift"
  1008. }
  1009. ],
  1010. "time": "2024-07-24T11:22:20+00:00"
  1011. },
  1012. {
  1013. "name": "guzzlehttp/promises",
  1014. "version": "2.0.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/guzzle/promises.git",
  1018. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1023. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "php": "^7.2.5 || ^8.0"
  1028. },
  1029. "require-dev": {
  1030. "bamarni/composer-bin-plugin": "^1.8.2",
  1031. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1032. },
  1033. "type": "library",
  1034. "extra": {
  1035. "bamarni-bin": {
  1036. "bin-links": true,
  1037. "forward-command": false
  1038. }
  1039. },
  1040. "autoload": {
  1041. "psr-4": {
  1042. "GuzzleHttp\\Promise\\": "src/"
  1043. }
  1044. },
  1045. "notification-url": "https://packagist.org/downloads/",
  1046. "license": [
  1047. "MIT"
  1048. ],
  1049. "authors": [
  1050. {
  1051. "name": "Graham Campbell",
  1052. "email": "hello@gjcampbell.co.uk",
  1053. "homepage": "https://github.com/GrahamCampbell"
  1054. },
  1055. {
  1056. "name": "Michael Dowling",
  1057. "email": "mtdowling@gmail.com",
  1058. "homepage": "https://github.com/mtdowling"
  1059. },
  1060. {
  1061. "name": "Tobias Nyholm",
  1062. "email": "tobias.nyholm@gmail.com",
  1063. "homepage": "https://github.com/Nyholm"
  1064. },
  1065. {
  1066. "name": "Tobias Schultze",
  1067. "email": "webmaster@tubo-world.de",
  1068. "homepage": "https://github.com/Tobion"
  1069. }
  1070. ],
  1071. "description": "Guzzle promises library",
  1072. "keywords": [
  1073. "promise"
  1074. ],
  1075. "support": {
  1076. "issues": "https://github.com/guzzle/promises/issues",
  1077. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1078. },
  1079. "funding": [
  1080. {
  1081. "url": "https://github.com/GrahamCampbell",
  1082. "type": "github"
  1083. },
  1084. {
  1085. "url": "https://github.com/Nyholm",
  1086. "type": "github"
  1087. },
  1088. {
  1089. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1090. "type": "tidelift"
  1091. }
  1092. ],
  1093. "time": "2024-07-18T10:29:17+00:00"
  1094. },
  1095. {
  1096. "name": "guzzlehttp/psr7",
  1097. "version": "2.7.0",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/guzzle/psr7.git",
  1101. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1106. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "php": "^7.2.5 || ^8.0",
  1111. "psr/http-factory": "^1.0",
  1112. "psr/http-message": "^1.1 || ^2.0",
  1113. "ralouphie/getallheaders": "^3.0"
  1114. },
  1115. "provide": {
  1116. "psr/http-factory-implementation": "1.0",
  1117. "psr/http-message-implementation": "1.0"
  1118. },
  1119. "require-dev": {
  1120. "bamarni/composer-bin-plugin": "^1.8.2",
  1121. "http-interop/http-factory-tests": "0.9.0",
  1122. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1123. },
  1124. "suggest": {
  1125. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1126. },
  1127. "type": "library",
  1128. "extra": {
  1129. "bamarni-bin": {
  1130. "bin-links": true,
  1131. "forward-command": false
  1132. }
  1133. },
  1134. "autoload": {
  1135. "psr-4": {
  1136. "GuzzleHttp\\Psr7\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Graham Campbell",
  1146. "email": "hello@gjcampbell.co.uk",
  1147. "homepage": "https://github.com/GrahamCampbell"
  1148. },
  1149. {
  1150. "name": "Michael Dowling",
  1151. "email": "mtdowling@gmail.com",
  1152. "homepage": "https://github.com/mtdowling"
  1153. },
  1154. {
  1155. "name": "George Mponos",
  1156. "email": "gmponos@gmail.com",
  1157. "homepage": "https://github.com/gmponos"
  1158. },
  1159. {
  1160. "name": "Tobias Nyholm",
  1161. "email": "tobias.nyholm@gmail.com",
  1162. "homepage": "https://github.com/Nyholm"
  1163. },
  1164. {
  1165. "name": "Márk Sági-Kazár",
  1166. "email": "mark.sagikazar@gmail.com",
  1167. "homepage": "https://github.com/sagikazarmark"
  1168. },
  1169. {
  1170. "name": "Tobias Schultze",
  1171. "email": "webmaster@tubo-world.de",
  1172. "homepage": "https://github.com/Tobion"
  1173. },
  1174. {
  1175. "name": "Márk Sági-Kazár",
  1176. "email": "mark.sagikazar@gmail.com",
  1177. "homepage": "https://sagikazarmark.hu"
  1178. }
  1179. ],
  1180. "description": "PSR-7 message implementation that also provides common utility methods",
  1181. "keywords": [
  1182. "http",
  1183. "message",
  1184. "psr-7",
  1185. "request",
  1186. "response",
  1187. "stream",
  1188. "uri",
  1189. "url"
  1190. ],
  1191. "support": {
  1192. "issues": "https://github.com/guzzle/psr7/issues",
  1193. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1194. },
  1195. "funding": [
  1196. {
  1197. "url": "https://github.com/GrahamCampbell",
  1198. "type": "github"
  1199. },
  1200. {
  1201. "url": "https://github.com/Nyholm",
  1202. "type": "github"
  1203. },
  1204. {
  1205. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1206. "type": "tidelift"
  1207. }
  1208. ],
  1209. "time": "2024-07-18T11:15:46+00:00"
  1210. },
  1211. {
  1212. "name": "guzzlehttp/uri-template",
  1213. "version": "v1.0.3",
  1214. "source": {
  1215. "type": "git",
  1216. "url": "https://github.com/guzzle/uri-template.git",
  1217. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1218. },
  1219. "dist": {
  1220. "type": "zip",
  1221. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1222. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1223. "shasum": ""
  1224. },
  1225. "require": {
  1226. "php": "^7.2.5 || ^8.0",
  1227. "symfony/polyfill-php80": "^1.24"
  1228. },
  1229. "require-dev": {
  1230. "bamarni/composer-bin-plugin": "^1.8.2",
  1231. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1232. "uri-template/tests": "1.0.0"
  1233. },
  1234. "type": "library",
  1235. "extra": {
  1236. "bamarni-bin": {
  1237. "bin-links": true,
  1238. "forward-command": false
  1239. }
  1240. },
  1241. "autoload": {
  1242. "psr-4": {
  1243. "GuzzleHttp\\UriTemplate\\": "src"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Graham Campbell",
  1253. "email": "hello@gjcampbell.co.uk",
  1254. "homepage": "https://github.com/GrahamCampbell"
  1255. },
  1256. {
  1257. "name": "Michael Dowling",
  1258. "email": "mtdowling@gmail.com",
  1259. "homepage": "https://github.com/mtdowling"
  1260. },
  1261. {
  1262. "name": "George Mponos",
  1263. "email": "gmponos@gmail.com",
  1264. "homepage": "https://github.com/gmponos"
  1265. },
  1266. {
  1267. "name": "Tobias Nyholm",
  1268. "email": "tobias.nyholm@gmail.com",
  1269. "homepage": "https://github.com/Nyholm"
  1270. }
  1271. ],
  1272. "description": "A polyfill class for uri_template of PHP",
  1273. "keywords": [
  1274. "guzzlehttp",
  1275. "uri-template"
  1276. ],
  1277. "support": {
  1278. "issues": "https://github.com/guzzle/uri-template/issues",
  1279. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1280. },
  1281. "funding": [
  1282. {
  1283. "url": "https://github.com/GrahamCampbell",
  1284. "type": "github"
  1285. },
  1286. {
  1287. "url": "https://github.com/Nyholm",
  1288. "type": "github"
  1289. },
  1290. {
  1291. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1292. "type": "tidelift"
  1293. }
  1294. ],
  1295. "time": "2023-12-03T19:50:20+00:00"
  1296. },
  1297. {
  1298. "name": "laminas/laminas-code",
  1299. "version": "4.14.0",
  1300. "source": {
  1301. "type": "git",
  1302. "url": "https://github.com/laminas/laminas-code.git",
  1303. "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c"
  1304. },
  1305. "dist": {
  1306. "type": "zip",
  1307. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c",
  1308. "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c",
  1309. "shasum": ""
  1310. },
  1311. "require": {
  1312. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  1313. },
  1314. "require-dev": {
  1315. "doctrine/annotations": "^2.0.1",
  1316. "ext-phar": "*",
  1317. "laminas/laminas-coding-standard": "^2.5.0",
  1318. "laminas/laminas-stdlib": "^3.17.0",
  1319. "phpunit/phpunit": "^10.3.3",
  1320. "psalm/plugin-phpunit": "^0.19.0",
  1321. "vimeo/psalm": "^5.15.0"
  1322. },
  1323. "suggest": {
  1324. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1325. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1326. },
  1327. "type": "library",
  1328. "autoload": {
  1329. "psr-4": {
  1330. "Laminas\\Code\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "BSD-3-Clause"
  1336. ],
  1337. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1338. "homepage": "https://laminas.dev",
  1339. "keywords": [
  1340. "code",
  1341. "laminas",
  1342. "laminasframework"
  1343. ],
  1344. "support": {
  1345. "chat": "https://laminas.dev/chat",
  1346. "docs": "https://docs.laminas.dev/laminas-code/",
  1347. "forum": "https://discourse.laminas.dev",
  1348. "issues": "https://github.com/laminas/laminas-code/issues",
  1349. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1350. "source": "https://github.com/laminas/laminas-code"
  1351. },
  1352. "funding": [
  1353. {
  1354. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1355. "type": "community_bridge"
  1356. }
  1357. ],
  1358. "time": "2024-06-17T08:50:25+00:00"
  1359. },
  1360. {
  1361. "name": "laravel/framework",
  1362. "version": "v11.21.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/laravel/framework.git",
  1366. "reference": "9d9d36708d56665b12185493f684abce38ad2d30"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/laravel/framework/zipball/9d9d36708d56665b12185493f684abce38ad2d30",
  1371. "reference": "9d9d36708d56665b12185493f684abce38ad2d30",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1376. "composer-runtime-api": "^2.2",
  1377. "doctrine/inflector": "^2.0.5",
  1378. "dragonmantank/cron-expression": "^3.3.2",
  1379. "egulias/email-validator": "^3.2.1|^4.0",
  1380. "ext-ctype": "*",
  1381. "ext-filter": "*",
  1382. "ext-hash": "*",
  1383. "ext-mbstring": "*",
  1384. "ext-openssl": "*",
  1385. "ext-session": "*",
  1386. "ext-tokenizer": "*",
  1387. "fruitcake/php-cors": "^1.3",
  1388. "guzzlehttp/guzzle": "^7.8",
  1389. "guzzlehttp/uri-template": "^1.0",
  1390. "laravel/prompts": "^0.1.18",
  1391. "laravel/serializable-closure": "^1.3",
  1392. "league/commonmark": "^2.2.1",
  1393. "league/flysystem": "^3.8.0",
  1394. "monolog/monolog": "^3.0",
  1395. "nesbot/carbon": "^2.72.2|^3.0",
  1396. "nunomaduro/termwind": "^2.0",
  1397. "php": "^8.2",
  1398. "psr/container": "^1.1.1|^2.0.1",
  1399. "psr/log": "^1.0|^2.0|^3.0",
  1400. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1401. "ramsey/uuid": "^4.7",
  1402. "symfony/console": "^7.0",
  1403. "symfony/error-handler": "^7.0",
  1404. "symfony/finder": "^7.0",
  1405. "symfony/http-foundation": "^7.0",
  1406. "symfony/http-kernel": "^7.0",
  1407. "symfony/mailer": "^7.0",
  1408. "symfony/mime": "^7.0",
  1409. "symfony/polyfill-php83": "^1.28",
  1410. "symfony/process": "^7.0",
  1411. "symfony/routing": "^7.0",
  1412. "symfony/uid": "^7.0",
  1413. "symfony/var-dumper": "^7.0",
  1414. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1415. "vlucas/phpdotenv": "^5.4.1",
  1416. "voku/portable-ascii": "^2.0"
  1417. },
  1418. "conflict": {
  1419. "mockery/mockery": "1.6.8",
  1420. "tightenco/collect": "<5.5.33"
  1421. },
  1422. "provide": {
  1423. "psr/container-implementation": "1.1|2.0",
  1424. "psr/log-implementation": "1.0|2.0|3.0",
  1425. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1426. },
  1427. "replace": {
  1428. "illuminate/auth": "self.version",
  1429. "illuminate/broadcasting": "self.version",
  1430. "illuminate/bus": "self.version",
  1431. "illuminate/cache": "self.version",
  1432. "illuminate/collections": "self.version",
  1433. "illuminate/conditionable": "self.version",
  1434. "illuminate/config": "self.version",
  1435. "illuminate/console": "self.version",
  1436. "illuminate/container": "self.version",
  1437. "illuminate/contracts": "self.version",
  1438. "illuminate/cookie": "self.version",
  1439. "illuminate/database": "self.version",
  1440. "illuminate/encryption": "self.version",
  1441. "illuminate/events": "self.version",
  1442. "illuminate/filesystem": "self.version",
  1443. "illuminate/hashing": "self.version",
  1444. "illuminate/http": "self.version",
  1445. "illuminate/log": "self.version",
  1446. "illuminate/macroable": "self.version",
  1447. "illuminate/mail": "self.version",
  1448. "illuminate/notifications": "self.version",
  1449. "illuminate/pagination": "self.version",
  1450. "illuminate/pipeline": "self.version",
  1451. "illuminate/process": "self.version",
  1452. "illuminate/queue": "self.version",
  1453. "illuminate/redis": "self.version",
  1454. "illuminate/routing": "self.version",
  1455. "illuminate/session": "self.version",
  1456. "illuminate/support": "self.version",
  1457. "illuminate/testing": "self.version",
  1458. "illuminate/translation": "self.version",
  1459. "illuminate/validation": "self.version",
  1460. "illuminate/view": "self.version",
  1461. "spatie/once": "*"
  1462. },
  1463. "require-dev": {
  1464. "ably/ably-php": "^1.0",
  1465. "aws/aws-sdk-php": "^3.235.5",
  1466. "ext-gmp": "*",
  1467. "fakerphp/faker": "^1.23",
  1468. "league/flysystem-aws-s3-v3": "^3.0",
  1469. "league/flysystem-ftp": "^3.0",
  1470. "league/flysystem-path-prefixing": "^3.3",
  1471. "league/flysystem-read-only": "^3.3",
  1472. "league/flysystem-sftp-v3": "^3.0",
  1473. "mockery/mockery": "^1.6",
  1474. "nyholm/psr7": "^1.2",
  1475. "orchestra/testbench-core": "^9.1.5",
  1476. "pda/pheanstalk": "^5.0",
  1477. "phpstan/phpstan": "^1.11.5",
  1478. "phpunit/phpunit": "^10.5|^11.0",
  1479. "predis/predis": "^2.0.2",
  1480. "resend/resend-php": "^0.10.0",
  1481. "symfony/cache": "^7.0",
  1482. "symfony/http-client": "^7.0",
  1483. "symfony/psr-http-message-bridge": "^7.0"
  1484. },
  1485. "suggest": {
  1486. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1487. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1488. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1489. "ext-apcu": "Required to use the APC cache driver.",
  1490. "ext-fileinfo": "Required to use the Filesystem class.",
  1491. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1492. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1493. "ext-memcached": "Required to use the memcache cache driver.",
  1494. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1495. "ext-pdo": "Required to use all database features.",
  1496. "ext-posix": "Required to use all features of the queue worker.",
  1497. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1498. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1499. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1500. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1501. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1502. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1503. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1504. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1505. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1506. "mockery/mockery": "Required to use mocking (^1.6).",
  1507. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1508. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1509. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1510. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1511. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1512. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1513. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1514. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1515. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1516. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1517. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1518. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1519. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1520. },
  1521. "type": "library",
  1522. "extra": {
  1523. "branch-alias": {
  1524. "dev-master": "11.x-dev"
  1525. }
  1526. },
  1527. "autoload": {
  1528. "files": [
  1529. "src/Illuminate/Collections/helpers.php",
  1530. "src/Illuminate/Events/functions.php",
  1531. "src/Illuminate/Filesystem/functions.php",
  1532. "src/Illuminate/Foundation/helpers.php",
  1533. "src/Illuminate/Support/helpers.php"
  1534. ],
  1535. "psr-4": {
  1536. "Illuminate\\": "src/Illuminate/",
  1537. "Illuminate\\Support\\": [
  1538. "src/Illuminate/Macroable/",
  1539. "src/Illuminate/Collections/",
  1540. "src/Illuminate/Conditionable/"
  1541. ]
  1542. }
  1543. },
  1544. "notification-url": "https://packagist.org/downloads/",
  1545. "license": [
  1546. "MIT"
  1547. ],
  1548. "authors": [
  1549. {
  1550. "name": "Taylor Otwell",
  1551. "email": "taylor@laravel.com"
  1552. }
  1553. ],
  1554. "description": "The Laravel Framework.",
  1555. "homepage": "https://laravel.com",
  1556. "keywords": [
  1557. "framework",
  1558. "laravel"
  1559. ],
  1560. "support": {
  1561. "issues": "https://github.com/laravel/framework/issues",
  1562. "source": "https://github.com/laravel/framework"
  1563. },
  1564. "time": "2024-08-20T15:00:52+00:00"
  1565. },
  1566. {
  1567. "name": "laravel/prompts",
  1568. "version": "v0.1.25",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/laravel/prompts.git",
  1572. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95",
  1577. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "ext-mbstring": "*",
  1582. "illuminate/collections": "^10.0|^11.0",
  1583. "php": "^8.1",
  1584. "symfony/console": "^6.2|^7.0"
  1585. },
  1586. "conflict": {
  1587. "illuminate/console": ">=10.17.0 <10.25.0",
  1588. "laravel/framework": ">=10.17.0 <10.25.0"
  1589. },
  1590. "require-dev": {
  1591. "mockery/mockery": "^1.5",
  1592. "pestphp/pest": "^2.3",
  1593. "phpstan/phpstan": "^1.11",
  1594. "phpstan/phpstan-mockery": "^1.1"
  1595. },
  1596. "suggest": {
  1597. "ext-pcntl": "Required for the spinner to be animated."
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-main": "0.1.x-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "files": [
  1607. "src/helpers.php"
  1608. ],
  1609. "psr-4": {
  1610. "Laravel\\Prompts\\": "src/"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1618. "support": {
  1619. "issues": "https://github.com/laravel/prompts/issues",
  1620. "source": "https://github.com/laravel/prompts/tree/v0.1.25"
  1621. },
  1622. "time": "2024-08-12T22:06:33+00:00"
  1623. },
  1624. {
  1625. "name": "laravel/sanctum",
  1626. "version": "v4.0.2",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/laravel/sanctum.git",
  1630. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/laravel/sanctum/zipball/9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  1635. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "ext-json": "*",
  1640. "illuminate/console": "^11.0",
  1641. "illuminate/contracts": "^11.0",
  1642. "illuminate/database": "^11.0",
  1643. "illuminate/support": "^11.0",
  1644. "php": "^8.2",
  1645. "symfony/console": "^7.0"
  1646. },
  1647. "require-dev": {
  1648. "mockery/mockery": "^1.6",
  1649. "orchestra/testbench": "^9.0",
  1650. "phpstan/phpstan": "^1.10",
  1651. "phpunit/phpunit": "^10.5"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "laravel": {
  1656. "providers": [
  1657. "Laravel\\Sanctum\\SanctumServiceProvider"
  1658. ]
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Laravel\\Sanctum\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Taylor Otwell",
  1673. "email": "taylor@laravel.com"
  1674. }
  1675. ],
  1676. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1677. "keywords": [
  1678. "auth",
  1679. "laravel",
  1680. "sanctum"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/laravel/sanctum/issues",
  1684. "source": "https://github.com/laravel/sanctum"
  1685. },
  1686. "time": "2024-04-10T19:39:58+00:00"
  1687. },
  1688. {
  1689. "name": "laravel/serializable-closure",
  1690. "version": "v1.3.4",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/laravel/serializable-closure.git",
  1694. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  1699. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "php": "^7.3|^8.0"
  1704. },
  1705. "require-dev": {
  1706. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1707. "nesbot/carbon": "^2.61|^3.0",
  1708. "pestphp/pest": "^1.21.3",
  1709. "phpstan/phpstan": "^1.8.2",
  1710. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1711. },
  1712. "type": "library",
  1713. "extra": {
  1714. "branch-alias": {
  1715. "dev-master": "1.x-dev"
  1716. }
  1717. },
  1718. "autoload": {
  1719. "psr-4": {
  1720. "Laravel\\SerializableClosure\\": "src/"
  1721. }
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Taylor Otwell",
  1730. "email": "taylor@laravel.com"
  1731. },
  1732. {
  1733. "name": "Nuno Maduro",
  1734. "email": "nuno@laravel.com"
  1735. }
  1736. ],
  1737. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1738. "keywords": [
  1739. "closure",
  1740. "laravel",
  1741. "serializable"
  1742. ],
  1743. "support": {
  1744. "issues": "https://github.com/laravel/serializable-closure/issues",
  1745. "source": "https://github.com/laravel/serializable-closure"
  1746. },
  1747. "time": "2024-08-02T07:48:17+00:00"
  1748. },
  1749. {
  1750. "name": "laravel/tinker",
  1751. "version": "v2.9.0",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/laravel/tinker.git",
  1755. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1760. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1761. "shasum": ""
  1762. },
  1763. "require": {
  1764. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1765. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1766. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1767. "php": "^7.2.5|^8.0",
  1768. "psy/psysh": "^0.11.1|^0.12.0",
  1769. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1770. },
  1771. "require-dev": {
  1772. "mockery/mockery": "~1.3.3|^1.4.2",
  1773. "phpstan/phpstan": "^1.10",
  1774. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1775. },
  1776. "suggest": {
  1777. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1778. },
  1779. "type": "library",
  1780. "extra": {
  1781. "laravel": {
  1782. "providers": [
  1783. "Laravel\\Tinker\\TinkerServiceProvider"
  1784. ]
  1785. }
  1786. },
  1787. "autoload": {
  1788. "psr-4": {
  1789. "Laravel\\Tinker\\": "src/"
  1790. }
  1791. },
  1792. "notification-url": "https://packagist.org/downloads/",
  1793. "license": [
  1794. "MIT"
  1795. ],
  1796. "authors": [
  1797. {
  1798. "name": "Taylor Otwell",
  1799. "email": "taylor@laravel.com"
  1800. }
  1801. ],
  1802. "description": "Powerful REPL for the Laravel framework.",
  1803. "keywords": [
  1804. "REPL",
  1805. "Tinker",
  1806. "laravel",
  1807. "psysh"
  1808. ],
  1809. "support": {
  1810. "issues": "https://github.com/laravel/tinker/issues",
  1811. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  1812. },
  1813. "time": "2024-01-04T16:10:04+00:00"
  1814. },
  1815. {
  1816. "name": "league/commonmark",
  1817. "version": "2.5.3",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/thephpleague/commonmark.git",
  1821. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1826. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "ext-mbstring": "*",
  1831. "league/config": "^1.1.1",
  1832. "php": "^7.4 || ^8.0",
  1833. "psr/event-dispatcher": "^1.0",
  1834. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1835. "symfony/polyfill-php80": "^1.16"
  1836. },
  1837. "require-dev": {
  1838. "cebe/markdown": "^1.0",
  1839. "commonmark/cmark": "0.31.1",
  1840. "commonmark/commonmark.js": "0.31.1",
  1841. "composer/package-versions-deprecated": "^1.8",
  1842. "embed/embed": "^4.4",
  1843. "erusev/parsedown": "^1.0",
  1844. "ext-json": "*",
  1845. "github/gfm": "0.29.0",
  1846. "michelf/php-markdown": "^1.4 || ^2.0",
  1847. "nyholm/psr7": "^1.5",
  1848. "phpstan/phpstan": "^1.8.2",
  1849. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1850. "scrutinizer/ocular": "^1.8.1",
  1851. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1852. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1853. "unleashedtech/php-coding-standard": "^3.1.1",
  1854. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1855. },
  1856. "suggest": {
  1857. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1858. },
  1859. "type": "library",
  1860. "extra": {
  1861. "branch-alias": {
  1862. "dev-main": "2.6-dev"
  1863. }
  1864. },
  1865. "autoload": {
  1866. "psr-4": {
  1867. "League\\CommonMark\\": "src"
  1868. }
  1869. },
  1870. "notification-url": "https://packagist.org/downloads/",
  1871. "license": [
  1872. "BSD-3-Clause"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Colin O'Dell",
  1877. "email": "colinodell@gmail.com",
  1878. "homepage": "https://www.colinodell.com",
  1879. "role": "Lead Developer"
  1880. }
  1881. ],
  1882. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1883. "homepage": "https://commonmark.thephpleague.com",
  1884. "keywords": [
  1885. "commonmark",
  1886. "flavored",
  1887. "gfm",
  1888. "github",
  1889. "github-flavored",
  1890. "markdown",
  1891. "md",
  1892. "parser"
  1893. ],
  1894. "support": {
  1895. "docs": "https://commonmark.thephpleague.com/",
  1896. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1897. "issues": "https://github.com/thephpleague/commonmark/issues",
  1898. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1899. "source": "https://github.com/thephpleague/commonmark"
  1900. },
  1901. "funding": [
  1902. {
  1903. "url": "https://www.colinodell.com/sponsor",
  1904. "type": "custom"
  1905. },
  1906. {
  1907. "url": "https://www.paypal.me/colinpodell/10.00",
  1908. "type": "custom"
  1909. },
  1910. {
  1911. "url": "https://github.com/colinodell",
  1912. "type": "github"
  1913. },
  1914. {
  1915. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1916. "type": "tidelift"
  1917. }
  1918. ],
  1919. "time": "2024-08-16T11:46:16+00:00"
  1920. },
  1921. {
  1922. "name": "league/config",
  1923. "version": "v1.2.0",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/thephpleague/config.git",
  1927. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1932. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "dflydev/dot-access-data": "^3.0.1",
  1937. "nette/schema": "^1.2",
  1938. "php": "^7.4 || ^8.0"
  1939. },
  1940. "require-dev": {
  1941. "phpstan/phpstan": "^1.8.2",
  1942. "phpunit/phpunit": "^9.5.5",
  1943. "scrutinizer/ocular": "^1.8.1",
  1944. "unleashedtech/php-coding-standard": "^3.1",
  1945. "vimeo/psalm": "^4.7.3"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-main": "1.2-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "League\\Config\\": "src"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "BSD-3-Clause"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Colin O'Dell",
  1965. "email": "colinodell@gmail.com",
  1966. "homepage": "https://www.colinodell.com",
  1967. "role": "Lead Developer"
  1968. }
  1969. ],
  1970. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1971. "homepage": "https://config.thephpleague.com",
  1972. "keywords": [
  1973. "array",
  1974. "config",
  1975. "configuration",
  1976. "dot",
  1977. "dot-access",
  1978. "nested",
  1979. "schema"
  1980. ],
  1981. "support": {
  1982. "docs": "https://config.thephpleague.com/",
  1983. "issues": "https://github.com/thephpleague/config/issues",
  1984. "rss": "https://github.com/thephpleague/config/releases.atom",
  1985. "source": "https://github.com/thephpleague/config"
  1986. },
  1987. "funding": [
  1988. {
  1989. "url": "https://www.colinodell.com/sponsor",
  1990. "type": "custom"
  1991. },
  1992. {
  1993. "url": "https://www.paypal.me/colinpodell/10.00",
  1994. "type": "custom"
  1995. },
  1996. {
  1997. "url": "https://github.com/colinodell",
  1998. "type": "github"
  1999. }
  2000. ],
  2001. "time": "2022-12-11T20:36:23+00:00"
  2002. },
  2003. {
  2004. "name": "league/flysystem",
  2005. "version": "3.28.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/thephpleague/flysystem.git",
  2009. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  2014. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "league/flysystem-local": "^3.0.0",
  2019. "league/mime-type-detection": "^1.0.0",
  2020. "php": "^8.0.2"
  2021. },
  2022. "conflict": {
  2023. "async-aws/core": "<1.19.0",
  2024. "async-aws/s3": "<1.14.0",
  2025. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2026. "guzzlehttp/guzzle": "<7.0",
  2027. "guzzlehttp/ringphp": "<1.1.1",
  2028. "phpseclib/phpseclib": "3.0.15",
  2029. "symfony/http-client": "<5.2"
  2030. },
  2031. "require-dev": {
  2032. "async-aws/s3": "^1.5 || ^2.0",
  2033. "async-aws/simple-s3": "^1.1 || ^2.0",
  2034. "aws/aws-sdk-php": "^3.295.10",
  2035. "composer/semver": "^3.0",
  2036. "ext-fileinfo": "*",
  2037. "ext-ftp": "*",
  2038. "ext-mongodb": "^1.3",
  2039. "ext-zip": "*",
  2040. "friendsofphp/php-cs-fixer": "^3.5",
  2041. "google/cloud-storage": "^1.23",
  2042. "guzzlehttp/psr7": "^2.6",
  2043. "microsoft/azure-storage-blob": "^1.1",
  2044. "mongodb/mongodb": "^1.2",
  2045. "phpseclib/phpseclib": "^3.0.36",
  2046. "phpstan/phpstan": "^1.10",
  2047. "phpunit/phpunit": "^9.5.11|^10.0",
  2048. "sabre/dav": "^4.6.0"
  2049. },
  2050. "type": "library",
  2051. "autoload": {
  2052. "psr-4": {
  2053. "League\\Flysystem\\": "src"
  2054. }
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "MIT"
  2059. ],
  2060. "authors": [
  2061. {
  2062. "name": "Frank de Jonge",
  2063. "email": "info@frankdejonge.nl"
  2064. }
  2065. ],
  2066. "description": "File storage abstraction for PHP",
  2067. "keywords": [
  2068. "WebDAV",
  2069. "aws",
  2070. "cloud",
  2071. "file",
  2072. "files",
  2073. "filesystem",
  2074. "filesystems",
  2075. "ftp",
  2076. "s3",
  2077. "sftp",
  2078. "storage"
  2079. ],
  2080. "support": {
  2081. "issues": "https://github.com/thephpleague/flysystem/issues",
  2082. "source": "https://github.com/thephpleague/flysystem/tree/3.28.0"
  2083. },
  2084. "time": "2024-05-22T10:09:12+00:00"
  2085. },
  2086. {
  2087. "name": "league/flysystem-local",
  2088. "version": "3.28.0",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/thephpleague/flysystem-local.git",
  2092. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  2097. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "ext-fileinfo": "*",
  2102. "league/flysystem": "^3.0.0",
  2103. "league/mime-type-detection": "^1.0.0",
  2104. "php": "^8.0.2"
  2105. },
  2106. "type": "library",
  2107. "autoload": {
  2108. "psr-4": {
  2109. "League\\Flysystem\\Local\\": ""
  2110. }
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "MIT"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Frank de Jonge",
  2119. "email": "info@frankdejonge.nl"
  2120. }
  2121. ],
  2122. "description": "Local filesystem adapter for Flysystem.",
  2123. "keywords": [
  2124. "Flysystem",
  2125. "file",
  2126. "files",
  2127. "filesystem",
  2128. "local"
  2129. ],
  2130. "support": {
  2131. "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0"
  2132. },
  2133. "time": "2024-05-06T20:05:52+00:00"
  2134. },
  2135. {
  2136. "name": "league/mime-type-detection",
  2137. "version": "1.15.0",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2141. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2146. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2147. "shasum": ""
  2148. },
  2149. "require": {
  2150. "ext-fileinfo": "*",
  2151. "php": "^7.4 || ^8.0"
  2152. },
  2153. "require-dev": {
  2154. "friendsofphp/php-cs-fixer": "^3.2",
  2155. "phpstan/phpstan": "^0.12.68",
  2156. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2157. },
  2158. "type": "library",
  2159. "autoload": {
  2160. "psr-4": {
  2161. "League\\MimeTypeDetection\\": "src"
  2162. }
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "MIT"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "Frank de Jonge",
  2171. "email": "info@frankdejonge.nl"
  2172. }
  2173. ],
  2174. "description": "Mime-type detection for Flysystem",
  2175. "support": {
  2176. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2177. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2178. },
  2179. "funding": [
  2180. {
  2181. "url": "https://github.com/frankdejonge",
  2182. "type": "github"
  2183. },
  2184. {
  2185. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2186. "type": "tidelift"
  2187. }
  2188. ],
  2189. "time": "2024-01-28T23:22:08+00:00"
  2190. },
  2191. {
  2192. "name": "monolog/monolog",
  2193. "version": "3.7.0",
  2194. "source": {
  2195. "type": "git",
  2196. "url": "https://github.com/Seldaek/monolog.git",
  2197. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2198. },
  2199. "dist": {
  2200. "type": "zip",
  2201. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2202. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2203. "shasum": ""
  2204. },
  2205. "require": {
  2206. "php": ">=8.1",
  2207. "psr/log": "^2.0 || ^3.0"
  2208. },
  2209. "provide": {
  2210. "psr/log-implementation": "3.0.0"
  2211. },
  2212. "require-dev": {
  2213. "aws/aws-sdk-php": "^3.0",
  2214. "doctrine/couchdb": "~1.0@dev",
  2215. "elasticsearch/elasticsearch": "^7 || ^8",
  2216. "ext-json": "*",
  2217. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2218. "guzzlehttp/guzzle": "^7.4.5",
  2219. "guzzlehttp/psr7": "^2.2",
  2220. "mongodb/mongodb": "^1.8",
  2221. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2222. "phpstan/phpstan": "^1.9",
  2223. "phpstan/phpstan-deprecation-rules": "^1.0",
  2224. "phpstan/phpstan-strict-rules": "^1.4",
  2225. "phpunit/phpunit": "^10.5.17",
  2226. "predis/predis": "^1.1 || ^2",
  2227. "ruflin/elastica": "^7",
  2228. "symfony/mailer": "^5.4 || ^6",
  2229. "symfony/mime": "^5.4 || ^6"
  2230. },
  2231. "suggest": {
  2232. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2233. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2234. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2235. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2236. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2237. "ext-mbstring": "Allow to work properly with unicode symbols",
  2238. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2239. "ext-openssl": "Required to send log messages using SSL",
  2240. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2241. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2242. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2243. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2244. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2245. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2246. },
  2247. "type": "library",
  2248. "extra": {
  2249. "branch-alias": {
  2250. "dev-main": "3.x-dev"
  2251. }
  2252. },
  2253. "autoload": {
  2254. "psr-4": {
  2255. "Monolog\\": "src/Monolog"
  2256. }
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "MIT"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Jordi Boggiano",
  2265. "email": "j.boggiano@seld.be",
  2266. "homepage": "https://seld.be"
  2267. }
  2268. ],
  2269. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2270. "homepage": "https://github.com/Seldaek/monolog",
  2271. "keywords": [
  2272. "log",
  2273. "logging",
  2274. "psr-3"
  2275. ],
  2276. "support": {
  2277. "issues": "https://github.com/Seldaek/monolog/issues",
  2278. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2279. },
  2280. "funding": [
  2281. {
  2282. "url": "https://github.com/Seldaek",
  2283. "type": "github"
  2284. },
  2285. {
  2286. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2287. "type": "tidelift"
  2288. }
  2289. ],
  2290. "time": "2024-06-28T09:40:51+00:00"
  2291. },
  2292. {
  2293. "name": "nesbot/carbon",
  2294. "version": "3.8.0",
  2295. "source": {
  2296. "type": "git",
  2297. "url": "https://github.com/briannesbitt/Carbon.git",
  2298. "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f"
  2299. },
  2300. "dist": {
  2301. "type": "zip",
  2302. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bbd3eef89af8ba66a3aa7952b5439168fbcc529f",
  2303. "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f",
  2304. "shasum": ""
  2305. },
  2306. "require": {
  2307. "carbonphp/carbon-doctrine-types": "*",
  2308. "ext-json": "*",
  2309. "php": "^8.1",
  2310. "psr/clock": "^1.0",
  2311. "symfony/clock": "^6.3 || ^7.0",
  2312. "symfony/polyfill-mbstring": "^1.0",
  2313. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2314. },
  2315. "provide": {
  2316. "psr/clock-implementation": "1.0"
  2317. },
  2318. "require-dev": {
  2319. "doctrine/dbal": "^3.6.3 || ^4.0",
  2320. "doctrine/orm": "^2.15.2 || ^3.0",
  2321. "friendsofphp/php-cs-fixer": "^3.57.2",
  2322. "kylekatarnls/multi-tester": "^2.5.3",
  2323. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2324. "phpmd/phpmd": "^2.15.0",
  2325. "phpstan/extension-installer": "^1.3.1",
  2326. "phpstan/phpstan": "^1.11.2",
  2327. "phpunit/phpunit": "^10.5.20",
  2328. "squizlabs/php_codesniffer": "^3.9.0"
  2329. },
  2330. "bin": [
  2331. "bin/carbon"
  2332. ],
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "3.x-dev",
  2337. "dev-2.x": "2.x-dev"
  2338. },
  2339. "laravel": {
  2340. "providers": [
  2341. "Carbon\\Laravel\\ServiceProvider"
  2342. ]
  2343. },
  2344. "phpstan": {
  2345. "includes": [
  2346. "extension.neon"
  2347. ]
  2348. }
  2349. },
  2350. "autoload": {
  2351. "psr-4": {
  2352. "Carbon\\": "src/Carbon/"
  2353. }
  2354. },
  2355. "notification-url": "https://packagist.org/downloads/",
  2356. "license": [
  2357. "MIT"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Brian Nesbitt",
  2362. "email": "brian@nesbot.com",
  2363. "homepage": "https://markido.com"
  2364. },
  2365. {
  2366. "name": "kylekatarnls",
  2367. "homepage": "https://github.com/kylekatarnls"
  2368. }
  2369. ],
  2370. "description": "An API extension for DateTime that supports 281 different languages.",
  2371. "homepage": "https://carbon.nesbot.com",
  2372. "keywords": [
  2373. "date",
  2374. "datetime",
  2375. "time"
  2376. ],
  2377. "support": {
  2378. "docs": "https://carbon.nesbot.com/docs",
  2379. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2380. "source": "https://github.com/briannesbitt/Carbon"
  2381. },
  2382. "funding": [
  2383. {
  2384. "url": "https://github.com/sponsors/kylekatarnls",
  2385. "type": "github"
  2386. },
  2387. {
  2388. "url": "https://opencollective.com/Carbon#sponsor",
  2389. "type": "opencollective"
  2390. },
  2391. {
  2392. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2393. "type": "tidelift"
  2394. }
  2395. ],
  2396. "time": "2024-08-19T06:22:39+00:00"
  2397. },
  2398. {
  2399. "name": "nette/schema",
  2400. "version": "v1.3.0",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://github.com/nette/schema.git",
  2404. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2409. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2410. "shasum": ""
  2411. },
  2412. "require": {
  2413. "nette/utils": "^4.0",
  2414. "php": "8.1 - 8.3"
  2415. },
  2416. "require-dev": {
  2417. "nette/tester": "^2.4",
  2418. "phpstan/phpstan-nette": "^1.0",
  2419. "tracy/tracy": "^2.8"
  2420. },
  2421. "type": "library",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "1.3-dev"
  2425. }
  2426. },
  2427. "autoload": {
  2428. "classmap": [
  2429. "src/"
  2430. ]
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "BSD-3-Clause",
  2435. "GPL-2.0-only",
  2436. "GPL-3.0-only"
  2437. ],
  2438. "authors": [
  2439. {
  2440. "name": "David Grudl",
  2441. "homepage": "https://davidgrudl.com"
  2442. },
  2443. {
  2444. "name": "Nette Community",
  2445. "homepage": "https://nette.org/contributors"
  2446. }
  2447. ],
  2448. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2449. "homepage": "https://nette.org",
  2450. "keywords": [
  2451. "config",
  2452. "nette"
  2453. ],
  2454. "support": {
  2455. "issues": "https://github.com/nette/schema/issues",
  2456. "source": "https://github.com/nette/schema/tree/v1.3.0"
  2457. },
  2458. "time": "2023-12-11T11:54:22+00:00"
  2459. },
  2460. {
  2461. "name": "nette/utils",
  2462. "version": "v4.0.5",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/nette/utils.git",
  2466. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2471. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2472. "shasum": ""
  2473. },
  2474. "require": {
  2475. "php": "8.0 - 8.4"
  2476. },
  2477. "conflict": {
  2478. "nette/finder": "<3",
  2479. "nette/schema": "<1.2.2"
  2480. },
  2481. "require-dev": {
  2482. "jetbrains/phpstorm-attributes": "dev-master",
  2483. "nette/tester": "^2.5",
  2484. "phpstan/phpstan": "^1.0",
  2485. "tracy/tracy": "^2.9"
  2486. },
  2487. "suggest": {
  2488. "ext-gd": "to use Image",
  2489. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2490. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2491. "ext-json": "to use Nette\\Utils\\Json",
  2492. "ext-mbstring": "to use Strings::lower() etc...",
  2493. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2494. },
  2495. "type": "library",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-master": "4.0-dev"
  2499. }
  2500. },
  2501. "autoload": {
  2502. "classmap": [
  2503. "src/"
  2504. ]
  2505. },
  2506. "notification-url": "https://packagist.org/downloads/",
  2507. "license": [
  2508. "BSD-3-Clause",
  2509. "GPL-2.0-only",
  2510. "GPL-3.0-only"
  2511. ],
  2512. "authors": [
  2513. {
  2514. "name": "David Grudl",
  2515. "homepage": "https://davidgrudl.com"
  2516. },
  2517. {
  2518. "name": "Nette Community",
  2519. "homepage": "https://nette.org/contributors"
  2520. }
  2521. ],
  2522. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2523. "homepage": "https://nette.org",
  2524. "keywords": [
  2525. "array",
  2526. "core",
  2527. "datetime",
  2528. "images",
  2529. "json",
  2530. "nette",
  2531. "paginator",
  2532. "password",
  2533. "slugify",
  2534. "string",
  2535. "unicode",
  2536. "utf-8",
  2537. "utility",
  2538. "validation"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/nette/utils/issues",
  2542. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2543. },
  2544. "time": "2024-08-07T15:39:19+00:00"
  2545. },
  2546. {
  2547. "name": "nikic/php-parser",
  2548. "version": "v5.1.0",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/nikic/PHP-Parser.git",
  2552. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  2557. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "ext-ctype": "*",
  2562. "ext-json": "*",
  2563. "ext-tokenizer": "*",
  2564. "php": ">=7.4"
  2565. },
  2566. "require-dev": {
  2567. "ircmaxell/php-yacc": "^0.0.7",
  2568. "phpunit/phpunit": "^9.0"
  2569. },
  2570. "bin": [
  2571. "bin/php-parse"
  2572. ],
  2573. "type": "library",
  2574. "extra": {
  2575. "branch-alias": {
  2576. "dev-master": "5.0-dev"
  2577. }
  2578. },
  2579. "autoload": {
  2580. "psr-4": {
  2581. "PhpParser\\": "lib/PhpParser"
  2582. }
  2583. },
  2584. "notification-url": "https://packagist.org/downloads/",
  2585. "license": [
  2586. "BSD-3-Clause"
  2587. ],
  2588. "authors": [
  2589. {
  2590. "name": "Nikita Popov"
  2591. }
  2592. ],
  2593. "description": "A PHP parser written in PHP",
  2594. "keywords": [
  2595. "parser",
  2596. "php"
  2597. ],
  2598. "support": {
  2599. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2600. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  2601. },
  2602. "time": "2024-07-01T20:03:41+00:00"
  2603. },
  2604. {
  2605. "name": "nunomaduro/termwind",
  2606. "version": "v2.0.1",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/nunomaduro/termwind.git",
  2610. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a",
  2615. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a",
  2616. "shasum": ""
  2617. },
  2618. "require": {
  2619. "ext-mbstring": "*",
  2620. "php": "^8.2",
  2621. "symfony/console": "^7.0.4"
  2622. },
  2623. "require-dev": {
  2624. "ergebnis/phpstan-rules": "^2.2.0",
  2625. "illuminate/console": "^11.0.0",
  2626. "laravel/pint": "^1.14.0",
  2627. "mockery/mockery": "^1.6.7",
  2628. "pestphp/pest": "^2.34.1",
  2629. "phpstan/phpstan": "^1.10.59",
  2630. "phpstan/phpstan-strict-rules": "^1.5.2",
  2631. "symfony/var-dumper": "^7.0.4",
  2632. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2633. },
  2634. "type": "library",
  2635. "extra": {
  2636. "laravel": {
  2637. "providers": [
  2638. "Termwind\\Laravel\\TermwindServiceProvider"
  2639. ]
  2640. },
  2641. "branch-alias": {
  2642. "dev-2.x": "2.x-dev"
  2643. }
  2644. },
  2645. "autoload": {
  2646. "files": [
  2647. "src/Functions.php"
  2648. ],
  2649. "psr-4": {
  2650. "Termwind\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Nuno Maduro",
  2660. "email": "enunomaduro@gmail.com"
  2661. }
  2662. ],
  2663. "description": "Its like Tailwind CSS, but for the console.",
  2664. "keywords": [
  2665. "cli",
  2666. "console",
  2667. "css",
  2668. "package",
  2669. "php",
  2670. "style"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/nunomaduro/termwind/issues",
  2674. "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1"
  2675. },
  2676. "funding": [
  2677. {
  2678. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2679. "type": "custom"
  2680. },
  2681. {
  2682. "url": "https://github.com/nunomaduro",
  2683. "type": "github"
  2684. },
  2685. {
  2686. "url": "https://github.com/xiCO2k",
  2687. "type": "github"
  2688. }
  2689. ],
  2690. "time": "2024-03-06T16:17:14+00:00"
  2691. },
  2692. {
  2693. "name": "phpoption/phpoption",
  2694. "version": "1.9.3",
  2695. "source": {
  2696. "type": "git",
  2697. "url": "https://github.com/schmittjoh/php-option.git",
  2698. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  2699. },
  2700. "dist": {
  2701. "type": "zip",
  2702. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  2703. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  2704. "shasum": ""
  2705. },
  2706. "require": {
  2707. "php": "^7.2.5 || ^8.0"
  2708. },
  2709. "require-dev": {
  2710. "bamarni/composer-bin-plugin": "^1.8.2",
  2711. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2712. },
  2713. "type": "library",
  2714. "extra": {
  2715. "bamarni-bin": {
  2716. "bin-links": true,
  2717. "forward-command": false
  2718. },
  2719. "branch-alias": {
  2720. "dev-master": "1.9-dev"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "PhpOption\\": "src/PhpOption/"
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "Apache-2.0"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Johannes M. Schmitt",
  2735. "email": "schmittjoh@gmail.com",
  2736. "homepage": "https://github.com/schmittjoh"
  2737. },
  2738. {
  2739. "name": "Graham Campbell",
  2740. "email": "hello@gjcampbell.co.uk",
  2741. "homepage": "https://github.com/GrahamCampbell"
  2742. }
  2743. ],
  2744. "description": "Option Type for PHP",
  2745. "keywords": [
  2746. "language",
  2747. "option",
  2748. "php",
  2749. "type"
  2750. ],
  2751. "support": {
  2752. "issues": "https://github.com/schmittjoh/php-option/issues",
  2753. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://github.com/GrahamCampbell",
  2758. "type": "github"
  2759. },
  2760. {
  2761. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2762. "type": "tidelift"
  2763. }
  2764. ],
  2765. "time": "2024-07-20T21:41:07+00:00"
  2766. },
  2767. {
  2768. "name": "psr/clock",
  2769. "version": "1.0.0",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/php-fig/clock.git",
  2773. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2778. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": "^7.0 || ^8.0"
  2783. },
  2784. "type": "library",
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Psr\\Clock\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "PHP-FIG",
  2797. "homepage": "https://www.php-fig.org/"
  2798. }
  2799. ],
  2800. "description": "Common interface for reading the clock.",
  2801. "homepage": "https://github.com/php-fig/clock",
  2802. "keywords": [
  2803. "clock",
  2804. "now",
  2805. "psr",
  2806. "psr-20",
  2807. "time"
  2808. ],
  2809. "support": {
  2810. "issues": "https://github.com/php-fig/clock/issues",
  2811. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2812. },
  2813. "time": "2022-11-25T14:36:26+00:00"
  2814. },
  2815. {
  2816. "name": "psr/container",
  2817. "version": "2.0.2",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/php-fig/container.git",
  2821. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2826. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "php": ">=7.4.0"
  2831. },
  2832. "type": "library",
  2833. "extra": {
  2834. "branch-alias": {
  2835. "dev-master": "2.0.x-dev"
  2836. }
  2837. },
  2838. "autoload": {
  2839. "psr-4": {
  2840. "Psr\\Container\\": "src/"
  2841. }
  2842. },
  2843. "notification-url": "https://packagist.org/downloads/",
  2844. "license": [
  2845. "MIT"
  2846. ],
  2847. "authors": [
  2848. {
  2849. "name": "PHP-FIG",
  2850. "homepage": "https://www.php-fig.org/"
  2851. }
  2852. ],
  2853. "description": "Common Container Interface (PHP FIG PSR-11)",
  2854. "homepage": "https://github.com/php-fig/container",
  2855. "keywords": [
  2856. "PSR-11",
  2857. "container",
  2858. "container-interface",
  2859. "container-interop",
  2860. "psr"
  2861. ],
  2862. "support": {
  2863. "issues": "https://github.com/php-fig/container/issues",
  2864. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2865. },
  2866. "time": "2021-11-05T16:47:00+00:00"
  2867. },
  2868. {
  2869. "name": "psr/event-dispatcher",
  2870. "version": "1.0.0",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/php-fig/event-dispatcher.git",
  2874. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2879. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2880. "shasum": ""
  2881. },
  2882. "require": {
  2883. "php": ">=7.2.0"
  2884. },
  2885. "type": "library",
  2886. "extra": {
  2887. "branch-alias": {
  2888. "dev-master": "1.0.x-dev"
  2889. }
  2890. },
  2891. "autoload": {
  2892. "psr-4": {
  2893. "Psr\\EventDispatcher\\": "src/"
  2894. }
  2895. },
  2896. "notification-url": "https://packagist.org/downloads/",
  2897. "license": [
  2898. "MIT"
  2899. ],
  2900. "authors": [
  2901. {
  2902. "name": "PHP-FIG",
  2903. "homepage": "http://www.php-fig.org/"
  2904. }
  2905. ],
  2906. "description": "Standard interfaces for event handling.",
  2907. "keywords": [
  2908. "events",
  2909. "psr",
  2910. "psr-14"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2914. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2915. },
  2916. "time": "2019-01-08T18:20:26+00:00"
  2917. },
  2918. {
  2919. "name": "psr/http-client",
  2920. "version": "1.0.3",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/php-fig/http-client.git",
  2924. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2929. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2930. "shasum": ""
  2931. },
  2932. "require": {
  2933. "php": "^7.0 || ^8.0",
  2934. "psr/http-message": "^1.0 || ^2.0"
  2935. },
  2936. "type": "library",
  2937. "extra": {
  2938. "branch-alias": {
  2939. "dev-master": "1.0.x-dev"
  2940. }
  2941. },
  2942. "autoload": {
  2943. "psr-4": {
  2944. "Psr\\Http\\Client\\": "src/"
  2945. }
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "PHP-FIG",
  2954. "homepage": "https://www.php-fig.org/"
  2955. }
  2956. ],
  2957. "description": "Common interface for HTTP clients",
  2958. "homepage": "https://github.com/php-fig/http-client",
  2959. "keywords": [
  2960. "http",
  2961. "http-client",
  2962. "psr",
  2963. "psr-18"
  2964. ],
  2965. "support": {
  2966. "source": "https://github.com/php-fig/http-client"
  2967. },
  2968. "time": "2023-09-23T14:17:50+00:00"
  2969. },
  2970. {
  2971. "name": "psr/http-factory",
  2972. "version": "1.1.0",
  2973. "source": {
  2974. "type": "git",
  2975. "url": "https://github.com/php-fig/http-factory.git",
  2976. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2977. },
  2978. "dist": {
  2979. "type": "zip",
  2980. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2981. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2982. "shasum": ""
  2983. },
  2984. "require": {
  2985. "php": ">=7.1",
  2986. "psr/http-message": "^1.0 || ^2.0"
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "branch-alias": {
  2991. "dev-master": "1.0.x-dev"
  2992. }
  2993. },
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Psr\\Http\\Message\\": "src/"
  2997. }
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "PHP-FIG",
  3006. "homepage": "https://www.php-fig.org/"
  3007. }
  3008. ],
  3009. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3010. "keywords": [
  3011. "factory",
  3012. "http",
  3013. "message",
  3014. "psr",
  3015. "psr-17",
  3016. "psr-7",
  3017. "request",
  3018. "response"
  3019. ],
  3020. "support": {
  3021. "source": "https://github.com/php-fig/http-factory"
  3022. },
  3023. "time": "2024-04-15T12:06:14+00:00"
  3024. },
  3025. {
  3026. "name": "psr/http-message",
  3027. "version": "2.0",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/php-fig/http-message.git",
  3031. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3036. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": "^7.2 || ^8.0"
  3041. },
  3042. "type": "library",
  3043. "extra": {
  3044. "branch-alias": {
  3045. "dev-master": "2.0.x-dev"
  3046. }
  3047. },
  3048. "autoload": {
  3049. "psr-4": {
  3050. "Psr\\Http\\Message\\": "src/"
  3051. }
  3052. },
  3053. "notification-url": "https://packagist.org/downloads/",
  3054. "license": [
  3055. "MIT"
  3056. ],
  3057. "authors": [
  3058. {
  3059. "name": "PHP-FIG",
  3060. "homepage": "https://www.php-fig.org/"
  3061. }
  3062. ],
  3063. "description": "Common interface for HTTP messages",
  3064. "homepage": "https://github.com/php-fig/http-message",
  3065. "keywords": [
  3066. "http",
  3067. "http-message",
  3068. "psr",
  3069. "psr-7",
  3070. "request",
  3071. "response"
  3072. ],
  3073. "support": {
  3074. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3075. },
  3076. "time": "2023-04-04T09:54:51+00:00"
  3077. },
  3078. {
  3079. "name": "psr/log",
  3080. "version": "3.0.1",
  3081. "source": {
  3082. "type": "git",
  3083. "url": "https://github.com/php-fig/log.git",
  3084. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  3085. },
  3086. "dist": {
  3087. "type": "zip",
  3088. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  3089. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  3090. "shasum": ""
  3091. },
  3092. "require": {
  3093. "php": ">=8.0.0"
  3094. },
  3095. "type": "library",
  3096. "extra": {
  3097. "branch-alias": {
  3098. "dev-master": "3.x-dev"
  3099. }
  3100. },
  3101. "autoload": {
  3102. "psr-4": {
  3103. "Psr\\Log\\": "src"
  3104. }
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "MIT"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "PHP-FIG",
  3113. "homepage": "https://www.php-fig.org/"
  3114. }
  3115. ],
  3116. "description": "Common interface for logging libraries",
  3117. "homepage": "https://github.com/php-fig/log",
  3118. "keywords": [
  3119. "log",
  3120. "psr",
  3121. "psr-3"
  3122. ],
  3123. "support": {
  3124. "source": "https://github.com/php-fig/log/tree/3.0.1"
  3125. },
  3126. "time": "2024-08-21T13:31:24+00:00"
  3127. },
  3128. {
  3129. "name": "psr/simple-cache",
  3130. "version": "3.0.0",
  3131. "source": {
  3132. "type": "git",
  3133. "url": "https://github.com/php-fig/simple-cache.git",
  3134. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3135. },
  3136. "dist": {
  3137. "type": "zip",
  3138. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3139. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3140. "shasum": ""
  3141. },
  3142. "require": {
  3143. "php": ">=8.0.0"
  3144. },
  3145. "type": "library",
  3146. "extra": {
  3147. "branch-alias": {
  3148. "dev-master": "3.0.x-dev"
  3149. }
  3150. },
  3151. "autoload": {
  3152. "psr-4": {
  3153. "Psr\\SimpleCache\\": "src/"
  3154. }
  3155. },
  3156. "notification-url": "https://packagist.org/downloads/",
  3157. "license": [
  3158. "MIT"
  3159. ],
  3160. "authors": [
  3161. {
  3162. "name": "PHP-FIG",
  3163. "homepage": "https://www.php-fig.org/"
  3164. }
  3165. ],
  3166. "description": "Common interfaces for simple caching",
  3167. "keywords": [
  3168. "cache",
  3169. "caching",
  3170. "psr",
  3171. "psr-16",
  3172. "simple-cache"
  3173. ],
  3174. "support": {
  3175. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3176. },
  3177. "time": "2021-10-29T13:26:27+00:00"
  3178. },
  3179. {
  3180. "name": "psy/psysh",
  3181. "version": "v0.12.4",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/bobthecow/psysh.git",
  3185. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  3190. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3191. "shasum": ""
  3192. },
  3193. "require": {
  3194. "ext-json": "*",
  3195. "ext-tokenizer": "*",
  3196. "nikic/php-parser": "^5.0 || ^4.0",
  3197. "php": "^8.0 || ^7.4",
  3198. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3199. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3200. },
  3201. "conflict": {
  3202. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3203. },
  3204. "require-dev": {
  3205. "bamarni/composer-bin-plugin": "^1.2"
  3206. },
  3207. "suggest": {
  3208. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3209. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3210. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3211. },
  3212. "bin": [
  3213. "bin/psysh"
  3214. ],
  3215. "type": "library",
  3216. "extra": {
  3217. "branch-alias": {
  3218. "dev-main": "0.12.x-dev"
  3219. },
  3220. "bamarni-bin": {
  3221. "bin-links": false,
  3222. "forward-command": false
  3223. }
  3224. },
  3225. "autoload": {
  3226. "files": [
  3227. "src/functions.php"
  3228. ],
  3229. "psr-4": {
  3230. "Psy\\": "src/"
  3231. }
  3232. },
  3233. "notification-url": "https://packagist.org/downloads/",
  3234. "license": [
  3235. "MIT"
  3236. ],
  3237. "authors": [
  3238. {
  3239. "name": "Justin Hileman",
  3240. "email": "justin@justinhileman.info",
  3241. "homepage": "http://justinhileman.com"
  3242. }
  3243. ],
  3244. "description": "An interactive shell for modern PHP.",
  3245. "homepage": "http://psysh.org",
  3246. "keywords": [
  3247. "REPL",
  3248. "console",
  3249. "interactive",
  3250. "shell"
  3251. ],
  3252. "support": {
  3253. "issues": "https://github.com/bobthecow/psysh/issues",
  3254. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  3255. },
  3256. "time": "2024-06-10T01:18:23+00:00"
  3257. },
  3258. {
  3259. "name": "ralouphie/getallheaders",
  3260. "version": "3.0.3",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/ralouphie/getallheaders.git",
  3264. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3269. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "php": ">=5.6"
  3274. },
  3275. "require-dev": {
  3276. "php-coveralls/php-coveralls": "^2.1",
  3277. "phpunit/phpunit": "^5 || ^6.5"
  3278. },
  3279. "type": "library",
  3280. "autoload": {
  3281. "files": [
  3282. "src/getallheaders.php"
  3283. ]
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Ralph Khattar",
  3292. "email": "ralph.khattar@gmail.com"
  3293. }
  3294. ],
  3295. "description": "A polyfill for getallheaders.",
  3296. "support": {
  3297. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3298. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3299. },
  3300. "time": "2019-03-08T08:55:37+00:00"
  3301. },
  3302. {
  3303. "name": "ramsey/collection",
  3304. "version": "2.0.0",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/ramsey/collection.git",
  3308. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3313. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3314. "shasum": ""
  3315. },
  3316. "require": {
  3317. "php": "^8.1"
  3318. },
  3319. "require-dev": {
  3320. "captainhook/plugin-composer": "^5.3",
  3321. "ergebnis/composer-normalize": "^2.28.3",
  3322. "fakerphp/faker": "^1.21",
  3323. "hamcrest/hamcrest-php": "^2.0",
  3324. "jangregor/phpstan-prophecy": "^1.0",
  3325. "mockery/mockery": "^1.5",
  3326. "php-parallel-lint/php-console-highlighter": "^1.0",
  3327. "php-parallel-lint/php-parallel-lint": "^1.3",
  3328. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3329. "phpspec/prophecy-phpunit": "^2.0",
  3330. "phpstan/extension-installer": "^1.2",
  3331. "phpstan/phpstan": "^1.9",
  3332. "phpstan/phpstan-mockery": "^1.1",
  3333. "phpstan/phpstan-phpunit": "^1.3",
  3334. "phpunit/phpunit": "^9.5",
  3335. "psalm/plugin-mockery": "^1.1",
  3336. "psalm/plugin-phpunit": "^0.18.4",
  3337. "ramsey/coding-standard": "^2.0.3",
  3338. "ramsey/conventional-commits": "^1.3",
  3339. "vimeo/psalm": "^5.4"
  3340. },
  3341. "type": "library",
  3342. "extra": {
  3343. "captainhook": {
  3344. "force-install": true
  3345. },
  3346. "ramsey/conventional-commits": {
  3347. "configFile": "conventional-commits.json"
  3348. }
  3349. },
  3350. "autoload": {
  3351. "psr-4": {
  3352. "Ramsey\\Collection\\": "src/"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Ben Ramsey",
  3362. "email": "ben@benramsey.com",
  3363. "homepage": "https://benramsey.com"
  3364. }
  3365. ],
  3366. "description": "A PHP library for representing and manipulating collections.",
  3367. "keywords": [
  3368. "array",
  3369. "collection",
  3370. "hash",
  3371. "map",
  3372. "queue",
  3373. "set"
  3374. ],
  3375. "support": {
  3376. "issues": "https://github.com/ramsey/collection/issues",
  3377. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3378. },
  3379. "funding": [
  3380. {
  3381. "url": "https://github.com/ramsey",
  3382. "type": "github"
  3383. },
  3384. {
  3385. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3386. "type": "tidelift"
  3387. }
  3388. ],
  3389. "time": "2022-12-31T21:50:55+00:00"
  3390. },
  3391. {
  3392. "name": "ramsey/uuid",
  3393. "version": "4.7.6",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://github.com/ramsey/uuid.git",
  3397. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  3402. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  3403. "shasum": ""
  3404. },
  3405. "require": {
  3406. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  3407. "ext-json": "*",
  3408. "php": "^8.0",
  3409. "ramsey/collection": "^1.2 || ^2.0"
  3410. },
  3411. "replace": {
  3412. "rhumsaa/uuid": "self.version"
  3413. },
  3414. "require-dev": {
  3415. "captainhook/captainhook": "^5.10",
  3416. "captainhook/plugin-composer": "^5.3",
  3417. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3418. "doctrine/annotations": "^1.8",
  3419. "ergebnis/composer-normalize": "^2.15",
  3420. "mockery/mockery": "^1.3",
  3421. "paragonie/random-lib": "^2",
  3422. "php-mock/php-mock": "^2.2",
  3423. "php-mock/php-mock-mockery": "^1.3",
  3424. "php-parallel-lint/php-parallel-lint": "^1.1",
  3425. "phpbench/phpbench": "^1.0",
  3426. "phpstan/extension-installer": "^1.1",
  3427. "phpstan/phpstan": "^1.8",
  3428. "phpstan/phpstan-mockery": "^1.1",
  3429. "phpstan/phpstan-phpunit": "^1.1",
  3430. "phpunit/phpunit": "^8.5 || ^9",
  3431. "ramsey/composer-repl": "^1.4",
  3432. "slevomat/coding-standard": "^8.4",
  3433. "squizlabs/php_codesniffer": "^3.5",
  3434. "vimeo/psalm": "^4.9"
  3435. },
  3436. "suggest": {
  3437. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3438. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3439. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3440. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3441. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3442. },
  3443. "type": "library",
  3444. "extra": {
  3445. "captainhook": {
  3446. "force-install": true
  3447. }
  3448. },
  3449. "autoload": {
  3450. "files": [
  3451. "src/functions.php"
  3452. ],
  3453. "psr-4": {
  3454. "Ramsey\\Uuid\\": "src/"
  3455. }
  3456. },
  3457. "notification-url": "https://packagist.org/downloads/",
  3458. "license": [
  3459. "MIT"
  3460. ],
  3461. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3462. "keywords": [
  3463. "guid",
  3464. "identifier",
  3465. "uuid"
  3466. ],
  3467. "support": {
  3468. "issues": "https://github.com/ramsey/uuid/issues",
  3469. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  3470. },
  3471. "funding": [
  3472. {
  3473. "url": "https://github.com/ramsey",
  3474. "type": "github"
  3475. },
  3476. {
  3477. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3478. "type": "tidelift"
  3479. }
  3480. ],
  3481. "time": "2024-04-27T21:32:50+00:00"
  3482. },
  3483. {
  3484. "name": "spatie/laravel-permission",
  3485. "version": "6.9.0",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/spatie/laravel-permission.git",
  3489. "reference": "fe973a58b44380d0e8620107259b7bda22f70408"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/fe973a58b44380d0e8620107259b7bda22f70408",
  3494. "reference": "fe973a58b44380d0e8620107259b7bda22f70408",
  3495. "shasum": ""
  3496. },
  3497. "require": {
  3498. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  3499. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  3500. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  3501. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  3502. "php": "^8.0"
  3503. },
  3504. "require-dev": {
  3505. "laravel/passport": "^11.0|^12.0",
  3506. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  3507. "phpunit/phpunit": "^9.4|^10.1"
  3508. },
  3509. "type": "library",
  3510. "extra": {
  3511. "branch-alias": {
  3512. "dev-main": "6.x-dev",
  3513. "dev-master": "6.x-dev"
  3514. },
  3515. "laravel": {
  3516. "providers": [
  3517. "Spatie\\Permission\\PermissionServiceProvider"
  3518. ]
  3519. }
  3520. },
  3521. "autoload": {
  3522. "files": [
  3523. "src/helpers.php"
  3524. ],
  3525. "psr-4": {
  3526. "Spatie\\Permission\\": "src"
  3527. }
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "MIT"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "Freek Van der Herten",
  3536. "email": "freek@spatie.be",
  3537. "homepage": "https://spatie.be",
  3538. "role": "Developer"
  3539. }
  3540. ],
  3541. "description": "Permission handling for Laravel 8.0 and up",
  3542. "homepage": "https://github.com/spatie/laravel-permission",
  3543. "keywords": [
  3544. "acl",
  3545. "laravel",
  3546. "permission",
  3547. "permissions",
  3548. "rbac",
  3549. "roles",
  3550. "security",
  3551. "spatie"
  3552. ],
  3553. "support": {
  3554. "issues": "https://github.com/spatie/laravel-permission/issues",
  3555. "source": "https://github.com/spatie/laravel-permission/tree/6.9.0"
  3556. },
  3557. "funding": [
  3558. {
  3559. "url": "https://github.com/spatie",
  3560. "type": "github"
  3561. }
  3562. ],
  3563. "time": "2024-06-22T23:04:52+00:00"
  3564. },
  3565. {
  3566. "name": "symfony/clock",
  3567. "version": "v7.1.1",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/symfony/clock.git",
  3571. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3576. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "php": ">=8.2",
  3581. "psr/clock": "^1.0",
  3582. "symfony/polyfill-php83": "^1.28"
  3583. },
  3584. "provide": {
  3585. "psr/clock-implementation": "1.0"
  3586. },
  3587. "type": "library",
  3588. "autoload": {
  3589. "files": [
  3590. "Resources/now.php"
  3591. ],
  3592. "psr-4": {
  3593. "Symfony\\Component\\Clock\\": ""
  3594. },
  3595. "exclude-from-classmap": [
  3596. "/Tests/"
  3597. ]
  3598. },
  3599. "notification-url": "https://packagist.org/downloads/",
  3600. "license": [
  3601. "MIT"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "Nicolas Grekas",
  3606. "email": "p@tchwork.com"
  3607. },
  3608. {
  3609. "name": "Symfony Community",
  3610. "homepage": "https://symfony.com/contributors"
  3611. }
  3612. ],
  3613. "description": "Decouples applications from the system clock",
  3614. "homepage": "https://symfony.com",
  3615. "keywords": [
  3616. "clock",
  3617. "psr20",
  3618. "time"
  3619. ],
  3620. "support": {
  3621. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3622. },
  3623. "funding": [
  3624. {
  3625. "url": "https://symfony.com/sponsor",
  3626. "type": "custom"
  3627. },
  3628. {
  3629. "url": "https://github.com/fabpot",
  3630. "type": "github"
  3631. },
  3632. {
  3633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3634. "type": "tidelift"
  3635. }
  3636. ],
  3637. "time": "2024-05-31T14:57:53+00:00"
  3638. },
  3639. {
  3640. "name": "symfony/console",
  3641. "version": "v7.1.4",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/symfony/console.git",
  3645. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/symfony/console/zipball/1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  3650. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  3651. "shasum": ""
  3652. },
  3653. "require": {
  3654. "php": ">=8.2",
  3655. "symfony/polyfill-mbstring": "~1.0",
  3656. "symfony/service-contracts": "^2.5|^3",
  3657. "symfony/string": "^6.4|^7.0"
  3658. },
  3659. "conflict": {
  3660. "symfony/dependency-injection": "<6.4",
  3661. "symfony/dotenv": "<6.4",
  3662. "symfony/event-dispatcher": "<6.4",
  3663. "symfony/lock": "<6.4",
  3664. "symfony/process": "<6.4"
  3665. },
  3666. "provide": {
  3667. "psr/log-implementation": "1.0|2.0|3.0"
  3668. },
  3669. "require-dev": {
  3670. "psr/log": "^1|^2|^3",
  3671. "symfony/config": "^6.4|^7.0",
  3672. "symfony/dependency-injection": "^6.4|^7.0",
  3673. "symfony/event-dispatcher": "^6.4|^7.0",
  3674. "symfony/http-foundation": "^6.4|^7.0",
  3675. "symfony/http-kernel": "^6.4|^7.0",
  3676. "symfony/lock": "^6.4|^7.0",
  3677. "symfony/messenger": "^6.4|^7.0",
  3678. "symfony/process": "^6.4|^7.0",
  3679. "symfony/stopwatch": "^6.4|^7.0",
  3680. "symfony/var-dumper": "^6.4|^7.0"
  3681. },
  3682. "type": "library",
  3683. "autoload": {
  3684. "psr-4": {
  3685. "Symfony\\Component\\Console\\": ""
  3686. },
  3687. "exclude-from-classmap": [
  3688. "/Tests/"
  3689. ]
  3690. },
  3691. "notification-url": "https://packagist.org/downloads/",
  3692. "license": [
  3693. "MIT"
  3694. ],
  3695. "authors": [
  3696. {
  3697. "name": "Fabien Potencier",
  3698. "email": "fabien@symfony.com"
  3699. },
  3700. {
  3701. "name": "Symfony Community",
  3702. "homepage": "https://symfony.com/contributors"
  3703. }
  3704. ],
  3705. "description": "Eases the creation of beautiful and testable command line interfaces",
  3706. "homepage": "https://symfony.com",
  3707. "keywords": [
  3708. "cli",
  3709. "command-line",
  3710. "console",
  3711. "terminal"
  3712. ],
  3713. "support": {
  3714. "source": "https://github.com/symfony/console/tree/v7.1.4"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://symfony.com/sponsor",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://github.com/fabpot",
  3723. "type": "github"
  3724. },
  3725. {
  3726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3727. "type": "tidelift"
  3728. }
  3729. ],
  3730. "time": "2024-08-15T22:48:53+00:00"
  3731. },
  3732. {
  3733. "name": "symfony/css-selector",
  3734. "version": "v7.1.1",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/symfony/css-selector.git",
  3738. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  3743. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "php": ">=8.2"
  3748. },
  3749. "type": "library",
  3750. "autoload": {
  3751. "psr-4": {
  3752. "Symfony\\Component\\CssSelector\\": ""
  3753. },
  3754. "exclude-from-classmap": [
  3755. "/Tests/"
  3756. ]
  3757. },
  3758. "notification-url": "https://packagist.org/downloads/",
  3759. "license": [
  3760. "MIT"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "Fabien Potencier",
  3765. "email": "fabien@symfony.com"
  3766. },
  3767. {
  3768. "name": "Jean-François Simon",
  3769. "email": "jeanfrancois.simon@sensiolabs.com"
  3770. },
  3771. {
  3772. "name": "Symfony Community",
  3773. "homepage": "https://symfony.com/contributors"
  3774. }
  3775. ],
  3776. "description": "Converts CSS selectors to XPath expressions",
  3777. "homepage": "https://symfony.com",
  3778. "support": {
  3779. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  3780. },
  3781. "funding": [
  3782. {
  3783. "url": "https://symfony.com/sponsor",
  3784. "type": "custom"
  3785. },
  3786. {
  3787. "url": "https://github.com/fabpot",
  3788. "type": "github"
  3789. },
  3790. {
  3791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3792. "type": "tidelift"
  3793. }
  3794. ],
  3795. "time": "2024-05-31T14:57:53+00:00"
  3796. },
  3797. {
  3798. "name": "symfony/deprecation-contracts",
  3799. "version": "v3.5.0",
  3800. "source": {
  3801. "type": "git",
  3802. "url": "https://github.com/symfony/deprecation-contracts.git",
  3803. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3804. },
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3808. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3809. "shasum": ""
  3810. },
  3811. "require": {
  3812. "php": ">=8.1"
  3813. },
  3814. "type": "library",
  3815. "extra": {
  3816. "branch-alias": {
  3817. "dev-main": "3.5-dev"
  3818. },
  3819. "thanks": {
  3820. "name": "symfony/contracts",
  3821. "url": "https://github.com/symfony/contracts"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "files": [
  3826. "function.php"
  3827. ]
  3828. },
  3829. "notification-url": "https://packagist.org/downloads/",
  3830. "license": [
  3831. "MIT"
  3832. ],
  3833. "authors": [
  3834. {
  3835. "name": "Nicolas Grekas",
  3836. "email": "p@tchwork.com"
  3837. },
  3838. {
  3839. "name": "Symfony Community",
  3840. "homepage": "https://symfony.com/contributors"
  3841. }
  3842. ],
  3843. "description": "A generic function and convention to trigger deprecation notices",
  3844. "homepage": "https://symfony.com",
  3845. "support": {
  3846. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3847. },
  3848. "funding": [
  3849. {
  3850. "url": "https://symfony.com/sponsor",
  3851. "type": "custom"
  3852. },
  3853. {
  3854. "url": "https://github.com/fabpot",
  3855. "type": "github"
  3856. },
  3857. {
  3858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3859. "type": "tidelift"
  3860. }
  3861. ],
  3862. "time": "2024-04-18T09:32:20+00:00"
  3863. },
  3864. {
  3865. "name": "symfony/error-handler",
  3866. "version": "v7.1.3",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/symfony/error-handler.git",
  3870. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3875. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3876. "shasum": ""
  3877. },
  3878. "require": {
  3879. "php": ">=8.2",
  3880. "psr/log": "^1|^2|^3",
  3881. "symfony/var-dumper": "^6.4|^7.0"
  3882. },
  3883. "conflict": {
  3884. "symfony/deprecation-contracts": "<2.5",
  3885. "symfony/http-kernel": "<6.4"
  3886. },
  3887. "require-dev": {
  3888. "symfony/deprecation-contracts": "^2.5|^3",
  3889. "symfony/http-kernel": "^6.4|^7.0",
  3890. "symfony/serializer": "^6.4|^7.0"
  3891. },
  3892. "bin": [
  3893. "Resources/bin/patch-type-declarations"
  3894. ],
  3895. "type": "library",
  3896. "autoload": {
  3897. "psr-4": {
  3898. "Symfony\\Component\\ErrorHandler\\": ""
  3899. },
  3900. "exclude-from-classmap": [
  3901. "/Tests/"
  3902. ]
  3903. },
  3904. "notification-url": "https://packagist.org/downloads/",
  3905. "license": [
  3906. "MIT"
  3907. ],
  3908. "authors": [
  3909. {
  3910. "name": "Fabien Potencier",
  3911. "email": "fabien@symfony.com"
  3912. },
  3913. {
  3914. "name": "Symfony Community",
  3915. "homepage": "https://symfony.com/contributors"
  3916. }
  3917. ],
  3918. "description": "Provides tools to manage errors and ease debugging PHP code",
  3919. "homepage": "https://symfony.com",
  3920. "support": {
  3921. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3922. },
  3923. "funding": [
  3924. {
  3925. "url": "https://symfony.com/sponsor",
  3926. "type": "custom"
  3927. },
  3928. {
  3929. "url": "https://github.com/fabpot",
  3930. "type": "github"
  3931. },
  3932. {
  3933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3934. "type": "tidelift"
  3935. }
  3936. ],
  3937. "time": "2024-07-26T13:02:51+00:00"
  3938. },
  3939. {
  3940. "name": "symfony/event-dispatcher",
  3941. "version": "v7.1.1",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/symfony/event-dispatcher.git",
  3945. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3950. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3951. "shasum": ""
  3952. },
  3953. "require": {
  3954. "php": ">=8.2",
  3955. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3956. },
  3957. "conflict": {
  3958. "symfony/dependency-injection": "<6.4",
  3959. "symfony/service-contracts": "<2.5"
  3960. },
  3961. "provide": {
  3962. "psr/event-dispatcher-implementation": "1.0",
  3963. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3964. },
  3965. "require-dev": {
  3966. "psr/log": "^1|^2|^3",
  3967. "symfony/config": "^6.4|^7.0",
  3968. "symfony/dependency-injection": "^6.4|^7.0",
  3969. "symfony/error-handler": "^6.4|^7.0",
  3970. "symfony/expression-language": "^6.4|^7.0",
  3971. "symfony/http-foundation": "^6.4|^7.0",
  3972. "symfony/service-contracts": "^2.5|^3",
  3973. "symfony/stopwatch": "^6.4|^7.0"
  3974. },
  3975. "type": "library",
  3976. "autoload": {
  3977. "psr-4": {
  3978. "Symfony\\Component\\EventDispatcher\\": ""
  3979. },
  3980. "exclude-from-classmap": [
  3981. "/Tests/"
  3982. ]
  3983. },
  3984. "notification-url": "https://packagist.org/downloads/",
  3985. "license": [
  3986. "MIT"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "Fabien Potencier",
  3991. "email": "fabien@symfony.com"
  3992. },
  3993. {
  3994. "name": "Symfony Community",
  3995. "homepage": "https://symfony.com/contributors"
  3996. }
  3997. ],
  3998. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3999. "homepage": "https://symfony.com",
  4000. "support": {
  4001. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4002. },
  4003. "funding": [
  4004. {
  4005. "url": "https://symfony.com/sponsor",
  4006. "type": "custom"
  4007. },
  4008. {
  4009. "url": "https://github.com/fabpot",
  4010. "type": "github"
  4011. },
  4012. {
  4013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4014. "type": "tidelift"
  4015. }
  4016. ],
  4017. "time": "2024-05-31T14:57:53+00:00"
  4018. },
  4019. {
  4020. "name": "symfony/event-dispatcher-contracts",
  4021. "version": "v3.5.0",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4025. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4030. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4031. "shasum": ""
  4032. },
  4033. "require": {
  4034. "php": ">=8.1",
  4035. "psr/event-dispatcher": "^1"
  4036. },
  4037. "type": "library",
  4038. "extra": {
  4039. "branch-alias": {
  4040. "dev-main": "3.5-dev"
  4041. },
  4042. "thanks": {
  4043. "name": "symfony/contracts",
  4044. "url": "https://github.com/symfony/contracts"
  4045. }
  4046. },
  4047. "autoload": {
  4048. "psr-4": {
  4049. "Symfony\\Contracts\\EventDispatcher\\": ""
  4050. }
  4051. },
  4052. "notification-url": "https://packagist.org/downloads/",
  4053. "license": [
  4054. "MIT"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "Nicolas Grekas",
  4059. "email": "p@tchwork.com"
  4060. },
  4061. {
  4062. "name": "Symfony Community",
  4063. "homepage": "https://symfony.com/contributors"
  4064. }
  4065. ],
  4066. "description": "Generic abstractions related to dispatching event",
  4067. "homepage": "https://symfony.com",
  4068. "keywords": [
  4069. "abstractions",
  4070. "contracts",
  4071. "decoupling",
  4072. "interfaces",
  4073. "interoperability",
  4074. "standards"
  4075. ],
  4076. "support": {
  4077. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4078. },
  4079. "funding": [
  4080. {
  4081. "url": "https://symfony.com/sponsor",
  4082. "type": "custom"
  4083. },
  4084. {
  4085. "url": "https://github.com/fabpot",
  4086. "type": "github"
  4087. },
  4088. {
  4089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4090. "type": "tidelift"
  4091. }
  4092. ],
  4093. "time": "2024-04-18T09:32:20+00:00"
  4094. },
  4095. {
  4096. "name": "symfony/finder",
  4097. "version": "v7.1.4",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/symfony/finder.git",
  4101. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  4106. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  4107. "shasum": ""
  4108. },
  4109. "require": {
  4110. "php": ">=8.2"
  4111. },
  4112. "require-dev": {
  4113. "symfony/filesystem": "^6.4|^7.0"
  4114. },
  4115. "type": "library",
  4116. "autoload": {
  4117. "psr-4": {
  4118. "Symfony\\Component\\Finder\\": ""
  4119. },
  4120. "exclude-from-classmap": [
  4121. "/Tests/"
  4122. ]
  4123. },
  4124. "notification-url": "https://packagist.org/downloads/",
  4125. "license": [
  4126. "MIT"
  4127. ],
  4128. "authors": [
  4129. {
  4130. "name": "Fabien Potencier",
  4131. "email": "fabien@symfony.com"
  4132. },
  4133. {
  4134. "name": "Symfony Community",
  4135. "homepage": "https://symfony.com/contributors"
  4136. }
  4137. ],
  4138. "description": "Finds files and directories via an intuitive fluent interface",
  4139. "homepage": "https://symfony.com",
  4140. "support": {
  4141. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  4142. },
  4143. "funding": [
  4144. {
  4145. "url": "https://symfony.com/sponsor",
  4146. "type": "custom"
  4147. },
  4148. {
  4149. "url": "https://github.com/fabpot",
  4150. "type": "github"
  4151. },
  4152. {
  4153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4154. "type": "tidelift"
  4155. }
  4156. ],
  4157. "time": "2024-08-13T14:28:19+00:00"
  4158. },
  4159. {
  4160. "name": "symfony/http-foundation",
  4161. "version": "v7.1.3",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://github.com/symfony/http-foundation.git",
  4165. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4170. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4171. "shasum": ""
  4172. },
  4173. "require": {
  4174. "php": ">=8.2",
  4175. "symfony/polyfill-mbstring": "~1.1",
  4176. "symfony/polyfill-php83": "^1.27"
  4177. },
  4178. "conflict": {
  4179. "doctrine/dbal": "<3.6",
  4180. "symfony/cache": "<6.4"
  4181. },
  4182. "require-dev": {
  4183. "doctrine/dbal": "^3.6|^4",
  4184. "predis/predis": "^1.1|^2.0",
  4185. "symfony/cache": "^6.4|^7.0",
  4186. "symfony/dependency-injection": "^6.4|^7.0",
  4187. "symfony/expression-language": "^6.4|^7.0",
  4188. "symfony/http-kernel": "^6.4|^7.0",
  4189. "symfony/mime": "^6.4|^7.0",
  4190. "symfony/rate-limiter": "^6.4|^7.0"
  4191. },
  4192. "type": "library",
  4193. "autoload": {
  4194. "psr-4": {
  4195. "Symfony\\Component\\HttpFoundation\\": ""
  4196. },
  4197. "exclude-from-classmap": [
  4198. "/Tests/"
  4199. ]
  4200. },
  4201. "notification-url": "https://packagist.org/downloads/",
  4202. "license": [
  4203. "MIT"
  4204. ],
  4205. "authors": [
  4206. {
  4207. "name": "Fabien Potencier",
  4208. "email": "fabien@symfony.com"
  4209. },
  4210. {
  4211. "name": "Symfony Community",
  4212. "homepage": "https://symfony.com/contributors"
  4213. }
  4214. ],
  4215. "description": "Defines an object-oriented layer for the HTTP specification",
  4216. "homepage": "https://symfony.com",
  4217. "support": {
  4218. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  4219. },
  4220. "funding": [
  4221. {
  4222. "url": "https://symfony.com/sponsor",
  4223. "type": "custom"
  4224. },
  4225. {
  4226. "url": "https://github.com/fabpot",
  4227. "type": "github"
  4228. },
  4229. {
  4230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4231. "type": "tidelift"
  4232. }
  4233. ],
  4234. "time": "2024-07-26T12:41:01+00:00"
  4235. },
  4236. {
  4237. "name": "symfony/http-kernel",
  4238. "version": "v7.1.4",
  4239. "source": {
  4240. "type": "git",
  4241. "url": "https://github.com/symfony/http-kernel.git",
  4242. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747"
  4243. },
  4244. "dist": {
  4245. "type": "zip",
  4246. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6efcbd1b3f444f631c386504fc83eeca25963747",
  4247. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747",
  4248. "shasum": ""
  4249. },
  4250. "require": {
  4251. "php": ">=8.2",
  4252. "psr/log": "^1|^2|^3",
  4253. "symfony/deprecation-contracts": "^2.5|^3",
  4254. "symfony/error-handler": "^6.4|^7.0",
  4255. "symfony/event-dispatcher": "^6.4|^7.0",
  4256. "symfony/http-foundation": "^6.4|^7.0",
  4257. "symfony/polyfill-ctype": "^1.8"
  4258. },
  4259. "conflict": {
  4260. "symfony/browser-kit": "<6.4",
  4261. "symfony/cache": "<6.4",
  4262. "symfony/config": "<6.4",
  4263. "symfony/console": "<6.4",
  4264. "symfony/dependency-injection": "<6.4",
  4265. "symfony/doctrine-bridge": "<6.4",
  4266. "symfony/form": "<6.4",
  4267. "symfony/http-client": "<6.4",
  4268. "symfony/http-client-contracts": "<2.5",
  4269. "symfony/mailer": "<6.4",
  4270. "symfony/messenger": "<6.4",
  4271. "symfony/translation": "<6.4",
  4272. "symfony/translation-contracts": "<2.5",
  4273. "symfony/twig-bridge": "<6.4",
  4274. "symfony/validator": "<6.4",
  4275. "symfony/var-dumper": "<6.4",
  4276. "twig/twig": "<3.0.4"
  4277. },
  4278. "provide": {
  4279. "psr/log-implementation": "1.0|2.0|3.0"
  4280. },
  4281. "require-dev": {
  4282. "psr/cache": "^1.0|^2.0|^3.0",
  4283. "symfony/browser-kit": "^6.4|^7.0",
  4284. "symfony/clock": "^6.4|^7.0",
  4285. "symfony/config": "^6.4|^7.0",
  4286. "symfony/console": "^6.4|^7.0",
  4287. "symfony/css-selector": "^6.4|^7.0",
  4288. "symfony/dependency-injection": "^6.4|^7.0",
  4289. "symfony/dom-crawler": "^6.4|^7.0",
  4290. "symfony/expression-language": "^6.4|^7.0",
  4291. "symfony/finder": "^6.4|^7.0",
  4292. "symfony/http-client-contracts": "^2.5|^3",
  4293. "symfony/process": "^6.4|^7.0",
  4294. "symfony/property-access": "^7.1",
  4295. "symfony/routing": "^6.4|^7.0",
  4296. "symfony/serializer": "^7.1",
  4297. "symfony/stopwatch": "^6.4|^7.0",
  4298. "symfony/translation": "^6.4|^7.0",
  4299. "symfony/translation-contracts": "^2.5|^3",
  4300. "symfony/uid": "^6.4|^7.0",
  4301. "symfony/validator": "^6.4|^7.0",
  4302. "symfony/var-dumper": "^6.4|^7.0",
  4303. "symfony/var-exporter": "^6.4|^7.0",
  4304. "twig/twig": "^3.0.4"
  4305. },
  4306. "type": "library",
  4307. "autoload": {
  4308. "psr-4": {
  4309. "Symfony\\Component\\HttpKernel\\": ""
  4310. },
  4311. "exclude-from-classmap": [
  4312. "/Tests/"
  4313. ]
  4314. },
  4315. "notification-url": "https://packagist.org/downloads/",
  4316. "license": [
  4317. "MIT"
  4318. ],
  4319. "authors": [
  4320. {
  4321. "name": "Fabien Potencier",
  4322. "email": "fabien@symfony.com"
  4323. },
  4324. {
  4325. "name": "Symfony Community",
  4326. "homepage": "https://symfony.com/contributors"
  4327. }
  4328. ],
  4329. "description": "Provides a structured process for converting a Request into a Response",
  4330. "homepage": "https://symfony.com",
  4331. "support": {
  4332. "source": "https://github.com/symfony/http-kernel/tree/v7.1.4"
  4333. },
  4334. "funding": [
  4335. {
  4336. "url": "https://symfony.com/sponsor",
  4337. "type": "custom"
  4338. },
  4339. {
  4340. "url": "https://github.com/fabpot",
  4341. "type": "github"
  4342. },
  4343. {
  4344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4345. "type": "tidelift"
  4346. }
  4347. ],
  4348. "time": "2024-08-30T17:02:28+00:00"
  4349. },
  4350. {
  4351. "name": "symfony/mailer",
  4352. "version": "v7.1.2",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://github.com/symfony/mailer.git",
  4356. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4361. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4362. "shasum": ""
  4363. },
  4364. "require": {
  4365. "egulias/email-validator": "^2.1.10|^3|^4",
  4366. "php": ">=8.2",
  4367. "psr/event-dispatcher": "^1",
  4368. "psr/log": "^1|^2|^3",
  4369. "symfony/event-dispatcher": "^6.4|^7.0",
  4370. "symfony/mime": "^6.4|^7.0",
  4371. "symfony/service-contracts": "^2.5|^3"
  4372. },
  4373. "conflict": {
  4374. "symfony/http-client-contracts": "<2.5",
  4375. "symfony/http-kernel": "<6.4",
  4376. "symfony/messenger": "<6.4",
  4377. "symfony/mime": "<6.4",
  4378. "symfony/twig-bridge": "<6.4"
  4379. },
  4380. "require-dev": {
  4381. "symfony/console": "^6.4|^7.0",
  4382. "symfony/http-client": "^6.4|^7.0",
  4383. "symfony/messenger": "^6.4|^7.0",
  4384. "symfony/twig-bridge": "^6.4|^7.0"
  4385. },
  4386. "type": "library",
  4387. "autoload": {
  4388. "psr-4": {
  4389. "Symfony\\Component\\Mailer\\": ""
  4390. },
  4391. "exclude-from-classmap": [
  4392. "/Tests/"
  4393. ]
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Fabien Potencier",
  4402. "email": "fabien@symfony.com"
  4403. },
  4404. {
  4405. "name": "Symfony Community",
  4406. "homepage": "https://symfony.com/contributors"
  4407. }
  4408. ],
  4409. "description": "Helps sending emails",
  4410. "homepage": "https://symfony.com",
  4411. "support": {
  4412. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  4413. },
  4414. "funding": [
  4415. {
  4416. "url": "https://symfony.com/sponsor",
  4417. "type": "custom"
  4418. },
  4419. {
  4420. "url": "https://github.com/fabpot",
  4421. "type": "github"
  4422. },
  4423. {
  4424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4425. "type": "tidelift"
  4426. }
  4427. ],
  4428. "time": "2024-06-28T08:00:31+00:00"
  4429. },
  4430. {
  4431. "name": "symfony/mime",
  4432. "version": "v7.1.4",
  4433. "source": {
  4434. "type": "git",
  4435. "url": "https://github.com/symfony/mime.git",
  4436. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758"
  4437. },
  4438. "dist": {
  4439. "type": "zip",
  4440. "url": "https://api.github.com/repos/symfony/mime/zipball/ccaa6c2503db867f472a587291e764d6a1e58758",
  4441. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758",
  4442. "shasum": ""
  4443. },
  4444. "require": {
  4445. "php": ">=8.2",
  4446. "symfony/polyfill-intl-idn": "^1.10",
  4447. "symfony/polyfill-mbstring": "^1.0"
  4448. },
  4449. "conflict": {
  4450. "egulias/email-validator": "~3.0.0",
  4451. "phpdocumentor/reflection-docblock": "<3.2.2",
  4452. "phpdocumentor/type-resolver": "<1.4.0",
  4453. "symfony/mailer": "<6.4",
  4454. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4455. },
  4456. "require-dev": {
  4457. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4458. "league/html-to-markdown": "^5.0",
  4459. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4460. "symfony/dependency-injection": "^6.4|^7.0",
  4461. "symfony/process": "^6.4|^7.0",
  4462. "symfony/property-access": "^6.4|^7.0",
  4463. "symfony/property-info": "^6.4|^7.0",
  4464. "symfony/serializer": "^6.4.3|^7.0.3"
  4465. },
  4466. "type": "library",
  4467. "autoload": {
  4468. "psr-4": {
  4469. "Symfony\\Component\\Mime\\": ""
  4470. },
  4471. "exclude-from-classmap": [
  4472. "/Tests/"
  4473. ]
  4474. },
  4475. "notification-url": "https://packagist.org/downloads/",
  4476. "license": [
  4477. "MIT"
  4478. ],
  4479. "authors": [
  4480. {
  4481. "name": "Fabien Potencier",
  4482. "email": "fabien@symfony.com"
  4483. },
  4484. {
  4485. "name": "Symfony Community",
  4486. "homepage": "https://symfony.com/contributors"
  4487. }
  4488. ],
  4489. "description": "Allows manipulating MIME messages",
  4490. "homepage": "https://symfony.com",
  4491. "keywords": [
  4492. "mime",
  4493. "mime-type"
  4494. ],
  4495. "support": {
  4496. "source": "https://github.com/symfony/mime/tree/v7.1.4"
  4497. },
  4498. "funding": [
  4499. {
  4500. "url": "https://symfony.com/sponsor",
  4501. "type": "custom"
  4502. },
  4503. {
  4504. "url": "https://github.com/fabpot",
  4505. "type": "github"
  4506. },
  4507. {
  4508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4509. "type": "tidelift"
  4510. }
  4511. ],
  4512. "time": "2024-08-13T14:28:19+00:00"
  4513. },
  4514. {
  4515. "name": "symfony/polyfill-ctype",
  4516. "version": "v1.30.0",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/symfony/polyfill-ctype.git",
  4520. "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
  4525. "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
  4526. "shasum": ""
  4527. },
  4528. "require": {
  4529. "php": ">=7.1"
  4530. },
  4531. "provide": {
  4532. "ext-ctype": "*"
  4533. },
  4534. "suggest": {
  4535. "ext-ctype": "For best performance"
  4536. },
  4537. "type": "library",
  4538. "extra": {
  4539. "thanks": {
  4540. "name": "symfony/polyfill",
  4541. "url": "https://github.com/symfony/polyfill"
  4542. }
  4543. },
  4544. "autoload": {
  4545. "files": [
  4546. "bootstrap.php"
  4547. ],
  4548. "psr-4": {
  4549. "Symfony\\Polyfill\\Ctype\\": ""
  4550. }
  4551. },
  4552. "notification-url": "https://packagist.org/downloads/",
  4553. "license": [
  4554. "MIT"
  4555. ],
  4556. "authors": [
  4557. {
  4558. "name": "Gert de Pagter",
  4559. "email": "BackEndTea@gmail.com"
  4560. },
  4561. {
  4562. "name": "Symfony Community",
  4563. "homepage": "https://symfony.com/contributors"
  4564. }
  4565. ],
  4566. "description": "Symfony polyfill for ctype functions",
  4567. "homepage": "https://symfony.com",
  4568. "keywords": [
  4569. "compatibility",
  4570. "ctype",
  4571. "polyfill",
  4572. "portable"
  4573. ],
  4574. "support": {
  4575. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0"
  4576. },
  4577. "funding": [
  4578. {
  4579. "url": "https://symfony.com/sponsor",
  4580. "type": "custom"
  4581. },
  4582. {
  4583. "url": "https://github.com/fabpot",
  4584. "type": "github"
  4585. },
  4586. {
  4587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4588. "type": "tidelift"
  4589. }
  4590. ],
  4591. "time": "2024-05-31T15:07:36+00:00"
  4592. },
  4593. {
  4594. "name": "symfony/polyfill-intl-grapheme",
  4595. "version": "v1.30.0",
  4596. "source": {
  4597. "type": "git",
  4598. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4599. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  4600. },
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  4604. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  4605. "shasum": ""
  4606. },
  4607. "require": {
  4608. "php": ">=7.1"
  4609. },
  4610. "suggest": {
  4611. "ext-intl": "For best performance"
  4612. },
  4613. "type": "library",
  4614. "extra": {
  4615. "thanks": {
  4616. "name": "symfony/polyfill",
  4617. "url": "https://github.com/symfony/polyfill"
  4618. }
  4619. },
  4620. "autoload": {
  4621. "files": [
  4622. "bootstrap.php"
  4623. ],
  4624. "psr-4": {
  4625. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Nicolas Grekas",
  4635. "email": "p@tchwork.com"
  4636. },
  4637. {
  4638. "name": "Symfony Community",
  4639. "homepage": "https://symfony.com/contributors"
  4640. }
  4641. ],
  4642. "description": "Symfony polyfill for intl's grapheme_* functions",
  4643. "homepage": "https://symfony.com",
  4644. "keywords": [
  4645. "compatibility",
  4646. "grapheme",
  4647. "intl",
  4648. "polyfill",
  4649. "portable",
  4650. "shim"
  4651. ],
  4652. "support": {
  4653. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://symfony.com/sponsor",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/fabpot",
  4662. "type": "github"
  4663. },
  4664. {
  4665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4666. "type": "tidelift"
  4667. }
  4668. ],
  4669. "time": "2024-05-31T15:07:36+00:00"
  4670. },
  4671. {
  4672. "name": "symfony/polyfill-intl-idn",
  4673. "version": "v1.30.0",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4677. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  4682. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  4683. "shasum": ""
  4684. },
  4685. "require": {
  4686. "php": ">=7.1",
  4687. "symfony/polyfill-intl-normalizer": "^1.10",
  4688. "symfony/polyfill-php72": "^1.10"
  4689. },
  4690. "suggest": {
  4691. "ext-intl": "For best performance"
  4692. },
  4693. "type": "library",
  4694. "extra": {
  4695. "thanks": {
  4696. "name": "symfony/polyfill",
  4697. "url": "https://github.com/symfony/polyfill"
  4698. }
  4699. },
  4700. "autoload": {
  4701. "files": [
  4702. "bootstrap.php"
  4703. ],
  4704. "psr-4": {
  4705. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4706. }
  4707. },
  4708. "notification-url": "https://packagist.org/downloads/",
  4709. "license": [
  4710. "MIT"
  4711. ],
  4712. "authors": [
  4713. {
  4714. "name": "Laurent Bassin",
  4715. "email": "laurent@bassin.info"
  4716. },
  4717. {
  4718. "name": "Trevor Rowbotham",
  4719. "email": "trevor.rowbotham@pm.me"
  4720. },
  4721. {
  4722. "name": "Symfony Community",
  4723. "homepage": "https://symfony.com/contributors"
  4724. }
  4725. ],
  4726. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4727. "homepage": "https://symfony.com",
  4728. "keywords": [
  4729. "compatibility",
  4730. "idn",
  4731. "intl",
  4732. "polyfill",
  4733. "portable",
  4734. "shim"
  4735. ],
  4736. "support": {
  4737. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  4738. },
  4739. "funding": [
  4740. {
  4741. "url": "https://symfony.com/sponsor",
  4742. "type": "custom"
  4743. },
  4744. {
  4745. "url": "https://github.com/fabpot",
  4746. "type": "github"
  4747. },
  4748. {
  4749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4750. "type": "tidelift"
  4751. }
  4752. ],
  4753. "time": "2024-05-31T15:07:36+00:00"
  4754. },
  4755. {
  4756. "name": "symfony/polyfill-intl-normalizer",
  4757. "version": "v1.30.0",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4761. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  4766. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": ">=7.1"
  4771. },
  4772. "suggest": {
  4773. "ext-intl": "For best performance"
  4774. },
  4775. "type": "library",
  4776. "extra": {
  4777. "thanks": {
  4778. "name": "symfony/polyfill",
  4779. "url": "https://github.com/symfony/polyfill"
  4780. }
  4781. },
  4782. "autoload": {
  4783. "files": [
  4784. "bootstrap.php"
  4785. ],
  4786. "psr-4": {
  4787. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4788. },
  4789. "classmap": [
  4790. "Resources/stubs"
  4791. ]
  4792. },
  4793. "notification-url": "https://packagist.org/downloads/",
  4794. "license": [
  4795. "MIT"
  4796. ],
  4797. "authors": [
  4798. {
  4799. "name": "Nicolas Grekas",
  4800. "email": "p@tchwork.com"
  4801. },
  4802. {
  4803. "name": "Symfony Community",
  4804. "homepage": "https://symfony.com/contributors"
  4805. }
  4806. ],
  4807. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4808. "homepage": "https://symfony.com",
  4809. "keywords": [
  4810. "compatibility",
  4811. "intl",
  4812. "normalizer",
  4813. "polyfill",
  4814. "portable",
  4815. "shim"
  4816. ],
  4817. "support": {
  4818. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  4819. },
  4820. "funding": [
  4821. {
  4822. "url": "https://symfony.com/sponsor",
  4823. "type": "custom"
  4824. },
  4825. {
  4826. "url": "https://github.com/fabpot",
  4827. "type": "github"
  4828. },
  4829. {
  4830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4831. "type": "tidelift"
  4832. }
  4833. ],
  4834. "time": "2024-05-31T15:07:36+00:00"
  4835. },
  4836. {
  4837. "name": "symfony/polyfill-mbstring",
  4838. "version": "v1.30.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4842. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  4847. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "php": ">=7.1"
  4852. },
  4853. "provide": {
  4854. "ext-mbstring": "*"
  4855. },
  4856. "suggest": {
  4857. "ext-mbstring": "For best performance"
  4858. },
  4859. "type": "library",
  4860. "extra": {
  4861. "thanks": {
  4862. "name": "symfony/polyfill",
  4863. "url": "https://github.com/symfony/polyfill"
  4864. }
  4865. },
  4866. "autoload": {
  4867. "files": [
  4868. "bootstrap.php"
  4869. ],
  4870. "psr-4": {
  4871. "Symfony\\Polyfill\\Mbstring\\": ""
  4872. }
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "MIT"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "Nicolas Grekas",
  4881. "email": "p@tchwork.com"
  4882. },
  4883. {
  4884. "name": "Symfony Community",
  4885. "homepage": "https://symfony.com/contributors"
  4886. }
  4887. ],
  4888. "description": "Symfony polyfill for the Mbstring extension",
  4889. "homepage": "https://symfony.com",
  4890. "keywords": [
  4891. "compatibility",
  4892. "mbstring",
  4893. "polyfill",
  4894. "portable",
  4895. "shim"
  4896. ],
  4897. "support": {
  4898. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://symfony.com/sponsor",
  4903. "type": "custom"
  4904. },
  4905. {
  4906. "url": "https://github.com/fabpot",
  4907. "type": "github"
  4908. },
  4909. {
  4910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4911. "type": "tidelift"
  4912. }
  4913. ],
  4914. "time": "2024-06-19T12:30:46+00:00"
  4915. },
  4916. {
  4917. "name": "symfony/polyfill-php72",
  4918. "version": "v1.30.0",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/symfony/polyfill-php72.git",
  4922. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  4927. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "php": ">=7.1"
  4932. },
  4933. "type": "library",
  4934. "extra": {
  4935. "thanks": {
  4936. "name": "symfony/polyfill",
  4937. "url": "https://github.com/symfony/polyfill"
  4938. }
  4939. },
  4940. "autoload": {
  4941. "files": [
  4942. "bootstrap.php"
  4943. ],
  4944. "psr-4": {
  4945. "Symfony\\Polyfill\\Php72\\": ""
  4946. }
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "MIT"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "Nicolas Grekas",
  4955. "email": "p@tchwork.com"
  4956. },
  4957. {
  4958. "name": "Symfony Community",
  4959. "homepage": "https://symfony.com/contributors"
  4960. }
  4961. ],
  4962. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4963. "homepage": "https://symfony.com",
  4964. "keywords": [
  4965. "compatibility",
  4966. "polyfill",
  4967. "portable",
  4968. "shim"
  4969. ],
  4970. "support": {
  4971. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://symfony.com/sponsor",
  4976. "type": "custom"
  4977. },
  4978. {
  4979. "url": "https://github.com/fabpot",
  4980. "type": "github"
  4981. },
  4982. {
  4983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4984. "type": "tidelift"
  4985. }
  4986. ],
  4987. "time": "2024-06-19T12:30:46+00:00"
  4988. },
  4989. {
  4990. "name": "symfony/polyfill-php80",
  4991. "version": "v1.30.0",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/symfony/polyfill-php80.git",
  4995. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  5000. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  5001. "shasum": ""
  5002. },
  5003. "require": {
  5004. "php": ">=7.1"
  5005. },
  5006. "type": "library",
  5007. "extra": {
  5008. "thanks": {
  5009. "name": "symfony/polyfill",
  5010. "url": "https://github.com/symfony/polyfill"
  5011. }
  5012. },
  5013. "autoload": {
  5014. "files": [
  5015. "bootstrap.php"
  5016. ],
  5017. "psr-4": {
  5018. "Symfony\\Polyfill\\Php80\\": ""
  5019. },
  5020. "classmap": [
  5021. "Resources/stubs"
  5022. ]
  5023. },
  5024. "notification-url": "https://packagist.org/downloads/",
  5025. "license": [
  5026. "MIT"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "Ion Bazan",
  5031. "email": "ion.bazan@gmail.com"
  5032. },
  5033. {
  5034. "name": "Nicolas Grekas",
  5035. "email": "p@tchwork.com"
  5036. },
  5037. {
  5038. "name": "Symfony Community",
  5039. "homepage": "https://symfony.com/contributors"
  5040. }
  5041. ],
  5042. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5043. "homepage": "https://symfony.com",
  5044. "keywords": [
  5045. "compatibility",
  5046. "polyfill",
  5047. "portable",
  5048. "shim"
  5049. ],
  5050. "support": {
  5051. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  5052. },
  5053. "funding": [
  5054. {
  5055. "url": "https://symfony.com/sponsor",
  5056. "type": "custom"
  5057. },
  5058. {
  5059. "url": "https://github.com/fabpot",
  5060. "type": "github"
  5061. },
  5062. {
  5063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5064. "type": "tidelift"
  5065. }
  5066. ],
  5067. "time": "2024-05-31T15:07:36+00:00"
  5068. },
  5069. {
  5070. "name": "symfony/polyfill-php83",
  5071. "version": "v1.30.0",
  5072. "source": {
  5073. "type": "git",
  5074. "url": "https://github.com/symfony/polyfill-php83.git",
  5075. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  5076. },
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5080. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5081. "shasum": ""
  5082. },
  5083. "require": {
  5084. "php": ">=7.1"
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "thanks": {
  5089. "name": "symfony/polyfill",
  5090. "url": "https://github.com/symfony/polyfill"
  5091. }
  5092. },
  5093. "autoload": {
  5094. "files": [
  5095. "bootstrap.php"
  5096. ],
  5097. "psr-4": {
  5098. "Symfony\\Polyfill\\Php83\\": ""
  5099. },
  5100. "classmap": [
  5101. "Resources/stubs"
  5102. ]
  5103. },
  5104. "notification-url": "https://packagist.org/downloads/",
  5105. "license": [
  5106. "MIT"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "Nicolas Grekas",
  5111. "email": "p@tchwork.com"
  5112. },
  5113. {
  5114. "name": "Symfony Community",
  5115. "homepage": "https://symfony.com/contributors"
  5116. }
  5117. ],
  5118. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5119. "homepage": "https://symfony.com",
  5120. "keywords": [
  5121. "compatibility",
  5122. "polyfill",
  5123. "portable",
  5124. "shim"
  5125. ],
  5126. "support": {
  5127. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  5128. },
  5129. "funding": [
  5130. {
  5131. "url": "https://symfony.com/sponsor",
  5132. "type": "custom"
  5133. },
  5134. {
  5135. "url": "https://github.com/fabpot",
  5136. "type": "github"
  5137. },
  5138. {
  5139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5140. "type": "tidelift"
  5141. }
  5142. ],
  5143. "time": "2024-06-19T12:35:24+00:00"
  5144. },
  5145. {
  5146. "name": "symfony/polyfill-uuid",
  5147. "version": "v1.30.0",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/symfony/polyfill-uuid.git",
  5151. "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9",
  5156. "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "php": ">=7.1"
  5161. },
  5162. "provide": {
  5163. "ext-uuid": "*"
  5164. },
  5165. "suggest": {
  5166. "ext-uuid": "For best performance"
  5167. },
  5168. "type": "library",
  5169. "extra": {
  5170. "thanks": {
  5171. "name": "symfony/polyfill",
  5172. "url": "https://github.com/symfony/polyfill"
  5173. }
  5174. },
  5175. "autoload": {
  5176. "files": [
  5177. "bootstrap.php"
  5178. ],
  5179. "psr-4": {
  5180. "Symfony\\Polyfill\\Uuid\\": ""
  5181. }
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Grégoire Pineau",
  5190. "email": "lyrixx@lyrixx.info"
  5191. },
  5192. {
  5193. "name": "Symfony Community",
  5194. "homepage": "https://symfony.com/contributors"
  5195. }
  5196. ],
  5197. "description": "Symfony polyfill for uuid functions",
  5198. "homepage": "https://symfony.com",
  5199. "keywords": [
  5200. "compatibility",
  5201. "polyfill",
  5202. "portable",
  5203. "uuid"
  5204. ],
  5205. "support": {
  5206. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.30.0"
  5207. },
  5208. "funding": [
  5209. {
  5210. "url": "https://symfony.com/sponsor",
  5211. "type": "custom"
  5212. },
  5213. {
  5214. "url": "https://github.com/fabpot",
  5215. "type": "github"
  5216. },
  5217. {
  5218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5219. "type": "tidelift"
  5220. }
  5221. ],
  5222. "time": "2024-05-31T15:07:36+00:00"
  5223. },
  5224. {
  5225. "name": "symfony/process",
  5226. "version": "v7.1.3",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://github.com/symfony/process.git",
  5230. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  5235. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  5236. "shasum": ""
  5237. },
  5238. "require": {
  5239. "php": ">=8.2"
  5240. },
  5241. "type": "library",
  5242. "autoload": {
  5243. "psr-4": {
  5244. "Symfony\\Component\\Process\\": ""
  5245. },
  5246. "exclude-from-classmap": [
  5247. "/Tests/"
  5248. ]
  5249. },
  5250. "notification-url": "https://packagist.org/downloads/",
  5251. "license": [
  5252. "MIT"
  5253. ],
  5254. "authors": [
  5255. {
  5256. "name": "Fabien Potencier",
  5257. "email": "fabien@symfony.com"
  5258. },
  5259. {
  5260. "name": "Symfony Community",
  5261. "homepage": "https://symfony.com/contributors"
  5262. }
  5263. ],
  5264. "description": "Executes commands in sub-processes",
  5265. "homepage": "https://symfony.com",
  5266. "support": {
  5267. "source": "https://github.com/symfony/process/tree/v7.1.3"
  5268. },
  5269. "funding": [
  5270. {
  5271. "url": "https://symfony.com/sponsor",
  5272. "type": "custom"
  5273. },
  5274. {
  5275. "url": "https://github.com/fabpot",
  5276. "type": "github"
  5277. },
  5278. {
  5279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5280. "type": "tidelift"
  5281. }
  5282. ],
  5283. "time": "2024-07-26T12:44:47+00:00"
  5284. },
  5285. {
  5286. "name": "symfony/routing",
  5287. "version": "v7.1.4",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/symfony/routing.git",
  5291. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5296. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5297. "shasum": ""
  5298. },
  5299. "require": {
  5300. "php": ">=8.2",
  5301. "symfony/deprecation-contracts": "^2.5|^3"
  5302. },
  5303. "conflict": {
  5304. "symfony/config": "<6.4",
  5305. "symfony/dependency-injection": "<6.4",
  5306. "symfony/yaml": "<6.4"
  5307. },
  5308. "require-dev": {
  5309. "psr/log": "^1|^2|^3",
  5310. "symfony/config": "^6.4|^7.0",
  5311. "symfony/dependency-injection": "^6.4|^7.0",
  5312. "symfony/expression-language": "^6.4|^7.0",
  5313. "symfony/http-foundation": "^6.4|^7.0",
  5314. "symfony/yaml": "^6.4|^7.0"
  5315. },
  5316. "type": "library",
  5317. "autoload": {
  5318. "psr-4": {
  5319. "Symfony\\Component\\Routing\\": ""
  5320. },
  5321. "exclude-from-classmap": [
  5322. "/Tests/"
  5323. ]
  5324. },
  5325. "notification-url": "https://packagist.org/downloads/",
  5326. "license": [
  5327. "MIT"
  5328. ],
  5329. "authors": [
  5330. {
  5331. "name": "Fabien Potencier",
  5332. "email": "fabien@symfony.com"
  5333. },
  5334. {
  5335. "name": "Symfony Community",
  5336. "homepage": "https://symfony.com/contributors"
  5337. }
  5338. ],
  5339. "description": "Maps an HTTP request to a set of configuration variables",
  5340. "homepage": "https://symfony.com",
  5341. "keywords": [
  5342. "router",
  5343. "routing",
  5344. "uri",
  5345. "url"
  5346. ],
  5347. "support": {
  5348. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  5349. },
  5350. "funding": [
  5351. {
  5352. "url": "https://symfony.com/sponsor",
  5353. "type": "custom"
  5354. },
  5355. {
  5356. "url": "https://github.com/fabpot",
  5357. "type": "github"
  5358. },
  5359. {
  5360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5361. "type": "tidelift"
  5362. }
  5363. ],
  5364. "time": "2024-08-29T08:16:25+00:00"
  5365. },
  5366. {
  5367. "name": "symfony/service-contracts",
  5368. "version": "v3.5.0",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://github.com/symfony/service-contracts.git",
  5372. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5377. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5378. "shasum": ""
  5379. },
  5380. "require": {
  5381. "php": ">=8.1",
  5382. "psr/container": "^1.1|^2.0",
  5383. "symfony/deprecation-contracts": "^2.5|^3"
  5384. },
  5385. "conflict": {
  5386. "ext-psr": "<1.1|>=2"
  5387. },
  5388. "type": "library",
  5389. "extra": {
  5390. "branch-alias": {
  5391. "dev-main": "3.5-dev"
  5392. },
  5393. "thanks": {
  5394. "name": "symfony/contracts",
  5395. "url": "https://github.com/symfony/contracts"
  5396. }
  5397. },
  5398. "autoload": {
  5399. "psr-4": {
  5400. "Symfony\\Contracts\\Service\\": ""
  5401. },
  5402. "exclude-from-classmap": [
  5403. "/Test/"
  5404. ]
  5405. },
  5406. "notification-url": "https://packagist.org/downloads/",
  5407. "license": [
  5408. "MIT"
  5409. ],
  5410. "authors": [
  5411. {
  5412. "name": "Nicolas Grekas",
  5413. "email": "p@tchwork.com"
  5414. },
  5415. {
  5416. "name": "Symfony Community",
  5417. "homepage": "https://symfony.com/contributors"
  5418. }
  5419. ],
  5420. "description": "Generic abstractions related to writing services",
  5421. "homepage": "https://symfony.com",
  5422. "keywords": [
  5423. "abstractions",
  5424. "contracts",
  5425. "decoupling",
  5426. "interfaces",
  5427. "interoperability",
  5428. "standards"
  5429. ],
  5430. "support": {
  5431. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  5432. },
  5433. "funding": [
  5434. {
  5435. "url": "https://symfony.com/sponsor",
  5436. "type": "custom"
  5437. },
  5438. {
  5439. "url": "https://github.com/fabpot",
  5440. "type": "github"
  5441. },
  5442. {
  5443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5444. "type": "tidelift"
  5445. }
  5446. ],
  5447. "time": "2024-04-18T09:32:20+00:00"
  5448. },
  5449. {
  5450. "name": "symfony/string",
  5451. "version": "v7.1.4",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://github.com/symfony/string.git",
  5455. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://api.github.com/repos/symfony/string/zipball/6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  5460. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  5461. "shasum": ""
  5462. },
  5463. "require": {
  5464. "php": ">=8.2",
  5465. "symfony/polyfill-ctype": "~1.8",
  5466. "symfony/polyfill-intl-grapheme": "~1.0",
  5467. "symfony/polyfill-intl-normalizer": "~1.0",
  5468. "symfony/polyfill-mbstring": "~1.0"
  5469. },
  5470. "conflict": {
  5471. "symfony/translation-contracts": "<2.5"
  5472. },
  5473. "require-dev": {
  5474. "symfony/emoji": "^7.1",
  5475. "symfony/error-handler": "^6.4|^7.0",
  5476. "symfony/http-client": "^6.4|^7.0",
  5477. "symfony/intl": "^6.4|^7.0",
  5478. "symfony/translation-contracts": "^2.5|^3.0",
  5479. "symfony/var-exporter": "^6.4|^7.0"
  5480. },
  5481. "type": "library",
  5482. "autoload": {
  5483. "files": [
  5484. "Resources/functions.php"
  5485. ],
  5486. "psr-4": {
  5487. "Symfony\\Component\\String\\": ""
  5488. },
  5489. "exclude-from-classmap": [
  5490. "/Tests/"
  5491. ]
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "MIT"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Nicolas Grekas",
  5500. "email": "p@tchwork.com"
  5501. },
  5502. {
  5503. "name": "Symfony Community",
  5504. "homepage": "https://symfony.com/contributors"
  5505. }
  5506. ],
  5507. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5508. "homepage": "https://symfony.com",
  5509. "keywords": [
  5510. "grapheme",
  5511. "i18n",
  5512. "string",
  5513. "unicode",
  5514. "utf-8",
  5515. "utf8"
  5516. ],
  5517. "support": {
  5518. "source": "https://github.com/symfony/string/tree/v7.1.4"
  5519. },
  5520. "funding": [
  5521. {
  5522. "url": "https://symfony.com/sponsor",
  5523. "type": "custom"
  5524. },
  5525. {
  5526. "url": "https://github.com/fabpot",
  5527. "type": "github"
  5528. },
  5529. {
  5530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5531. "type": "tidelift"
  5532. }
  5533. ],
  5534. "time": "2024-08-12T09:59:40+00:00"
  5535. },
  5536. {
  5537. "name": "symfony/translation",
  5538. "version": "v7.1.3",
  5539. "source": {
  5540. "type": "git",
  5541. "url": "https://github.com/symfony/translation.git",
  5542. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
  5543. },
  5544. "dist": {
  5545. "type": "zip",
  5546. "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
  5547. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
  5548. "shasum": ""
  5549. },
  5550. "require": {
  5551. "php": ">=8.2",
  5552. "symfony/polyfill-mbstring": "~1.0",
  5553. "symfony/translation-contracts": "^2.5|^3.0"
  5554. },
  5555. "conflict": {
  5556. "symfony/config": "<6.4",
  5557. "symfony/console": "<6.4",
  5558. "symfony/dependency-injection": "<6.4",
  5559. "symfony/http-client-contracts": "<2.5",
  5560. "symfony/http-kernel": "<6.4",
  5561. "symfony/service-contracts": "<2.5",
  5562. "symfony/twig-bundle": "<6.4",
  5563. "symfony/yaml": "<6.4"
  5564. },
  5565. "provide": {
  5566. "symfony/translation-implementation": "2.3|3.0"
  5567. },
  5568. "require-dev": {
  5569. "nikic/php-parser": "^4.18|^5.0",
  5570. "psr/log": "^1|^2|^3",
  5571. "symfony/config": "^6.4|^7.0",
  5572. "symfony/console": "^6.4|^7.0",
  5573. "symfony/dependency-injection": "^6.4|^7.0",
  5574. "symfony/finder": "^6.4|^7.0",
  5575. "symfony/http-client-contracts": "^2.5|^3.0",
  5576. "symfony/http-kernel": "^6.4|^7.0",
  5577. "symfony/intl": "^6.4|^7.0",
  5578. "symfony/polyfill-intl-icu": "^1.21",
  5579. "symfony/routing": "^6.4|^7.0",
  5580. "symfony/service-contracts": "^2.5|^3",
  5581. "symfony/yaml": "^6.4|^7.0"
  5582. },
  5583. "type": "library",
  5584. "autoload": {
  5585. "files": [
  5586. "Resources/functions.php"
  5587. ],
  5588. "psr-4": {
  5589. "Symfony\\Component\\Translation\\": ""
  5590. },
  5591. "exclude-from-classmap": [
  5592. "/Tests/"
  5593. ]
  5594. },
  5595. "notification-url": "https://packagist.org/downloads/",
  5596. "license": [
  5597. "MIT"
  5598. ],
  5599. "authors": [
  5600. {
  5601. "name": "Fabien Potencier",
  5602. "email": "fabien@symfony.com"
  5603. },
  5604. {
  5605. "name": "Symfony Community",
  5606. "homepage": "https://symfony.com/contributors"
  5607. }
  5608. ],
  5609. "description": "Provides tools to internationalize your application",
  5610. "homepage": "https://symfony.com",
  5611. "support": {
  5612. "source": "https://github.com/symfony/translation/tree/v7.1.3"
  5613. },
  5614. "funding": [
  5615. {
  5616. "url": "https://symfony.com/sponsor",
  5617. "type": "custom"
  5618. },
  5619. {
  5620. "url": "https://github.com/fabpot",
  5621. "type": "github"
  5622. },
  5623. {
  5624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5625. "type": "tidelift"
  5626. }
  5627. ],
  5628. "time": "2024-07-26T12:41:01+00:00"
  5629. },
  5630. {
  5631. "name": "symfony/translation-contracts",
  5632. "version": "v3.5.0",
  5633. "source": {
  5634. "type": "git",
  5635. "url": "https://github.com/symfony/translation-contracts.git",
  5636. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  5637. },
  5638. "dist": {
  5639. "type": "zip",
  5640. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5641. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5642. "shasum": ""
  5643. },
  5644. "require": {
  5645. "php": ">=8.1"
  5646. },
  5647. "type": "library",
  5648. "extra": {
  5649. "branch-alias": {
  5650. "dev-main": "3.5-dev"
  5651. },
  5652. "thanks": {
  5653. "name": "symfony/contracts",
  5654. "url": "https://github.com/symfony/contracts"
  5655. }
  5656. },
  5657. "autoload": {
  5658. "psr-4": {
  5659. "Symfony\\Contracts\\Translation\\": ""
  5660. },
  5661. "exclude-from-classmap": [
  5662. "/Test/"
  5663. ]
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "MIT"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Nicolas Grekas",
  5672. "email": "p@tchwork.com"
  5673. },
  5674. {
  5675. "name": "Symfony Community",
  5676. "homepage": "https://symfony.com/contributors"
  5677. }
  5678. ],
  5679. "description": "Generic abstractions related to translation",
  5680. "homepage": "https://symfony.com",
  5681. "keywords": [
  5682. "abstractions",
  5683. "contracts",
  5684. "decoupling",
  5685. "interfaces",
  5686. "interoperability",
  5687. "standards"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2024-04-18T09:32:20+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/uid",
  5710. "version": "v7.1.4",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/uid.git",
  5714. "reference": "82177535395109075cdb45a70533aa3d7a521cdf"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/uid/zipball/82177535395109075cdb45a70533aa3d7a521cdf",
  5719. "reference": "82177535395109075cdb45a70533aa3d7a521cdf",
  5720. "shasum": ""
  5721. },
  5722. "require": {
  5723. "php": ">=8.2",
  5724. "symfony/polyfill-uuid": "^1.15"
  5725. },
  5726. "require-dev": {
  5727. "symfony/console": "^6.4|^7.0"
  5728. },
  5729. "type": "library",
  5730. "autoload": {
  5731. "psr-4": {
  5732. "Symfony\\Component\\Uid\\": ""
  5733. },
  5734. "exclude-from-classmap": [
  5735. "/Tests/"
  5736. ]
  5737. },
  5738. "notification-url": "https://packagist.org/downloads/",
  5739. "license": [
  5740. "MIT"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "Grégoire Pineau",
  5745. "email": "lyrixx@lyrixx.info"
  5746. },
  5747. {
  5748. "name": "Nicolas Grekas",
  5749. "email": "p@tchwork.com"
  5750. },
  5751. {
  5752. "name": "Symfony Community",
  5753. "homepage": "https://symfony.com/contributors"
  5754. }
  5755. ],
  5756. "description": "Provides an object-oriented API to generate and represent UIDs",
  5757. "homepage": "https://symfony.com",
  5758. "keywords": [
  5759. "UID",
  5760. "ulid",
  5761. "uuid"
  5762. ],
  5763. "support": {
  5764. "source": "https://github.com/symfony/uid/tree/v7.1.4"
  5765. },
  5766. "funding": [
  5767. {
  5768. "url": "https://symfony.com/sponsor",
  5769. "type": "custom"
  5770. },
  5771. {
  5772. "url": "https://github.com/fabpot",
  5773. "type": "github"
  5774. },
  5775. {
  5776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5777. "type": "tidelift"
  5778. }
  5779. ],
  5780. "time": "2024-08-12T09:59:40+00:00"
  5781. },
  5782. {
  5783. "name": "symfony/var-dumper",
  5784. "version": "v7.1.4",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/symfony/var-dumper.git",
  5788. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  5793. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  5794. "shasum": ""
  5795. },
  5796. "require": {
  5797. "php": ">=8.2",
  5798. "symfony/polyfill-mbstring": "~1.0"
  5799. },
  5800. "conflict": {
  5801. "symfony/console": "<6.4"
  5802. },
  5803. "require-dev": {
  5804. "ext-iconv": "*",
  5805. "symfony/console": "^6.4|^7.0",
  5806. "symfony/http-kernel": "^6.4|^7.0",
  5807. "symfony/process": "^6.4|^7.0",
  5808. "symfony/uid": "^6.4|^7.0",
  5809. "twig/twig": "^3.0.4"
  5810. },
  5811. "bin": [
  5812. "Resources/bin/var-dump-server"
  5813. ],
  5814. "type": "library",
  5815. "autoload": {
  5816. "files": [
  5817. "Resources/functions/dump.php"
  5818. ],
  5819. "psr-4": {
  5820. "Symfony\\Component\\VarDumper\\": ""
  5821. },
  5822. "exclude-from-classmap": [
  5823. "/Tests/"
  5824. ]
  5825. },
  5826. "notification-url": "https://packagist.org/downloads/",
  5827. "license": [
  5828. "MIT"
  5829. ],
  5830. "authors": [
  5831. {
  5832. "name": "Nicolas Grekas",
  5833. "email": "p@tchwork.com"
  5834. },
  5835. {
  5836. "name": "Symfony Community",
  5837. "homepage": "https://symfony.com/contributors"
  5838. }
  5839. ],
  5840. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5841. "homepage": "https://symfony.com",
  5842. "keywords": [
  5843. "debug",
  5844. "dump"
  5845. ],
  5846. "support": {
  5847. "source": "https://github.com/symfony/var-dumper/tree/v7.1.4"
  5848. },
  5849. "funding": [
  5850. {
  5851. "url": "https://symfony.com/sponsor",
  5852. "type": "custom"
  5853. },
  5854. {
  5855. "url": "https://github.com/fabpot",
  5856. "type": "github"
  5857. },
  5858. {
  5859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5860. "type": "tidelift"
  5861. }
  5862. ],
  5863. "time": "2024-08-30T16:12:47+00:00"
  5864. },
  5865. {
  5866. "name": "tijsverkoyen/css-to-inline-styles",
  5867. "version": "v2.2.7",
  5868. "source": {
  5869. "type": "git",
  5870. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5871. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  5872. },
  5873. "dist": {
  5874. "type": "zip",
  5875. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5876. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5877. "shasum": ""
  5878. },
  5879. "require": {
  5880. "ext-dom": "*",
  5881. "ext-libxml": "*",
  5882. "php": "^5.5 || ^7.0 || ^8.0",
  5883. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  5884. },
  5885. "require-dev": {
  5886. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5887. },
  5888. "type": "library",
  5889. "extra": {
  5890. "branch-alias": {
  5891. "dev-master": "2.2.x-dev"
  5892. }
  5893. },
  5894. "autoload": {
  5895. "psr-4": {
  5896. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5897. }
  5898. },
  5899. "notification-url": "https://packagist.org/downloads/",
  5900. "license": [
  5901. "BSD-3-Clause"
  5902. ],
  5903. "authors": [
  5904. {
  5905. "name": "Tijs Verkoyen",
  5906. "email": "css_to_inline_styles@verkoyen.eu",
  5907. "role": "Developer"
  5908. }
  5909. ],
  5910. "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.",
  5911. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5912. "support": {
  5913. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5914. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  5915. },
  5916. "time": "2023-12-08T13:03:43+00:00"
  5917. },
  5918. {
  5919. "name": "vlucas/phpdotenv",
  5920. "version": "v5.6.1",
  5921. "source": {
  5922. "type": "git",
  5923. "url": "https://github.com/vlucas/phpdotenv.git",
  5924. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  5925. },
  5926. "dist": {
  5927. "type": "zip",
  5928. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  5929. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  5930. "shasum": ""
  5931. },
  5932. "require": {
  5933. "ext-pcre": "*",
  5934. "graham-campbell/result-type": "^1.1.3",
  5935. "php": "^7.2.5 || ^8.0",
  5936. "phpoption/phpoption": "^1.9.3",
  5937. "symfony/polyfill-ctype": "^1.24",
  5938. "symfony/polyfill-mbstring": "^1.24",
  5939. "symfony/polyfill-php80": "^1.24"
  5940. },
  5941. "require-dev": {
  5942. "bamarni/composer-bin-plugin": "^1.8.2",
  5943. "ext-filter": "*",
  5944. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5945. },
  5946. "suggest": {
  5947. "ext-filter": "Required to use the boolean validator."
  5948. },
  5949. "type": "library",
  5950. "extra": {
  5951. "bamarni-bin": {
  5952. "bin-links": true,
  5953. "forward-command": false
  5954. },
  5955. "branch-alias": {
  5956. "dev-master": "5.6-dev"
  5957. }
  5958. },
  5959. "autoload": {
  5960. "psr-4": {
  5961. "Dotenv\\": "src/"
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "BSD-3-Clause"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Graham Campbell",
  5971. "email": "hello@gjcampbell.co.uk",
  5972. "homepage": "https://github.com/GrahamCampbell"
  5973. },
  5974. {
  5975. "name": "Vance Lucas",
  5976. "email": "vance@vancelucas.com",
  5977. "homepage": "https://github.com/vlucas"
  5978. }
  5979. ],
  5980. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5981. "keywords": [
  5982. "dotenv",
  5983. "env",
  5984. "environment"
  5985. ],
  5986. "support": {
  5987. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5988. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  5989. },
  5990. "funding": [
  5991. {
  5992. "url": "https://github.com/GrahamCampbell",
  5993. "type": "github"
  5994. },
  5995. {
  5996. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5997. "type": "tidelift"
  5998. }
  5999. ],
  6000. "time": "2024-07-20T21:52:34+00:00"
  6001. },
  6002. {
  6003. "name": "voku/portable-ascii",
  6004. "version": "2.0.1",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/voku/portable-ascii.git",
  6008. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6013. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": ">=7.0.0"
  6018. },
  6019. "require-dev": {
  6020. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6021. },
  6022. "suggest": {
  6023. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6024. },
  6025. "type": "library",
  6026. "autoload": {
  6027. "psr-4": {
  6028. "voku\\": "src/voku/"
  6029. }
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Lars Moelleken",
  6038. "homepage": "http://www.moelleken.org/"
  6039. }
  6040. ],
  6041. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6042. "homepage": "https://github.com/voku/portable-ascii",
  6043. "keywords": [
  6044. "ascii",
  6045. "clean",
  6046. "php"
  6047. ],
  6048. "support": {
  6049. "issues": "https://github.com/voku/portable-ascii/issues",
  6050. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6051. },
  6052. "funding": [
  6053. {
  6054. "url": "https://www.paypal.me/moelleken",
  6055. "type": "custom"
  6056. },
  6057. {
  6058. "url": "https://github.com/voku",
  6059. "type": "github"
  6060. },
  6061. {
  6062. "url": "https://opencollective.com/portable-ascii",
  6063. "type": "open_collective"
  6064. },
  6065. {
  6066. "url": "https://www.patreon.com/voku",
  6067. "type": "patreon"
  6068. },
  6069. {
  6070. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6071. "type": "tidelift"
  6072. }
  6073. ],
  6074. "time": "2022-03-08T17:03:00+00:00"
  6075. },
  6076. {
  6077. "name": "webmozart/assert",
  6078. "version": "1.11.0",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://github.com/webmozarts/assert.git",
  6082. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6087. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6088. "shasum": ""
  6089. },
  6090. "require": {
  6091. "ext-ctype": "*",
  6092. "php": "^7.2 || ^8.0"
  6093. },
  6094. "conflict": {
  6095. "phpstan/phpstan": "<0.12.20",
  6096. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6097. },
  6098. "require-dev": {
  6099. "phpunit/phpunit": "^8.5.13"
  6100. },
  6101. "type": "library",
  6102. "extra": {
  6103. "branch-alias": {
  6104. "dev-master": "1.10-dev"
  6105. }
  6106. },
  6107. "autoload": {
  6108. "psr-4": {
  6109. "Webmozart\\Assert\\": "src/"
  6110. }
  6111. },
  6112. "notification-url": "https://packagist.org/downloads/",
  6113. "license": [
  6114. "MIT"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "Bernhard Schussek",
  6119. "email": "bschussek@gmail.com"
  6120. }
  6121. ],
  6122. "description": "Assertions to validate method input/output with nice error messages.",
  6123. "keywords": [
  6124. "assert",
  6125. "check",
  6126. "validate"
  6127. ],
  6128. "support": {
  6129. "issues": "https://github.com/webmozarts/assert/issues",
  6130. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6131. },
  6132. "time": "2022-06-03T18:03:27+00:00"
  6133. }
  6134. ],
  6135. "packages-dev": [
  6136. {
  6137. "name": "fakerphp/faker",
  6138. "version": "v1.23.1",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/FakerPHP/Faker.git",
  6142. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  6147. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  6148. "shasum": ""
  6149. },
  6150. "require": {
  6151. "php": "^7.4 || ^8.0",
  6152. "psr/container": "^1.0 || ^2.0",
  6153. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6154. },
  6155. "conflict": {
  6156. "fzaninotto/faker": "*"
  6157. },
  6158. "require-dev": {
  6159. "bamarni/composer-bin-plugin": "^1.4.1",
  6160. "doctrine/persistence": "^1.3 || ^2.0",
  6161. "ext-intl": "*",
  6162. "phpunit/phpunit": "^9.5.26",
  6163. "symfony/phpunit-bridge": "^5.4.16"
  6164. },
  6165. "suggest": {
  6166. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  6167. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  6168. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  6169. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  6170. "ext-mbstring": "Required for multibyte Unicode string functionality."
  6171. },
  6172. "type": "library",
  6173. "autoload": {
  6174. "psr-4": {
  6175. "Faker\\": "src/Faker/"
  6176. }
  6177. },
  6178. "notification-url": "https://packagist.org/downloads/",
  6179. "license": [
  6180. "MIT"
  6181. ],
  6182. "authors": [
  6183. {
  6184. "name": "François Zaninotto"
  6185. }
  6186. ],
  6187. "description": "Faker is a PHP library that generates fake data for you.",
  6188. "keywords": [
  6189. "data",
  6190. "faker",
  6191. "fixtures"
  6192. ],
  6193. "support": {
  6194. "issues": "https://github.com/FakerPHP/Faker/issues",
  6195. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  6196. },
  6197. "time": "2024-01-02T13:46:09+00:00"
  6198. },
  6199. {
  6200. "name": "filp/whoops",
  6201. "version": "2.15.4",
  6202. "source": {
  6203. "type": "git",
  6204. "url": "https://github.com/filp/whoops.git",
  6205. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  6206. },
  6207. "dist": {
  6208. "type": "zip",
  6209. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  6210. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  6211. "shasum": ""
  6212. },
  6213. "require": {
  6214. "php": "^5.5.9 || ^7.0 || ^8.0",
  6215. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6216. },
  6217. "require-dev": {
  6218. "mockery/mockery": "^0.9 || ^1.0",
  6219. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  6220. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6221. },
  6222. "suggest": {
  6223. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6224. "whoops/soap": "Formats errors as SOAP responses"
  6225. },
  6226. "type": "library",
  6227. "extra": {
  6228. "branch-alias": {
  6229. "dev-master": "2.7-dev"
  6230. }
  6231. },
  6232. "autoload": {
  6233. "psr-4": {
  6234. "Whoops\\": "src/Whoops/"
  6235. }
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "MIT"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Filipe Dobreira",
  6244. "homepage": "https://github.com/filp",
  6245. "role": "Developer"
  6246. }
  6247. ],
  6248. "description": "php error handling for cool kids",
  6249. "homepage": "https://filp.github.io/whoops/",
  6250. "keywords": [
  6251. "error",
  6252. "exception",
  6253. "handling",
  6254. "library",
  6255. "throwable",
  6256. "whoops"
  6257. ],
  6258. "support": {
  6259. "issues": "https://github.com/filp/whoops/issues",
  6260. "source": "https://github.com/filp/whoops/tree/2.15.4"
  6261. },
  6262. "funding": [
  6263. {
  6264. "url": "https://github.com/denis-sokolov",
  6265. "type": "github"
  6266. }
  6267. ],
  6268. "time": "2023-11-03T12:00:00+00:00"
  6269. },
  6270. {
  6271. "name": "hamcrest/hamcrest-php",
  6272. "version": "v2.0.1",
  6273. "source": {
  6274. "type": "git",
  6275. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6276. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6277. },
  6278. "dist": {
  6279. "type": "zip",
  6280. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6281. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6282. "shasum": ""
  6283. },
  6284. "require": {
  6285. "php": "^5.3|^7.0|^8.0"
  6286. },
  6287. "replace": {
  6288. "cordoval/hamcrest-php": "*",
  6289. "davedevelopment/hamcrest-php": "*",
  6290. "kodova/hamcrest-php": "*"
  6291. },
  6292. "require-dev": {
  6293. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6294. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6295. },
  6296. "type": "library",
  6297. "extra": {
  6298. "branch-alias": {
  6299. "dev-master": "2.1-dev"
  6300. }
  6301. },
  6302. "autoload": {
  6303. "classmap": [
  6304. "hamcrest"
  6305. ]
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "BSD-3-Clause"
  6310. ],
  6311. "description": "This is the PHP port of Hamcrest Matchers",
  6312. "keywords": [
  6313. "test"
  6314. ],
  6315. "support": {
  6316. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6317. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6318. },
  6319. "time": "2020-07-09T08:09:16+00:00"
  6320. },
  6321. {
  6322. "name": "laravel/breeze",
  6323. "version": "v2.1.4",
  6324. "source": {
  6325. "type": "git",
  6326. "url": "https://github.com/laravel/breeze.git",
  6327. "reference": "ef237081cc9b87c858e9de8e35b523f93ac74fd3"
  6328. },
  6329. "dist": {
  6330. "type": "zip",
  6331. "url": "https://api.github.com/repos/laravel/breeze/zipball/ef237081cc9b87c858e9de8e35b523f93ac74fd3",
  6332. "reference": "ef237081cc9b87c858e9de8e35b523f93ac74fd3",
  6333. "shasum": ""
  6334. },
  6335. "require": {
  6336. "illuminate/console": "^11.0",
  6337. "illuminate/filesystem": "^11.0",
  6338. "illuminate/support": "^11.0",
  6339. "illuminate/validation": "^11.0",
  6340. "php": "^8.2.0",
  6341. "symfony/console": "^7.0"
  6342. },
  6343. "require-dev": {
  6344. "orchestra/testbench": "^9.0",
  6345. "phpstan/phpstan": "^1.10"
  6346. },
  6347. "type": "library",
  6348. "extra": {
  6349. "laravel": {
  6350. "providers": [
  6351. "Laravel\\Breeze\\BreezeServiceProvider"
  6352. ]
  6353. }
  6354. },
  6355. "autoload": {
  6356. "psr-4": {
  6357. "Laravel\\Breeze\\": "src/"
  6358. }
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "MIT"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "Taylor Otwell",
  6367. "email": "taylor@laravel.com"
  6368. }
  6369. ],
  6370. "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.",
  6371. "keywords": [
  6372. "auth",
  6373. "laravel"
  6374. ],
  6375. "support": {
  6376. "issues": "https://github.com/laravel/breeze/issues",
  6377. "source": "https://github.com/laravel/breeze"
  6378. },
  6379. "time": "2024-08-12T22:06:50+00:00"
  6380. },
  6381. {
  6382. "name": "laravel/pint",
  6383. "version": "v1.17.2",
  6384. "source": {
  6385. "type": "git",
  6386. "url": "https://github.com/laravel/pint.git",
  6387. "reference": "e8a88130a25e3f9d4d5785e6a1afca98268ab110"
  6388. },
  6389. "dist": {
  6390. "type": "zip",
  6391. "url": "https://api.github.com/repos/laravel/pint/zipball/e8a88130a25e3f9d4d5785e6a1afca98268ab110",
  6392. "reference": "e8a88130a25e3f9d4d5785e6a1afca98268ab110",
  6393. "shasum": ""
  6394. },
  6395. "require": {
  6396. "ext-json": "*",
  6397. "ext-mbstring": "*",
  6398. "ext-tokenizer": "*",
  6399. "ext-xml": "*",
  6400. "php": "^8.1.0"
  6401. },
  6402. "require-dev": {
  6403. "friendsofphp/php-cs-fixer": "^3.61.1",
  6404. "illuminate/view": "^10.48.18",
  6405. "larastan/larastan": "^2.9.8",
  6406. "laravel-zero/framework": "^10.4.0",
  6407. "mockery/mockery": "^1.6.12",
  6408. "nunomaduro/termwind": "^1.15.1",
  6409. "pestphp/pest": "^2.35.0"
  6410. },
  6411. "bin": [
  6412. "builds/pint"
  6413. ],
  6414. "type": "project",
  6415. "autoload": {
  6416. "psr-4": {
  6417. "App\\": "app/",
  6418. "Database\\Seeders\\": "database/seeders/",
  6419. "Database\\Factories\\": "database/factories/"
  6420. }
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "MIT"
  6425. ],
  6426. "authors": [
  6427. {
  6428. "name": "Nuno Maduro",
  6429. "email": "enunomaduro@gmail.com"
  6430. }
  6431. ],
  6432. "description": "An opinionated code formatter for PHP.",
  6433. "homepage": "https://laravel.com",
  6434. "keywords": [
  6435. "format",
  6436. "formatter",
  6437. "lint",
  6438. "linter",
  6439. "php"
  6440. ],
  6441. "support": {
  6442. "issues": "https://github.com/laravel/pint/issues",
  6443. "source": "https://github.com/laravel/pint"
  6444. },
  6445. "time": "2024-08-06T15:11:54+00:00"
  6446. },
  6447. {
  6448. "name": "laravel/sail",
  6449. "version": "v1.31.1",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/laravel/sail.git",
  6453. "reference": "3d06dd18cee8059baa7b388af00ba47f6d96bd85"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/laravel/sail/zipball/3d06dd18cee8059baa7b388af00ba47f6d96bd85",
  6458. "reference": "3d06dd18cee8059baa7b388af00ba47f6d96bd85",
  6459. "shasum": ""
  6460. },
  6461. "require": {
  6462. "illuminate/console": "^9.52.16|^10.0|^11.0",
  6463. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  6464. "illuminate/support": "^9.52.16|^10.0|^11.0",
  6465. "php": "^8.0",
  6466. "symfony/console": "^6.0|^7.0",
  6467. "symfony/yaml": "^6.0|^7.0"
  6468. },
  6469. "require-dev": {
  6470. "orchestra/testbench": "^7.0|^8.0|^9.0",
  6471. "phpstan/phpstan": "^1.10"
  6472. },
  6473. "bin": [
  6474. "bin/sail"
  6475. ],
  6476. "type": "library",
  6477. "extra": {
  6478. "laravel": {
  6479. "providers": [
  6480. "Laravel\\Sail\\SailServiceProvider"
  6481. ]
  6482. }
  6483. },
  6484. "autoload": {
  6485. "psr-4": {
  6486. "Laravel\\Sail\\": "src/"
  6487. }
  6488. },
  6489. "notification-url": "https://packagist.org/downloads/",
  6490. "license": [
  6491. "MIT"
  6492. ],
  6493. "authors": [
  6494. {
  6495. "name": "Taylor Otwell",
  6496. "email": "taylor@laravel.com"
  6497. }
  6498. ],
  6499. "description": "Docker files for running a basic Laravel application.",
  6500. "keywords": [
  6501. "docker",
  6502. "laravel"
  6503. ],
  6504. "support": {
  6505. "issues": "https://github.com/laravel/sail/issues",
  6506. "source": "https://github.com/laravel/sail"
  6507. },
  6508. "time": "2024-08-02T07:45:47+00:00"
  6509. },
  6510. {
  6511. "name": "mockery/mockery",
  6512. "version": "1.6.12",
  6513. "source": {
  6514. "type": "git",
  6515. "url": "https://github.com/mockery/mockery.git",
  6516. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  6517. },
  6518. "dist": {
  6519. "type": "zip",
  6520. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  6521. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  6522. "shasum": ""
  6523. },
  6524. "require": {
  6525. "hamcrest/hamcrest-php": "^2.0.1",
  6526. "lib-pcre": ">=7.0",
  6527. "php": ">=7.3"
  6528. },
  6529. "conflict": {
  6530. "phpunit/phpunit": "<8.0"
  6531. },
  6532. "require-dev": {
  6533. "phpunit/phpunit": "^8.5 || ^9.6.17",
  6534. "symplify/easy-coding-standard": "^12.1.14"
  6535. },
  6536. "type": "library",
  6537. "autoload": {
  6538. "files": [
  6539. "library/helpers.php",
  6540. "library/Mockery.php"
  6541. ],
  6542. "psr-4": {
  6543. "Mockery\\": "library/Mockery"
  6544. }
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "BSD-3-Clause"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "Pádraic Brady",
  6553. "email": "padraic.brady@gmail.com",
  6554. "homepage": "https://github.com/padraic",
  6555. "role": "Author"
  6556. },
  6557. {
  6558. "name": "Dave Marshall",
  6559. "email": "dave.marshall@atstsolutions.co.uk",
  6560. "homepage": "https://davedevelopment.co.uk",
  6561. "role": "Developer"
  6562. },
  6563. {
  6564. "name": "Nathanael Esayeas",
  6565. "email": "nathanael.esayeas@protonmail.com",
  6566. "homepage": "https://github.com/ghostwriter",
  6567. "role": "Lead Developer"
  6568. }
  6569. ],
  6570. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6571. "homepage": "https://github.com/mockery/mockery",
  6572. "keywords": [
  6573. "BDD",
  6574. "TDD",
  6575. "library",
  6576. "mock",
  6577. "mock objects",
  6578. "mockery",
  6579. "stub",
  6580. "test",
  6581. "test double",
  6582. "testing"
  6583. ],
  6584. "support": {
  6585. "docs": "https://docs.mockery.io/",
  6586. "issues": "https://github.com/mockery/mockery/issues",
  6587. "rss": "https://github.com/mockery/mockery/releases.atom",
  6588. "security": "https://github.com/mockery/mockery/security/advisories",
  6589. "source": "https://github.com/mockery/mockery"
  6590. },
  6591. "time": "2024-05-16T03:13:13+00:00"
  6592. },
  6593. {
  6594. "name": "myclabs/deep-copy",
  6595. "version": "1.12.0",
  6596. "source": {
  6597. "type": "git",
  6598. "url": "https://github.com/myclabs/DeepCopy.git",
  6599. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  6600. },
  6601. "dist": {
  6602. "type": "zip",
  6603. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  6604. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  6605. "shasum": ""
  6606. },
  6607. "require": {
  6608. "php": "^7.1 || ^8.0"
  6609. },
  6610. "conflict": {
  6611. "doctrine/collections": "<1.6.8",
  6612. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  6613. },
  6614. "require-dev": {
  6615. "doctrine/collections": "^1.6.8",
  6616. "doctrine/common": "^2.13.3 || ^3.2.2",
  6617. "phpspec/prophecy": "^1.10",
  6618. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6619. },
  6620. "type": "library",
  6621. "autoload": {
  6622. "files": [
  6623. "src/DeepCopy/deep_copy.php"
  6624. ],
  6625. "psr-4": {
  6626. "DeepCopy\\": "src/DeepCopy/"
  6627. }
  6628. },
  6629. "notification-url": "https://packagist.org/downloads/",
  6630. "license": [
  6631. "MIT"
  6632. ],
  6633. "description": "Create deep copies (clones) of your objects",
  6634. "keywords": [
  6635. "clone",
  6636. "copy",
  6637. "duplicate",
  6638. "object",
  6639. "object graph"
  6640. ],
  6641. "support": {
  6642. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6643. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  6644. },
  6645. "funding": [
  6646. {
  6647. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6648. "type": "tidelift"
  6649. }
  6650. ],
  6651. "time": "2024-06-12T14:39:25+00:00"
  6652. },
  6653. {
  6654. "name": "nunomaduro/collision",
  6655. "version": "v8.4.0",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/nunomaduro/collision.git",
  6659. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/e7d1aa8ed753f63fa816932bbc89678238843b4a",
  6664. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "filp/whoops": "^2.15.4",
  6669. "nunomaduro/termwind": "^2.0.1",
  6670. "php": "^8.2.0",
  6671. "symfony/console": "^7.1.3"
  6672. },
  6673. "conflict": {
  6674. "laravel/framework": "<11.0.0 || >=12.0.0",
  6675. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  6676. },
  6677. "require-dev": {
  6678. "larastan/larastan": "^2.9.8",
  6679. "laravel/framework": "^11.19.0",
  6680. "laravel/pint": "^1.17.1",
  6681. "laravel/sail": "^1.31.0",
  6682. "laravel/sanctum": "^4.0.2",
  6683. "laravel/tinker": "^2.9.0",
  6684. "orchestra/testbench-core": "^9.2.3",
  6685. "pestphp/pest": "^2.35.0 || ^3.0.0",
  6686. "sebastian/environment": "^6.1.0 || ^7.0.0"
  6687. },
  6688. "type": "library",
  6689. "extra": {
  6690. "laravel": {
  6691. "providers": [
  6692. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6693. ]
  6694. },
  6695. "branch-alias": {
  6696. "dev-8.x": "8.x-dev"
  6697. }
  6698. },
  6699. "autoload": {
  6700. "files": [
  6701. "./src/Adapters/Phpunit/Autoload.php"
  6702. ],
  6703. "psr-4": {
  6704. "NunoMaduro\\Collision\\": "src/"
  6705. }
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "MIT"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Nuno Maduro",
  6714. "email": "enunomaduro@gmail.com"
  6715. }
  6716. ],
  6717. "description": "Cli error handling for console/command-line PHP applications.",
  6718. "keywords": [
  6719. "artisan",
  6720. "cli",
  6721. "command-line",
  6722. "console",
  6723. "error",
  6724. "handling",
  6725. "laravel",
  6726. "laravel-zero",
  6727. "php",
  6728. "symfony"
  6729. ],
  6730. "support": {
  6731. "issues": "https://github.com/nunomaduro/collision/issues",
  6732. "source": "https://github.com/nunomaduro/collision"
  6733. },
  6734. "funding": [
  6735. {
  6736. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6737. "type": "custom"
  6738. },
  6739. {
  6740. "url": "https://github.com/nunomaduro",
  6741. "type": "github"
  6742. },
  6743. {
  6744. "url": "https://www.patreon.com/nunomaduro",
  6745. "type": "patreon"
  6746. }
  6747. ],
  6748. "time": "2024-08-03T15:32:23+00:00"
  6749. },
  6750. {
  6751. "name": "phar-io/manifest",
  6752. "version": "2.0.4",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://github.com/phar-io/manifest.git",
  6756. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  6761. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  6762. "shasum": ""
  6763. },
  6764. "require": {
  6765. "ext-dom": "*",
  6766. "ext-libxml": "*",
  6767. "ext-phar": "*",
  6768. "ext-xmlwriter": "*",
  6769. "phar-io/version": "^3.0.1",
  6770. "php": "^7.2 || ^8.0"
  6771. },
  6772. "type": "library",
  6773. "extra": {
  6774. "branch-alias": {
  6775. "dev-master": "2.0.x-dev"
  6776. }
  6777. },
  6778. "autoload": {
  6779. "classmap": [
  6780. "src/"
  6781. ]
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "license": [
  6785. "BSD-3-Clause"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Arne Blankerts",
  6790. "email": "arne@blankerts.de",
  6791. "role": "Developer"
  6792. },
  6793. {
  6794. "name": "Sebastian Heuer",
  6795. "email": "sebastian@phpeople.de",
  6796. "role": "Developer"
  6797. },
  6798. {
  6799. "name": "Sebastian Bergmann",
  6800. "email": "sebastian@phpunit.de",
  6801. "role": "Developer"
  6802. }
  6803. ],
  6804. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6805. "support": {
  6806. "issues": "https://github.com/phar-io/manifest/issues",
  6807. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  6808. },
  6809. "funding": [
  6810. {
  6811. "url": "https://github.com/theseer",
  6812. "type": "github"
  6813. }
  6814. ],
  6815. "time": "2024-03-03T12:33:53+00:00"
  6816. },
  6817. {
  6818. "name": "phar-io/version",
  6819. "version": "3.2.1",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/phar-io/version.git",
  6823. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6828. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6829. "shasum": ""
  6830. },
  6831. "require": {
  6832. "php": "^7.2 || ^8.0"
  6833. },
  6834. "type": "library",
  6835. "autoload": {
  6836. "classmap": [
  6837. "src/"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "BSD-3-Clause"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Arne Blankerts",
  6847. "email": "arne@blankerts.de",
  6848. "role": "Developer"
  6849. },
  6850. {
  6851. "name": "Sebastian Heuer",
  6852. "email": "sebastian@phpeople.de",
  6853. "role": "Developer"
  6854. },
  6855. {
  6856. "name": "Sebastian Bergmann",
  6857. "email": "sebastian@phpunit.de",
  6858. "role": "Developer"
  6859. }
  6860. ],
  6861. "description": "Library for handling version information and constraints",
  6862. "support": {
  6863. "issues": "https://github.com/phar-io/version/issues",
  6864. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6865. },
  6866. "time": "2022-02-21T01:04:05+00:00"
  6867. },
  6868. {
  6869. "name": "phpunit/php-code-coverage",
  6870. "version": "11.0.6",
  6871. "source": {
  6872. "type": "git",
  6873. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6874. "reference": "ebdffc9e09585dafa71b9bffcdb0a229d4704c45"
  6875. },
  6876. "dist": {
  6877. "type": "zip",
  6878. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ebdffc9e09585dafa71b9bffcdb0a229d4704c45",
  6879. "reference": "ebdffc9e09585dafa71b9bffcdb0a229d4704c45",
  6880. "shasum": ""
  6881. },
  6882. "require": {
  6883. "ext-dom": "*",
  6884. "ext-libxml": "*",
  6885. "ext-xmlwriter": "*",
  6886. "nikic/php-parser": "^5.1.0",
  6887. "php": ">=8.2",
  6888. "phpunit/php-file-iterator": "^5.0.1",
  6889. "phpunit/php-text-template": "^4.0.1",
  6890. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  6891. "sebastian/complexity": "^4.0.1",
  6892. "sebastian/environment": "^7.2.0",
  6893. "sebastian/lines-of-code": "^3.0.1",
  6894. "sebastian/version": "^5.0.1",
  6895. "theseer/tokenizer": "^1.2.3"
  6896. },
  6897. "require-dev": {
  6898. "phpunit/phpunit": "^11.0"
  6899. },
  6900. "suggest": {
  6901. "ext-pcov": "PHP extension that provides line coverage",
  6902. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6903. },
  6904. "type": "library",
  6905. "extra": {
  6906. "branch-alias": {
  6907. "dev-main": "11.0.x-dev"
  6908. }
  6909. },
  6910. "autoload": {
  6911. "classmap": [
  6912. "src/"
  6913. ]
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "BSD-3-Clause"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "Sebastian Bergmann",
  6922. "email": "sebastian@phpunit.de",
  6923. "role": "lead"
  6924. }
  6925. ],
  6926. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6927. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6928. "keywords": [
  6929. "coverage",
  6930. "testing",
  6931. "xunit"
  6932. ],
  6933. "support": {
  6934. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6935. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  6936. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.6"
  6937. },
  6938. "funding": [
  6939. {
  6940. "url": "https://github.com/sebastianbergmann",
  6941. "type": "github"
  6942. }
  6943. ],
  6944. "time": "2024-08-22T04:37:56+00:00"
  6945. },
  6946. {
  6947. "name": "phpunit/php-file-iterator",
  6948. "version": "5.1.0",
  6949. "source": {
  6950. "type": "git",
  6951. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6952. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  6953. },
  6954. "dist": {
  6955. "type": "zip",
  6956. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  6957. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  6958. "shasum": ""
  6959. },
  6960. "require": {
  6961. "php": ">=8.2"
  6962. },
  6963. "require-dev": {
  6964. "phpunit/phpunit": "^11.0"
  6965. },
  6966. "type": "library",
  6967. "extra": {
  6968. "branch-alias": {
  6969. "dev-main": "5.0-dev"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "classmap": [
  6974. "src/"
  6975. ]
  6976. },
  6977. "notification-url": "https://packagist.org/downloads/",
  6978. "license": [
  6979. "BSD-3-Clause"
  6980. ],
  6981. "authors": [
  6982. {
  6983. "name": "Sebastian Bergmann",
  6984. "email": "sebastian@phpunit.de",
  6985. "role": "lead"
  6986. }
  6987. ],
  6988. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6989. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6990. "keywords": [
  6991. "filesystem",
  6992. "iterator"
  6993. ],
  6994. "support": {
  6995. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6996. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  6997. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  6998. },
  6999. "funding": [
  7000. {
  7001. "url": "https://github.com/sebastianbergmann",
  7002. "type": "github"
  7003. }
  7004. ],
  7005. "time": "2024-08-27T05:02:59+00:00"
  7006. },
  7007. {
  7008. "name": "phpunit/php-invoker",
  7009. "version": "5.0.1",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7013. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  7018. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  7019. "shasum": ""
  7020. },
  7021. "require": {
  7022. "php": ">=8.2"
  7023. },
  7024. "require-dev": {
  7025. "ext-pcntl": "*",
  7026. "phpunit/phpunit": "^11.0"
  7027. },
  7028. "suggest": {
  7029. "ext-pcntl": "*"
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "branch-alias": {
  7034. "dev-main": "5.0-dev"
  7035. }
  7036. },
  7037. "autoload": {
  7038. "classmap": [
  7039. "src/"
  7040. ]
  7041. },
  7042. "notification-url": "https://packagist.org/downloads/",
  7043. "license": [
  7044. "BSD-3-Clause"
  7045. ],
  7046. "authors": [
  7047. {
  7048. "name": "Sebastian Bergmann",
  7049. "email": "sebastian@phpunit.de",
  7050. "role": "lead"
  7051. }
  7052. ],
  7053. "description": "Invoke callables with a timeout",
  7054. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7055. "keywords": [
  7056. "process"
  7057. ],
  7058. "support": {
  7059. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7060. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  7061. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  7062. },
  7063. "funding": [
  7064. {
  7065. "url": "https://github.com/sebastianbergmann",
  7066. "type": "github"
  7067. }
  7068. ],
  7069. "time": "2024-07-03T05:07:44+00:00"
  7070. },
  7071. {
  7072. "name": "phpunit/php-text-template",
  7073. "version": "4.0.1",
  7074. "source": {
  7075. "type": "git",
  7076. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7077. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  7078. },
  7079. "dist": {
  7080. "type": "zip",
  7081. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  7082. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  7083. "shasum": ""
  7084. },
  7085. "require": {
  7086. "php": ">=8.2"
  7087. },
  7088. "require-dev": {
  7089. "phpunit/phpunit": "^11.0"
  7090. },
  7091. "type": "library",
  7092. "extra": {
  7093. "branch-alias": {
  7094. "dev-main": "4.0-dev"
  7095. }
  7096. },
  7097. "autoload": {
  7098. "classmap": [
  7099. "src/"
  7100. ]
  7101. },
  7102. "notification-url": "https://packagist.org/downloads/",
  7103. "license": [
  7104. "BSD-3-Clause"
  7105. ],
  7106. "authors": [
  7107. {
  7108. "name": "Sebastian Bergmann",
  7109. "email": "sebastian@phpunit.de",
  7110. "role": "lead"
  7111. }
  7112. ],
  7113. "description": "Simple template engine.",
  7114. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7115. "keywords": [
  7116. "template"
  7117. ],
  7118. "support": {
  7119. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7120. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7121. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  7122. },
  7123. "funding": [
  7124. {
  7125. "url": "https://github.com/sebastianbergmann",
  7126. "type": "github"
  7127. }
  7128. ],
  7129. "time": "2024-07-03T05:08:43+00:00"
  7130. },
  7131. {
  7132. "name": "phpunit/php-timer",
  7133. "version": "7.0.1",
  7134. "source": {
  7135. "type": "git",
  7136. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7137. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  7138. },
  7139. "dist": {
  7140. "type": "zip",
  7141. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  7142. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  7143. "shasum": ""
  7144. },
  7145. "require": {
  7146. "php": ">=8.2"
  7147. },
  7148. "require-dev": {
  7149. "phpunit/phpunit": "^11.0"
  7150. },
  7151. "type": "library",
  7152. "extra": {
  7153. "branch-alias": {
  7154. "dev-main": "7.0-dev"
  7155. }
  7156. },
  7157. "autoload": {
  7158. "classmap": [
  7159. "src/"
  7160. ]
  7161. },
  7162. "notification-url": "https://packagist.org/downloads/",
  7163. "license": [
  7164. "BSD-3-Clause"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "Sebastian Bergmann",
  7169. "email": "sebastian@phpunit.de",
  7170. "role": "lead"
  7171. }
  7172. ],
  7173. "description": "Utility class for timing",
  7174. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7175. "keywords": [
  7176. "timer"
  7177. ],
  7178. "support": {
  7179. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7180. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  7181. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  7182. },
  7183. "funding": [
  7184. {
  7185. "url": "https://github.com/sebastianbergmann",
  7186. "type": "github"
  7187. }
  7188. ],
  7189. "time": "2024-07-03T05:09:35+00:00"
  7190. },
  7191. {
  7192. "name": "phpunit/phpunit",
  7193. "version": "11.3.1",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7197. "reference": "fe179875ef0c14e90b75617002767eae0a742641"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fe179875ef0c14e90b75617002767eae0a742641",
  7202. "reference": "fe179875ef0c14e90b75617002767eae0a742641",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "ext-dom": "*",
  7207. "ext-json": "*",
  7208. "ext-libxml": "*",
  7209. "ext-mbstring": "*",
  7210. "ext-xml": "*",
  7211. "ext-xmlwriter": "*",
  7212. "myclabs/deep-copy": "^1.12.0",
  7213. "phar-io/manifest": "^2.0.4",
  7214. "phar-io/version": "^3.2.1",
  7215. "php": ">=8.2",
  7216. "phpunit/php-code-coverage": "^11.0.5",
  7217. "phpunit/php-file-iterator": "^5.0.1",
  7218. "phpunit/php-invoker": "^5.0.1",
  7219. "phpunit/php-text-template": "^4.0.1",
  7220. "phpunit/php-timer": "^7.0.1",
  7221. "sebastian/cli-parser": "^3.0.2",
  7222. "sebastian/code-unit": "^3.0.1",
  7223. "sebastian/comparator": "^6.0.2",
  7224. "sebastian/diff": "^6.0.2",
  7225. "sebastian/environment": "^7.2.0",
  7226. "sebastian/exporter": "^6.1.3",
  7227. "sebastian/global-state": "^7.0.2",
  7228. "sebastian/object-enumerator": "^6.0.1",
  7229. "sebastian/type": "^5.0.1",
  7230. "sebastian/version": "^5.0.1"
  7231. },
  7232. "suggest": {
  7233. "ext-soap": "To be able to generate mocks based on WSDL files"
  7234. },
  7235. "bin": [
  7236. "phpunit"
  7237. ],
  7238. "type": "library",
  7239. "extra": {
  7240. "branch-alias": {
  7241. "dev-main": "11.3-dev"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "files": [
  7246. "src/Framework/Assert/Functions.php"
  7247. ],
  7248. "classmap": [
  7249. "src/"
  7250. ]
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "BSD-3-Clause"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Sebastian Bergmann",
  7259. "email": "sebastian@phpunit.de",
  7260. "role": "lead"
  7261. }
  7262. ],
  7263. "description": "The PHP Unit Testing framework.",
  7264. "homepage": "https://phpunit.de/",
  7265. "keywords": [
  7266. "phpunit",
  7267. "testing",
  7268. "xunit"
  7269. ],
  7270. "support": {
  7271. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7272. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7273. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.3.1"
  7274. },
  7275. "funding": [
  7276. {
  7277. "url": "https://phpunit.de/sponsors.html",
  7278. "type": "custom"
  7279. },
  7280. {
  7281. "url": "https://github.com/sebastianbergmann",
  7282. "type": "github"
  7283. },
  7284. {
  7285. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7286. "type": "tidelift"
  7287. }
  7288. ],
  7289. "time": "2024-08-13T06:14:23+00:00"
  7290. },
  7291. {
  7292. "name": "sebastian/cli-parser",
  7293. "version": "3.0.2",
  7294. "source": {
  7295. "type": "git",
  7296. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7297. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  7298. },
  7299. "dist": {
  7300. "type": "zip",
  7301. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  7302. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  7303. "shasum": ""
  7304. },
  7305. "require": {
  7306. "php": ">=8.2"
  7307. },
  7308. "require-dev": {
  7309. "phpunit/phpunit": "^11.0"
  7310. },
  7311. "type": "library",
  7312. "extra": {
  7313. "branch-alias": {
  7314. "dev-main": "3.0-dev"
  7315. }
  7316. },
  7317. "autoload": {
  7318. "classmap": [
  7319. "src/"
  7320. ]
  7321. },
  7322. "notification-url": "https://packagist.org/downloads/",
  7323. "license": [
  7324. "BSD-3-Clause"
  7325. ],
  7326. "authors": [
  7327. {
  7328. "name": "Sebastian Bergmann",
  7329. "email": "sebastian@phpunit.de",
  7330. "role": "lead"
  7331. }
  7332. ],
  7333. "description": "Library for parsing CLI options",
  7334. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7335. "support": {
  7336. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7337. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  7338. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  7339. },
  7340. "funding": [
  7341. {
  7342. "url": "https://github.com/sebastianbergmann",
  7343. "type": "github"
  7344. }
  7345. ],
  7346. "time": "2024-07-03T04:41:36+00:00"
  7347. },
  7348. {
  7349. "name": "sebastian/code-unit",
  7350. "version": "3.0.1",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7354. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  7359. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  7360. "shasum": ""
  7361. },
  7362. "require": {
  7363. "php": ">=8.2"
  7364. },
  7365. "require-dev": {
  7366. "phpunit/phpunit": "^11.0"
  7367. },
  7368. "type": "library",
  7369. "extra": {
  7370. "branch-alias": {
  7371. "dev-main": "3.0-dev"
  7372. }
  7373. },
  7374. "autoload": {
  7375. "classmap": [
  7376. "src/"
  7377. ]
  7378. },
  7379. "notification-url": "https://packagist.org/downloads/",
  7380. "license": [
  7381. "BSD-3-Clause"
  7382. ],
  7383. "authors": [
  7384. {
  7385. "name": "Sebastian Bergmann",
  7386. "email": "sebastian@phpunit.de",
  7387. "role": "lead"
  7388. }
  7389. ],
  7390. "description": "Collection of value objects that represent the PHP code units",
  7391. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7392. "support": {
  7393. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7394. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  7395. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  7396. },
  7397. "funding": [
  7398. {
  7399. "url": "https://github.com/sebastianbergmann",
  7400. "type": "github"
  7401. }
  7402. ],
  7403. "time": "2024-07-03T04:44:28+00:00"
  7404. },
  7405. {
  7406. "name": "sebastian/code-unit-reverse-lookup",
  7407. "version": "4.0.1",
  7408. "source": {
  7409. "type": "git",
  7410. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7411. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  7412. },
  7413. "dist": {
  7414. "type": "zip",
  7415. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  7416. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  7417. "shasum": ""
  7418. },
  7419. "require": {
  7420. "php": ">=8.2"
  7421. },
  7422. "require-dev": {
  7423. "phpunit/phpunit": "^11.0"
  7424. },
  7425. "type": "library",
  7426. "extra": {
  7427. "branch-alias": {
  7428. "dev-main": "4.0-dev"
  7429. }
  7430. },
  7431. "autoload": {
  7432. "classmap": [
  7433. "src/"
  7434. ]
  7435. },
  7436. "notification-url": "https://packagist.org/downloads/",
  7437. "license": [
  7438. "BSD-3-Clause"
  7439. ],
  7440. "authors": [
  7441. {
  7442. "name": "Sebastian Bergmann",
  7443. "email": "sebastian@phpunit.de"
  7444. }
  7445. ],
  7446. "description": "Looks up which function or method a line of code belongs to",
  7447. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7448. "support": {
  7449. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7450. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  7451. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  7452. },
  7453. "funding": [
  7454. {
  7455. "url": "https://github.com/sebastianbergmann",
  7456. "type": "github"
  7457. }
  7458. ],
  7459. "time": "2024-07-03T04:45:54+00:00"
  7460. },
  7461. {
  7462. "name": "sebastian/comparator",
  7463. "version": "6.0.2",
  7464. "source": {
  7465. "type": "git",
  7466. "url": "https://github.com/sebastianbergmann/comparator.git",
  7467. "reference": "450d8f237bd611c45b5acf0733ce43e6bb280f81"
  7468. },
  7469. "dist": {
  7470. "type": "zip",
  7471. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/450d8f237bd611c45b5acf0733ce43e6bb280f81",
  7472. "reference": "450d8f237bd611c45b5acf0733ce43e6bb280f81",
  7473. "shasum": ""
  7474. },
  7475. "require": {
  7476. "ext-dom": "*",
  7477. "ext-mbstring": "*",
  7478. "php": ">=8.2",
  7479. "sebastian/diff": "^6.0",
  7480. "sebastian/exporter": "^6.0"
  7481. },
  7482. "require-dev": {
  7483. "phpunit/phpunit": "^11.0"
  7484. },
  7485. "type": "library",
  7486. "extra": {
  7487. "branch-alias": {
  7488. "dev-main": "6.0-dev"
  7489. }
  7490. },
  7491. "autoload": {
  7492. "classmap": [
  7493. "src/"
  7494. ]
  7495. },
  7496. "notification-url": "https://packagist.org/downloads/",
  7497. "license": [
  7498. "BSD-3-Clause"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "Sebastian Bergmann",
  7503. "email": "sebastian@phpunit.de"
  7504. },
  7505. {
  7506. "name": "Jeff Welch",
  7507. "email": "whatthejeff@gmail.com"
  7508. },
  7509. {
  7510. "name": "Volker Dusch",
  7511. "email": "github@wallbash.com"
  7512. },
  7513. {
  7514. "name": "Bernhard Schussek",
  7515. "email": "bschussek@2bepublished.at"
  7516. }
  7517. ],
  7518. "description": "Provides the functionality to compare PHP values for equality",
  7519. "homepage": "https://github.com/sebastianbergmann/comparator",
  7520. "keywords": [
  7521. "comparator",
  7522. "compare",
  7523. "equality"
  7524. ],
  7525. "support": {
  7526. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7527. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  7528. "source": "https://github.com/sebastianbergmann/comparator/tree/6.0.2"
  7529. },
  7530. "funding": [
  7531. {
  7532. "url": "https://github.com/sebastianbergmann",
  7533. "type": "github"
  7534. }
  7535. ],
  7536. "time": "2024-08-12T06:07:25+00:00"
  7537. },
  7538. {
  7539. "name": "sebastian/complexity",
  7540. "version": "4.0.1",
  7541. "source": {
  7542. "type": "git",
  7543. "url": "https://github.com/sebastianbergmann/complexity.git",
  7544. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  7545. },
  7546. "dist": {
  7547. "type": "zip",
  7548. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  7549. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  7550. "shasum": ""
  7551. },
  7552. "require": {
  7553. "nikic/php-parser": "^5.0",
  7554. "php": ">=8.2"
  7555. },
  7556. "require-dev": {
  7557. "phpunit/phpunit": "^11.0"
  7558. },
  7559. "type": "library",
  7560. "extra": {
  7561. "branch-alias": {
  7562. "dev-main": "4.0-dev"
  7563. }
  7564. },
  7565. "autoload": {
  7566. "classmap": [
  7567. "src/"
  7568. ]
  7569. },
  7570. "notification-url": "https://packagist.org/downloads/",
  7571. "license": [
  7572. "BSD-3-Clause"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "Sebastian Bergmann",
  7577. "email": "sebastian@phpunit.de",
  7578. "role": "lead"
  7579. }
  7580. ],
  7581. "description": "Library for calculating the complexity of PHP code units",
  7582. "homepage": "https://github.com/sebastianbergmann/complexity",
  7583. "support": {
  7584. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7585. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  7586. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  7587. },
  7588. "funding": [
  7589. {
  7590. "url": "https://github.com/sebastianbergmann",
  7591. "type": "github"
  7592. }
  7593. ],
  7594. "time": "2024-07-03T04:49:50+00:00"
  7595. },
  7596. {
  7597. "name": "sebastian/diff",
  7598. "version": "6.0.2",
  7599. "source": {
  7600. "type": "git",
  7601. "url": "https://github.com/sebastianbergmann/diff.git",
  7602. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  7603. },
  7604. "dist": {
  7605. "type": "zip",
  7606. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  7607. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  7608. "shasum": ""
  7609. },
  7610. "require": {
  7611. "php": ">=8.2"
  7612. },
  7613. "require-dev": {
  7614. "phpunit/phpunit": "^11.0",
  7615. "symfony/process": "^4.2 || ^5"
  7616. },
  7617. "type": "library",
  7618. "extra": {
  7619. "branch-alias": {
  7620. "dev-main": "6.0-dev"
  7621. }
  7622. },
  7623. "autoload": {
  7624. "classmap": [
  7625. "src/"
  7626. ]
  7627. },
  7628. "notification-url": "https://packagist.org/downloads/",
  7629. "license": [
  7630. "BSD-3-Clause"
  7631. ],
  7632. "authors": [
  7633. {
  7634. "name": "Sebastian Bergmann",
  7635. "email": "sebastian@phpunit.de"
  7636. },
  7637. {
  7638. "name": "Kore Nordmann",
  7639. "email": "mail@kore-nordmann.de"
  7640. }
  7641. ],
  7642. "description": "Diff implementation",
  7643. "homepage": "https://github.com/sebastianbergmann/diff",
  7644. "keywords": [
  7645. "diff",
  7646. "udiff",
  7647. "unidiff",
  7648. "unified diff"
  7649. ],
  7650. "support": {
  7651. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7652. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  7653. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  7654. },
  7655. "funding": [
  7656. {
  7657. "url": "https://github.com/sebastianbergmann",
  7658. "type": "github"
  7659. }
  7660. ],
  7661. "time": "2024-07-03T04:53:05+00:00"
  7662. },
  7663. {
  7664. "name": "sebastian/environment",
  7665. "version": "7.2.0",
  7666. "source": {
  7667. "type": "git",
  7668. "url": "https://github.com/sebastianbergmann/environment.git",
  7669. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  7670. },
  7671. "dist": {
  7672. "type": "zip",
  7673. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  7674. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  7675. "shasum": ""
  7676. },
  7677. "require": {
  7678. "php": ">=8.2"
  7679. },
  7680. "require-dev": {
  7681. "phpunit/phpunit": "^11.0"
  7682. },
  7683. "suggest": {
  7684. "ext-posix": "*"
  7685. },
  7686. "type": "library",
  7687. "extra": {
  7688. "branch-alias": {
  7689. "dev-main": "7.2-dev"
  7690. }
  7691. },
  7692. "autoload": {
  7693. "classmap": [
  7694. "src/"
  7695. ]
  7696. },
  7697. "notification-url": "https://packagist.org/downloads/",
  7698. "license": [
  7699. "BSD-3-Clause"
  7700. ],
  7701. "authors": [
  7702. {
  7703. "name": "Sebastian Bergmann",
  7704. "email": "sebastian@phpunit.de"
  7705. }
  7706. ],
  7707. "description": "Provides functionality to handle HHVM/PHP environments",
  7708. "homepage": "https://github.com/sebastianbergmann/environment",
  7709. "keywords": [
  7710. "Xdebug",
  7711. "environment",
  7712. "hhvm"
  7713. ],
  7714. "support": {
  7715. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7716. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  7717. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  7718. },
  7719. "funding": [
  7720. {
  7721. "url": "https://github.com/sebastianbergmann",
  7722. "type": "github"
  7723. }
  7724. ],
  7725. "time": "2024-07-03T04:54:44+00:00"
  7726. },
  7727. {
  7728. "name": "sebastian/exporter",
  7729. "version": "6.1.3",
  7730. "source": {
  7731. "type": "git",
  7732. "url": "https://github.com/sebastianbergmann/exporter.git",
  7733. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  7734. },
  7735. "dist": {
  7736. "type": "zip",
  7737. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  7738. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  7739. "shasum": ""
  7740. },
  7741. "require": {
  7742. "ext-mbstring": "*",
  7743. "php": ">=8.2",
  7744. "sebastian/recursion-context": "^6.0"
  7745. },
  7746. "require-dev": {
  7747. "phpunit/phpunit": "^11.2"
  7748. },
  7749. "type": "library",
  7750. "extra": {
  7751. "branch-alias": {
  7752. "dev-main": "6.1-dev"
  7753. }
  7754. },
  7755. "autoload": {
  7756. "classmap": [
  7757. "src/"
  7758. ]
  7759. },
  7760. "notification-url": "https://packagist.org/downloads/",
  7761. "license": [
  7762. "BSD-3-Clause"
  7763. ],
  7764. "authors": [
  7765. {
  7766. "name": "Sebastian Bergmann",
  7767. "email": "sebastian@phpunit.de"
  7768. },
  7769. {
  7770. "name": "Jeff Welch",
  7771. "email": "whatthejeff@gmail.com"
  7772. },
  7773. {
  7774. "name": "Volker Dusch",
  7775. "email": "github@wallbash.com"
  7776. },
  7777. {
  7778. "name": "Adam Harvey",
  7779. "email": "aharvey@php.net"
  7780. },
  7781. {
  7782. "name": "Bernhard Schussek",
  7783. "email": "bschussek@gmail.com"
  7784. }
  7785. ],
  7786. "description": "Provides the functionality to export PHP variables for visualization",
  7787. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7788. "keywords": [
  7789. "export",
  7790. "exporter"
  7791. ],
  7792. "support": {
  7793. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7794. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  7795. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://github.com/sebastianbergmann",
  7800. "type": "github"
  7801. }
  7802. ],
  7803. "time": "2024-07-03T04:56:19+00:00"
  7804. },
  7805. {
  7806. "name": "sebastian/global-state",
  7807. "version": "7.0.2",
  7808. "source": {
  7809. "type": "git",
  7810. "url": "https://github.com/sebastianbergmann/global-state.git",
  7811. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  7812. },
  7813. "dist": {
  7814. "type": "zip",
  7815. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  7816. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  7817. "shasum": ""
  7818. },
  7819. "require": {
  7820. "php": ">=8.2",
  7821. "sebastian/object-reflector": "^4.0",
  7822. "sebastian/recursion-context": "^6.0"
  7823. },
  7824. "require-dev": {
  7825. "ext-dom": "*",
  7826. "phpunit/phpunit": "^11.0"
  7827. },
  7828. "type": "library",
  7829. "extra": {
  7830. "branch-alias": {
  7831. "dev-main": "7.0-dev"
  7832. }
  7833. },
  7834. "autoload": {
  7835. "classmap": [
  7836. "src/"
  7837. ]
  7838. },
  7839. "notification-url": "https://packagist.org/downloads/",
  7840. "license": [
  7841. "BSD-3-Clause"
  7842. ],
  7843. "authors": [
  7844. {
  7845. "name": "Sebastian Bergmann",
  7846. "email": "sebastian@phpunit.de"
  7847. }
  7848. ],
  7849. "description": "Snapshotting of global state",
  7850. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  7851. "keywords": [
  7852. "global state"
  7853. ],
  7854. "support": {
  7855. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7856. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  7857. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  7858. },
  7859. "funding": [
  7860. {
  7861. "url": "https://github.com/sebastianbergmann",
  7862. "type": "github"
  7863. }
  7864. ],
  7865. "time": "2024-07-03T04:57:36+00:00"
  7866. },
  7867. {
  7868. "name": "sebastian/lines-of-code",
  7869. "version": "3.0.1",
  7870. "source": {
  7871. "type": "git",
  7872. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7873. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  7874. },
  7875. "dist": {
  7876. "type": "zip",
  7877. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  7878. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  7879. "shasum": ""
  7880. },
  7881. "require": {
  7882. "nikic/php-parser": "^5.0",
  7883. "php": ">=8.2"
  7884. },
  7885. "require-dev": {
  7886. "phpunit/phpunit": "^11.0"
  7887. },
  7888. "type": "library",
  7889. "extra": {
  7890. "branch-alias": {
  7891. "dev-main": "3.0-dev"
  7892. }
  7893. },
  7894. "autoload": {
  7895. "classmap": [
  7896. "src/"
  7897. ]
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "BSD-3-Clause"
  7902. ],
  7903. "authors": [
  7904. {
  7905. "name": "Sebastian Bergmann",
  7906. "email": "sebastian@phpunit.de",
  7907. "role": "lead"
  7908. }
  7909. ],
  7910. "description": "Library for counting the lines of code in PHP source code",
  7911. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7912. "support": {
  7913. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7914. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  7915. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  7916. },
  7917. "funding": [
  7918. {
  7919. "url": "https://github.com/sebastianbergmann",
  7920. "type": "github"
  7921. }
  7922. ],
  7923. "time": "2024-07-03T04:58:38+00:00"
  7924. },
  7925. {
  7926. "name": "sebastian/object-enumerator",
  7927. "version": "6.0.1",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7931. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  7936. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "php": ">=8.2",
  7941. "sebastian/object-reflector": "^4.0",
  7942. "sebastian/recursion-context": "^6.0"
  7943. },
  7944. "require-dev": {
  7945. "phpunit/phpunit": "^11.0"
  7946. },
  7947. "type": "library",
  7948. "extra": {
  7949. "branch-alias": {
  7950. "dev-main": "6.0-dev"
  7951. }
  7952. },
  7953. "autoload": {
  7954. "classmap": [
  7955. "src/"
  7956. ]
  7957. },
  7958. "notification-url": "https://packagist.org/downloads/",
  7959. "license": [
  7960. "BSD-3-Clause"
  7961. ],
  7962. "authors": [
  7963. {
  7964. "name": "Sebastian Bergmann",
  7965. "email": "sebastian@phpunit.de"
  7966. }
  7967. ],
  7968. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7969. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7970. "support": {
  7971. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7972. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  7973. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  7974. },
  7975. "funding": [
  7976. {
  7977. "url": "https://github.com/sebastianbergmann",
  7978. "type": "github"
  7979. }
  7980. ],
  7981. "time": "2024-07-03T05:00:13+00:00"
  7982. },
  7983. {
  7984. "name": "sebastian/object-reflector",
  7985. "version": "4.0.1",
  7986. "source": {
  7987. "type": "git",
  7988. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7989. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  7990. },
  7991. "dist": {
  7992. "type": "zip",
  7993. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  7994. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  7995. "shasum": ""
  7996. },
  7997. "require": {
  7998. "php": ">=8.2"
  7999. },
  8000. "require-dev": {
  8001. "phpunit/phpunit": "^11.0"
  8002. },
  8003. "type": "library",
  8004. "extra": {
  8005. "branch-alias": {
  8006. "dev-main": "4.0-dev"
  8007. }
  8008. },
  8009. "autoload": {
  8010. "classmap": [
  8011. "src/"
  8012. ]
  8013. },
  8014. "notification-url": "https://packagist.org/downloads/",
  8015. "license": [
  8016. "BSD-3-Clause"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Sebastian Bergmann",
  8021. "email": "sebastian@phpunit.de"
  8022. }
  8023. ],
  8024. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8025. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8026. "support": {
  8027. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8028. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  8029. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  8030. },
  8031. "funding": [
  8032. {
  8033. "url": "https://github.com/sebastianbergmann",
  8034. "type": "github"
  8035. }
  8036. ],
  8037. "time": "2024-07-03T05:01:32+00:00"
  8038. },
  8039. {
  8040. "name": "sebastian/recursion-context",
  8041. "version": "6.0.2",
  8042. "source": {
  8043. "type": "git",
  8044. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8045. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  8046. },
  8047. "dist": {
  8048. "type": "zip",
  8049. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  8050. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  8051. "shasum": ""
  8052. },
  8053. "require": {
  8054. "php": ">=8.2"
  8055. },
  8056. "require-dev": {
  8057. "phpunit/phpunit": "^11.0"
  8058. },
  8059. "type": "library",
  8060. "extra": {
  8061. "branch-alias": {
  8062. "dev-main": "6.0-dev"
  8063. }
  8064. },
  8065. "autoload": {
  8066. "classmap": [
  8067. "src/"
  8068. ]
  8069. },
  8070. "notification-url": "https://packagist.org/downloads/",
  8071. "license": [
  8072. "BSD-3-Clause"
  8073. ],
  8074. "authors": [
  8075. {
  8076. "name": "Sebastian Bergmann",
  8077. "email": "sebastian@phpunit.de"
  8078. },
  8079. {
  8080. "name": "Jeff Welch",
  8081. "email": "whatthejeff@gmail.com"
  8082. },
  8083. {
  8084. "name": "Adam Harvey",
  8085. "email": "aharvey@php.net"
  8086. }
  8087. ],
  8088. "description": "Provides functionality to recursively process PHP variables",
  8089. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8090. "support": {
  8091. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8092. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  8093. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  8094. },
  8095. "funding": [
  8096. {
  8097. "url": "https://github.com/sebastianbergmann",
  8098. "type": "github"
  8099. }
  8100. ],
  8101. "time": "2024-07-03T05:10:34+00:00"
  8102. },
  8103. {
  8104. "name": "sebastian/type",
  8105. "version": "5.0.1",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/sebastianbergmann/type.git",
  8109. "reference": "fb6a6566f9589e86661291d13eba708cce5eb4aa"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb6a6566f9589e86661291d13eba708cce5eb4aa",
  8114. "reference": "fb6a6566f9589e86661291d13eba708cce5eb4aa",
  8115. "shasum": ""
  8116. },
  8117. "require": {
  8118. "php": ">=8.2"
  8119. },
  8120. "require-dev": {
  8121. "phpunit/phpunit": "^11.0"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "branch-alias": {
  8126. "dev-main": "5.0-dev"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "classmap": [
  8131. "src/"
  8132. ]
  8133. },
  8134. "notification-url": "https://packagist.org/downloads/",
  8135. "license": [
  8136. "BSD-3-Clause"
  8137. ],
  8138. "authors": [
  8139. {
  8140. "name": "Sebastian Bergmann",
  8141. "email": "sebastian@phpunit.de",
  8142. "role": "lead"
  8143. }
  8144. ],
  8145. "description": "Collection of value objects that represent the types of the PHP type system",
  8146. "homepage": "https://github.com/sebastianbergmann/type",
  8147. "support": {
  8148. "issues": "https://github.com/sebastianbergmann/type/issues",
  8149. "security": "https://github.com/sebastianbergmann/type/security/policy",
  8150. "source": "https://github.com/sebastianbergmann/type/tree/5.0.1"
  8151. },
  8152. "funding": [
  8153. {
  8154. "url": "https://github.com/sebastianbergmann",
  8155. "type": "github"
  8156. }
  8157. ],
  8158. "time": "2024-07-03T05:11:49+00:00"
  8159. },
  8160. {
  8161. "name": "sebastian/version",
  8162. "version": "5.0.1",
  8163. "source": {
  8164. "type": "git",
  8165. "url": "https://github.com/sebastianbergmann/version.git",
  8166. "reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4"
  8167. },
  8168. "dist": {
  8169. "type": "zip",
  8170. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/45c9debb7d039ce9b97de2f749c2cf5832a06ac4",
  8171. "reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4",
  8172. "shasum": ""
  8173. },
  8174. "require": {
  8175. "php": ">=8.2"
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-main": "5.0-dev"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "classmap": [
  8185. "src/"
  8186. ]
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "BSD-3-Clause"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Sebastian Bergmann",
  8195. "email": "sebastian@phpunit.de",
  8196. "role": "lead"
  8197. }
  8198. ],
  8199. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8200. "homepage": "https://github.com/sebastianbergmann/version",
  8201. "support": {
  8202. "issues": "https://github.com/sebastianbergmann/version/issues",
  8203. "security": "https://github.com/sebastianbergmann/version/security/policy",
  8204. "source": "https://github.com/sebastianbergmann/version/tree/5.0.1"
  8205. },
  8206. "funding": [
  8207. {
  8208. "url": "https://github.com/sebastianbergmann",
  8209. "type": "github"
  8210. }
  8211. ],
  8212. "time": "2024-07-03T05:13:08+00:00"
  8213. },
  8214. {
  8215. "name": "symfony/yaml",
  8216. "version": "v7.1.4",
  8217. "source": {
  8218. "type": "git",
  8219. "url": "https://github.com/symfony/yaml.git",
  8220. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b"
  8221. },
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://api.github.com/repos/symfony/yaml/zipball/92e080b851c1c655c786a2da77f188f2dccd0f4b",
  8225. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b",
  8226. "shasum": ""
  8227. },
  8228. "require": {
  8229. "php": ">=8.2",
  8230. "symfony/polyfill-ctype": "^1.8"
  8231. },
  8232. "conflict": {
  8233. "symfony/console": "<6.4"
  8234. },
  8235. "require-dev": {
  8236. "symfony/console": "^6.4|^7.0"
  8237. },
  8238. "bin": [
  8239. "Resources/bin/yaml-lint"
  8240. ],
  8241. "type": "library",
  8242. "autoload": {
  8243. "psr-4": {
  8244. "Symfony\\Component\\Yaml\\": ""
  8245. },
  8246. "exclude-from-classmap": [
  8247. "/Tests/"
  8248. ]
  8249. },
  8250. "notification-url": "https://packagist.org/downloads/",
  8251. "license": [
  8252. "MIT"
  8253. ],
  8254. "authors": [
  8255. {
  8256. "name": "Fabien Potencier",
  8257. "email": "fabien@symfony.com"
  8258. },
  8259. {
  8260. "name": "Symfony Community",
  8261. "homepage": "https://symfony.com/contributors"
  8262. }
  8263. ],
  8264. "description": "Loads and dumps YAML files",
  8265. "homepage": "https://symfony.com",
  8266. "support": {
  8267. "source": "https://github.com/symfony/yaml/tree/v7.1.4"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://symfony.com/sponsor",
  8272. "type": "custom"
  8273. },
  8274. {
  8275. "url": "https://github.com/fabpot",
  8276. "type": "github"
  8277. },
  8278. {
  8279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8280. "type": "tidelift"
  8281. }
  8282. ],
  8283. "time": "2024-08-12T09:59:40+00:00"
  8284. },
  8285. {
  8286. "name": "theseer/tokenizer",
  8287. "version": "1.2.3",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/theseer/tokenizer.git",
  8291. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  8296. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  8297. "shasum": ""
  8298. },
  8299. "require": {
  8300. "ext-dom": "*",
  8301. "ext-tokenizer": "*",
  8302. "ext-xmlwriter": "*",
  8303. "php": "^7.2 || ^8.0"
  8304. },
  8305. "type": "library",
  8306. "autoload": {
  8307. "classmap": [
  8308. "src/"
  8309. ]
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "BSD-3-Clause"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "Arne Blankerts",
  8318. "email": "arne@blankerts.de",
  8319. "role": "Developer"
  8320. }
  8321. ],
  8322. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8323. "support": {
  8324. "issues": "https://github.com/theseer/tokenizer/issues",
  8325. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  8326. },
  8327. "funding": [
  8328. {
  8329. "url": "https://github.com/theseer",
  8330. "type": "github"
  8331. }
  8332. ],
  8333. "time": "2024-03-03T12:36:25+00:00"
  8334. }
  8335. ],
  8336. "aliases": [],
  8337. "minimum-stability": "stable",
  8338. "stability-flags": [],
  8339. "prefer-stable": true,
  8340. "prefer-lowest": false,
  8341. "platform": {
  8342. "php": "^8.2"
  8343. },
  8344. "platform-dev": [],
  8345. "plugin-api-version": "2.6.0"
  8346. }