composer.lock 292 KB

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