composer.lock 588 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692156931569415695156961569715698156991570015701157021570315704157051570615707157081570915710157111571215713157141571515716157171571815719157201572115722157231572415725157261572715728157291573015731157321573315734157351573615737157381573915740157411574215743157441574515746157471574815749157501575115752157531575415755157561575715758157591576015761157621576315764157651576615767157681576915770157711577215773157741577515776157771577815779157801578115782157831578415785157861578715788157891579015791157921579315794157951579615797157981579915800158011580215803158041580515806158071580815809158101581115812158131581415815158161581715818158191582015821158221582315824158251582615827158281582915830158311583215833158341583515836158371583815839158401584115842158431584415845158461584715848158491585015851158521585315854158551585615857158581585915860158611586215863158641586515866158671586815869158701587115872158731587415875158761587715878158791588015881158821588315884158851588615887158881588915890158911589215893158941589515896158971589815899159001590115902159031590415905159061590715908159091591015911159121591315914159151591615917159181591915920159211592215923159241592515926159271592815929159301593115932159331593415935159361593715938159391594015941159421594315944159451594615947159481594915950159511595215953159541595515956159571595815959159601596115962159631596415965159661596715968159691597015971159721597315974159751597615977159781597915980159811598215983159841598515986159871598815989159901599115992159931599415995159961599715998159991600016001160021600316004160051600616007160081600916010160111601216013160141601516016160171601816019160201602116022160231602416025160261602716028160291603016031160321603316034160351603616037160381603916040160411604216043160441604516046160471604816049160501605116052160531605416055160561605716058160591606016061160621606316064160651606616067160681606916070160711607216073160741607516076160771607816079160801608116082160831608416085160861608716088160891609016091160921609316094160951609616097160981609916100161011610216103161041610516106161071610816109161101611116112161131611416115161161611716118161191612016121161221612316124161251612616127161281612916130161311613216133161341613516136161371613816139161401614116142161431614416145161461614716148161491615016151161521615316154161551615616157161581615916160161611616216163161641616516166161671616816169161701617116172161731617416175161761617716178161791618016181161821618316184161851618616187161881618916190161911619216193161941619516196161971619816199162001620116202162031620416205162061620716208162091621016211162121621316214162151621616217162181621916220162211622216223162241622516226162271622816229162301623116232162331623416235162361623716238162391624016241162421624316244162451624616247162481624916250162511625216253162541625516256
  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": "d3db3887e839723d5366412b0ebe8f01",
  8. "packages": [
  9. {
  10. "name": "api-platform/documentation",
  11. "version": "v4.3.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/api-platform/documentation.git",
  15. "reference": "a63a3a7f020b6a001b1228c5bd916e1a76887d1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/api-platform/documentation/zipball/a63a3a7f020b6a001b1228c5bd916e1a76887d1d",
  20. "reference": "a63a3a7f020b6a001b1228c5bd916e1a76887d1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "api-platform/metadata": "^4.3",
  25. "php": ">=8.2"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^12.2"
  29. },
  30. "type": "project",
  31. "extra": {
  32. "thanks": {
  33. "url": "https://github.com/api-platform/api-platform",
  34. "name": "api-platform/api-platform"
  35. },
  36. "symfony": {
  37. "require": "^6.4 || ^7.0 || ^8.0"
  38. },
  39. "branch-alias": {
  40. "dev-3.4": "3.4.x-dev",
  41. "dev-4.1": "4.1.x-dev",
  42. "dev-4.2": "4.2.x-dev",
  43. "dev-main": "4.4.x-dev"
  44. }
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "ApiPlatform\\Documentation\\": ""
  49. }
  50. },
  51. "notification-url": "https://packagist.org/downloads/",
  52. "license": [
  53. "MIT"
  54. ],
  55. "authors": [
  56. {
  57. "name": "Kévin Dunglas",
  58. "email": "kevin@dunglas.fr",
  59. "homepage": "https://dunglas.fr"
  60. },
  61. {
  62. "name": "API Platform Community",
  63. "homepage": "https://api-platform.com/community/contributors"
  64. }
  65. ],
  66. "description": "API Platform documentation controller.",
  67. "support": {
  68. "source": "https://github.com/api-platform/documentation/tree/v4.3.3"
  69. },
  70. "time": "2026-03-06T15:07:49+00:00"
  71. },
  72. {
  73. "name": "api-platform/graphql",
  74. "version": "v4.2.3",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/api-platform/graphql.git",
  78. "reference": "a50960a0ff297d7580e261bc3e18ee587c5de47c"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/api-platform/graphql/zipball/a50960a0ff297d7580e261bc3e18ee587c5de47c",
  83. "reference": "a50960a0ff297d7580e261bc3e18ee587c5de47c",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "api-platform/metadata": "^4.2.0@alpha",
  88. "api-platform/serializer": "^4.2.0@alpha",
  89. "api-platform/state": "^4.2.0@alpha",
  90. "php": ">=8.2",
  91. "symfony/property-info": "^7.1",
  92. "symfony/serializer": "^6.4 || ^7.1",
  93. "symfony/type-info": "^7.3",
  94. "webonyx/graphql-php": "^15.0",
  95. "willdurand/negotiation": "^3.1"
  96. },
  97. "conflict": {
  98. "doctrine/inflector": "<2.0",
  99. "symfony/http-client": "<6.4"
  100. },
  101. "require-dev": {
  102. "api-platform/validator": "^4.1",
  103. "phpspec/prophecy-phpunit": "^2.2",
  104. "phpunit/phpunit": "11.5.x-dev",
  105. "symfony/mercure-bundle": "*",
  106. "symfony/routing": "^6.4 || ^7.0",
  107. "twig/twig": "^1.42.3 || ^2.12 || ^3.0"
  108. },
  109. "suggest": {
  110. "api-platform/doctrine-odm": "To support doctrine ODM state options.",
  111. "api-platform/doctrine-orm": "To support doctrine ORM state options.",
  112. "api-platform/validator": "To support validation."
  113. },
  114. "type": "library",
  115. "extra": {
  116. "thanks": {
  117. "url": "https://github.com/api-platform/api-platform",
  118. "name": "api-platform/api-platform"
  119. },
  120. "symfony": {
  121. "require": "^6.4 || ^7.0"
  122. },
  123. "branch-alias": {
  124. "dev-3.4": "3.4.x-dev",
  125. "dev-4.1": "4.1.x-dev",
  126. "dev-4.2": "4.2.x-dev",
  127. "dev-main": "4.3.x-dev"
  128. }
  129. },
  130. "autoload": {
  131. "psr-4": {
  132. "ApiPlatform\\GraphQl\\": ""
  133. },
  134. "exclude-from-classmap": [
  135. "/Tests/"
  136. ]
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "MIT"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Kévin Dunglas",
  145. "email": "kevin@dunglas.fr",
  146. "homepage": "https://dunglas.fr"
  147. },
  148. {
  149. "name": "API Platform Community",
  150. "homepage": "https://api-platform.com/community/contributors"
  151. }
  152. ],
  153. "description": "Build GraphQL API endpoints",
  154. "homepage": "https://api-platform.com",
  155. "keywords": [
  156. "api",
  157. "graphql"
  158. ],
  159. "support": {
  160. "source": "https://github.com/api-platform/graphql/tree/v4.2.3"
  161. },
  162. "time": "2025-10-31T11:51:24+00:00"
  163. },
  164. {
  165. "name": "api-platform/hydra",
  166. "version": "v4.3.3",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/api-platform/hydra.git",
  170. "reference": "bb9f7107a0bbfbe6e7b93130bde9829f0cc71529"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/api-platform/hydra/zipball/bb9f7107a0bbfbe6e7b93130bde9829f0cc71529",
  175. "reference": "bb9f7107a0bbfbe6e7b93130bde9829f0cc71529",
  176. "shasum": ""
  177. },
  178. "require": {
  179. "api-platform/documentation": "^4.3",
  180. "api-platform/json-schema": "^4.3",
  181. "api-platform/jsonld": "^4.3",
  182. "api-platform/metadata": "^4.3",
  183. "api-platform/serializer": "^4.3",
  184. "api-platform/state": "^4.3",
  185. "php": ">=8.2",
  186. "symfony/type-info": "^7.3 || ^8.0",
  187. "symfony/web-link": "^6.4 || ^7.1 || ^8.0"
  188. },
  189. "require-dev": {
  190. "api-platform/doctrine-common": "^4.3",
  191. "api-platform/doctrine-odm": "^4.3",
  192. "api-platform/doctrine-orm": "^4.3",
  193. "phpspec/prophecy": "^1.19",
  194. "phpspec/prophecy-phpunit": "^2.2",
  195. "phpunit/phpunit": "^12.2"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "thanks": {
  200. "url": "https://github.com/api-platform/api-platform",
  201. "name": "api-platform/api-platform"
  202. },
  203. "symfony": {
  204. "require": "^6.4 || ^7.0 || ^8.0"
  205. },
  206. "branch-alias": {
  207. "dev-3.4": "3.4.x-dev",
  208. "dev-4.1": "4.1.x-dev",
  209. "dev-4.2": "4.2.x-dev",
  210. "dev-main": "4.4.x-dev"
  211. }
  212. },
  213. "autoload": {
  214. "psr-4": {
  215. "ApiPlatform\\Hydra\\": ""
  216. },
  217. "exclude-from-classmap": [
  218. "/Tests/"
  219. ]
  220. },
  221. "notification-url": "https://packagist.org/downloads/",
  222. "license": [
  223. "MIT"
  224. ],
  225. "authors": [
  226. {
  227. "name": "Kévin Dunglas",
  228. "email": "kevin@dunglas.fr",
  229. "homepage": "https://dunglas.fr"
  230. },
  231. {
  232. "name": "API Platform Community",
  233. "homepage": "https://api-platform.com/community/contributors"
  234. }
  235. ],
  236. "description": "API Hydra support",
  237. "homepage": "https://api-platform.com",
  238. "keywords": [
  239. "Hydra",
  240. "JSON-LD",
  241. "api",
  242. "graphql",
  243. "jsonapi",
  244. "rest"
  245. ],
  246. "support": {
  247. "source": "https://github.com/api-platform/hydra/tree/v4.3.3"
  248. },
  249. "time": "2026-03-20T09:00:10+00:00"
  250. },
  251. {
  252. "name": "api-platform/json-api",
  253. "version": "v4.3.3",
  254. "source": {
  255. "type": "git",
  256. "url": "https://github.com/api-platform/json-api.git",
  257. "reference": "64bf11cbcaaf5cba3f6fceb243ed57d1ed6e2827"
  258. },
  259. "dist": {
  260. "type": "zip",
  261. "url": "https://api.github.com/repos/api-platform/json-api/zipball/64bf11cbcaaf5cba3f6fceb243ed57d1ed6e2827",
  262. "reference": "64bf11cbcaaf5cba3f6fceb243ed57d1ed6e2827",
  263. "shasum": ""
  264. },
  265. "require": {
  266. "api-platform/documentation": "^4.3",
  267. "api-platform/json-schema": "^4.3",
  268. "api-platform/metadata": "^4.3",
  269. "api-platform/serializer": "^4.3",
  270. "api-platform/state": "^4.3",
  271. "php": ">=8.2",
  272. "symfony/error-handler": "^6.4 || ^7.0 || ^8.0",
  273. "symfony/http-foundation": "^6.4.14 || ^7.0 || ^8.0",
  274. "symfony/type-info": "^7.3 || ^8.0"
  275. },
  276. "require-dev": {
  277. "phpspec/prophecy": "^1.19",
  278. "phpspec/prophecy-phpunit": "^2.2",
  279. "phpunit/phpunit": "^12.2",
  280. "symfony/type-info": "^7.3 || ^8.0"
  281. },
  282. "type": "library",
  283. "extra": {
  284. "thanks": {
  285. "url": "https://github.com/api-platform/api-platform",
  286. "name": "api-platform/api-platform"
  287. },
  288. "symfony": {
  289. "require": "^6.4 || ^7.0 || ^8.0"
  290. },
  291. "branch-alias": {
  292. "dev-3.4": "3.4.x-dev",
  293. "dev-4.1": "4.1.x-dev",
  294. "dev-4.2": "4.2.x-dev",
  295. "dev-main": "4.4.x-dev"
  296. }
  297. },
  298. "autoload": {
  299. "psr-4": {
  300. "ApiPlatform\\JsonApi\\": ""
  301. },
  302. "exclude-from-classmap": [
  303. "/Tests/"
  304. ]
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Kévin Dunglas",
  313. "email": "kevin@dunglas.fr",
  314. "homepage": "https://dunglas.fr"
  315. },
  316. {
  317. "name": "API Platform Community",
  318. "homepage": "https://api-platform.com/community/contributors"
  319. }
  320. ],
  321. "description": "API JSON-API support",
  322. "homepage": "https://api-platform.com",
  323. "keywords": [
  324. "api",
  325. "jsonapi",
  326. "rest"
  327. ],
  328. "support": {
  329. "source": "https://github.com/api-platform/json-api/tree/v4.3.3"
  330. },
  331. "time": "2026-03-13T11:03:46+00:00"
  332. },
  333. {
  334. "name": "api-platform/json-hal",
  335. "version": "v4.1.28",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/api-platform/json-hal.git",
  339. "reference": "07f97ae8317df9161a718243a9d7515611614eb8"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/api-platform/json-hal/zipball/07f97ae8317df9161a718243a9d7515611614eb8",
  344. "reference": "07f97ae8317df9161a718243a9d7515611614eb8",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "api-platform/documentation": "^4.1.11",
  349. "api-platform/metadata": "^4.1.11",
  350. "api-platform/serializer": "^4.1.11",
  351. "api-platform/state": "^4.1.11",
  352. "php": ">=8.2"
  353. },
  354. "require-dev": {
  355. "api-platform/json-schema": "^4.1.11",
  356. "phpunit/phpunit": "11.5.x-dev"
  357. },
  358. "type": "library",
  359. "extra": {
  360. "thanks": {
  361. "url": "https://github.com/api-platform/api-platform",
  362. "name": "api-platform/api-platform"
  363. },
  364. "symfony": {
  365. "require": "^6.4 || ^7.0"
  366. },
  367. "branch-alias": {
  368. "dev-3.4": "3.4.x-dev",
  369. "dev-4.1": "4.1.x-dev",
  370. "dev-main": "4.2.x-dev"
  371. }
  372. },
  373. "autoload": {
  374. "psr-4": {
  375. "ApiPlatform\\Hal\\": ""
  376. },
  377. "exclude-from-classmap": [
  378. "/Tests/"
  379. ]
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Kévin Dunglas",
  388. "email": "kevin@dunglas.fr",
  389. "homepage": "https://dunglas.fr"
  390. },
  391. {
  392. "name": "API Platform Community",
  393. "homepage": "https://api-platform.com/community/contributors"
  394. }
  395. ],
  396. "description": "API Hal support",
  397. "homepage": "https://api-platform.com",
  398. "keywords": [
  399. "api",
  400. "hal",
  401. "rest"
  402. ],
  403. "support": {
  404. "source": "https://github.com/api-platform/json-hal/tree/v4.1.28"
  405. },
  406. "abandoned": "api-platform/hal",
  407. "time": "2025-09-15T09:57:10+00:00"
  408. },
  409. {
  410. "name": "api-platform/json-schema",
  411. "version": "v4.3.3",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/api-platform/json-schema.git",
  415. "reference": "0f66e93719fd65938528aeff900737471acb515a"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/api-platform/json-schema/zipball/0f66e93719fd65938528aeff900737471acb515a",
  420. "reference": "0f66e93719fd65938528aeff900737471acb515a",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "api-platform/metadata": "^4.3",
  425. "php": ">=8.2",
  426. "symfony/console": "^6.4 || ^7.0 || ^8.0",
  427. "symfony/property-info": "^6.4 || ^7.1 || ^8.0",
  428. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  429. "symfony/type-info": "^7.3 || ^8.0",
  430. "symfony/uid": "^6.4 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpspec/prophecy-phpunit": "^2.2",
  434. "phpunit/phpunit": "^12.2"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "thanks": {
  439. "url": "https://github.com/api-platform/api-platform",
  440. "name": "api-platform/api-platform"
  441. },
  442. "symfony": {
  443. "require": "^6.4 || ^7.0 || ^8.0"
  444. },
  445. "branch-alias": {
  446. "dev-3.4": "3.4.x-dev",
  447. "dev-4.1": "4.1.x-dev",
  448. "dev-4.2": "4.2.x-dev",
  449. "dev-main": "4.4.x-dev"
  450. }
  451. },
  452. "autoload": {
  453. "psr-4": {
  454. "ApiPlatform\\JsonSchema\\": ""
  455. },
  456. "exclude-from-classmap": [
  457. "/Tests/"
  458. ]
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Kévin Dunglas",
  467. "email": "kevin@dunglas.fr",
  468. "homepage": "https://dunglas.fr"
  469. },
  470. {
  471. "name": "API Platform Community",
  472. "homepage": "https://api-platform.com/community/contributors"
  473. }
  474. ],
  475. "description": "Generate a JSON Schema from a PHP class",
  476. "homepage": "https://api-platform.com",
  477. "keywords": [
  478. "JSON Schema",
  479. "api",
  480. "json",
  481. "openapi",
  482. "rest",
  483. "swagger"
  484. ],
  485. "support": {
  486. "source": "https://github.com/api-platform/json-schema/tree/v4.3.3"
  487. },
  488. "time": "2026-03-06T15:07:49+00:00"
  489. },
  490. {
  491. "name": "api-platform/jsonld",
  492. "version": "v4.3.3",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/api-platform/jsonld.git",
  496. "reference": "64bd84ac44d6c6c51142a26bfa7d4c6237d20593"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/api-platform/jsonld/zipball/64bd84ac44d6c6c51142a26bfa7d4c6237d20593",
  501. "reference": "64bd84ac44d6c6c51142a26bfa7d4c6237d20593",
  502. "shasum": ""
  503. },
  504. "require": {
  505. "api-platform/metadata": "^4.3",
  506. "api-platform/serializer": "^4.3",
  507. "api-platform/state": "^4.3",
  508. "php": ">=8.2"
  509. },
  510. "require-dev": {
  511. "phpunit/phpunit": "^12.2",
  512. "symfony/type-info": "^7.3 || ^8.0"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "thanks": {
  517. "url": "https://github.com/api-platform/api-platform",
  518. "name": "api-platform/api-platform"
  519. },
  520. "symfony": {
  521. "require": "^6.4 || ^7.0 || ^8.0"
  522. },
  523. "branch-alias": {
  524. "dev-3.4": "3.4.x-dev",
  525. "dev-4.1": "4.1.x-dev",
  526. "dev-4.2": "4.2.x-dev",
  527. "dev-main": "4.4.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "files": [
  532. "./HydraContext.php"
  533. ],
  534. "psr-4": {
  535. "ApiPlatform\\JsonLd\\": ""
  536. },
  537. "exclude-from-classmap": [
  538. "/Tests/"
  539. ]
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Kévin Dunglas",
  548. "email": "kevin@dunglas.fr",
  549. "homepage": "https://dunglas.fr"
  550. },
  551. {
  552. "name": "API Platform Community",
  553. "homepage": "https://api-platform.com/community/contributors"
  554. }
  555. ],
  556. "description": "API JSON-LD support",
  557. "homepage": "https://api-platform.com",
  558. "keywords": [
  559. "Hydra",
  560. "JSON-LD",
  561. "api",
  562. "graphql",
  563. "rest"
  564. ],
  565. "support": {
  566. "source": "https://github.com/api-platform/jsonld/tree/v4.3.3"
  567. },
  568. "time": "2026-03-13T08:23:46+00:00"
  569. },
  570. {
  571. "name": "api-platform/laravel",
  572. "version": "v4.1.25",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/api-platform/laravel.git",
  576. "reference": "f3aea0aef37e975844c48dae488cdc0d9a771576"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/api-platform/laravel/zipball/f3aea0aef37e975844c48dae488cdc0d9a771576",
  581. "reference": "f3aea0aef37e975844c48dae488cdc0d9a771576",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "api-platform/documentation": "^4.1.11",
  586. "api-platform/hydra": "^4.1.11",
  587. "api-platform/json-api": "^4.1.11",
  588. "api-platform/json-hal": "^4.1.11",
  589. "api-platform/json-schema": "^4.1.11",
  590. "api-platform/jsonld": "^4.1.11",
  591. "api-platform/metadata": "^4.1.11",
  592. "api-platform/openapi": "^4.1.11",
  593. "api-platform/serializer": "^4.1.11",
  594. "api-platform/state": "^4.1.11",
  595. "illuminate/config": "^11.0 || ^12.0",
  596. "illuminate/container": "^11.0 || ^12.0",
  597. "illuminate/contracts": "^11.0 || ^12.0",
  598. "illuminate/database": "^11.0 || ^12.0",
  599. "illuminate/http": "^11.0 || ^12.0",
  600. "illuminate/pagination": "^11.0 || ^12.0",
  601. "illuminate/routing": "^11.0 || ^12.0",
  602. "illuminate/support": "^11.0 || ^12.0",
  603. "laravel/framework": "^11.0 || ^12.0",
  604. "php": ">=8.2",
  605. "symfony/web-link": "^6.4 || ^7.1",
  606. "willdurand/negotiation": "^3.1"
  607. },
  608. "require-dev": {
  609. "api-platform/graphql": "^4.1",
  610. "api-platform/http-cache": "^4.1",
  611. "doctrine/dbal": "^4.0",
  612. "larastan/larastan": "^2.0 || ^3.0",
  613. "laravel/sanctum": "^4.0",
  614. "orchestra/testbench": "^9.1",
  615. "phpdocumentor/type-resolver": "^1.7",
  616. "phpstan/phpdoc-parser": "^1.29 || ^2.0",
  617. "phpunit/phpunit": "11.5.x-dev",
  618. "symfony/http-client": "^7.3"
  619. },
  620. "suggest": {
  621. "api-platform/graphql": "Enable GraphQl support.",
  622. "api-platform/http-cache": "Enable HTTP Cache support.",
  623. "phpstan/phpdoc-parser": "To support extracting metadata from PHPDoc."
  624. },
  625. "type": "library",
  626. "extra": {
  627. "thanks": {
  628. "url": "https://github.com/api-platform/api-platform",
  629. "name": "api-platform/api-platform"
  630. },
  631. "laravel": {
  632. "providers": [
  633. "ApiPlatform\\Laravel\\ApiPlatformProvider",
  634. "ApiPlatform\\Laravel\\ApiPlatformDeferredProvider",
  635. "ApiPlatform\\Laravel\\Eloquent\\ApiPlatformEventProvider"
  636. ]
  637. },
  638. "symfony": {
  639. "require": "^6.4 || ^7.1"
  640. },
  641. "branch-alias": {
  642. "dev-3.4": "3.4.x-dev",
  643. "dev-4.1": "4.1.x-dev",
  644. "dev-main": "4.2.x-dev"
  645. }
  646. },
  647. "autoload": {
  648. "psr-4": {
  649. "ApiPlatform\\Laravel\\": ""
  650. },
  651. "exclude-from-classmap": [
  652. "/Tests/",
  653. "/workbench/"
  654. ]
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Kévin Dunglas",
  663. "email": "kevin@dunglas.fr",
  664. "homepage": "https://dunglas.fr"
  665. },
  666. {
  667. "name": "API Platform Community",
  668. "homepage": "https://api-platform.com/community/contributors"
  669. }
  670. ],
  671. "description": "API Platform support for Laravel",
  672. "homepage": "https://api-platform.com",
  673. "keywords": [
  674. "Hydra",
  675. "JSON-LD",
  676. "api",
  677. "graphql",
  678. "hal",
  679. "jsonapi",
  680. "laravel",
  681. "openapi",
  682. "rest",
  683. "swagger"
  684. ],
  685. "support": {
  686. "source": "https://github.com/api-platform/laravel/tree/v4.1.25"
  687. },
  688. "time": "2025-09-26T10:26:42+00:00"
  689. },
  690. {
  691. "name": "api-platform/metadata",
  692. "version": "v4.3.3",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/api-platform/metadata.git",
  696. "reference": "e5d54902ad9817f1734ef39fe5b34d3c9b505f27"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/api-platform/metadata/zipball/e5d54902ad9817f1734ef39fe5b34d3c9b505f27",
  701. "reference": "e5d54902ad9817f1734ef39fe5b34d3c9b505f27",
  702. "shasum": ""
  703. },
  704. "require": {
  705. "doctrine/inflector": "^2.0",
  706. "php": ">=8.2",
  707. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  708. "psr/log": "^1.0 || ^2.0 || ^3.0",
  709. "symfony/property-info": "^6.4 || ^7.1 || ^8.0",
  710. "symfony/string": "^6.4 || ^7.0 || ^8.0",
  711. "symfony/type-info": "^7.3 || ^8.0"
  712. },
  713. "require-dev": {
  714. "api-platform/json-schema": "^4.3",
  715. "api-platform/openapi": "^4.3",
  716. "api-platform/state": "^4.3",
  717. "phpspec/prophecy-phpunit": "^2.2",
  718. "phpstan/phpdoc-parser": "^1.29 || ^2.0",
  719. "phpunit/phpunit": "^12.2",
  720. "symfony/config": "^6.4 || ^7.0 || ^8.0",
  721. "symfony/routing": "^6.4 || ^7.0 || ^8.0",
  722. "symfony/var-dumper": "^6.4 || ^7.0 || ^8.0",
  723. "symfony/web-link": "^6.4 || ^7.1 || ^8.0",
  724. "symfony/yaml": "^6.4 || ^7.0 || ^8.0"
  725. },
  726. "suggest": {
  727. "phpstan/phpdoc-parser": "For PHP documentation support.",
  728. "symfony/config": "For XML resource configuration.",
  729. "symfony/yaml": "For YAML resource configuration."
  730. },
  731. "type": "library",
  732. "extra": {
  733. "thanks": {
  734. "url": "https://github.com/api-platform/api-platform",
  735. "name": "api-platform/api-platform"
  736. },
  737. "symfony": {
  738. "require": "^6.4 || ^7.0 || ^8.0"
  739. },
  740. "branch-alias": {
  741. "dev-3.4": "3.4.x-dev",
  742. "dev-4.1": "4.1.x-dev",
  743. "dev-4.2": "4.2.x-dev",
  744. "dev-main": "4.4.x-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "ApiPlatform\\Metadata\\": ""
  750. },
  751. "exclude-from-classmap": [
  752. "/Tests/"
  753. ]
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Kévin Dunglas",
  762. "email": "kevin@dunglas.fr",
  763. "homepage": "https://dunglas.fr"
  764. },
  765. {
  766. "name": "API Platform Community",
  767. "homepage": "https://api-platform.com/community/contributors"
  768. }
  769. ],
  770. "description": "API Resource-oriented metadata attributes and factories",
  771. "homepage": "https://api-platform.com",
  772. "keywords": [
  773. "Hydra",
  774. "JSON-LD",
  775. "api",
  776. "graphql",
  777. "hal",
  778. "jsonapi",
  779. "openapi",
  780. "rest",
  781. "swagger"
  782. ],
  783. "support": {
  784. "source": "https://github.com/api-platform/metadata/tree/v4.3.3"
  785. },
  786. "time": "2026-03-27T06:51:10+00:00"
  787. },
  788. {
  789. "name": "api-platform/openapi",
  790. "version": "v4.3.3",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/api-platform/openapi.git",
  794. "reference": "6ae725b4d2cee60972c18c4bd6148b63ccf16785"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/api-platform/openapi/zipball/6ae725b4d2cee60972c18c4bd6148b63ccf16785",
  799. "reference": "6ae725b4d2cee60972c18c4bd6148b63ccf16785",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "api-platform/json-schema": "^4.3",
  804. "api-platform/metadata": "^4.3",
  805. "api-platform/state": "^4.3",
  806. "php": ">=8.2",
  807. "symfony/console": "^6.4 || ^7.0 || ^8.0",
  808. "symfony/filesystem": "^6.4 || ^7.0 || ^8.0",
  809. "symfony/property-access": "^6.4 || ^7.0 || ^8.0",
  810. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  811. "symfony/type-info": "^7.3 || ^8.0"
  812. },
  813. "require-dev": {
  814. "api-platform/doctrine-common": "^4.3",
  815. "api-platform/doctrine-odm": "^4.3",
  816. "api-platform/doctrine-orm": "^4.3",
  817. "api-platform/serializer": "^4.3",
  818. "phpspec/prophecy-phpunit": "^2.2",
  819. "phpunit/phpunit": "^12.2",
  820. "symfony/type-info": "^7.3 || ^8.0"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "thanks": {
  825. "url": "https://github.com/api-platform/api-platform",
  826. "name": "api-platform/api-platform"
  827. },
  828. "symfony": {
  829. "require": "^6.4 || ^7.0 || ^8.0"
  830. },
  831. "branch-alias": {
  832. "dev-3.4": "3.4.x-dev",
  833. "dev-4.1": "4.1.x-dev",
  834. "dev-4.2": "4.2.x-dev",
  835. "dev-main": "4.4.x-dev"
  836. }
  837. },
  838. "autoload": {
  839. "psr-4": {
  840. "ApiPlatform\\OpenApi\\": ""
  841. },
  842. "exclude-from-classmap": [
  843. "/Tests/"
  844. ]
  845. },
  846. "notification-url": "https://packagist.org/downloads/",
  847. "license": [
  848. "MIT"
  849. ],
  850. "authors": [
  851. {
  852. "name": "Kévin Dunglas",
  853. "email": "kevin@dunglas.fr",
  854. "homepage": "https://dunglas.fr"
  855. },
  856. {
  857. "name": "API Platform Community",
  858. "homepage": "https://api-platform.com/community/contributors"
  859. }
  860. ],
  861. "description": "Models to build and serialize an OpenAPI specification.",
  862. "homepage": "https://api-platform.com",
  863. "keywords": [
  864. "Hydra",
  865. "JSON-LD",
  866. "api",
  867. "graphql",
  868. "hal",
  869. "jsonapi",
  870. "openapi",
  871. "rest",
  872. "swagger"
  873. ],
  874. "support": {
  875. "source": "https://github.com/api-platform/openapi/tree/v4.3.3"
  876. },
  877. "time": "2026-03-29T07:20:23+00:00"
  878. },
  879. {
  880. "name": "api-platform/serializer",
  881. "version": "v4.3.3",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/api-platform/serializer.git",
  885. "reference": "c8a62096d277b89b0f146aa90c65eeaeb1412900"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/api-platform/serializer/zipball/c8a62096d277b89b0f146aa90c65eeaeb1412900",
  890. "reference": "c8a62096d277b89b0f146aa90c65eeaeb1412900",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "api-platform/metadata": "^4.3",
  895. "api-platform/state": "^4.3",
  896. "php": ">=8.2",
  897. "symfony/property-access": "^6.4 || ^7.0 || ^8.0",
  898. "symfony/property-info": "^6.4 || ^7.1 || ^8.0",
  899. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  900. "symfony/validator": "^6.4.11 || ^7.0 || ^8.0"
  901. },
  902. "require-dev": {
  903. "api-platform/doctrine-common": "^4.3",
  904. "api-platform/doctrine-odm": "^4.3",
  905. "api-platform/doctrine-orm": "^4.3",
  906. "api-platform/json-schema": "^4.3",
  907. "api-platform/openapi": "^4.3",
  908. "doctrine/collections": "^2.1",
  909. "phpspec/prophecy-phpunit": "^2.2",
  910. "phpunit/phpunit": "^12.2",
  911. "sebastian/exporter": "^6.3.2 || ^7.0.2",
  912. "symfony/mercure-bundle": "*",
  913. "symfony/type-info": "^7.3 || ^8.0",
  914. "symfony/var-dumper": "^6.4 || ^7.0 || ^8.0",
  915. "symfony/yaml": "^6.4 || ^7.0 || ^8.0"
  916. },
  917. "suggest": {
  918. "api-platform/doctrine-odm": "To support Doctrine MongoDB ODM state options.",
  919. "api-platform/doctrine-orm": "To support Doctrine ORM state options."
  920. },
  921. "type": "library",
  922. "extra": {
  923. "thanks": {
  924. "url": "https://github.com/api-platform/api-platform",
  925. "name": "api-platform/api-platform"
  926. },
  927. "symfony": {
  928. "require": "^6.4 || ^7.0 || ^8.0"
  929. },
  930. "branch-alias": {
  931. "dev-3.4": "3.4.x-dev",
  932. "dev-4.1": "4.1.x-dev",
  933. "dev-4.2": "4.2.x-dev",
  934. "dev-main": "4.4.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "ApiPlatform\\Serializer\\": ""
  940. },
  941. "exclude-from-classmap": [
  942. "/Tests/"
  943. ]
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Kévin Dunglas",
  952. "email": "kevin@dunglas.fr",
  953. "homepage": "https://dunglas.fr"
  954. },
  955. {
  956. "name": "API Platform Community",
  957. "homepage": "https://api-platform.com/community/contributors"
  958. }
  959. ],
  960. "description": "API Platform core Serializer",
  961. "homepage": "https://api-platform.com",
  962. "keywords": [
  963. "api",
  964. "graphql",
  965. "rest",
  966. "serializer"
  967. ],
  968. "support": {
  969. "source": "https://github.com/api-platform/serializer/tree/v4.3.3"
  970. },
  971. "time": "2026-03-27T06:51:10+00:00"
  972. },
  973. {
  974. "name": "api-platform/state",
  975. "version": "v4.3.3",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/api-platform/state.git",
  979. "reference": "5387afbb9e79027b34dab731bc90e810fdd6ca60"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/api-platform/state/zipball/5387afbb9e79027b34dab731bc90e810fdd6ca60",
  984. "reference": "5387afbb9e79027b34dab731bc90e810fdd6ca60",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "api-platform/metadata": "^4.3",
  989. "php": ">=8.2",
  990. "psr/container": "^1.0 || ^2.0",
  991. "symfony/deprecation-contracts": "^3.1",
  992. "symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
  993. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  994. "symfony/translation-contracts": "^3.0"
  995. },
  996. "require-dev": {
  997. "api-platform/serializer": "^4.3",
  998. "api-platform/validator": "^4.3.1",
  999. "phpunit/phpunit": "^12.2",
  1000. "symfony/http-foundation": "^6.4.14 || ^7.0 || ^8.0",
  1001. "symfony/object-mapper": "^7.4 || ^8.0",
  1002. "symfony/type-info": "^7.4 || ^8.0",
  1003. "symfony/web-link": "^6.4 || ^7.1 || ^8.0",
  1004. "willdurand/negotiation": "^3.1"
  1005. },
  1006. "suggest": {
  1007. "api-platform/serializer": "To use API Platform serializer.",
  1008. "api-platform/validator": "To use API Platform validation.",
  1009. "symfony/http-foundation": "To use our HTTP providers and processor.",
  1010. "symfony/web-link": "To support adding web links to the response headers.",
  1011. "willdurand/negotiation": "To use the API Platform content negoatiation provider."
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "thanks": {
  1016. "url": "https://github.com/api-platform/api-platform",
  1017. "name": "api-platform/api-platform"
  1018. },
  1019. "symfony": {
  1020. "require": "^6.4 || ^7.0 || ^8.0"
  1021. },
  1022. "branch-alias": {
  1023. "dev-3.4": "3.4.x-dev",
  1024. "dev-4.1": "4.1.x-dev",
  1025. "dev-4.2": "4.2.x-dev",
  1026. "dev-main": "4.4.x-dev"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "ApiPlatform\\State\\": ""
  1032. },
  1033. "exclude-from-classmap": [
  1034. "/Tests/"
  1035. ]
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Kévin Dunglas",
  1044. "email": "kevin@dunglas.fr",
  1045. "homepage": "https://dunglas.fr"
  1046. },
  1047. {
  1048. "name": "API Platform Community",
  1049. "homepage": "https://api-platform.com/community/contributors"
  1050. }
  1051. ],
  1052. "description": "API Platform State component ",
  1053. "homepage": "https://api-platform.com",
  1054. "keywords": [
  1055. "Hydra",
  1056. "JSON-LD",
  1057. "api",
  1058. "graphql",
  1059. "hal",
  1060. "jsonapi",
  1061. "openapi",
  1062. "rest",
  1063. "swagger"
  1064. ],
  1065. "support": {
  1066. "source": "https://github.com/api-platform/state/tree/v4.3.3"
  1067. },
  1068. "time": "2026-03-29T06:54:13+00:00"
  1069. },
  1070. {
  1071. "name": "astrotomic/laravel-translatable",
  1072. "version": "v11.15.1",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/Astrotomic/laravel-translatable.git",
  1076. "reference": "0d065da7fb06b4b957afce79fdda159764561345"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://api.github.com/repos/Astrotomic/laravel-translatable/zipball/0d065da7fb06b4b957afce79fdda159764561345",
  1081. "reference": "0d065da7fb06b4b957afce79fdda159764561345",
  1082. "shasum": ""
  1083. },
  1084. "require": {
  1085. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
  1086. "illuminate/database": "^9.0 || ^10.0 || ^11.0",
  1087. "illuminate/support": "^9.0 || ^10.0 || ^11.0",
  1088. "php": "^8.0"
  1089. },
  1090. "require-dev": {
  1091. "larastan/larastan": "^2.0",
  1092. "laravel/legacy-factories": "^1.0.4",
  1093. "laravel/pint": "^1.0",
  1094. "mockery/mockery": "^1.3.3",
  1095. "orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
  1096. "phpunit/phpunit": "^10.0"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "laravel": {
  1101. "providers": [
  1102. "Astrotomic\\Translatable\\TranslatableServiceProvider"
  1103. ]
  1104. }
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Astrotomic\\Translatable\\": "src/Translatable/"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Tom Witkowski",
  1118. "email": "gummibeer@astrotomic.info",
  1119. "homepage": "https://gummibeer.de",
  1120. "role": "Developer"
  1121. },
  1122. {
  1123. "name": "Dimitrios Savvopoulos",
  1124. "email": "ds@dimsav.com",
  1125. "homepage": "http://dimsav.com",
  1126. "role": "Developer"
  1127. }
  1128. ],
  1129. "description": "A Laravel package for multilingual models",
  1130. "homepage": "https://astrotomic.info",
  1131. "keywords": [
  1132. "database",
  1133. "language",
  1134. "laravel",
  1135. "translation"
  1136. ],
  1137. "support": {
  1138. "docs": "https://docs.astrotomic.info/laravel-translatable",
  1139. "email": "dev@astrotomic.info",
  1140. "issues": "https://github.com/Astrotomic/laravel-translatable/issues",
  1141. "source": "https://github.com/Astrotomic/laravel-translatable"
  1142. },
  1143. "funding": [
  1144. {
  1145. "url": "https://forest.astrotomic.info",
  1146. "type": "custom"
  1147. },
  1148. {
  1149. "url": "https://github.com/Gummibeer",
  1150. "type": "github"
  1151. },
  1152. {
  1153. "url": "https://github.com/SarahSibert",
  1154. "type": "github"
  1155. },
  1156. {
  1157. "url": "https://issuehunt.io/r/astrotomic",
  1158. "type": "issuehunt"
  1159. }
  1160. ],
  1161. "time": "2024-08-28T09:20:26+00:00"
  1162. },
  1163. {
  1164. "name": "bagisto/bagisto-package-generator",
  1165. "version": "v2.1.2",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/bagisto/bagisto-package-generator.git",
  1169. "reference": "e6e9639c366f31f615160ff9c91bc78528aa8061"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/bagisto/bagisto-package-generator/zipball/e6e9639c366f31f615160ff9c91bc78528aa8061",
  1174. "reference": "e6e9639c366f31f615160ff9c91bc78528aa8061",
  1175. "shasum": "",
  1176. "mirrors": [
  1177. {
  1178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1179. "preferred": true
  1180. }
  1181. ]
  1182. },
  1183. "type": "library",
  1184. "extra": {
  1185. "laravel": {
  1186. "aliases": [],
  1187. "providers": [
  1188. "Webkul\\PackageGenerator\\Providers\\PackageGeneratorServiceProvider"
  1189. ]
  1190. }
  1191. },
  1192. "autoload": {
  1193. "psr-4": {
  1194. "Webkul\\PackageGenerator\\": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Jitendra Singh",
  1204. "email": "jitendra@webkul.com"
  1205. }
  1206. ],
  1207. "description": "Bagisto Package Generator",
  1208. "support": {
  1209. "issues": "https://github.com/bagisto/bagisto-package-generator/issues",
  1210. "source": "https://github.com/bagisto/bagisto-package-generator/tree/v2.1.2"
  1211. },
  1212. "time": "2025-09-02T16:15:30+00:00"
  1213. },
  1214. {
  1215. "name": "bagisto/image-cache",
  1216. "version": "dev-master",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/bagisto/image-cache.git",
  1220. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/bagisto/image-cache/zipball/b5a24e83ec4387261ae55947534d573fb897c86c",
  1225. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "illuminate/cache": "^9|~10|~11",
  1230. "illuminate/filesystem": "^9|~10|~11",
  1231. "intervention/image": "~2.2",
  1232. "nesbot/carbon": "^2.72.2",
  1233. "opis/closure": "^3.5",
  1234. "php": "^8.2"
  1235. },
  1236. "require-dev": {
  1237. "phpunit/phpunit": "^10.0"
  1238. },
  1239. "default-branch": true,
  1240. "type": "library",
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Intervention\\Image\\": "src/Intervention/Image"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Oliver Vogel",
  1253. "email": "oliver@intervention.io",
  1254. "homepage": "http://intervention.io/"
  1255. }
  1256. ],
  1257. "description": "Caching extension for the Intervention Image Class",
  1258. "homepage": "https://image.intervention.io",
  1259. "keywords": [
  1260. "cache",
  1261. "gd",
  1262. "image",
  1263. "imagick",
  1264. "laravel"
  1265. ],
  1266. "support": {
  1267. "source": "https://github.com/bagisto/image-cache/tree/master"
  1268. },
  1269. "time": "2024-10-03T06:31:17+00:00"
  1270. },
  1271. {
  1272. "name": "barryvdh/laravel-dompdf",
  1273. "version": "v2.2.0",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  1277. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c96f90c97666cebec154ca1ffb67afed372114d8",
  1282. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8",
  1283. "shasum": ""
  1284. },
  1285. "require": {
  1286. "dompdf/dompdf": "^2.0.7",
  1287. "illuminate/support": "^6|^7|^8|^9|^10|^11",
  1288. "php": "^7.2 || ^8.0"
  1289. },
  1290. "require-dev": {
  1291. "larastan/larastan": "^1.0|^2.7.0",
  1292. "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
  1293. "phpro/grumphp": "^1 || ^2.5",
  1294. "squizlabs/php_codesniffer": "^3.5"
  1295. },
  1296. "type": "library",
  1297. "extra": {
  1298. "laravel": {
  1299. "aliases": {
  1300. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf",
  1301. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf"
  1302. },
  1303. "providers": [
  1304. "Barryvdh\\DomPDF\\ServiceProvider"
  1305. ]
  1306. },
  1307. "branch-alias": {
  1308. "dev-master": "2.0-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "psr-4": {
  1313. "Barryvdh\\DomPDF\\": "src"
  1314. }
  1315. },
  1316. "notification-url": "https://packagist.org/downloads/",
  1317. "license": [
  1318. "MIT"
  1319. ],
  1320. "authors": [
  1321. {
  1322. "name": "Barry vd. Heuvel",
  1323. "email": "barryvdh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "A DOMPDF Wrapper for Laravel",
  1327. "keywords": [
  1328. "dompdf",
  1329. "laravel",
  1330. "pdf"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  1334. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.2.0"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://fruitcake.nl",
  1339. "type": "custom"
  1340. },
  1341. {
  1342. "url": "https://github.com/barryvdh",
  1343. "type": "github"
  1344. }
  1345. ],
  1346. "time": "2024-04-25T13:16:04+00:00"
  1347. },
  1348. {
  1349. "name": "brick/math",
  1350. "version": "0.12.3",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/brick/math.git",
  1354. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  1359. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "php": "^8.1"
  1364. },
  1365. "require-dev": {
  1366. "php-coveralls/php-coveralls": "^2.2",
  1367. "phpunit/phpunit": "^10.1",
  1368. "vimeo/psalm": "6.8.8"
  1369. },
  1370. "type": "library",
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Brick\\Math\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "description": "Arbitrary-precision arithmetic library",
  1381. "keywords": [
  1382. "Arbitrary-precision",
  1383. "BigInteger",
  1384. "BigRational",
  1385. "arithmetic",
  1386. "bigdecimal",
  1387. "bignum",
  1388. "bignumber",
  1389. "brick",
  1390. "decimal",
  1391. "integer",
  1392. "math",
  1393. "mathematics",
  1394. "rational"
  1395. ],
  1396. "support": {
  1397. "issues": "https://github.com/brick/math/issues",
  1398. "source": "https://github.com/brick/math/tree/0.12.3"
  1399. },
  1400. "funding": [
  1401. {
  1402. "url": "https://github.com/BenMorel",
  1403. "type": "github"
  1404. }
  1405. ],
  1406. "time": "2025-02-28T13:11:00+00:00"
  1407. },
  1408. {
  1409. "name": "carbonphp/carbon-doctrine-types",
  1410. "version": "3.2.0",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1414. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1419. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "php": "^8.1"
  1424. },
  1425. "conflict": {
  1426. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  1427. },
  1428. "require-dev": {
  1429. "doctrine/dbal": "^4.0.0",
  1430. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1431. "phpunit/phpunit": "^10.3"
  1432. },
  1433. "type": "library",
  1434. "autoload": {
  1435. "psr-4": {
  1436. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "MIT"
  1442. ],
  1443. "authors": [
  1444. {
  1445. "name": "KyleKatarn",
  1446. "email": "kylekatarnls@gmail.com"
  1447. }
  1448. ],
  1449. "description": "Types to use Carbon in Doctrine",
  1450. "keywords": [
  1451. "carbon",
  1452. "date",
  1453. "datetime",
  1454. "doctrine",
  1455. "time"
  1456. ],
  1457. "support": {
  1458. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1459. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1460. },
  1461. "funding": [
  1462. {
  1463. "url": "https://github.com/kylekatarnls",
  1464. "type": "github"
  1465. },
  1466. {
  1467. "url": "https://opencollective.com/Carbon",
  1468. "type": "open_collective"
  1469. },
  1470. {
  1471. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1472. "type": "tidelift"
  1473. }
  1474. ],
  1475. "time": "2024-02-09T16:56:22+00:00"
  1476. },
  1477. {
  1478. "name": "composer/ca-bundle",
  1479. "version": "1.5.6",
  1480. "source": {
  1481. "type": "git",
  1482. "url": "https://github.com/composer/ca-bundle.git",
  1483. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175"
  1484. },
  1485. "dist": {
  1486. "type": "zip",
  1487. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175",
  1488. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175",
  1489. "shasum": ""
  1490. },
  1491. "require": {
  1492. "ext-openssl": "*",
  1493. "ext-pcre": "*",
  1494. "php": "^7.2 || ^8.0"
  1495. },
  1496. "require-dev": {
  1497. "phpstan/phpstan": "^1.10",
  1498. "phpunit/phpunit": "^8 || ^9",
  1499. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1500. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1501. },
  1502. "type": "library",
  1503. "extra": {
  1504. "branch-alias": {
  1505. "dev-main": "1.x-dev"
  1506. }
  1507. },
  1508. "autoload": {
  1509. "psr-4": {
  1510. "Composer\\CaBundle\\": "src"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Jordi Boggiano",
  1520. "email": "j.boggiano@seld.be",
  1521. "homepage": "http://seld.be"
  1522. }
  1523. ],
  1524. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1525. "keywords": [
  1526. "cabundle",
  1527. "cacert",
  1528. "certificate",
  1529. "ssl",
  1530. "tls"
  1531. ],
  1532. "support": {
  1533. "irc": "irc://irc.freenode.org/composer",
  1534. "issues": "https://github.com/composer/ca-bundle/issues",
  1535. "source": "https://github.com/composer/ca-bundle/tree/1.5.6"
  1536. },
  1537. "funding": [
  1538. {
  1539. "url": "https://packagist.com",
  1540. "type": "custom"
  1541. },
  1542. {
  1543. "url": "https://github.com/composer",
  1544. "type": "github"
  1545. },
  1546. {
  1547. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1548. "type": "tidelift"
  1549. }
  1550. ],
  1551. "time": "2025-03-06T14:30:56+00:00"
  1552. },
  1553. {
  1554. "name": "composer/pcre",
  1555. "version": "3.3.2",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/composer/pcre.git",
  1559. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1564. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": "^7.4 || ^8.0"
  1569. },
  1570. "conflict": {
  1571. "phpstan/phpstan": "<1.11.10"
  1572. },
  1573. "require-dev": {
  1574. "phpstan/phpstan": "^1.12 || ^2",
  1575. "phpstan/phpstan-strict-rules": "^1 || ^2",
  1576. "phpunit/phpunit": "^8 || ^9"
  1577. },
  1578. "type": "library",
  1579. "extra": {
  1580. "phpstan": {
  1581. "includes": [
  1582. "extension.neon"
  1583. ]
  1584. },
  1585. "branch-alias": {
  1586. "dev-main": "3.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Composer\\Pcre\\": "src"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Jordi Boggiano",
  1601. "email": "j.boggiano@seld.be",
  1602. "homepage": "http://seld.be"
  1603. }
  1604. ],
  1605. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  1606. "keywords": [
  1607. "PCRE",
  1608. "preg",
  1609. "regex",
  1610. "regular expression"
  1611. ],
  1612. "support": {
  1613. "issues": "https://github.com/composer/pcre/issues",
  1614. "source": "https://github.com/composer/pcre/tree/3.3.2"
  1615. },
  1616. "funding": [
  1617. {
  1618. "url": "https://packagist.com",
  1619. "type": "custom"
  1620. },
  1621. {
  1622. "url": "https://github.com/composer",
  1623. "type": "github"
  1624. },
  1625. {
  1626. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1627. "type": "tidelift"
  1628. }
  1629. ],
  1630. "time": "2024-11-12T16:29:46+00:00"
  1631. },
  1632. {
  1633. "name": "composer/semver",
  1634. "version": "3.4.4",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/composer/semver.git",
  1638. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  1643. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "php": "^5.3.2 || ^7.0 || ^8.0"
  1648. },
  1649. "require-dev": {
  1650. "phpstan/phpstan": "^1.11",
  1651. "symfony/phpunit-bridge": "^3 || ^7"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-main": "3.x-dev"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Composer\\Semver\\": "src"
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Nils Adermann",
  1671. "email": "naderman@naderman.de",
  1672. "homepage": "http://www.naderman.de"
  1673. },
  1674. {
  1675. "name": "Jordi Boggiano",
  1676. "email": "j.boggiano@seld.be",
  1677. "homepage": "http://seld.be"
  1678. },
  1679. {
  1680. "name": "Rob Bast",
  1681. "email": "rob.bast@gmail.com",
  1682. "homepage": "http://robbast.nl"
  1683. }
  1684. ],
  1685. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1686. "keywords": [
  1687. "semantic",
  1688. "semver",
  1689. "validation",
  1690. "versioning"
  1691. ],
  1692. "support": {
  1693. "irc": "ircs://irc.libera.chat:6697/composer",
  1694. "issues": "https://github.com/composer/semver/issues",
  1695. "source": "https://github.com/composer/semver/tree/3.4.4"
  1696. },
  1697. "funding": [
  1698. {
  1699. "url": "https://packagist.com",
  1700. "type": "custom"
  1701. },
  1702. {
  1703. "url": "https://github.com/composer",
  1704. "type": "github"
  1705. }
  1706. ],
  1707. "time": "2025-08-20T19:15:30+00:00"
  1708. },
  1709. {
  1710. "name": "dflydev/dot-access-data",
  1711. "version": "v3.0.3",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1715. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1720. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1721. "shasum": ""
  1722. },
  1723. "require": {
  1724. "php": "^7.1 || ^8.0"
  1725. },
  1726. "require-dev": {
  1727. "phpstan/phpstan": "^0.12.42",
  1728. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1729. "scrutinizer/ocular": "1.6.0",
  1730. "squizlabs/php_codesniffer": "^3.5",
  1731. "vimeo/psalm": "^4.0.0"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-main": "3.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Dflydev\\DotAccessData\\": "src/"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Dragonfly Development Inc.",
  1751. "email": "info@dflydev.com",
  1752. "homepage": "http://dflydev.com"
  1753. },
  1754. {
  1755. "name": "Beau Simensen",
  1756. "email": "beau@dflydev.com",
  1757. "homepage": "http://beausimensen.com"
  1758. },
  1759. {
  1760. "name": "Carlos Frutos",
  1761. "email": "carlos@kiwing.it",
  1762. "homepage": "https://github.com/cfrutos"
  1763. },
  1764. {
  1765. "name": "Colin O'Dell",
  1766. "email": "colinodell@gmail.com",
  1767. "homepage": "https://www.colinodell.com"
  1768. }
  1769. ],
  1770. "description": "Given a deep data structure, access data by dot notation.",
  1771. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1772. "keywords": [
  1773. "access",
  1774. "data",
  1775. "dot",
  1776. "notation"
  1777. ],
  1778. "support": {
  1779. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1780. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1781. },
  1782. "time": "2024-07-08T12:26:09+00:00"
  1783. },
  1784. {
  1785. "name": "diglactic/laravel-breadcrumbs",
  1786. "version": "v9.0.0",
  1787. "source": {
  1788. "type": "git",
  1789. "url": "https://github.com/diglactic/laravel-breadcrumbs.git",
  1790. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4"
  1791. },
  1792. "dist": {
  1793. "type": "zip",
  1794. "url": "https://api.github.com/repos/diglactic/laravel-breadcrumbs/zipball/88e8f01e013e811215770e27b40a74014c28f2c4",
  1795. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4",
  1796. "shasum": ""
  1797. },
  1798. "require": {
  1799. "facade/ignition-contracts": "^1.0",
  1800. "laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  1801. "php": "^7.3 || ^8.0"
  1802. },
  1803. "conflict": {
  1804. "davejamesmiller/laravel-breadcrumbs": "*"
  1805. },
  1806. "require-dev": {
  1807. "orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  1808. "php-coveralls/php-coveralls": "^2.7",
  1809. "phpunit/phpunit": "^9.5 || ^10.5",
  1810. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1"
  1811. },
  1812. "type": "library",
  1813. "extra": {
  1814. "laravel": {
  1815. "aliases": {
  1816. "Breadcrumbs": "Diglactic\\Breadcrumbs\\Breadcrumbs"
  1817. },
  1818. "providers": [
  1819. "Diglactic\\Breadcrumbs\\ServiceProvider"
  1820. ]
  1821. }
  1822. },
  1823. "autoload": {
  1824. "psr-4": {
  1825. "Diglactic\\Breadcrumbs\\": "src/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Sheng Slogar",
  1835. "email": "sheng@diglactic.com",
  1836. "role": "Maintainer"
  1837. },
  1838. {
  1839. "name": "Dave James Miller",
  1840. "email": "dave@davejamesmiller.com",
  1841. "role": "Original Creator"
  1842. }
  1843. ],
  1844. "description": "A simple Laravel-style way to create breadcrumbs.",
  1845. "homepage": "https://github.com/diglactic/laravel-breadcrumbs",
  1846. "keywords": [
  1847. "laravel"
  1848. ],
  1849. "support": {
  1850. "issues": "https://github.com/diglactic/laravel-breadcrumbs/issues",
  1851. "source": "https://github.com/diglactic/laravel-breadcrumbs/tree/v9.0.0"
  1852. },
  1853. "time": "2024-03-12T00:42:39+00:00"
  1854. },
  1855. {
  1856. "name": "doctrine/inflector",
  1857. "version": "2.0.10",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/doctrine/inflector.git",
  1861. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1866. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "php": "^7.2 || ^8.0"
  1871. },
  1872. "require-dev": {
  1873. "doctrine/coding-standard": "^11.0",
  1874. "phpstan/phpstan": "^1.8",
  1875. "phpstan/phpstan-phpunit": "^1.1",
  1876. "phpstan/phpstan-strict-rules": "^1.3",
  1877. "phpunit/phpunit": "^8.5 || ^9.5",
  1878. "vimeo/psalm": "^4.25 || ^5.4"
  1879. },
  1880. "type": "library",
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Guilherme Blanco",
  1893. "email": "guilhermeblanco@gmail.com"
  1894. },
  1895. {
  1896. "name": "Roman Borschel",
  1897. "email": "roman@code-factory.org"
  1898. },
  1899. {
  1900. "name": "Benjamin Eberlei",
  1901. "email": "kontakt@beberlei.de"
  1902. },
  1903. {
  1904. "name": "Jonathan Wage",
  1905. "email": "jonwage@gmail.com"
  1906. },
  1907. {
  1908. "name": "Johannes Schmitt",
  1909. "email": "schmittjoh@gmail.com"
  1910. }
  1911. ],
  1912. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1913. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1914. "keywords": [
  1915. "inflection",
  1916. "inflector",
  1917. "lowercase",
  1918. "manipulation",
  1919. "php",
  1920. "plural",
  1921. "singular",
  1922. "strings",
  1923. "uppercase",
  1924. "words"
  1925. ],
  1926. "support": {
  1927. "issues": "https://github.com/doctrine/inflector/issues",
  1928. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://www.doctrine-project.org/sponsorship.html",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://www.patreon.com/phpdoctrine",
  1937. "type": "patreon"
  1938. },
  1939. {
  1940. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1941. "type": "tidelift"
  1942. }
  1943. ],
  1944. "time": "2024-02-18T20:23:39+00:00"
  1945. },
  1946. {
  1947. "name": "doctrine/lexer",
  1948. "version": "3.0.1",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/doctrine/lexer.git",
  1952. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1957. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "php": "^8.1"
  1962. },
  1963. "require-dev": {
  1964. "doctrine/coding-standard": "^12",
  1965. "phpstan/phpstan": "^1.10",
  1966. "phpunit/phpunit": "^10.5",
  1967. "psalm/plugin-phpunit": "^0.18.3",
  1968. "vimeo/psalm": "^5.21"
  1969. },
  1970. "type": "library",
  1971. "autoload": {
  1972. "psr-4": {
  1973. "Doctrine\\Common\\Lexer\\": "src"
  1974. }
  1975. },
  1976. "notification-url": "https://packagist.org/downloads/",
  1977. "license": [
  1978. "MIT"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Guilherme Blanco",
  1983. "email": "guilhermeblanco@gmail.com"
  1984. },
  1985. {
  1986. "name": "Roman Borschel",
  1987. "email": "roman@code-factory.org"
  1988. },
  1989. {
  1990. "name": "Johannes Schmitt",
  1991. "email": "schmittjoh@gmail.com"
  1992. }
  1993. ],
  1994. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1995. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1996. "keywords": [
  1997. "annotations",
  1998. "docblock",
  1999. "lexer",
  2000. "parser",
  2001. "php"
  2002. ],
  2003. "support": {
  2004. "issues": "https://github.com/doctrine/lexer/issues",
  2005. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  2006. },
  2007. "funding": [
  2008. {
  2009. "url": "https://www.doctrine-project.org/sponsorship.html",
  2010. "type": "custom"
  2011. },
  2012. {
  2013. "url": "https://www.patreon.com/phpdoctrine",
  2014. "type": "patreon"
  2015. },
  2016. {
  2017. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  2018. "type": "tidelift"
  2019. }
  2020. ],
  2021. "time": "2024-02-05T11:56:58+00:00"
  2022. },
  2023. {
  2024. "name": "dompdf/dompdf",
  2025. "version": "v2.0.8",
  2026. "source": {
  2027. "type": "git",
  2028. "url": "https://github.com/dompdf/dompdf.git",
  2029. "reference": "c20247574601700e1f7c8dab39310fca1964dc52"
  2030. },
  2031. "dist": {
  2032. "type": "zip",
  2033. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52",
  2034. "reference": "c20247574601700e1f7c8dab39310fca1964dc52",
  2035. "shasum": ""
  2036. },
  2037. "require": {
  2038. "ext-dom": "*",
  2039. "ext-mbstring": "*",
  2040. "masterminds/html5": "^2.0",
  2041. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  2042. "phenx/php-svg-lib": ">=0.5.2 <1.0.0",
  2043. "php": "^7.1 || ^8.0"
  2044. },
  2045. "require-dev": {
  2046. "ext-json": "*",
  2047. "ext-zip": "*",
  2048. "mockery/mockery": "^1.3",
  2049. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  2050. "squizlabs/php_codesniffer": "^3.5"
  2051. },
  2052. "suggest": {
  2053. "ext-gd": "Needed to process images",
  2054. "ext-gmagick": "Improves image processing performance",
  2055. "ext-imagick": "Improves image processing performance",
  2056. "ext-zlib": "Needed for pdf stream compression"
  2057. },
  2058. "type": "library",
  2059. "autoload": {
  2060. "psr-4": {
  2061. "Dompdf\\": "src/"
  2062. },
  2063. "classmap": [
  2064. "lib/"
  2065. ]
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "LGPL-2.1"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "The Dompdf Community",
  2074. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  2075. }
  2076. ],
  2077. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  2078. "homepage": "https://github.com/dompdf/dompdf",
  2079. "support": {
  2080. "issues": "https://github.com/dompdf/dompdf/issues",
  2081. "source": "https://github.com/dompdf/dompdf/tree/v2.0.8"
  2082. },
  2083. "time": "2024-04-29T13:06:17+00:00"
  2084. },
  2085. {
  2086. "name": "dragonmantank/cron-expression",
  2087. "version": "v3.4.0",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/dragonmantank/cron-expression.git",
  2091. "reference": "8c784d071debd117328803d86b2097615b457500"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  2096. "reference": "8c784d071debd117328803d86b2097615b457500",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "php": "^7.2|^8.0",
  2101. "webmozart/assert": "^1.0"
  2102. },
  2103. "replace": {
  2104. "mtdowling/cron-expression": "^1.0"
  2105. },
  2106. "require-dev": {
  2107. "phpstan/extension-installer": "^1.0",
  2108. "phpstan/phpstan": "^1.0",
  2109. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2110. },
  2111. "type": "library",
  2112. "extra": {
  2113. "branch-alias": {
  2114. "dev-master": "3.x-dev"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "psr-4": {
  2119. "Cron\\": "src/Cron/"
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "Chris Tankersley",
  2129. "email": "chris@ctankersley.com",
  2130. "homepage": "https://github.com/dragonmantank"
  2131. }
  2132. ],
  2133. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2134. "keywords": [
  2135. "cron",
  2136. "schedule"
  2137. ],
  2138. "support": {
  2139. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  2140. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  2141. },
  2142. "funding": [
  2143. {
  2144. "url": "https://github.com/dragonmantank",
  2145. "type": "github"
  2146. }
  2147. ],
  2148. "time": "2024-10-09T13:47:03+00:00"
  2149. },
  2150. {
  2151. "name": "egulias/email-validator",
  2152. "version": "4.0.4",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/egulias/EmailValidator.git",
  2156. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  2161. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "doctrine/lexer": "^2.0 || ^3.0",
  2166. "php": ">=8.1",
  2167. "symfony/polyfill-intl-idn": "^1.26"
  2168. },
  2169. "require-dev": {
  2170. "phpunit/phpunit": "^10.2",
  2171. "vimeo/psalm": "^5.12"
  2172. },
  2173. "suggest": {
  2174. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  2175. },
  2176. "type": "library",
  2177. "extra": {
  2178. "branch-alias": {
  2179. "dev-master": "4.0.x-dev"
  2180. }
  2181. },
  2182. "autoload": {
  2183. "psr-4": {
  2184. "Egulias\\EmailValidator\\": "src"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "MIT"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "Eduardo Gulias Davis"
  2194. }
  2195. ],
  2196. "description": "A library for validating emails against several RFCs",
  2197. "homepage": "https://github.com/egulias/EmailValidator",
  2198. "keywords": [
  2199. "email",
  2200. "emailvalidation",
  2201. "emailvalidator",
  2202. "validation",
  2203. "validator"
  2204. ],
  2205. "support": {
  2206. "issues": "https://github.com/egulias/EmailValidator/issues",
  2207. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  2208. },
  2209. "funding": [
  2210. {
  2211. "url": "https://github.com/egulias",
  2212. "type": "github"
  2213. }
  2214. ],
  2215. "time": "2025-03-06T22:45:56+00:00"
  2216. },
  2217. {
  2218. "name": "elastic/transport",
  2219. "version": "v8.10.0",
  2220. "source": {
  2221. "type": "git",
  2222. "url": "https://github.com/elastic/elastic-transport-php.git",
  2223. "reference": "8be37d679637545e50b1cea9f8ee903888783021"
  2224. },
  2225. "dist": {
  2226. "type": "zip",
  2227. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/8be37d679637545e50b1cea9f8ee903888783021",
  2228. "reference": "8be37d679637545e50b1cea9f8ee903888783021",
  2229. "shasum": ""
  2230. },
  2231. "require": {
  2232. "composer-runtime-api": "^2.0",
  2233. "open-telemetry/api": "^1.0",
  2234. "php": "^7.4 || ^8.0",
  2235. "php-http/discovery": "^1.14",
  2236. "php-http/httplug": "^2.3",
  2237. "psr/http-client": "^1.0",
  2238. "psr/http-factory": "^1.0",
  2239. "psr/http-message": "^1.0 || ^2.0",
  2240. "psr/log": "^1 || ^2 || ^3"
  2241. },
  2242. "require-dev": {
  2243. "nyholm/psr7": "^1.5",
  2244. "open-telemetry/sdk": "^1.0",
  2245. "php-http/mock-client": "^1.5",
  2246. "phpstan/phpstan": "^1.4",
  2247. "phpunit/phpunit": "^9.5",
  2248. "symfony/http-client": "^5.4"
  2249. },
  2250. "type": "library",
  2251. "autoload": {
  2252. "psr-4": {
  2253. "Elastic\\Transport\\": "src/"
  2254. }
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "description": "HTTP transport PHP library for Elastic products",
  2261. "keywords": [
  2262. "PSR_17",
  2263. "elastic",
  2264. "http",
  2265. "psr-18",
  2266. "psr-7",
  2267. "transport"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/elastic/elastic-transport-php/issues",
  2271. "source": "https://github.com/elastic/elastic-transport-php/tree/v8.10.0"
  2272. },
  2273. "time": "2024-08-14T08:55:07+00:00"
  2274. },
  2275. {
  2276. "name": "elasticsearch/elasticsearch",
  2277. "version": "v8.17.0",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/elastic/elasticsearch-php.git",
  2281. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  2286. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  2287. "shasum": ""
  2288. },
  2289. "require": {
  2290. "elastic/transport": "^8.10",
  2291. "guzzlehttp/guzzle": "^7.0",
  2292. "php": "^7.4 || ^8.0",
  2293. "psr/http-client": "^1.0",
  2294. "psr/http-message": "^1.1 || ^2.0",
  2295. "psr/log": "^1|^2|^3"
  2296. },
  2297. "require-dev": {
  2298. "ext-yaml": "*",
  2299. "ext-zip": "*",
  2300. "mockery/mockery": "^1.5",
  2301. "nyholm/psr7": "^1.5",
  2302. "php-http/message-factory": "^1.0",
  2303. "php-http/mock-client": "^1.5",
  2304. "phpstan/phpstan": "^1.4",
  2305. "phpunit/phpunit": "^9.5",
  2306. "psr/http-factory": "^1.0",
  2307. "symfony/finder": "~4.0",
  2308. "symfony/http-client": "^5.0|^6.0|^7.0"
  2309. },
  2310. "type": "library",
  2311. "autoload": {
  2312. "psr-4": {
  2313. "Elastic\\Elasticsearch\\": "src/"
  2314. }
  2315. },
  2316. "notification-url": "https://packagist.org/downloads/",
  2317. "license": [
  2318. "MIT"
  2319. ],
  2320. "description": "PHP Client for Elasticsearch",
  2321. "keywords": [
  2322. "client",
  2323. "elastic",
  2324. "elasticsearch",
  2325. "search"
  2326. ],
  2327. "support": {
  2328. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  2329. "source": "https://github.com/elastic/elasticsearch-php/tree/v8.17.0"
  2330. },
  2331. "time": "2024-12-18T11:00:27+00:00"
  2332. },
  2333. {
  2334. "name": "enshrined/svg-sanitize",
  2335. "version": "0.22.0",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/darylldoyle/svg-sanitizer.git",
  2339. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/0afa95ea74be155a7bcd6c6fb60c276c39984500",
  2344. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500",
  2345. "shasum": ""
  2346. },
  2347. "require": {
  2348. "ext-dom": "*",
  2349. "ext-libxml": "*",
  2350. "php": "^7.1 || ^8.0"
  2351. },
  2352. "require-dev": {
  2353. "phpunit/phpunit": "^6.5 || ^8.5"
  2354. },
  2355. "type": "library",
  2356. "autoload": {
  2357. "psr-4": {
  2358. "enshrined\\svgSanitize\\": "src"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "GPL-2.0-or-later"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "Daryll Doyle",
  2368. "email": "daryll@enshrined.co.uk"
  2369. }
  2370. ],
  2371. "description": "An SVG sanitizer for PHP",
  2372. "support": {
  2373. "issues": "https://github.com/darylldoyle/svg-sanitizer/issues",
  2374. "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.22.0"
  2375. },
  2376. "time": "2025-08-12T10:13:48+00:00"
  2377. },
  2378. {
  2379. "name": "ezyang/htmlpurifier",
  2380. "version": "v4.18.0",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/ezyang/htmlpurifier.git",
  2384. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  2389. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  2394. },
  2395. "require-dev": {
  2396. "cerdic/css-tidy": "^1.7 || ^2.0",
  2397. "simpletest/simpletest": "dev-master"
  2398. },
  2399. "suggest": {
  2400. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  2401. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  2402. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  2403. "ext-tidy": "Used for pretty-printing HTML"
  2404. },
  2405. "type": "library",
  2406. "autoload": {
  2407. "files": [
  2408. "library/HTMLPurifier.composer.php"
  2409. ],
  2410. "psr-0": {
  2411. "HTMLPurifier": "library/"
  2412. },
  2413. "exclude-from-classmap": [
  2414. "/library/HTMLPurifier/Language/"
  2415. ]
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "LGPL-2.1-or-later"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Edward Z. Yang",
  2424. "email": "admin@htmlpurifier.org",
  2425. "homepage": "http://ezyang.com"
  2426. }
  2427. ],
  2428. "description": "Standards compliant HTML filter written in PHP",
  2429. "homepage": "http://htmlpurifier.org/",
  2430. "keywords": [
  2431. "html"
  2432. ],
  2433. "support": {
  2434. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  2435. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  2436. },
  2437. "time": "2024-11-01T03:51:45+00:00"
  2438. },
  2439. {
  2440. "name": "facade/ignition-contracts",
  2441. "version": "1.0.2",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://github.com/facade/ignition-contracts.git",
  2445. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  2446. },
  2447. "dist": {
  2448. "type": "zip",
  2449. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  2450. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  2451. "shasum": ""
  2452. },
  2453. "require": {
  2454. "php": "^7.3|^8.0"
  2455. },
  2456. "require-dev": {
  2457. "friendsofphp/php-cs-fixer": "^v2.15.8",
  2458. "phpunit/phpunit": "^9.3.11",
  2459. "vimeo/psalm": "^3.17.1"
  2460. },
  2461. "type": "library",
  2462. "autoload": {
  2463. "psr-4": {
  2464. "Facade\\IgnitionContracts\\": "src"
  2465. }
  2466. },
  2467. "notification-url": "https://packagist.org/downloads/",
  2468. "license": [
  2469. "MIT"
  2470. ],
  2471. "authors": [
  2472. {
  2473. "name": "Freek Van der Herten",
  2474. "email": "freek@spatie.be",
  2475. "homepage": "https://flareapp.io",
  2476. "role": "Developer"
  2477. }
  2478. ],
  2479. "description": "Solution contracts for Ignition",
  2480. "homepage": "https://github.com/facade/ignition-contracts",
  2481. "keywords": [
  2482. "contracts",
  2483. "flare",
  2484. "ignition"
  2485. ],
  2486. "support": {
  2487. "issues": "https://github.com/facade/ignition-contracts/issues",
  2488. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  2489. },
  2490. "time": "2020-10-16T08:27:54+00:00"
  2491. },
  2492. {
  2493. "name": "firebase/php-jwt",
  2494. "version": "v6.11.0",
  2495. "source": {
  2496. "type": "git",
  2497. "url": "https://github.com/firebase/php-jwt.git",
  2498. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  2499. },
  2500. "dist": {
  2501. "type": "zip",
  2502. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2503. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2504. "shasum": ""
  2505. },
  2506. "require": {
  2507. "php": "^8.0"
  2508. },
  2509. "require-dev": {
  2510. "guzzlehttp/guzzle": "^7.4",
  2511. "phpspec/prophecy-phpunit": "^2.0",
  2512. "phpunit/phpunit": "^9.5",
  2513. "psr/cache": "^2.0||^3.0",
  2514. "psr/http-client": "^1.0",
  2515. "psr/http-factory": "^1.0"
  2516. },
  2517. "suggest": {
  2518. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2519. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2520. },
  2521. "type": "library",
  2522. "autoload": {
  2523. "psr-4": {
  2524. "Firebase\\JWT\\": "src"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "BSD-3-Clause"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Neuman Vong",
  2534. "email": "neuman+pear@twilio.com",
  2535. "role": "Developer"
  2536. },
  2537. {
  2538. "name": "Anant Narayanan",
  2539. "email": "anant@php.net",
  2540. "role": "Developer"
  2541. }
  2542. ],
  2543. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2544. "homepage": "https://github.com/firebase/php-jwt",
  2545. "keywords": [
  2546. "jwt",
  2547. "php"
  2548. ],
  2549. "support": {
  2550. "issues": "https://github.com/firebase/php-jwt/issues",
  2551. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  2552. },
  2553. "time": "2025-01-23T05:11:06+00:00"
  2554. },
  2555. {
  2556. "name": "fruitcake/php-cors",
  2557. "version": "v1.3.0",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/fruitcake/php-cors.git",
  2561. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2566. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": "^7.4|^8.0",
  2571. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2572. },
  2573. "require-dev": {
  2574. "phpstan/phpstan": "^1.4",
  2575. "phpunit/phpunit": "^9",
  2576. "squizlabs/php_codesniffer": "^3.5"
  2577. },
  2578. "type": "library",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-master": "1.2-dev"
  2582. }
  2583. },
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Fruitcake\\Cors\\": "src/"
  2587. }
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Fruitcake",
  2596. "homepage": "https://fruitcake.nl"
  2597. },
  2598. {
  2599. "name": "Barryvdh",
  2600. "email": "barryvdh@gmail.com"
  2601. }
  2602. ],
  2603. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2604. "homepage": "https://github.com/fruitcake/php-cors",
  2605. "keywords": [
  2606. "cors",
  2607. "laravel",
  2608. "symfony"
  2609. ],
  2610. "support": {
  2611. "issues": "https://github.com/fruitcake/php-cors/issues",
  2612. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2613. },
  2614. "funding": [
  2615. {
  2616. "url": "https://fruitcake.nl",
  2617. "type": "custom"
  2618. },
  2619. {
  2620. "url": "https://github.com/barryvdh",
  2621. "type": "github"
  2622. }
  2623. ],
  2624. "time": "2023-10-12T05:21:21+00:00"
  2625. },
  2626. {
  2627. "name": "graham-campbell/result-type",
  2628. "version": "v1.1.3",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2632. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2637. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": "^7.2.5 || ^8.0",
  2642. "phpoption/phpoption": "^1.9.3"
  2643. },
  2644. "require-dev": {
  2645. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2646. },
  2647. "type": "library",
  2648. "autoload": {
  2649. "psr-4": {
  2650. "GrahamCampbell\\ResultType\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Graham Campbell",
  2660. "email": "hello@gjcampbell.co.uk",
  2661. "homepage": "https://github.com/GrahamCampbell"
  2662. }
  2663. ],
  2664. "description": "An Implementation Of The Result Type",
  2665. "keywords": [
  2666. "Graham Campbell",
  2667. "GrahamCampbell",
  2668. "Result Type",
  2669. "Result-Type",
  2670. "result"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2674. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2675. },
  2676. "funding": [
  2677. {
  2678. "url": "https://github.com/GrahamCampbell",
  2679. "type": "github"
  2680. },
  2681. {
  2682. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2683. "type": "tidelift"
  2684. }
  2685. ],
  2686. "time": "2024-07-20T21:45:45+00:00"
  2687. },
  2688. {
  2689. "name": "guzzlehttp/guzzle",
  2690. "version": "7.9.2",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/guzzle/guzzle.git",
  2694. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2699. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "ext-json": "*",
  2704. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2705. "guzzlehttp/psr7": "^2.7.0",
  2706. "php": "^7.2.5 || ^8.0",
  2707. "psr/http-client": "^1.0",
  2708. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2709. },
  2710. "provide": {
  2711. "psr/http-client-implementation": "1.0"
  2712. },
  2713. "require-dev": {
  2714. "bamarni/composer-bin-plugin": "^1.8.2",
  2715. "ext-curl": "*",
  2716. "guzzle/client-integration-tests": "3.0.2",
  2717. "php-http/message-factory": "^1.1",
  2718. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2719. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2720. },
  2721. "suggest": {
  2722. "ext-curl": "Required for CURL handler support",
  2723. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2724. "psr/log": "Required for using the Log middleware"
  2725. },
  2726. "type": "library",
  2727. "extra": {
  2728. "bamarni-bin": {
  2729. "bin-links": true,
  2730. "forward-command": false
  2731. }
  2732. },
  2733. "autoload": {
  2734. "files": [
  2735. "src/functions_include.php"
  2736. ],
  2737. "psr-4": {
  2738. "GuzzleHttp\\": "src/"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Graham Campbell",
  2748. "email": "hello@gjcampbell.co.uk",
  2749. "homepage": "https://github.com/GrahamCampbell"
  2750. },
  2751. {
  2752. "name": "Michael Dowling",
  2753. "email": "mtdowling@gmail.com",
  2754. "homepage": "https://github.com/mtdowling"
  2755. },
  2756. {
  2757. "name": "Jeremy Lindblom",
  2758. "email": "jeremeamia@gmail.com",
  2759. "homepage": "https://github.com/jeremeamia"
  2760. },
  2761. {
  2762. "name": "George Mponos",
  2763. "email": "gmponos@gmail.com",
  2764. "homepage": "https://github.com/gmponos"
  2765. },
  2766. {
  2767. "name": "Tobias Nyholm",
  2768. "email": "tobias.nyholm@gmail.com",
  2769. "homepage": "https://github.com/Nyholm"
  2770. },
  2771. {
  2772. "name": "Márk Sági-Kazár",
  2773. "email": "mark.sagikazar@gmail.com",
  2774. "homepage": "https://github.com/sagikazarmark"
  2775. },
  2776. {
  2777. "name": "Tobias Schultze",
  2778. "email": "webmaster@tubo-world.de",
  2779. "homepage": "https://github.com/Tobion"
  2780. }
  2781. ],
  2782. "description": "Guzzle is a PHP HTTP client library",
  2783. "keywords": [
  2784. "client",
  2785. "curl",
  2786. "framework",
  2787. "http",
  2788. "http client",
  2789. "psr-18",
  2790. "psr-7",
  2791. "rest",
  2792. "web service"
  2793. ],
  2794. "support": {
  2795. "issues": "https://github.com/guzzle/guzzle/issues",
  2796. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2797. },
  2798. "funding": [
  2799. {
  2800. "url": "https://github.com/GrahamCampbell",
  2801. "type": "github"
  2802. },
  2803. {
  2804. "url": "https://github.com/Nyholm",
  2805. "type": "github"
  2806. },
  2807. {
  2808. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2809. "type": "tidelift"
  2810. }
  2811. ],
  2812. "time": "2024-07-24T11:22:20+00:00"
  2813. },
  2814. {
  2815. "name": "guzzlehttp/promises",
  2816. "version": "2.0.4",
  2817. "source": {
  2818. "type": "git",
  2819. "url": "https://github.com/guzzle/promises.git",
  2820. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2821. },
  2822. "dist": {
  2823. "type": "zip",
  2824. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2825. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2826. "shasum": ""
  2827. },
  2828. "require": {
  2829. "php": "^7.2.5 || ^8.0"
  2830. },
  2831. "require-dev": {
  2832. "bamarni/composer-bin-plugin": "^1.8.2",
  2833. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2834. },
  2835. "type": "library",
  2836. "extra": {
  2837. "bamarni-bin": {
  2838. "bin-links": true,
  2839. "forward-command": false
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "GuzzleHttp\\Promise\\": "src/"
  2845. }
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "MIT"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "Graham Campbell",
  2854. "email": "hello@gjcampbell.co.uk",
  2855. "homepage": "https://github.com/GrahamCampbell"
  2856. },
  2857. {
  2858. "name": "Michael Dowling",
  2859. "email": "mtdowling@gmail.com",
  2860. "homepage": "https://github.com/mtdowling"
  2861. },
  2862. {
  2863. "name": "Tobias Nyholm",
  2864. "email": "tobias.nyholm@gmail.com",
  2865. "homepage": "https://github.com/Nyholm"
  2866. },
  2867. {
  2868. "name": "Tobias Schultze",
  2869. "email": "webmaster@tubo-world.de",
  2870. "homepage": "https://github.com/Tobion"
  2871. }
  2872. ],
  2873. "description": "Guzzle promises library",
  2874. "keywords": [
  2875. "promise"
  2876. ],
  2877. "support": {
  2878. "issues": "https://github.com/guzzle/promises/issues",
  2879. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2880. },
  2881. "funding": [
  2882. {
  2883. "url": "https://github.com/GrahamCampbell",
  2884. "type": "github"
  2885. },
  2886. {
  2887. "url": "https://github.com/Nyholm",
  2888. "type": "github"
  2889. },
  2890. {
  2891. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2892. "type": "tidelift"
  2893. }
  2894. ],
  2895. "time": "2024-10-17T10:06:22+00:00"
  2896. },
  2897. {
  2898. "name": "guzzlehttp/psr7",
  2899. "version": "2.7.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/guzzle/psr7.git",
  2903. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2908. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "php": "^7.2.5 || ^8.0",
  2913. "psr/http-factory": "^1.0",
  2914. "psr/http-message": "^1.1 || ^2.0",
  2915. "ralouphie/getallheaders": "^3.0"
  2916. },
  2917. "provide": {
  2918. "psr/http-factory-implementation": "1.0",
  2919. "psr/http-message-implementation": "1.0"
  2920. },
  2921. "require-dev": {
  2922. "bamarni/composer-bin-plugin": "^1.8.2",
  2923. "http-interop/http-factory-tests": "0.9.0",
  2924. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2925. },
  2926. "suggest": {
  2927. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2928. },
  2929. "type": "library",
  2930. "extra": {
  2931. "bamarni-bin": {
  2932. "bin-links": true,
  2933. "forward-command": false
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "GuzzleHttp\\Psr7\\": "src/"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Graham Campbell",
  2948. "email": "hello@gjcampbell.co.uk",
  2949. "homepage": "https://github.com/GrahamCampbell"
  2950. },
  2951. {
  2952. "name": "Michael Dowling",
  2953. "email": "mtdowling@gmail.com",
  2954. "homepage": "https://github.com/mtdowling"
  2955. },
  2956. {
  2957. "name": "George Mponos",
  2958. "email": "gmponos@gmail.com",
  2959. "homepage": "https://github.com/gmponos"
  2960. },
  2961. {
  2962. "name": "Tobias Nyholm",
  2963. "email": "tobias.nyholm@gmail.com",
  2964. "homepage": "https://github.com/Nyholm"
  2965. },
  2966. {
  2967. "name": "Márk Sági-Kazár",
  2968. "email": "mark.sagikazar@gmail.com",
  2969. "homepage": "https://github.com/sagikazarmark"
  2970. },
  2971. {
  2972. "name": "Tobias Schultze",
  2973. "email": "webmaster@tubo-world.de",
  2974. "homepage": "https://github.com/Tobion"
  2975. },
  2976. {
  2977. "name": "Márk Sági-Kazár",
  2978. "email": "mark.sagikazar@gmail.com",
  2979. "homepage": "https://sagikazarmark.hu"
  2980. }
  2981. ],
  2982. "description": "PSR-7 message implementation that also provides common utility methods",
  2983. "keywords": [
  2984. "http",
  2985. "message",
  2986. "psr-7",
  2987. "request",
  2988. "response",
  2989. "stream",
  2990. "uri",
  2991. "url"
  2992. ],
  2993. "support": {
  2994. "issues": "https://github.com/guzzle/psr7/issues",
  2995. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2996. },
  2997. "funding": [
  2998. {
  2999. "url": "https://github.com/GrahamCampbell",
  3000. "type": "github"
  3001. },
  3002. {
  3003. "url": "https://github.com/Nyholm",
  3004. "type": "github"
  3005. },
  3006. {
  3007. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  3008. "type": "tidelift"
  3009. }
  3010. ],
  3011. "time": "2024-07-18T11:15:46+00:00"
  3012. },
  3013. {
  3014. "name": "guzzlehttp/uri-template",
  3015. "version": "v1.0.4",
  3016. "source": {
  3017. "type": "git",
  3018. "url": "https://github.com/guzzle/uri-template.git",
  3019. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  3020. },
  3021. "dist": {
  3022. "type": "zip",
  3023. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  3024. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  3025. "shasum": ""
  3026. },
  3027. "require": {
  3028. "php": "^7.2.5 || ^8.0",
  3029. "symfony/polyfill-php80": "^1.24"
  3030. },
  3031. "require-dev": {
  3032. "bamarni/composer-bin-plugin": "^1.8.2",
  3033. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  3034. "uri-template/tests": "1.0.0"
  3035. },
  3036. "type": "library",
  3037. "extra": {
  3038. "bamarni-bin": {
  3039. "bin-links": true,
  3040. "forward-command": false
  3041. }
  3042. },
  3043. "autoload": {
  3044. "psr-4": {
  3045. "GuzzleHttp\\UriTemplate\\": "src"
  3046. }
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "Graham Campbell",
  3055. "email": "hello@gjcampbell.co.uk",
  3056. "homepage": "https://github.com/GrahamCampbell"
  3057. },
  3058. {
  3059. "name": "Michael Dowling",
  3060. "email": "mtdowling@gmail.com",
  3061. "homepage": "https://github.com/mtdowling"
  3062. },
  3063. {
  3064. "name": "George Mponos",
  3065. "email": "gmponos@gmail.com",
  3066. "homepage": "https://github.com/gmponos"
  3067. },
  3068. {
  3069. "name": "Tobias Nyholm",
  3070. "email": "tobias.nyholm@gmail.com",
  3071. "homepage": "https://github.com/Nyholm"
  3072. }
  3073. ],
  3074. "description": "A polyfill class for uri_template of PHP",
  3075. "keywords": [
  3076. "guzzlehttp",
  3077. "uri-template"
  3078. ],
  3079. "support": {
  3080. "issues": "https://github.com/guzzle/uri-template/issues",
  3081. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  3082. },
  3083. "funding": [
  3084. {
  3085. "url": "https://github.com/GrahamCampbell",
  3086. "type": "github"
  3087. },
  3088. {
  3089. "url": "https://github.com/Nyholm",
  3090. "type": "github"
  3091. },
  3092. {
  3093. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  3094. "type": "tidelift"
  3095. }
  3096. ],
  3097. "time": "2025-02-03T10:55:03+00:00"
  3098. },
  3099. {
  3100. "name": "intervention/image",
  3101. "version": "2.7.2",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/Intervention/image.git",
  3105. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  3110. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "ext-fileinfo": "*",
  3115. "guzzlehttp/psr7": "~1.1 || ^2.0",
  3116. "php": ">=5.4.0"
  3117. },
  3118. "require-dev": {
  3119. "mockery/mockery": "~0.9.2",
  3120. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  3121. },
  3122. "suggest": {
  3123. "ext-gd": "to use GD library based image processing.",
  3124. "ext-imagick": "to use Imagick based image processing.",
  3125. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3126. },
  3127. "type": "library",
  3128. "extra": {
  3129. "laravel": {
  3130. "aliases": {
  3131. "Image": "Intervention\\Image\\Facades\\Image"
  3132. },
  3133. "providers": [
  3134. "Intervention\\Image\\ImageServiceProvider"
  3135. ]
  3136. },
  3137. "branch-alias": {
  3138. "dev-master": "2.4-dev"
  3139. }
  3140. },
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Intervention\\Image\\": "src/Intervention/Image"
  3144. }
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Oliver Vogel",
  3153. "email": "oliver@intervention.io",
  3154. "homepage": "https://intervention.io/"
  3155. }
  3156. ],
  3157. "description": "Image handling and manipulation library with support for Laravel integration",
  3158. "homepage": "http://image.intervention.io/",
  3159. "keywords": [
  3160. "gd",
  3161. "image",
  3162. "imagick",
  3163. "laravel",
  3164. "thumbnail",
  3165. "watermark"
  3166. ],
  3167. "support": {
  3168. "issues": "https://github.com/Intervention/image/issues",
  3169. "source": "https://github.com/Intervention/image/tree/2.7.2"
  3170. },
  3171. "funding": [
  3172. {
  3173. "url": "https://paypal.me/interventionio",
  3174. "type": "custom"
  3175. },
  3176. {
  3177. "url": "https://github.com/Intervention",
  3178. "type": "github"
  3179. }
  3180. ],
  3181. "time": "2022-05-21T17:30:32+00:00"
  3182. },
  3183. {
  3184. "name": "jaybizzle/crawler-detect",
  3185. "version": "v1.3.4",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3189. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  3194. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  3195. "shasum": ""
  3196. },
  3197. "require": {
  3198. "php": ">=7.1.0"
  3199. },
  3200. "require-dev": {
  3201. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3202. },
  3203. "type": "library",
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Jaybizzle\\CrawlerDetect\\": "src/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Mark Beech",
  3216. "email": "m@rkbee.ch",
  3217. "role": "Developer"
  3218. }
  3219. ],
  3220. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3221. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3222. "keywords": [
  3223. "crawler",
  3224. "crawler detect",
  3225. "crawler detector",
  3226. "crawlerdetect",
  3227. "php crawler detect"
  3228. ],
  3229. "support": {
  3230. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  3231. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.4"
  3232. },
  3233. "time": "2025-03-05T23:12:10+00:00"
  3234. },
  3235. {
  3236. "name": "kalnoy/nestedset",
  3237. "version": "v6.0.5",
  3238. "source": {
  3239. "type": "git",
  3240. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  3241. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63"
  3242. },
  3243. "dist": {
  3244. "type": "zip",
  3245. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  3246. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  3247. "shasum": ""
  3248. },
  3249. "require": {
  3250. "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3251. "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3252. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3253. "php": "^7.2.5|^8.0"
  3254. },
  3255. "require-dev": {
  3256. "phpunit/phpunit": "7.*|8.*|9.*|^10.5"
  3257. },
  3258. "type": "library",
  3259. "extra": {
  3260. "laravel": {
  3261. "providers": [
  3262. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  3263. ]
  3264. },
  3265. "branch-alias": {
  3266. "dev-master": "v5.0.x-dev"
  3267. }
  3268. },
  3269. "autoload": {
  3270. "psr-4": {
  3271. "Kalnoy\\Nestedset\\": "src/"
  3272. }
  3273. },
  3274. "notification-url": "https://packagist.org/downloads/",
  3275. "license": [
  3276. "MIT"
  3277. ],
  3278. "authors": [
  3279. {
  3280. "name": "Alexander Kalnoy",
  3281. "email": "lazychaser@gmail.com"
  3282. }
  3283. ],
  3284. "description": "Nested Set Model for Laravel 5.7 and up",
  3285. "keywords": [
  3286. "database",
  3287. "hierarchy",
  3288. "laravel",
  3289. "nested sets",
  3290. "nsm"
  3291. ],
  3292. "support": {
  3293. "issues": "https://github.com/lazychaser/laravel-nestedset/issues",
  3294. "source": "https://github.com/lazychaser/laravel-nestedset/tree/v6.0.5"
  3295. },
  3296. "time": "2025-02-25T11:09:07+00:00"
  3297. },
  3298. {
  3299. "name": "khaled.alshamaa/ar-php",
  3300. "version": "v6.3.4",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/khaled-alshamaa/ar-php.git",
  3304. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/khaled-alshamaa/ar-php/zipball/36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  3309. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "ext-calendar": "*",
  3314. "ext-mbstring": "*",
  3315. "php": ">=5.6.0"
  3316. },
  3317. "require-dev": {
  3318. "phpunit/phpunit": "9.*"
  3319. },
  3320. "type": "library",
  3321. "autoload": {
  3322. "psr-4": {
  3323. "ArPHP\\I18N\\": "src"
  3324. }
  3325. },
  3326. "notification-url": "https://packagist.org/downloads/",
  3327. "license": [
  3328. "LGPL-3.0"
  3329. ],
  3330. "authors": [
  3331. {
  3332. "name": "Khaled Al-Sham'aa",
  3333. "email": "khaled@ar-php.org",
  3334. "homepage": "http://www.ar-php.org",
  3335. "role": "Developer"
  3336. }
  3337. ],
  3338. "description": "Set of functionalities enable Arabic website developers to serve professional search, present and process Arabic content in PHP",
  3339. "homepage": "https://github.com/khaled-alshamaa/ar-php",
  3340. "keywords": [
  3341. "arabic",
  3342. "arabic-calendar",
  3343. "arabic-glyphs",
  3344. "arabic-numbers",
  3345. "arabic-segments-identifier",
  3346. "arabic-sentiment",
  3347. "arabic-sql-query"
  3348. ],
  3349. "support": {
  3350. "issues": "https://github.com/khaled-alshamaa/ar-php/issues",
  3351. "source": "https://github.com/khaled-alshamaa/ar-php/tree/v6.3.4"
  3352. },
  3353. "funding": [
  3354. {
  3355. "url": "https://github.com/khaled-alshamaa",
  3356. "type": "github"
  3357. }
  3358. ],
  3359. "time": "2023-04-04T22:05:31+00:00"
  3360. },
  3361. {
  3362. "name": "konekt/concord",
  3363. "version": "1.16.0",
  3364. "source": {
  3365. "type": "git",
  3366. "url": "https://github.com/artkonekt/concord.git",
  3367. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c"
  3368. },
  3369. "dist": {
  3370. "type": "zip",
  3371. "url": "https://api.github.com/repos/artkonekt/concord/zipball/56d337f6ffc8534175c98b82071556a2d74f659c",
  3372. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c",
  3373. "shasum": ""
  3374. },
  3375. "require": {
  3376. "illuminate/console": "^10.0|^11.0|^12.0",
  3377. "illuminate/support": "^10.0|^11.0|^12.0",
  3378. "konekt/enum": "^2.1|^3.0|^4.0",
  3379. "konekt/enum-eloquent": "^1.7",
  3380. "php": "^8.1"
  3381. },
  3382. "require-dev": {
  3383. "orchestra/testbench": "^8.0|^9.0|^10.0",
  3384. "phpunit/phpunit": "9 - 11"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "laravel": {
  3389. "aliases": {
  3390. "Helper": "Konekt\\Concord\\Facades\\Helper",
  3391. "Concord": "Konekt\\Concord\\Facades\\Concord"
  3392. },
  3393. "providers": [
  3394. "Konekt\\Concord\\ConcordServiceProvider"
  3395. ]
  3396. }
  3397. },
  3398. "autoload": {
  3399. "files": [
  3400. "src/Support/functions.php"
  3401. ],
  3402. "psr-4": {
  3403. "Konekt\\Concord\\": "src"
  3404. }
  3405. },
  3406. "notification-url": "https://packagist.org/downloads/",
  3407. "license": [
  3408. "MIT"
  3409. ],
  3410. "authors": [
  3411. {
  3412. "name": "Attila Fulop",
  3413. "homepage": "https://github.com/fulopattila122"
  3414. }
  3415. ],
  3416. "description": "Concord is a Laravel Extension for building modular Laravel Applications",
  3417. "support": {
  3418. "issues": "https://github.com/artkonekt/concord",
  3419. "source": "https://github.com/artkonekt/concord/tree/1.16.0"
  3420. },
  3421. "time": "2025-03-03T11:39:09+00:00"
  3422. },
  3423. {
  3424. "name": "konekt/enum",
  3425. "version": "4.2.0",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/artkonekt/enum.git",
  3429. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/artkonekt/enum/zipball/e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  3434. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": "^8.0"
  3439. },
  3440. "require-dev": {
  3441. "phpunit/phpunit": "^9.0"
  3442. },
  3443. "type": "library",
  3444. "extra": {
  3445. "branch-alias": {
  3446. "dev-master": "4.x-dev"
  3447. }
  3448. },
  3449. "autoload": {
  3450. "psr-4": {
  3451. "Konekt\\Enum\\": "src/"
  3452. }
  3453. },
  3454. "notification-url": "https://packagist.org/downloads/",
  3455. "license": [
  3456. "MIT"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "Attila Fulop",
  3461. "homepage": "https://github.com/fulopattila122"
  3462. }
  3463. ],
  3464. "description": "SPL inspired PHP enum class implementation",
  3465. "keywords": [
  3466. "artkonekt",
  3467. "enum",
  3468. "konekt"
  3469. ],
  3470. "support": {
  3471. "issues": "https://github.com/artkonekt/enum/issues",
  3472. "source": "https://github.com/artkonekt/enum"
  3473. },
  3474. "time": "2024-02-29T15:32:06+00:00"
  3475. },
  3476. {
  3477. "name": "konekt/enum-eloquent",
  3478. "version": "1.10.0",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/artkonekt/enum-eloquent.git",
  3482. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/artkonekt/enum-eloquent/zipball/ebfbc29706c407eb98fdabd90c38501315d99ec7",
  3487. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "illuminate/database": "^8.75|9.*|10.*|11.*|12.*",
  3492. "konekt/enum": "^2.0.2 || ^3.0 | ^4.0",
  3493. "php": "^8.0"
  3494. },
  3495. "require-dev": {
  3496. "illuminate/events": "^8.75|9.*|10.*|11.*|12.*",
  3497. "phpunit/phpunit": "9 - 11"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "laravel": {
  3502. "providers": [
  3503. "Konekt\\Enum\\Eloquent\\EnumServiceProvider"
  3504. ]
  3505. }
  3506. },
  3507. "autoload": {
  3508. "psr-4": {
  3509. "Konekt\\Enum\\Eloquent\\": "src/"
  3510. }
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "Attila Fulop",
  3519. "homepage": "https://github.com/fulopattila122"
  3520. },
  3521. {
  3522. "name": "Semyon Chetvertnyh",
  3523. "homepage": "https://github.com/semyonchetvertnyh"
  3524. },
  3525. {
  3526. "name": "Mark Boessenkool",
  3527. "homepage": "https://github.com/TheM1984"
  3528. }
  3529. ],
  3530. "description": "Enum attribute casting for Eloquent models",
  3531. "keywords": [
  3532. "artkonekt",
  3533. "eloquent",
  3534. "enum",
  3535. "konekt",
  3536. "laravel"
  3537. ],
  3538. "support": {
  3539. "issues": "https://github.com/artkonekt/enum-eloquent/issues",
  3540. "source": "https://github.com/artkonekt/enum-eloquent"
  3541. },
  3542. "time": "2025-03-03T11:34:47+00:00"
  3543. },
  3544. {
  3545. "name": "laminas/laminas-diactoros",
  3546. "version": "3.5.0",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/laminas/laminas-diactoros.git",
  3550. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  3555. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  3560. "psr/http-factory": "^1.1",
  3561. "psr/http-message": "^1.1 || ^2.0"
  3562. },
  3563. "conflict": {
  3564. "amphp/amp": "<2.6.4"
  3565. },
  3566. "provide": {
  3567. "psr/http-factory-implementation": "^1.0",
  3568. "psr/http-message-implementation": "^1.1 || ^2.0"
  3569. },
  3570. "require-dev": {
  3571. "ext-curl": "*",
  3572. "ext-dom": "*",
  3573. "ext-gd": "*",
  3574. "ext-libxml": "*",
  3575. "http-interop/http-factory-tests": "^2.2.0",
  3576. "laminas/laminas-coding-standard": "~2.5.0",
  3577. "php-http/psr7-integration-tests": "^1.4.0",
  3578. "phpunit/phpunit": "^10.5.36",
  3579. "psalm/plugin-phpunit": "^0.19.0",
  3580. "vimeo/psalm": "^5.26.1"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "laminas": {
  3585. "module": "Laminas\\Diactoros",
  3586. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  3587. }
  3588. },
  3589. "autoload": {
  3590. "files": [
  3591. "src/functions/create_uploaded_file.php",
  3592. "src/functions/marshal_headers_from_sapi.php",
  3593. "src/functions/marshal_method_from_sapi.php",
  3594. "src/functions/marshal_protocol_version_from_sapi.php",
  3595. "src/functions/normalize_server.php",
  3596. "src/functions/normalize_uploaded_files.php",
  3597. "src/functions/parse_cookie_header.php"
  3598. ],
  3599. "psr-4": {
  3600. "Laminas\\Diactoros\\": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "BSD-3-Clause"
  3606. ],
  3607. "description": "PSR HTTP Message implementations",
  3608. "homepage": "https://laminas.dev",
  3609. "keywords": [
  3610. "http",
  3611. "laminas",
  3612. "psr",
  3613. "psr-17",
  3614. "psr-7"
  3615. ],
  3616. "support": {
  3617. "chat": "https://laminas.dev/chat",
  3618. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  3619. "forum": "https://discourse.laminas.dev",
  3620. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  3621. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  3622. "source": "https://github.com/laminas/laminas-diactoros"
  3623. },
  3624. "funding": [
  3625. {
  3626. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3627. "type": "community_bridge"
  3628. }
  3629. ],
  3630. "time": "2024-10-14T11:59:49+00:00"
  3631. },
  3632. {
  3633. "name": "laravel/framework",
  3634. "version": "v11.44.2",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/laravel/framework.git",
  3638. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/laravel/framework/zipball/f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3643. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3648. "composer-runtime-api": "^2.2",
  3649. "doctrine/inflector": "^2.0.5",
  3650. "dragonmantank/cron-expression": "^3.4",
  3651. "egulias/email-validator": "^3.2.1|^4.0",
  3652. "ext-ctype": "*",
  3653. "ext-filter": "*",
  3654. "ext-hash": "*",
  3655. "ext-mbstring": "*",
  3656. "ext-openssl": "*",
  3657. "ext-session": "*",
  3658. "ext-tokenizer": "*",
  3659. "fruitcake/php-cors": "^1.3",
  3660. "guzzlehttp/guzzle": "^7.8.2",
  3661. "guzzlehttp/uri-template": "^1.0",
  3662. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3663. "laravel/serializable-closure": "^1.3|^2.0",
  3664. "league/commonmark": "^2.6",
  3665. "league/flysystem": "^3.25.1",
  3666. "league/flysystem-local": "^3.25.1",
  3667. "league/uri": "^7.5.1",
  3668. "monolog/monolog": "^3.0",
  3669. "nesbot/carbon": "^2.72.6|^3.8.4",
  3670. "nunomaduro/termwind": "^2.0",
  3671. "php": "^8.2",
  3672. "psr/container": "^1.1.1|^2.0.1",
  3673. "psr/log": "^1.0|^2.0|^3.0",
  3674. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3675. "ramsey/uuid": "^4.7",
  3676. "symfony/console": "^7.0.3",
  3677. "symfony/error-handler": "^7.0.3",
  3678. "symfony/finder": "^7.0.3",
  3679. "symfony/http-foundation": "^7.2.0",
  3680. "symfony/http-kernel": "^7.0.3",
  3681. "symfony/mailer": "^7.0.3",
  3682. "symfony/mime": "^7.0.3",
  3683. "symfony/polyfill-php83": "^1.31",
  3684. "symfony/process": "^7.0.3",
  3685. "symfony/routing": "^7.0.3",
  3686. "symfony/uid": "^7.0.3",
  3687. "symfony/var-dumper": "^7.0.3",
  3688. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3689. "vlucas/phpdotenv": "^5.6.1",
  3690. "voku/portable-ascii": "^2.0.2"
  3691. },
  3692. "conflict": {
  3693. "tightenco/collect": "<5.5.33"
  3694. },
  3695. "provide": {
  3696. "psr/container-implementation": "1.1|2.0",
  3697. "psr/log-implementation": "1.0|2.0|3.0",
  3698. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3699. },
  3700. "replace": {
  3701. "illuminate/auth": "self.version",
  3702. "illuminate/broadcasting": "self.version",
  3703. "illuminate/bus": "self.version",
  3704. "illuminate/cache": "self.version",
  3705. "illuminate/collections": "self.version",
  3706. "illuminate/concurrency": "self.version",
  3707. "illuminate/conditionable": "self.version",
  3708. "illuminate/config": "self.version",
  3709. "illuminate/console": "self.version",
  3710. "illuminate/container": "self.version",
  3711. "illuminate/contracts": "self.version",
  3712. "illuminate/cookie": "self.version",
  3713. "illuminate/database": "self.version",
  3714. "illuminate/encryption": "self.version",
  3715. "illuminate/events": "self.version",
  3716. "illuminate/filesystem": "self.version",
  3717. "illuminate/hashing": "self.version",
  3718. "illuminate/http": "self.version",
  3719. "illuminate/log": "self.version",
  3720. "illuminate/macroable": "self.version",
  3721. "illuminate/mail": "self.version",
  3722. "illuminate/notifications": "self.version",
  3723. "illuminate/pagination": "self.version",
  3724. "illuminate/pipeline": "self.version",
  3725. "illuminate/process": "self.version",
  3726. "illuminate/queue": "self.version",
  3727. "illuminate/redis": "self.version",
  3728. "illuminate/routing": "self.version",
  3729. "illuminate/session": "self.version",
  3730. "illuminate/support": "self.version",
  3731. "illuminate/testing": "self.version",
  3732. "illuminate/translation": "self.version",
  3733. "illuminate/validation": "self.version",
  3734. "illuminate/view": "self.version",
  3735. "spatie/once": "*"
  3736. },
  3737. "require-dev": {
  3738. "ably/ably-php": "^1.0",
  3739. "aws/aws-sdk-php": "^3.322.9",
  3740. "ext-gmp": "*",
  3741. "fakerphp/faker": "^1.24",
  3742. "guzzlehttp/promises": "^2.0.3",
  3743. "guzzlehttp/psr7": "^2.4",
  3744. "laravel/pint": "^1.18",
  3745. "league/flysystem-aws-s3-v3": "^3.25.1",
  3746. "league/flysystem-ftp": "^3.25.1",
  3747. "league/flysystem-path-prefixing": "^3.25.1",
  3748. "league/flysystem-read-only": "^3.25.1",
  3749. "league/flysystem-sftp-v3": "^3.25.1",
  3750. "mockery/mockery": "^1.6.10",
  3751. "orchestra/testbench-core": "^9.11.2",
  3752. "pda/pheanstalk": "^5.0.6",
  3753. "php-http/discovery": "^1.15",
  3754. "phpstan/phpstan": "^2.0",
  3755. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3756. "predis/predis": "^2.3",
  3757. "resend/resend-php": "^0.10.0",
  3758. "symfony/cache": "^7.0.3",
  3759. "symfony/http-client": "^7.0.3",
  3760. "symfony/psr-http-message-bridge": "^7.0.3",
  3761. "symfony/translation": "^7.0.3"
  3762. },
  3763. "suggest": {
  3764. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3765. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3766. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3767. "ext-apcu": "Required to use the APC cache driver.",
  3768. "ext-fileinfo": "Required to use the Filesystem class.",
  3769. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3770. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3771. "ext-memcached": "Required to use the memcache cache driver.",
  3772. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3773. "ext-pdo": "Required to use all database features.",
  3774. "ext-posix": "Required to use all features of the queue worker.",
  3775. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3776. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3777. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3778. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3779. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3780. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3781. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3782. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3783. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3784. "mockery/mockery": "Required to use mocking (^1.6).",
  3785. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3786. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3787. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  3788. "predis/predis": "Required to use the predis connector (^2.3).",
  3789. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3790. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3791. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3792. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3793. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3794. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3795. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3796. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3797. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "11.x-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "files": [
  3807. "src/Illuminate/Collections/functions.php",
  3808. "src/Illuminate/Collections/helpers.php",
  3809. "src/Illuminate/Events/functions.php",
  3810. "src/Illuminate/Filesystem/functions.php",
  3811. "src/Illuminate/Foundation/helpers.php",
  3812. "src/Illuminate/Log/functions.php",
  3813. "src/Illuminate/Support/functions.php",
  3814. "src/Illuminate/Support/helpers.php"
  3815. ],
  3816. "psr-4": {
  3817. "Illuminate\\": "src/Illuminate/",
  3818. "Illuminate\\Support\\": [
  3819. "src/Illuminate/Macroable/",
  3820. "src/Illuminate/Collections/",
  3821. "src/Illuminate/Conditionable/"
  3822. ]
  3823. }
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "MIT"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "Taylor Otwell",
  3832. "email": "taylor@laravel.com"
  3833. }
  3834. ],
  3835. "description": "The Laravel Framework.",
  3836. "homepage": "https://laravel.com",
  3837. "keywords": [
  3838. "framework",
  3839. "laravel"
  3840. ],
  3841. "support": {
  3842. "issues": "https://github.com/laravel/framework/issues",
  3843. "source": "https://github.com/laravel/framework"
  3844. },
  3845. "time": "2025-03-12T14:34:30+00:00"
  3846. },
  3847. {
  3848. "name": "laravel/octane",
  3849. "version": "v2.8.2",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/laravel/octane.git",
  3853. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/laravel/octane/zipball/74fef270e9f7d2dfbfd8f272de81aac839942c29",
  3858. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "laminas/laminas-diactoros": "^3.0",
  3863. "laravel/framework": "^10.10.1|^11.0|^12.0",
  3864. "laravel/prompts": "^0.1.24|^0.2.0|^0.3.0",
  3865. "laravel/serializable-closure": "^1.3|^2.0",
  3866. "nesbot/carbon": "^2.66.0|^3.0",
  3867. "php": "^8.1.0",
  3868. "symfony/console": "^6.0|^7.0",
  3869. "symfony/psr-http-message-bridge": "^2.2.0|^6.4|^7.0"
  3870. },
  3871. "conflict": {
  3872. "spiral/roadrunner": "<2023.1.0",
  3873. "spiral/roadrunner-cli": "<2.6.0",
  3874. "spiral/roadrunner-http": "<3.3.0"
  3875. },
  3876. "require-dev": {
  3877. "guzzlehttp/guzzle": "^7.6.1",
  3878. "inertiajs/inertia-laravel": "^1.3.2|^2.0",
  3879. "laravel/scout": "^10.2.1",
  3880. "laravel/socialite": "^5.6.1",
  3881. "livewire/livewire": "^2.12.3|^3.0",
  3882. "mockery/mockery": "^1.5.1",
  3883. "nunomaduro/collision": "^6.4.0|^7.5.2|^8.0",
  3884. "orchestra/testbench": "^8.21|^9.0|^10.0",
  3885. "phpstan/phpstan": "^2.1.7",
  3886. "phpunit/phpunit": "^10.4|^11.5",
  3887. "spiral/roadrunner-cli": "^2.6.0",
  3888. "spiral/roadrunner-http": "^3.3.0"
  3889. },
  3890. "bin": [
  3891. "bin/roadrunner-worker",
  3892. "bin/swoole-server"
  3893. ],
  3894. "type": "library",
  3895. "extra": {
  3896. "laravel": {
  3897. "aliases": {
  3898. "Octane": "Laravel\\Octane\\Facades\\Octane"
  3899. },
  3900. "providers": [
  3901. "Laravel\\Octane\\OctaneServiceProvider"
  3902. ]
  3903. },
  3904. "branch-alias": {
  3905. "dev-master": "2.x-dev"
  3906. }
  3907. },
  3908. "autoload": {
  3909. "psr-4": {
  3910. "Laravel\\Octane\\": "src"
  3911. }
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "Taylor Otwell",
  3920. "email": "taylor@laravel.com"
  3921. }
  3922. ],
  3923. "description": "Supercharge your Laravel application's performance.",
  3924. "keywords": [
  3925. "frankenphp",
  3926. "laravel",
  3927. "octane",
  3928. "roadrunner",
  3929. "swoole"
  3930. ],
  3931. "support": {
  3932. "issues": "https://github.com/laravel/octane/issues",
  3933. "source": "https://github.com/laravel/octane"
  3934. },
  3935. "time": "2025-03-12T14:26:35+00:00"
  3936. },
  3937. {
  3938. "name": "laravel/prompts",
  3939. "version": "v0.3.5",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/laravel/prompts.git",
  3943. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  3948. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "composer-runtime-api": "^2.2",
  3953. "ext-mbstring": "*",
  3954. "php": "^8.1",
  3955. "symfony/console": "^6.2|^7.0"
  3956. },
  3957. "conflict": {
  3958. "illuminate/console": ">=10.17.0 <10.25.0",
  3959. "laravel/framework": ">=10.17.0 <10.25.0"
  3960. },
  3961. "require-dev": {
  3962. "illuminate/collections": "^10.0|^11.0|^12.0",
  3963. "mockery/mockery": "^1.5",
  3964. "pestphp/pest": "^2.3|^3.4",
  3965. "phpstan/phpstan": "^1.11",
  3966. "phpstan/phpstan-mockery": "^1.1"
  3967. },
  3968. "suggest": {
  3969. "ext-pcntl": "Required for the spinner to be animated."
  3970. },
  3971. "type": "library",
  3972. "extra": {
  3973. "branch-alias": {
  3974. "dev-main": "0.3.x-dev"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "files": [
  3979. "src/helpers.php"
  3980. ],
  3981. "psr-4": {
  3982. "Laravel\\Prompts\\": "src/"
  3983. }
  3984. },
  3985. "notification-url": "https://packagist.org/downloads/",
  3986. "license": [
  3987. "MIT"
  3988. ],
  3989. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3990. "support": {
  3991. "issues": "https://github.com/laravel/prompts/issues",
  3992. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  3993. },
  3994. "time": "2025-02-11T13:34:40+00:00"
  3995. },
  3996. {
  3997. "name": "laravel/sanctum",
  3998. "version": "v4.0.8",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/laravel/sanctum.git",
  4002. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  4007. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "ext-json": "*",
  4012. "illuminate/console": "^11.0|^12.0",
  4013. "illuminate/contracts": "^11.0|^12.0",
  4014. "illuminate/database": "^11.0|^12.0",
  4015. "illuminate/support": "^11.0|^12.0",
  4016. "php": "^8.2",
  4017. "symfony/console": "^7.0"
  4018. },
  4019. "require-dev": {
  4020. "mockery/mockery": "^1.6",
  4021. "orchestra/testbench": "^9.0|^10.0",
  4022. "phpstan/phpstan": "^1.10",
  4023. "phpunit/phpunit": "^11.3"
  4024. },
  4025. "type": "library",
  4026. "extra": {
  4027. "laravel": {
  4028. "providers": [
  4029. "Laravel\\Sanctum\\SanctumServiceProvider"
  4030. ]
  4031. }
  4032. },
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Laravel\\Sanctum\\": "src/"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "Taylor Otwell",
  4045. "email": "taylor@laravel.com"
  4046. }
  4047. ],
  4048. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  4049. "keywords": [
  4050. "auth",
  4051. "laravel",
  4052. "sanctum"
  4053. ],
  4054. "support": {
  4055. "issues": "https://github.com/laravel/sanctum/issues",
  4056. "source": "https://github.com/laravel/sanctum"
  4057. },
  4058. "time": "2025-01-26T19:34:36+00:00"
  4059. },
  4060. {
  4061. "name": "laravel/serializable-closure",
  4062. "version": "v2.0.3",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/laravel/serializable-closure.git",
  4066. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f",
  4071. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f",
  4072. "shasum": ""
  4073. },
  4074. "require": {
  4075. "php": "^8.1"
  4076. },
  4077. "require-dev": {
  4078. "illuminate/support": "^10.0|^11.0|^12.0",
  4079. "nesbot/carbon": "^2.67|^3.0",
  4080. "pestphp/pest": "^2.36|^3.0",
  4081. "phpstan/phpstan": "^2.0",
  4082. "symfony/var-dumper": "^6.2.0|^7.0.0"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "2.x-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Laravel\\SerializableClosure\\": "src/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Taylor Otwell",
  4102. "email": "taylor@laravel.com"
  4103. },
  4104. {
  4105. "name": "Nuno Maduro",
  4106. "email": "nuno@laravel.com"
  4107. }
  4108. ],
  4109. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  4110. "keywords": [
  4111. "closure",
  4112. "laravel",
  4113. "serializable"
  4114. ],
  4115. "support": {
  4116. "issues": "https://github.com/laravel/serializable-closure/issues",
  4117. "source": "https://github.com/laravel/serializable-closure"
  4118. },
  4119. "time": "2025-02-11T15:03:05+00:00"
  4120. },
  4121. {
  4122. "name": "laravel/socialite",
  4123. "version": "v5.18.0",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/laravel/socialite.git",
  4127. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/laravel/socialite/zipball/7809dc71250e074cd42970f0f803f2cddc04c5de",
  4132. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de",
  4133. "shasum": ""
  4134. },
  4135. "require": {
  4136. "ext-json": "*",
  4137. "firebase/php-jwt": "^6.4",
  4138. "guzzlehttp/guzzle": "^6.0|^7.0",
  4139. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4140. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4141. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4142. "league/oauth1-client": "^1.11",
  4143. "php": "^7.2|^8.0",
  4144. "phpseclib/phpseclib": "^3.0"
  4145. },
  4146. "require-dev": {
  4147. "mockery/mockery": "^1.0",
  4148. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  4149. "phpstan/phpstan": "^1.10",
  4150. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  4151. },
  4152. "type": "library",
  4153. "extra": {
  4154. "laravel": {
  4155. "aliases": {
  4156. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  4157. },
  4158. "providers": [
  4159. "Laravel\\Socialite\\SocialiteServiceProvider"
  4160. ]
  4161. },
  4162. "branch-alias": {
  4163. "dev-master": "5.x-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Laravel\\Socialite\\": "src/"
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Taylor Otwell",
  4178. "email": "taylor@laravel.com"
  4179. }
  4180. ],
  4181. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  4182. "homepage": "https://laravel.com",
  4183. "keywords": [
  4184. "laravel",
  4185. "oauth"
  4186. ],
  4187. "support": {
  4188. "issues": "https://github.com/laravel/socialite/issues",
  4189. "source": "https://github.com/laravel/socialite"
  4190. },
  4191. "time": "2025-02-11T13:38:19+00:00"
  4192. },
  4193. {
  4194. "name": "laravel/tinker",
  4195. "version": "v2.10.1",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/laravel/tinker.git",
  4199. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  4204. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4209. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4210. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4211. "php": "^7.2.5|^8.0",
  4212. "psy/psysh": "^0.11.1|^0.12.0",
  4213. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  4214. },
  4215. "require-dev": {
  4216. "mockery/mockery": "~1.3.3|^1.4.2",
  4217. "phpstan/phpstan": "^1.10",
  4218. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  4219. },
  4220. "suggest": {
  4221. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  4222. },
  4223. "type": "library",
  4224. "extra": {
  4225. "laravel": {
  4226. "providers": [
  4227. "Laravel\\Tinker\\TinkerServiceProvider"
  4228. ]
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Laravel\\Tinker\\": "src/"
  4234. }
  4235. },
  4236. "notification-url": "https://packagist.org/downloads/",
  4237. "license": [
  4238. "MIT"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "Taylor Otwell",
  4243. "email": "taylor@laravel.com"
  4244. }
  4245. ],
  4246. "description": "Powerful REPL for the Laravel framework.",
  4247. "keywords": [
  4248. "REPL",
  4249. "Tinker",
  4250. "laravel",
  4251. "psysh"
  4252. ],
  4253. "support": {
  4254. "issues": "https://github.com/laravel/tinker/issues",
  4255. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  4256. },
  4257. "time": "2025-01-27T14:24:01+00:00"
  4258. },
  4259. {
  4260. "name": "laravel/ui",
  4261. "version": "v4.6.1",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/laravel/ui.git",
  4265. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  4270. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  4271. "shasum": ""
  4272. },
  4273. "require": {
  4274. "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
  4275. "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
  4276. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  4277. "illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
  4278. "php": "^8.0",
  4279. "symfony/console": "^6.0|^7.0"
  4280. },
  4281. "require-dev": {
  4282. "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
  4283. "phpunit/phpunit": "^9.3|^10.4|^11.5"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "laravel": {
  4288. "providers": [
  4289. "Laravel\\Ui\\UiServiceProvider"
  4290. ]
  4291. },
  4292. "branch-alias": {
  4293. "dev-master": "4.x-dev"
  4294. }
  4295. },
  4296. "autoload": {
  4297. "psr-4": {
  4298. "Laravel\\Ui\\": "src/",
  4299. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  4300. }
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "Taylor Otwell",
  4309. "email": "taylor@laravel.com"
  4310. }
  4311. ],
  4312. "description": "Laravel UI utilities and presets.",
  4313. "keywords": [
  4314. "laravel",
  4315. "ui"
  4316. ],
  4317. "support": {
  4318. "source": "https://github.com/laravel/ui/tree/v4.6.1"
  4319. },
  4320. "time": "2025-01-28T15:15:29+00:00"
  4321. },
  4322. {
  4323. "name": "league/commonmark",
  4324. "version": "2.7.0",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/thephpleague/commonmark.git",
  4328. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  4333. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "ext-mbstring": "*",
  4338. "league/config": "^1.1.1",
  4339. "php": "^7.4 || ^8.0",
  4340. "psr/event-dispatcher": "^1.0",
  4341. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  4342. "symfony/polyfill-php80": "^1.16"
  4343. },
  4344. "require-dev": {
  4345. "cebe/markdown": "^1.0",
  4346. "commonmark/cmark": "0.31.1",
  4347. "commonmark/commonmark.js": "0.31.1",
  4348. "composer/package-versions-deprecated": "^1.8",
  4349. "embed/embed": "^4.4",
  4350. "erusev/parsedown": "^1.0",
  4351. "ext-json": "*",
  4352. "github/gfm": "0.29.0",
  4353. "michelf/php-markdown": "^1.4 || ^2.0",
  4354. "nyholm/psr7": "^1.5",
  4355. "phpstan/phpstan": "^1.8.2",
  4356. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  4357. "scrutinizer/ocular": "^1.8.1",
  4358. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  4359. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  4360. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  4361. "unleashedtech/php-coding-standard": "^3.1.1",
  4362. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  4363. },
  4364. "suggest": {
  4365. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  4366. },
  4367. "type": "library",
  4368. "extra": {
  4369. "branch-alias": {
  4370. "dev-main": "2.8-dev"
  4371. }
  4372. },
  4373. "autoload": {
  4374. "psr-4": {
  4375. "League\\CommonMark\\": "src"
  4376. }
  4377. },
  4378. "notification-url": "https://packagist.org/downloads/",
  4379. "license": [
  4380. "BSD-3-Clause"
  4381. ],
  4382. "authors": [
  4383. {
  4384. "name": "Colin O'Dell",
  4385. "email": "colinodell@gmail.com",
  4386. "homepage": "https://www.colinodell.com",
  4387. "role": "Lead Developer"
  4388. }
  4389. ],
  4390. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  4391. "homepage": "https://commonmark.thephpleague.com",
  4392. "keywords": [
  4393. "commonmark",
  4394. "flavored",
  4395. "gfm",
  4396. "github",
  4397. "github-flavored",
  4398. "markdown",
  4399. "md",
  4400. "parser"
  4401. ],
  4402. "support": {
  4403. "docs": "https://commonmark.thephpleague.com/",
  4404. "forum": "https://github.com/thephpleague/commonmark/discussions",
  4405. "issues": "https://github.com/thephpleague/commonmark/issues",
  4406. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  4407. "source": "https://github.com/thephpleague/commonmark"
  4408. },
  4409. "funding": [
  4410. {
  4411. "url": "https://www.colinodell.com/sponsor",
  4412. "type": "custom"
  4413. },
  4414. {
  4415. "url": "https://www.paypal.me/colinpodell/10.00",
  4416. "type": "custom"
  4417. },
  4418. {
  4419. "url": "https://github.com/colinodell",
  4420. "type": "github"
  4421. },
  4422. {
  4423. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  4424. "type": "tidelift"
  4425. }
  4426. ],
  4427. "time": "2025-05-05T12:20:28+00:00"
  4428. },
  4429. {
  4430. "name": "league/config",
  4431. "version": "v1.2.0",
  4432. "source": {
  4433. "type": "git",
  4434. "url": "https://github.com/thephpleague/config.git",
  4435. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  4436. },
  4437. "dist": {
  4438. "type": "zip",
  4439. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  4440. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  4441. "shasum": ""
  4442. },
  4443. "require": {
  4444. "dflydev/dot-access-data": "^3.0.1",
  4445. "nette/schema": "^1.2",
  4446. "php": "^7.4 || ^8.0"
  4447. },
  4448. "require-dev": {
  4449. "phpstan/phpstan": "^1.8.2",
  4450. "phpunit/phpunit": "^9.5.5",
  4451. "scrutinizer/ocular": "^1.8.1",
  4452. "unleashedtech/php-coding-standard": "^3.1",
  4453. "vimeo/psalm": "^4.7.3"
  4454. },
  4455. "type": "library",
  4456. "extra": {
  4457. "branch-alias": {
  4458. "dev-main": "1.2-dev"
  4459. }
  4460. },
  4461. "autoload": {
  4462. "psr-4": {
  4463. "League\\Config\\": "src"
  4464. }
  4465. },
  4466. "notification-url": "https://packagist.org/downloads/",
  4467. "license": [
  4468. "BSD-3-Clause"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "Colin O'Dell",
  4473. "email": "colinodell@gmail.com",
  4474. "homepage": "https://www.colinodell.com",
  4475. "role": "Lead Developer"
  4476. }
  4477. ],
  4478. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  4479. "homepage": "https://config.thephpleague.com",
  4480. "keywords": [
  4481. "array",
  4482. "config",
  4483. "configuration",
  4484. "dot",
  4485. "dot-access",
  4486. "nested",
  4487. "schema"
  4488. ],
  4489. "support": {
  4490. "docs": "https://config.thephpleague.com/",
  4491. "issues": "https://github.com/thephpleague/config/issues",
  4492. "rss": "https://github.com/thephpleague/config/releases.atom",
  4493. "source": "https://github.com/thephpleague/config"
  4494. },
  4495. "funding": [
  4496. {
  4497. "url": "https://www.colinodell.com/sponsor",
  4498. "type": "custom"
  4499. },
  4500. {
  4501. "url": "https://www.paypal.me/colinpodell/10.00",
  4502. "type": "custom"
  4503. },
  4504. {
  4505. "url": "https://github.com/colinodell",
  4506. "type": "github"
  4507. }
  4508. ],
  4509. "time": "2022-12-11T20:36:23+00:00"
  4510. },
  4511. {
  4512. "name": "league/flysystem",
  4513. "version": "3.29.1",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/thephpleague/flysystem.git",
  4517. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  4522. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "league/flysystem-local": "^3.0.0",
  4527. "league/mime-type-detection": "^1.0.0",
  4528. "php": "^8.0.2"
  4529. },
  4530. "conflict": {
  4531. "async-aws/core": "<1.19.0",
  4532. "async-aws/s3": "<1.14.0",
  4533. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  4534. "guzzlehttp/guzzle": "<7.0",
  4535. "guzzlehttp/ringphp": "<1.1.1",
  4536. "phpseclib/phpseclib": "3.0.15",
  4537. "symfony/http-client": "<5.2"
  4538. },
  4539. "require-dev": {
  4540. "async-aws/s3": "^1.5 || ^2.0",
  4541. "async-aws/simple-s3": "^1.1 || ^2.0",
  4542. "aws/aws-sdk-php": "^3.295.10",
  4543. "composer/semver": "^3.0",
  4544. "ext-fileinfo": "*",
  4545. "ext-ftp": "*",
  4546. "ext-mongodb": "^1.3",
  4547. "ext-zip": "*",
  4548. "friendsofphp/php-cs-fixer": "^3.5",
  4549. "google/cloud-storage": "^1.23",
  4550. "guzzlehttp/psr7": "^2.6",
  4551. "microsoft/azure-storage-blob": "^1.1",
  4552. "mongodb/mongodb": "^1.2",
  4553. "phpseclib/phpseclib": "^3.0.36",
  4554. "phpstan/phpstan": "^1.10",
  4555. "phpunit/phpunit": "^9.5.11|^10.0",
  4556. "sabre/dav": "^4.6.0"
  4557. },
  4558. "type": "library",
  4559. "autoload": {
  4560. "psr-4": {
  4561. "League\\Flysystem\\": "src"
  4562. }
  4563. },
  4564. "notification-url": "https://packagist.org/downloads/",
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "authors": [
  4569. {
  4570. "name": "Frank de Jonge",
  4571. "email": "info@frankdejonge.nl"
  4572. }
  4573. ],
  4574. "description": "File storage abstraction for PHP",
  4575. "keywords": [
  4576. "WebDAV",
  4577. "aws",
  4578. "cloud",
  4579. "file",
  4580. "files",
  4581. "filesystem",
  4582. "filesystems",
  4583. "ftp",
  4584. "s3",
  4585. "sftp",
  4586. "storage"
  4587. ],
  4588. "support": {
  4589. "issues": "https://github.com/thephpleague/flysystem/issues",
  4590. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  4591. },
  4592. "time": "2024-10-08T08:58:34+00:00"
  4593. },
  4594. {
  4595. "name": "league/flysystem-local",
  4596. "version": "3.29.0",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/thephpleague/flysystem-local.git",
  4600. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4605. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4606. "shasum": ""
  4607. },
  4608. "require": {
  4609. "ext-fileinfo": "*",
  4610. "league/flysystem": "^3.0.0",
  4611. "league/mime-type-detection": "^1.0.0",
  4612. "php": "^8.0.2"
  4613. },
  4614. "type": "library",
  4615. "autoload": {
  4616. "psr-4": {
  4617. "League\\Flysystem\\Local\\": ""
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Frank de Jonge",
  4627. "email": "info@frankdejonge.nl"
  4628. }
  4629. ],
  4630. "description": "Local filesystem adapter for Flysystem.",
  4631. "keywords": [
  4632. "Flysystem",
  4633. "file",
  4634. "files",
  4635. "filesystem",
  4636. "local"
  4637. ],
  4638. "support": {
  4639. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  4640. },
  4641. "time": "2024-08-09T21:24:39+00:00"
  4642. },
  4643. {
  4644. "name": "league/mime-type-detection",
  4645. "version": "1.16.0",
  4646. "source": {
  4647. "type": "git",
  4648. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4649. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4650. },
  4651. "dist": {
  4652. "type": "zip",
  4653. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4654. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4655. "shasum": ""
  4656. },
  4657. "require": {
  4658. "ext-fileinfo": "*",
  4659. "php": "^7.4 || ^8.0"
  4660. },
  4661. "require-dev": {
  4662. "friendsofphp/php-cs-fixer": "^3.2",
  4663. "phpstan/phpstan": "^0.12.68",
  4664. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4665. },
  4666. "type": "library",
  4667. "autoload": {
  4668. "psr-4": {
  4669. "League\\MimeTypeDetection\\": "src"
  4670. }
  4671. },
  4672. "notification-url": "https://packagist.org/downloads/",
  4673. "license": [
  4674. "MIT"
  4675. ],
  4676. "authors": [
  4677. {
  4678. "name": "Frank de Jonge",
  4679. "email": "info@frankdejonge.nl"
  4680. }
  4681. ],
  4682. "description": "Mime-type detection for Flysystem",
  4683. "support": {
  4684. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4685. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4686. },
  4687. "funding": [
  4688. {
  4689. "url": "https://github.com/frankdejonge",
  4690. "type": "github"
  4691. },
  4692. {
  4693. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4694. "type": "tidelift"
  4695. }
  4696. ],
  4697. "time": "2024-09-21T08:32:55+00:00"
  4698. },
  4699. {
  4700. "name": "league/oauth1-client",
  4701. "version": "v1.11.0",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/thephpleague/oauth1-client.git",
  4705. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4710. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "ext-json": "*",
  4715. "ext-openssl": "*",
  4716. "guzzlehttp/guzzle": "^6.0|^7.0",
  4717. "guzzlehttp/psr7": "^1.7|^2.0",
  4718. "php": ">=7.1||>=8.0"
  4719. },
  4720. "require-dev": {
  4721. "ext-simplexml": "*",
  4722. "friendsofphp/php-cs-fixer": "^2.17",
  4723. "mockery/mockery": "^1.3.3",
  4724. "phpstan/phpstan": "^0.12.42",
  4725. "phpunit/phpunit": "^7.5||9.5"
  4726. },
  4727. "suggest": {
  4728. "ext-simplexml": "For decoding XML-based responses."
  4729. },
  4730. "type": "library",
  4731. "extra": {
  4732. "branch-alias": {
  4733. "dev-master": "1.0-dev",
  4734. "dev-develop": "2.0-dev"
  4735. }
  4736. },
  4737. "autoload": {
  4738. "psr-4": {
  4739. "League\\OAuth1\\Client\\": "src/"
  4740. }
  4741. },
  4742. "notification-url": "https://packagist.org/downloads/",
  4743. "license": [
  4744. "MIT"
  4745. ],
  4746. "authors": [
  4747. {
  4748. "name": "Ben Corlett",
  4749. "email": "bencorlett@me.com",
  4750. "homepage": "http://www.webcomm.com.au",
  4751. "role": "Developer"
  4752. }
  4753. ],
  4754. "description": "OAuth 1.0 Client Library",
  4755. "keywords": [
  4756. "Authentication",
  4757. "SSO",
  4758. "authorization",
  4759. "bitbucket",
  4760. "identity",
  4761. "idp",
  4762. "oauth",
  4763. "oauth1",
  4764. "single sign on",
  4765. "trello",
  4766. "tumblr",
  4767. "twitter"
  4768. ],
  4769. "support": {
  4770. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4771. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4772. },
  4773. "time": "2024-12-10T19:59:05+00:00"
  4774. },
  4775. {
  4776. "name": "league/uri",
  4777. "version": "7.5.1",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/thephpleague/uri.git",
  4781. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4786. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "league/uri-interfaces": "^7.5",
  4791. "php": "^8.1"
  4792. },
  4793. "conflict": {
  4794. "league/uri-schemes": "^1.0"
  4795. },
  4796. "suggest": {
  4797. "ext-bcmath": "to improve IPV4 host parsing",
  4798. "ext-fileinfo": "to create Data URI from file contennts",
  4799. "ext-gmp": "to improve IPV4 host parsing",
  4800. "ext-intl": "to handle IDN host with the best performance",
  4801. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4802. "league/uri-components": "Needed to easily manipulate URI objects components",
  4803. "php-64bit": "to improve IPV4 host parsing",
  4804. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4805. },
  4806. "type": "library",
  4807. "extra": {
  4808. "branch-alias": {
  4809. "dev-master": "7.x-dev"
  4810. }
  4811. },
  4812. "autoload": {
  4813. "psr-4": {
  4814. "League\\Uri\\": ""
  4815. }
  4816. },
  4817. "notification-url": "https://packagist.org/downloads/",
  4818. "license": [
  4819. "MIT"
  4820. ],
  4821. "authors": [
  4822. {
  4823. "name": "Ignace Nyamagana Butera",
  4824. "email": "nyamsprod@gmail.com",
  4825. "homepage": "https://nyamsprod.com"
  4826. }
  4827. ],
  4828. "description": "URI manipulation library",
  4829. "homepage": "https://uri.thephpleague.com",
  4830. "keywords": [
  4831. "data-uri",
  4832. "file-uri",
  4833. "ftp",
  4834. "hostname",
  4835. "http",
  4836. "https",
  4837. "middleware",
  4838. "parse_str",
  4839. "parse_url",
  4840. "psr-7",
  4841. "query-string",
  4842. "querystring",
  4843. "rfc3986",
  4844. "rfc3987",
  4845. "rfc6570",
  4846. "uri",
  4847. "uri-template",
  4848. "url",
  4849. "ws"
  4850. ],
  4851. "support": {
  4852. "docs": "https://uri.thephpleague.com",
  4853. "forum": "https://thephpleague.slack.com",
  4854. "issues": "https://github.com/thephpleague/uri-src/issues",
  4855. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4856. },
  4857. "funding": [
  4858. {
  4859. "url": "https://github.com/sponsors/nyamsprod",
  4860. "type": "github"
  4861. }
  4862. ],
  4863. "time": "2024-12-08T08:40:02+00:00"
  4864. },
  4865. {
  4866. "name": "league/uri-interfaces",
  4867. "version": "7.5.0",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4871. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4876. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4877. "shasum": ""
  4878. },
  4879. "require": {
  4880. "ext-filter": "*",
  4881. "php": "^8.1",
  4882. "psr/http-factory": "^1",
  4883. "psr/http-message": "^1.1 || ^2.0"
  4884. },
  4885. "suggest": {
  4886. "ext-bcmath": "to improve IPV4 host parsing",
  4887. "ext-gmp": "to improve IPV4 host parsing",
  4888. "ext-intl": "to handle IDN host with the best performance",
  4889. "php-64bit": "to improve IPV4 host parsing",
  4890. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4891. },
  4892. "type": "library",
  4893. "extra": {
  4894. "branch-alias": {
  4895. "dev-master": "7.x-dev"
  4896. }
  4897. },
  4898. "autoload": {
  4899. "psr-4": {
  4900. "League\\Uri\\": ""
  4901. }
  4902. },
  4903. "notification-url": "https://packagist.org/downloads/",
  4904. "license": [
  4905. "MIT"
  4906. ],
  4907. "authors": [
  4908. {
  4909. "name": "Ignace Nyamagana Butera",
  4910. "email": "nyamsprod@gmail.com",
  4911. "homepage": "https://nyamsprod.com"
  4912. }
  4913. ],
  4914. "description": "Common interfaces and classes for URI representation and interaction",
  4915. "homepage": "https://uri.thephpleague.com",
  4916. "keywords": [
  4917. "data-uri",
  4918. "file-uri",
  4919. "ftp",
  4920. "hostname",
  4921. "http",
  4922. "https",
  4923. "parse_str",
  4924. "parse_url",
  4925. "psr-7",
  4926. "query-string",
  4927. "querystring",
  4928. "rfc3986",
  4929. "rfc3987",
  4930. "rfc6570",
  4931. "uri",
  4932. "url",
  4933. "ws"
  4934. ],
  4935. "support": {
  4936. "docs": "https://uri.thephpleague.com",
  4937. "forum": "https://thephpleague.slack.com",
  4938. "issues": "https://github.com/thephpleague/uri-src/issues",
  4939. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4940. },
  4941. "funding": [
  4942. {
  4943. "url": "https://github.com/sponsors/nyamsprod",
  4944. "type": "github"
  4945. }
  4946. ],
  4947. "time": "2024-12-08T08:18:47+00:00"
  4948. },
  4949. {
  4950. "name": "maatwebsite/excel",
  4951. "version": "3.1.64",
  4952. "source": {
  4953. "type": "git",
  4954. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  4955. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79"
  4956. },
  4957. "dist": {
  4958. "type": "zip",
  4959. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79",
  4960. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79",
  4961. "shasum": ""
  4962. },
  4963. "require": {
  4964. "composer/semver": "^3.3",
  4965. "ext-json": "*",
  4966. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
  4967. "php": "^7.0||^8.0",
  4968. "phpoffice/phpspreadsheet": "^1.29.9",
  4969. "psr/simple-cache": "^1.0||^2.0||^3.0"
  4970. },
  4971. "require-dev": {
  4972. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  4973. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
  4974. "predis/predis": "^1.1"
  4975. },
  4976. "type": "library",
  4977. "extra": {
  4978. "laravel": {
  4979. "aliases": {
  4980. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  4981. },
  4982. "providers": [
  4983. "Maatwebsite\\Excel\\ExcelServiceProvider"
  4984. ]
  4985. }
  4986. },
  4987. "autoload": {
  4988. "psr-4": {
  4989. "Maatwebsite\\Excel\\": "src/"
  4990. }
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "MIT"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "Patrick Brouwers",
  4999. "email": "patrick@spartner.nl"
  5000. }
  5001. ],
  5002. "description": "Supercharged Excel exports and imports in Laravel",
  5003. "keywords": [
  5004. "PHPExcel",
  5005. "batch",
  5006. "csv",
  5007. "excel",
  5008. "export",
  5009. "import",
  5010. "laravel",
  5011. "php",
  5012. "phpspreadsheet"
  5013. ],
  5014. "support": {
  5015. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  5016. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64"
  5017. },
  5018. "funding": [
  5019. {
  5020. "url": "https://laravel-excel.com/commercial-support",
  5021. "type": "custom"
  5022. },
  5023. {
  5024. "url": "https://github.com/patrickbrouwers",
  5025. "type": "github"
  5026. }
  5027. ],
  5028. "time": "2025-02-24T11:12:50+00:00"
  5029. },
  5030. {
  5031. "name": "maennchen/zipstream-php",
  5032. "version": "3.1.2",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  5036. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  5041. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  5042. "shasum": ""
  5043. },
  5044. "require": {
  5045. "ext-mbstring": "*",
  5046. "ext-zlib": "*",
  5047. "php-64bit": "^8.2"
  5048. },
  5049. "require-dev": {
  5050. "brianium/paratest": "^7.7",
  5051. "ext-zip": "*",
  5052. "friendsofphp/php-cs-fixer": "^3.16",
  5053. "guzzlehttp/guzzle": "^7.5",
  5054. "mikey179/vfsstream": "^1.6",
  5055. "php-coveralls/php-coveralls": "^2.5",
  5056. "phpunit/phpunit": "^11.0",
  5057. "vimeo/psalm": "^6.0"
  5058. },
  5059. "suggest": {
  5060. "guzzlehttp/psr7": "^2.4",
  5061. "psr/http-message": "^2.0"
  5062. },
  5063. "type": "library",
  5064. "autoload": {
  5065. "psr-4": {
  5066. "ZipStream\\": "src/"
  5067. }
  5068. },
  5069. "notification-url": "https://packagist.org/downloads/",
  5070. "license": [
  5071. "MIT"
  5072. ],
  5073. "authors": [
  5074. {
  5075. "name": "Paul Duncan",
  5076. "email": "pabs@pablotron.org"
  5077. },
  5078. {
  5079. "name": "Jonatan Männchen",
  5080. "email": "jonatan@maennchen.ch"
  5081. },
  5082. {
  5083. "name": "Jesse Donat",
  5084. "email": "donatj@gmail.com"
  5085. },
  5086. {
  5087. "name": "András Kolesár",
  5088. "email": "kolesar@kolesar.hu"
  5089. }
  5090. ],
  5091. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  5092. "keywords": [
  5093. "stream",
  5094. "zip"
  5095. ],
  5096. "support": {
  5097. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  5098. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  5099. },
  5100. "funding": [
  5101. {
  5102. "url": "https://github.com/maennchen",
  5103. "type": "github"
  5104. }
  5105. ],
  5106. "time": "2025-01-27T12:07:53+00:00"
  5107. },
  5108. {
  5109. "name": "markbaker/complex",
  5110. "version": "3.0.2",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/MarkBaker/PHPComplex.git",
  5114. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  5119. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "php": "^7.2 || ^8.0"
  5124. },
  5125. "require-dev": {
  5126. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5127. "phpcompatibility/php-compatibility": "^9.3",
  5128. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  5129. "squizlabs/php_codesniffer": "^3.7"
  5130. },
  5131. "type": "library",
  5132. "autoload": {
  5133. "psr-4": {
  5134. "Complex\\": "classes/src/"
  5135. }
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "MIT"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Mark Baker",
  5144. "email": "mark@lange.demon.co.uk"
  5145. }
  5146. ],
  5147. "description": "PHP Class for working with complex numbers",
  5148. "homepage": "https://github.com/MarkBaker/PHPComplex",
  5149. "keywords": [
  5150. "complex",
  5151. "mathematics"
  5152. ],
  5153. "support": {
  5154. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  5155. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  5156. },
  5157. "time": "2022-12-06T16:21:08+00:00"
  5158. },
  5159. {
  5160. "name": "markbaker/matrix",
  5161. "version": "3.0.1",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  5165. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  5170. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": "^7.1 || ^8.0"
  5175. },
  5176. "require-dev": {
  5177. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5178. "phpcompatibility/php-compatibility": "^9.3",
  5179. "phpdocumentor/phpdocumentor": "2.*",
  5180. "phploc/phploc": "^4.0",
  5181. "phpmd/phpmd": "2.*",
  5182. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  5183. "sebastian/phpcpd": "^4.0",
  5184. "squizlabs/php_codesniffer": "^3.7"
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Matrix\\": "classes/src/"
  5190. }
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Mark Baker",
  5199. "email": "mark@demon-angel.eu"
  5200. }
  5201. ],
  5202. "description": "PHP Class for working with matrices",
  5203. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  5204. "keywords": [
  5205. "mathematics",
  5206. "matrix",
  5207. "vector"
  5208. ],
  5209. "support": {
  5210. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  5211. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  5212. },
  5213. "time": "2022-12-02T22:17:43+00:00"
  5214. },
  5215. {
  5216. "name": "masterminds/html5",
  5217. "version": "2.9.0",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/Masterminds/html5-php.git",
  5221. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  5226. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  5227. "shasum": ""
  5228. },
  5229. "require": {
  5230. "ext-dom": "*",
  5231. "php": ">=5.3.0"
  5232. },
  5233. "require-dev": {
  5234. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  5235. },
  5236. "type": "library",
  5237. "extra": {
  5238. "branch-alias": {
  5239. "dev-master": "2.7-dev"
  5240. }
  5241. },
  5242. "autoload": {
  5243. "psr-4": {
  5244. "Masterminds\\": "src"
  5245. }
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "authors": [
  5252. {
  5253. "name": "Matt Butcher",
  5254. "email": "technosophos@gmail.com"
  5255. },
  5256. {
  5257. "name": "Matt Farina",
  5258. "email": "matt@mattfarina.com"
  5259. },
  5260. {
  5261. "name": "Asmir Mustafic",
  5262. "email": "goetas@gmail.com"
  5263. }
  5264. ],
  5265. "description": "An HTML5 parser and serializer.",
  5266. "homepage": "http://masterminds.github.io/html5-php",
  5267. "keywords": [
  5268. "HTML5",
  5269. "dom",
  5270. "html",
  5271. "parser",
  5272. "querypath",
  5273. "serializer",
  5274. "xml"
  5275. ],
  5276. "support": {
  5277. "issues": "https://github.com/Masterminds/html5-php/issues",
  5278. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  5279. },
  5280. "time": "2024-03-31T07:05:07+00:00"
  5281. },
  5282. {
  5283. "name": "mobiledetect/mobiledetectlib",
  5284. "version": "4.8.09",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  5288. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  5293. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  5294. "shasum": ""
  5295. },
  5296. "require": {
  5297. "php": ">=8.0",
  5298. "psr/cache": "^3.0",
  5299. "psr/simple-cache": "^3"
  5300. },
  5301. "require-dev": {
  5302. "friendsofphp/php-cs-fixer": "^v3.65.0",
  5303. "phpbench/phpbench": "^1.2",
  5304. "phpstan/phpstan": "^1.12.x-dev",
  5305. "phpunit/phpunit": "^9.6.18",
  5306. "squizlabs/php_codesniffer": "^3.11.1"
  5307. },
  5308. "type": "library",
  5309. "autoload": {
  5310. "psr-4": {
  5311. "Detection\\": "src/"
  5312. }
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "MIT"
  5317. ],
  5318. "authors": [
  5319. {
  5320. "name": "Serban Ghita",
  5321. "email": "serbanghita@gmail.com",
  5322. "homepage": "http://mobiledetect.net",
  5323. "role": "Developer"
  5324. }
  5325. ],
  5326. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  5327. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  5328. "keywords": [
  5329. "detect mobile devices",
  5330. "mobile",
  5331. "mobile detect",
  5332. "mobile detector",
  5333. "php mobile detect"
  5334. ],
  5335. "support": {
  5336. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  5337. "source": "https://github.com/serbanghita/Mobile-Detect/tree/4.8.09"
  5338. },
  5339. "funding": [
  5340. {
  5341. "url": "https://github.com/serbanghita",
  5342. "type": "github"
  5343. }
  5344. ],
  5345. "time": "2024-12-10T15:32:06+00:00"
  5346. },
  5347. {
  5348. "name": "monolog/monolog",
  5349. "version": "3.8.1",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/Seldaek/monolog.git",
  5353. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5358. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5359. "shasum": ""
  5360. },
  5361. "require": {
  5362. "php": ">=8.1",
  5363. "psr/log": "^2.0 || ^3.0"
  5364. },
  5365. "provide": {
  5366. "psr/log-implementation": "3.0.0"
  5367. },
  5368. "require-dev": {
  5369. "aws/aws-sdk-php": "^3.0",
  5370. "doctrine/couchdb": "~1.0@dev",
  5371. "elasticsearch/elasticsearch": "^7 || ^8",
  5372. "ext-json": "*",
  5373. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5374. "guzzlehttp/guzzle": "^7.4.5",
  5375. "guzzlehttp/psr7": "^2.2",
  5376. "mongodb/mongodb": "^1.8",
  5377. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5378. "php-console/php-console": "^3.1.8",
  5379. "phpstan/phpstan": "^2",
  5380. "phpstan/phpstan-deprecation-rules": "^2",
  5381. "phpstan/phpstan-strict-rules": "^2",
  5382. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5383. "predis/predis": "^1.1 || ^2",
  5384. "rollbar/rollbar": "^4.0",
  5385. "ruflin/elastica": "^7 || ^8",
  5386. "symfony/mailer": "^5.4 || ^6",
  5387. "symfony/mime": "^5.4 || ^6"
  5388. },
  5389. "suggest": {
  5390. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5391. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5392. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5393. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5394. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5395. "ext-mbstring": "Allow to work properly with unicode symbols",
  5396. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5397. "ext-openssl": "Required to send log messages using SSL",
  5398. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5399. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5400. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5401. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5402. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5403. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5404. },
  5405. "type": "library",
  5406. "extra": {
  5407. "branch-alias": {
  5408. "dev-main": "3.x-dev"
  5409. }
  5410. },
  5411. "autoload": {
  5412. "psr-4": {
  5413. "Monolog\\": "src/Monolog"
  5414. }
  5415. },
  5416. "notification-url": "https://packagist.org/downloads/",
  5417. "license": [
  5418. "MIT"
  5419. ],
  5420. "authors": [
  5421. {
  5422. "name": "Jordi Boggiano",
  5423. "email": "j.boggiano@seld.be",
  5424. "homepage": "https://seld.be"
  5425. }
  5426. ],
  5427. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5428. "homepage": "https://github.com/Seldaek/monolog",
  5429. "keywords": [
  5430. "log",
  5431. "logging",
  5432. "psr-3"
  5433. ],
  5434. "support": {
  5435. "issues": "https://github.com/Seldaek/monolog/issues",
  5436. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5437. },
  5438. "funding": [
  5439. {
  5440. "url": "https://github.com/Seldaek",
  5441. "type": "github"
  5442. },
  5443. {
  5444. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5445. "type": "tidelift"
  5446. }
  5447. ],
  5448. "time": "2024-12-05T17:15:07+00:00"
  5449. },
  5450. {
  5451. "name": "mpdf/mpdf",
  5452. "version": "v8.2.5",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/mpdf/mpdf.git",
  5456. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f",
  5461. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f",
  5462. "shasum": ""
  5463. },
  5464. "require": {
  5465. "ext-gd": "*",
  5466. "ext-mbstring": "*",
  5467. "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
  5468. "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
  5469. "myclabs/deep-copy": "^1.7",
  5470. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5471. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  5472. "psr/http-message": "^1.0 || ^2.0",
  5473. "psr/log": "^1.0 || ^2.0 || ^3.0",
  5474. "setasign/fpdi": "^2.1"
  5475. },
  5476. "require-dev": {
  5477. "mockery/mockery": "^1.3.0",
  5478. "mpdf/qrcode": "^1.1.0",
  5479. "squizlabs/php_codesniffer": "^3.5.0",
  5480. "tracy/tracy": "~2.5",
  5481. "yoast/phpunit-polyfills": "^1.0"
  5482. },
  5483. "suggest": {
  5484. "ext-bcmath": "Needed for generation of some types of barcodes",
  5485. "ext-xml": "Needed mainly for SVG manipulation",
  5486. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  5487. },
  5488. "type": "library",
  5489. "autoload": {
  5490. "files": [
  5491. "src/functions.php"
  5492. ],
  5493. "psr-4": {
  5494. "Mpdf\\": "src/"
  5495. }
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "GPL-2.0-only"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Matěj Humpál",
  5504. "role": "Developer, maintainer"
  5505. },
  5506. {
  5507. "name": "Ian Back",
  5508. "role": "Developer (retired)"
  5509. }
  5510. ],
  5511. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  5512. "homepage": "https://mpdf.github.io",
  5513. "keywords": [
  5514. "pdf",
  5515. "php",
  5516. "utf-8"
  5517. ],
  5518. "support": {
  5519. "docs": "https://mpdf.github.io",
  5520. "issues": "https://github.com/mpdf/mpdf/issues",
  5521. "source": "https://github.com/mpdf/mpdf"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://www.paypal.me/mpdf",
  5526. "type": "custom"
  5527. }
  5528. ],
  5529. "time": "2024-11-18T15:30:42+00:00"
  5530. },
  5531. {
  5532. "name": "mpdf/psr-http-message-shim",
  5533. "version": "v2.0.1",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/mpdf/psr-http-message-shim.git",
  5537. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
  5542. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "psr/http-message": "^2.0"
  5547. },
  5548. "type": "library",
  5549. "autoload": {
  5550. "psr-4": {
  5551. "Mpdf\\PsrHttpMessageShim\\": "src/"
  5552. }
  5553. },
  5554. "notification-url": "https://packagist.org/downloads/",
  5555. "license": [
  5556. "MIT"
  5557. ],
  5558. "authors": [
  5559. {
  5560. "name": "Mark Dorison",
  5561. "email": "mark@chromatichq.com"
  5562. },
  5563. {
  5564. "name": "Kristofer Widholm",
  5565. "email": "kristofer@chromatichq.com"
  5566. },
  5567. {
  5568. "name": "Nigel Cunningham",
  5569. "email": "nigel.cunningham@technocrat.com.au"
  5570. }
  5571. ],
  5572. "description": "Shim to allow support of different psr/message versions.",
  5573. "support": {
  5574. "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
  5575. "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
  5576. },
  5577. "time": "2023-10-02T14:34:03+00:00"
  5578. },
  5579. {
  5580. "name": "mpdf/psr-log-aware-trait",
  5581. "version": "v3.0.0",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/mpdf/psr-log-aware-trait.git",
  5585. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
  5590. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "psr/log": "^3.0"
  5595. },
  5596. "type": "library",
  5597. "autoload": {
  5598. "psr-4": {
  5599. "Mpdf\\PsrLogAwareTrait\\": "src/"
  5600. }
  5601. },
  5602. "notification-url": "https://packagist.org/downloads/",
  5603. "license": [
  5604. "MIT"
  5605. ],
  5606. "authors": [
  5607. {
  5608. "name": "Mark Dorison",
  5609. "email": "mark@chromatichq.com"
  5610. },
  5611. {
  5612. "name": "Kristofer Widholm",
  5613. "email": "kristofer@chromatichq.com"
  5614. }
  5615. ],
  5616. "description": "Trait to allow support of different psr/log versions.",
  5617. "support": {
  5618. "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
  5619. "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
  5620. },
  5621. "time": "2023-05-03T06:19:36+00:00"
  5622. },
  5623. {
  5624. "name": "myclabs/deep-copy",
  5625. "version": "1.13.0",
  5626. "source": {
  5627. "type": "git",
  5628. "url": "https://github.com/myclabs/DeepCopy.git",
  5629. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  5630. },
  5631. "dist": {
  5632. "type": "zip",
  5633. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  5634. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  5635. "shasum": ""
  5636. },
  5637. "require": {
  5638. "php": "^7.1 || ^8.0"
  5639. },
  5640. "conflict": {
  5641. "doctrine/collections": "<1.6.8",
  5642. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  5643. },
  5644. "require-dev": {
  5645. "doctrine/collections": "^1.6.8",
  5646. "doctrine/common": "^2.13.3 || ^3.2.2",
  5647. "phpspec/prophecy": "^1.10",
  5648. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5649. },
  5650. "type": "library",
  5651. "autoload": {
  5652. "files": [
  5653. "src/DeepCopy/deep_copy.php"
  5654. ],
  5655. "psr-4": {
  5656. "DeepCopy\\": "src/DeepCopy/"
  5657. }
  5658. },
  5659. "notification-url": "https://packagist.org/downloads/",
  5660. "license": [
  5661. "MIT"
  5662. ],
  5663. "description": "Create deep copies (clones) of your objects",
  5664. "keywords": [
  5665. "clone",
  5666. "copy",
  5667. "duplicate",
  5668. "object",
  5669. "object graph"
  5670. ],
  5671. "support": {
  5672. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5673. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  5674. },
  5675. "funding": [
  5676. {
  5677. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5678. "type": "tidelift"
  5679. }
  5680. ],
  5681. "time": "2025-02-12T12:17:51+00:00"
  5682. },
  5683. {
  5684. "name": "nesbot/carbon",
  5685. "version": "2.73.0",
  5686. "source": {
  5687. "type": "git",
  5688. "url": "https://github.com/CarbonPHP/carbon.git",
  5689. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5690. },
  5691. "dist": {
  5692. "type": "zip",
  5693. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5694. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5695. "shasum": ""
  5696. },
  5697. "require": {
  5698. "carbonphp/carbon-doctrine-types": "*",
  5699. "ext-json": "*",
  5700. "php": "^7.1.8 || ^8.0",
  5701. "psr/clock": "^1.0",
  5702. "symfony/polyfill-mbstring": "^1.0",
  5703. "symfony/polyfill-php80": "^1.16",
  5704. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5705. },
  5706. "provide": {
  5707. "psr/clock-implementation": "1.0"
  5708. },
  5709. "require-dev": {
  5710. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5711. "doctrine/orm": "^2.7 || ^3.0",
  5712. "friendsofphp/php-cs-fixer": "^3.0",
  5713. "kylekatarnls/multi-tester": "^2.0",
  5714. "ondrejmirtes/better-reflection": "<6",
  5715. "phpmd/phpmd": "^2.9",
  5716. "phpstan/extension-installer": "^1.0",
  5717. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5718. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5719. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5720. "squizlabs/php_codesniffer": "^3.4"
  5721. },
  5722. "bin": [
  5723. "bin/carbon"
  5724. ],
  5725. "type": "library",
  5726. "extra": {
  5727. "laravel": {
  5728. "providers": [
  5729. "Carbon\\Laravel\\ServiceProvider"
  5730. ]
  5731. },
  5732. "phpstan": {
  5733. "includes": [
  5734. "extension.neon"
  5735. ]
  5736. },
  5737. "branch-alias": {
  5738. "dev-2.x": "2.x-dev",
  5739. "dev-master": "3.x-dev"
  5740. }
  5741. },
  5742. "autoload": {
  5743. "psr-4": {
  5744. "Carbon\\": "src/Carbon/"
  5745. }
  5746. },
  5747. "notification-url": "https://packagist.org/downloads/",
  5748. "license": [
  5749. "MIT"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "Brian Nesbitt",
  5754. "email": "brian@nesbot.com",
  5755. "homepage": "https://markido.com"
  5756. },
  5757. {
  5758. "name": "kylekatarnls",
  5759. "homepage": "https://github.com/kylekatarnls"
  5760. }
  5761. ],
  5762. "description": "An API extension for DateTime that supports 281 different languages.",
  5763. "homepage": "https://carbon.nesbot.com",
  5764. "keywords": [
  5765. "date",
  5766. "datetime",
  5767. "time"
  5768. ],
  5769. "support": {
  5770. "docs": "https://carbon.nesbot.com/docs",
  5771. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5772. "source": "https://github.com/briannesbitt/Carbon"
  5773. },
  5774. "funding": [
  5775. {
  5776. "url": "https://github.com/sponsors/kylekatarnls",
  5777. "type": "github"
  5778. },
  5779. {
  5780. "url": "https://opencollective.com/Carbon#sponsor",
  5781. "type": "opencollective"
  5782. },
  5783. {
  5784. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5785. "type": "tidelift"
  5786. }
  5787. ],
  5788. "time": "2025-01-08T20:10:23+00:00"
  5789. },
  5790. {
  5791. "name": "nette/schema",
  5792. "version": "v1.3.2",
  5793. "source": {
  5794. "type": "git",
  5795. "url": "https://github.com/nette/schema.git",
  5796. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  5797. },
  5798. "dist": {
  5799. "type": "zip",
  5800. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  5801. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  5802. "shasum": ""
  5803. },
  5804. "require": {
  5805. "nette/utils": "^4.0",
  5806. "php": "8.1 - 8.4"
  5807. },
  5808. "require-dev": {
  5809. "nette/tester": "^2.5.2",
  5810. "phpstan/phpstan-nette": "^1.0",
  5811. "tracy/tracy": "^2.8"
  5812. },
  5813. "type": "library",
  5814. "extra": {
  5815. "branch-alias": {
  5816. "dev-master": "1.3-dev"
  5817. }
  5818. },
  5819. "autoload": {
  5820. "classmap": [
  5821. "src/"
  5822. ]
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "BSD-3-Clause",
  5827. "GPL-2.0-only",
  5828. "GPL-3.0-only"
  5829. ],
  5830. "authors": [
  5831. {
  5832. "name": "David Grudl",
  5833. "homepage": "https://davidgrudl.com"
  5834. },
  5835. {
  5836. "name": "Nette Community",
  5837. "homepage": "https://nette.org/contributors"
  5838. }
  5839. ],
  5840. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5841. "homepage": "https://nette.org",
  5842. "keywords": [
  5843. "config",
  5844. "nette"
  5845. ],
  5846. "support": {
  5847. "issues": "https://github.com/nette/schema/issues",
  5848. "source": "https://github.com/nette/schema/tree/v1.3.2"
  5849. },
  5850. "time": "2024-10-06T23:10:23+00:00"
  5851. },
  5852. {
  5853. "name": "nette/utils",
  5854. "version": "v4.0.6",
  5855. "source": {
  5856. "type": "git",
  5857. "url": "https://github.com/nette/utils.git",
  5858. "reference": "ce708655043c7050eb050df361c5e313cf708309"
  5859. },
  5860. "dist": {
  5861. "type": "zip",
  5862. "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309",
  5863. "reference": "ce708655043c7050eb050df361c5e313cf708309",
  5864. "shasum": ""
  5865. },
  5866. "require": {
  5867. "php": "8.0 - 8.4"
  5868. },
  5869. "conflict": {
  5870. "nette/finder": "<3",
  5871. "nette/schema": "<1.2.2"
  5872. },
  5873. "require-dev": {
  5874. "jetbrains/phpstorm-attributes": "dev-master",
  5875. "nette/tester": "^2.5",
  5876. "phpstan/phpstan": "^1.0",
  5877. "tracy/tracy": "^2.9"
  5878. },
  5879. "suggest": {
  5880. "ext-gd": "to use Image",
  5881. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5882. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5883. "ext-json": "to use Nette\\Utils\\Json",
  5884. "ext-mbstring": "to use Strings::lower() etc...",
  5885. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5886. },
  5887. "type": "library",
  5888. "extra": {
  5889. "branch-alias": {
  5890. "dev-master": "4.0-dev"
  5891. }
  5892. },
  5893. "autoload": {
  5894. "classmap": [
  5895. "src/"
  5896. ]
  5897. },
  5898. "notification-url": "https://packagist.org/downloads/",
  5899. "license": [
  5900. "BSD-3-Clause",
  5901. "GPL-2.0-only",
  5902. "GPL-3.0-only"
  5903. ],
  5904. "authors": [
  5905. {
  5906. "name": "David Grudl",
  5907. "homepage": "https://davidgrudl.com"
  5908. },
  5909. {
  5910. "name": "Nette Community",
  5911. "homepage": "https://nette.org/contributors"
  5912. }
  5913. ],
  5914. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5915. "homepage": "https://nette.org",
  5916. "keywords": [
  5917. "array",
  5918. "core",
  5919. "datetime",
  5920. "images",
  5921. "json",
  5922. "nette",
  5923. "paginator",
  5924. "password",
  5925. "slugify",
  5926. "string",
  5927. "unicode",
  5928. "utf-8",
  5929. "utility",
  5930. "validation"
  5931. ],
  5932. "support": {
  5933. "issues": "https://github.com/nette/utils/issues",
  5934. "source": "https://github.com/nette/utils/tree/v4.0.6"
  5935. },
  5936. "time": "2025-03-30T21:06:30+00:00"
  5937. },
  5938. {
  5939. "name": "nicmart/tree",
  5940. "version": "0.9.0",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://github.com/nicmart/Tree.git",
  5944. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://api.github.com/repos/nicmart/Tree/zipball/f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  5949. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  5950. "shasum": ""
  5951. },
  5952. "require": {
  5953. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5954. },
  5955. "require-dev": {
  5956. "ergebnis/composer-normalize": "^2.44.0",
  5957. "ergebnis/license": "^2.6.0",
  5958. "ergebnis/php-cs-fixer-config": "^6.28.1",
  5959. "fakerphp/faker": "^1.24.1",
  5960. "infection/infection": "~0.26.19",
  5961. "phpunit/phpunit": "^9.6.19",
  5962. "psalm/plugin-phpunit": "~0.19.0",
  5963. "vimeo/psalm": "^5.26.1"
  5964. },
  5965. "type": "library",
  5966. "autoload": {
  5967. "psr-4": {
  5968. "Tree\\": "src/"
  5969. }
  5970. },
  5971. "notification-url": "https://packagist.org/downloads/",
  5972. "license": [
  5973. "MIT"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "Nicolò Martini",
  5978. "email": "nicmartnic@gmail.com"
  5979. },
  5980. {
  5981. "name": "Andreas Möller",
  5982. "email": "am@localheinz.com"
  5983. }
  5984. ],
  5985. "description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
  5986. "support": {
  5987. "issues": "https://github.com/nicmart/Tree/issues",
  5988. "source": "https://github.com/nicmart/Tree/tree/0.9.0"
  5989. },
  5990. "time": "2024-11-22T15:36:01+00:00"
  5991. },
  5992. {
  5993. "name": "nikic/php-parser",
  5994. "version": "v5.6.1",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/nikic/PHP-Parser.git",
  5998. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  6003. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "ext-ctype": "*",
  6008. "ext-json": "*",
  6009. "ext-tokenizer": "*",
  6010. "php": ">=7.4"
  6011. },
  6012. "require-dev": {
  6013. "ircmaxell/php-yacc": "^0.0.7",
  6014. "phpunit/phpunit": "^9.0"
  6015. },
  6016. "bin": [
  6017. "bin/php-parse"
  6018. ],
  6019. "type": "library",
  6020. "extra": {
  6021. "branch-alias": {
  6022. "dev-master": "5.x-dev"
  6023. }
  6024. },
  6025. "autoload": {
  6026. "psr-4": {
  6027. "PhpParser\\": "lib/PhpParser"
  6028. }
  6029. },
  6030. "notification-url": "https://packagist.org/downloads/",
  6031. "license": [
  6032. "BSD-3-Clause"
  6033. ],
  6034. "authors": [
  6035. {
  6036. "name": "Nikita Popov"
  6037. }
  6038. ],
  6039. "description": "A PHP parser written in PHP",
  6040. "keywords": [
  6041. "parser",
  6042. "php"
  6043. ],
  6044. "support": {
  6045. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6046. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  6047. },
  6048. "time": "2025-08-13T20:13:15+00:00"
  6049. },
  6050. {
  6051. "name": "nunomaduro/termwind",
  6052. "version": "v2.3.0",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://github.com/nunomaduro/termwind.git",
  6056. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  6061. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  6062. "shasum": ""
  6063. },
  6064. "require": {
  6065. "ext-mbstring": "*",
  6066. "php": "^8.2",
  6067. "symfony/console": "^7.1.8"
  6068. },
  6069. "require-dev": {
  6070. "illuminate/console": "^11.33.2",
  6071. "laravel/pint": "^1.18.2",
  6072. "mockery/mockery": "^1.6.12",
  6073. "pestphp/pest": "^2.36.0",
  6074. "phpstan/phpstan": "^1.12.11",
  6075. "phpstan/phpstan-strict-rules": "^1.6.1",
  6076. "symfony/var-dumper": "^7.1.8",
  6077. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  6078. },
  6079. "type": "library",
  6080. "extra": {
  6081. "laravel": {
  6082. "providers": [
  6083. "Termwind\\Laravel\\TermwindServiceProvider"
  6084. ]
  6085. },
  6086. "branch-alias": {
  6087. "dev-2.x": "2.x-dev"
  6088. }
  6089. },
  6090. "autoload": {
  6091. "files": [
  6092. "src/Functions.php"
  6093. ],
  6094. "psr-4": {
  6095. "Termwind\\": "src/"
  6096. }
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Nuno Maduro",
  6105. "email": "enunomaduro@gmail.com"
  6106. }
  6107. ],
  6108. "description": "Its like Tailwind CSS, but for the console.",
  6109. "keywords": [
  6110. "cli",
  6111. "console",
  6112. "css",
  6113. "package",
  6114. "php",
  6115. "style"
  6116. ],
  6117. "support": {
  6118. "issues": "https://github.com/nunomaduro/termwind/issues",
  6119. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  6120. },
  6121. "funding": [
  6122. {
  6123. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6124. "type": "custom"
  6125. },
  6126. {
  6127. "url": "https://github.com/nunomaduro",
  6128. "type": "github"
  6129. },
  6130. {
  6131. "url": "https://github.com/xiCO2k",
  6132. "type": "github"
  6133. }
  6134. ],
  6135. "time": "2024-11-21T10:39:51+00:00"
  6136. },
  6137. {
  6138. "name": "open-telemetry/api",
  6139. "version": "1.2.3",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/opentelemetry-php/api.git",
  6143. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  6148. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  6149. "shasum": ""
  6150. },
  6151. "require": {
  6152. "open-telemetry/context": "^1.0",
  6153. "php": "^8.1",
  6154. "psr/log": "^1.1|^2.0|^3.0",
  6155. "symfony/polyfill-php82": "^1.26"
  6156. },
  6157. "conflict": {
  6158. "open-telemetry/sdk": "<=1.0.8"
  6159. },
  6160. "type": "library",
  6161. "extra": {
  6162. "spi": {
  6163. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [
  6164. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager"
  6165. ]
  6166. },
  6167. "branch-alias": {
  6168. "dev-main": "1.1.x-dev"
  6169. }
  6170. },
  6171. "autoload": {
  6172. "files": [
  6173. "Trace/functions.php"
  6174. ],
  6175. "psr-4": {
  6176. "OpenTelemetry\\API\\": "."
  6177. }
  6178. },
  6179. "notification-url": "https://packagist.org/downloads/",
  6180. "license": [
  6181. "Apache-2.0"
  6182. ],
  6183. "authors": [
  6184. {
  6185. "name": "opentelemetry-php contributors",
  6186. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  6187. }
  6188. ],
  6189. "description": "API for OpenTelemetry PHP.",
  6190. "keywords": [
  6191. "Metrics",
  6192. "api",
  6193. "apm",
  6194. "logging",
  6195. "opentelemetry",
  6196. "otel",
  6197. "tracing"
  6198. ],
  6199. "support": {
  6200. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  6201. "docs": "https://opentelemetry.io/docs/php",
  6202. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  6203. "source": "https://github.com/open-telemetry/opentelemetry-php"
  6204. },
  6205. "time": "2025-03-05T21:42:54+00:00"
  6206. },
  6207. {
  6208. "name": "open-telemetry/context",
  6209. "version": "1.1.0",
  6210. "source": {
  6211. "type": "git",
  6212. "url": "https://github.com/opentelemetry-php/context.git",
  6213. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3"
  6214. },
  6215. "dist": {
  6216. "type": "zip",
  6217. "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  6218. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  6219. "shasum": ""
  6220. },
  6221. "require": {
  6222. "php": "^8.1",
  6223. "symfony/polyfill-php82": "^1.26"
  6224. },
  6225. "suggest": {
  6226. "ext-ffi": "To allow context switching in Fibers"
  6227. },
  6228. "type": "library",
  6229. "extra": {
  6230. "branch-alias": {
  6231. "dev-main": "1.0.x-dev"
  6232. }
  6233. },
  6234. "autoload": {
  6235. "files": [
  6236. "fiber/initialize_fiber_handler.php"
  6237. ],
  6238. "psr-4": {
  6239. "OpenTelemetry\\Context\\": "."
  6240. }
  6241. },
  6242. "notification-url": "https://packagist.org/downloads/",
  6243. "license": [
  6244. "Apache-2.0"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "opentelemetry-php contributors",
  6249. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  6250. }
  6251. ],
  6252. "description": "Context implementation for OpenTelemetry PHP.",
  6253. "keywords": [
  6254. "Context",
  6255. "opentelemetry",
  6256. "otel"
  6257. ],
  6258. "support": {
  6259. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  6260. "docs": "https://opentelemetry.io/docs/php",
  6261. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  6262. "source": "https://github.com/open-telemetry/opentelemetry-php"
  6263. },
  6264. "time": "2024-08-21T00:29:20+00:00"
  6265. },
  6266. {
  6267. "name": "openai-php/client",
  6268. "version": "v0.10.3",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/openai-php/client.git",
  6272. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6277. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6278. "shasum": ""
  6279. },
  6280. "require": {
  6281. "php": "^8.1.0",
  6282. "php-http/discovery": "^1.20.0",
  6283. "php-http/multipart-stream-builder": "^1.4.2",
  6284. "psr/http-client": "^1.0.3",
  6285. "psr/http-client-implementation": "^1.0.1",
  6286. "psr/http-factory-implementation": "*",
  6287. "psr/http-message": "^1.1.0|^2.0.0"
  6288. },
  6289. "require-dev": {
  6290. "guzzlehttp/guzzle": "^7.9.2",
  6291. "guzzlehttp/psr7": "^2.7.0",
  6292. "laravel/pint": "^1.18.1",
  6293. "mockery/mockery": "^1.6.12",
  6294. "nunomaduro/collision": "^7.11.0|^8.5.0",
  6295. "pestphp/pest": "^2.36.0|^3.5.0",
  6296. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  6297. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  6298. "phpstan/phpstan": "^1.12.7",
  6299. "symfony/var-dumper": "^6.4.11|^7.1.5"
  6300. },
  6301. "type": "library",
  6302. "autoload": {
  6303. "files": [
  6304. "src/OpenAI.php"
  6305. ],
  6306. "psr-4": {
  6307. "OpenAI\\": "src/"
  6308. }
  6309. },
  6310. "notification-url": "https://packagist.org/downloads/",
  6311. "license": [
  6312. "MIT"
  6313. ],
  6314. "authors": [
  6315. {
  6316. "name": "Nuno Maduro",
  6317. "email": "enunomaduro@gmail.com"
  6318. },
  6319. {
  6320. "name": "Sandro Gehri"
  6321. }
  6322. ],
  6323. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  6324. "keywords": [
  6325. "GPT-3",
  6326. "api",
  6327. "client",
  6328. "codex",
  6329. "dall-e",
  6330. "language",
  6331. "natural",
  6332. "openai",
  6333. "php",
  6334. "processing",
  6335. "sdk"
  6336. ],
  6337. "support": {
  6338. "issues": "https://github.com/openai-php/client/issues",
  6339. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  6340. },
  6341. "funding": [
  6342. {
  6343. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6344. "type": "custom"
  6345. },
  6346. {
  6347. "url": "https://github.com/gehrisandro",
  6348. "type": "github"
  6349. },
  6350. {
  6351. "url": "https://github.com/nunomaduro",
  6352. "type": "github"
  6353. }
  6354. ],
  6355. "time": "2024-11-12T20:51:16+00:00"
  6356. },
  6357. {
  6358. "name": "openai-php/laravel",
  6359. "version": "v0.10.2",
  6360. "source": {
  6361. "type": "git",
  6362. "url": "https://github.com/openai-php/laravel.git",
  6363. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f"
  6364. },
  6365. "dist": {
  6366. "type": "zip",
  6367. "url": "https://api.github.com/repos/openai-php/laravel/zipball/24815ef1bda71cc0715f7aefe4506e77329e560f",
  6368. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f",
  6369. "shasum": ""
  6370. },
  6371. "require": {
  6372. "guzzlehttp/guzzle": "^7.9.2",
  6373. "laravel/framework": "^9.46.0|^10.34.2|^11.23.5",
  6374. "openai-php/client": "^0.10.2",
  6375. "php": "^8.1.0"
  6376. },
  6377. "require-dev": {
  6378. "laravel/pint": "^1.17.3",
  6379. "pestphp/pest": "^2.35.1|^3.0.0",
  6380. "pestphp/pest-plugin-arch": "^2.7.0|^3.0.0",
  6381. "phpstan/phpstan": "^1.12.4",
  6382. "symfony/var-dumper": "^6.4.0|^7.1.4"
  6383. },
  6384. "type": "library",
  6385. "extra": {
  6386. "laravel": {
  6387. "providers": [
  6388. "OpenAI\\Laravel\\ServiceProvider"
  6389. ]
  6390. }
  6391. },
  6392. "autoload": {
  6393. "psr-4": {
  6394. "OpenAI\\Laravel\\": "src/"
  6395. }
  6396. },
  6397. "notification-url": "https://packagist.org/downloads/",
  6398. "license": [
  6399. "MIT"
  6400. ],
  6401. "authors": [
  6402. {
  6403. "name": "Nuno Maduro",
  6404. "email": "enunomaduro@gmail.com"
  6405. }
  6406. ],
  6407. "description": "OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API",
  6408. "keywords": [
  6409. "GPT-3",
  6410. "api",
  6411. "client",
  6412. "codex",
  6413. "dall-e",
  6414. "language",
  6415. "laravel",
  6416. "natural",
  6417. "openai",
  6418. "php",
  6419. "processing",
  6420. "sdk"
  6421. ],
  6422. "support": {
  6423. "issues": "https://github.com/openai-php/laravel/issues",
  6424. "source": "https://github.com/openai-php/laravel/tree/v0.10.2"
  6425. },
  6426. "funding": [
  6427. {
  6428. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6429. "type": "custom"
  6430. },
  6431. {
  6432. "url": "https://github.com/gehrisandro",
  6433. "type": "github"
  6434. },
  6435. {
  6436. "url": "https://github.com/nunomaduro",
  6437. "type": "github"
  6438. },
  6439. {
  6440. "url": "https://www.patreon.com/nunomaduro",
  6441. "type": "patreon"
  6442. }
  6443. ],
  6444. "time": "2024-10-17T20:34:07+00:00"
  6445. },
  6446. {
  6447. "name": "opis/closure",
  6448. "version": "3.6.3",
  6449. "source": {
  6450. "type": "git",
  6451. "url": "https://github.com/opis/closure.git",
  6452. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  6453. },
  6454. "dist": {
  6455. "type": "zip",
  6456. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  6457. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  6458. "shasum": ""
  6459. },
  6460. "require": {
  6461. "php": "^5.4 || ^7.0 || ^8.0"
  6462. },
  6463. "require-dev": {
  6464. "jeremeamia/superclosure": "^2.0",
  6465. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6466. },
  6467. "type": "library",
  6468. "extra": {
  6469. "branch-alias": {
  6470. "dev-master": "3.6.x-dev"
  6471. }
  6472. },
  6473. "autoload": {
  6474. "files": [
  6475. "functions.php"
  6476. ],
  6477. "psr-4": {
  6478. "Opis\\Closure\\": "src/"
  6479. }
  6480. },
  6481. "notification-url": "https://packagist.org/downloads/",
  6482. "license": [
  6483. "MIT"
  6484. ],
  6485. "authors": [
  6486. {
  6487. "name": "Marius Sarca",
  6488. "email": "marius.sarca@gmail.com"
  6489. },
  6490. {
  6491. "name": "Sorin Sarca",
  6492. "email": "sarca_sorin@hotmail.com"
  6493. }
  6494. ],
  6495. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  6496. "homepage": "https://opis.io/closure",
  6497. "keywords": [
  6498. "anonymous functions",
  6499. "closure",
  6500. "function",
  6501. "serializable",
  6502. "serialization",
  6503. "serialize"
  6504. ],
  6505. "support": {
  6506. "issues": "https://github.com/opis/closure/issues",
  6507. "source": "https://github.com/opis/closure/tree/3.6.3"
  6508. },
  6509. "time": "2022-01-27T09:35:39+00:00"
  6510. },
  6511. {
  6512. "name": "paragonie/constant_time_encoding",
  6513. "version": "v3.0.0",
  6514. "source": {
  6515. "type": "git",
  6516. "url": "https://github.com/paragonie/constant_time_encoding.git",
  6517. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  6518. },
  6519. "dist": {
  6520. "type": "zip",
  6521. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  6522. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  6523. "shasum": ""
  6524. },
  6525. "require": {
  6526. "php": "^8"
  6527. },
  6528. "require-dev": {
  6529. "phpunit/phpunit": "^9",
  6530. "vimeo/psalm": "^4|^5"
  6531. },
  6532. "type": "library",
  6533. "autoload": {
  6534. "psr-4": {
  6535. "ParagonIE\\ConstantTime\\": "src/"
  6536. }
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "license": [
  6540. "MIT"
  6541. ],
  6542. "authors": [
  6543. {
  6544. "name": "Paragon Initiative Enterprises",
  6545. "email": "security@paragonie.com",
  6546. "homepage": "https://paragonie.com",
  6547. "role": "Maintainer"
  6548. },
  6549. {
  6550. "name": "Steve 'Sc00bz' Thomas",
  6551. "email": "steve@tobtu.com",
  6552. "homepage": "https://www.tobtu.com",
  6553. "role": "Original Developer"
  6554. }
  6555. ],
  6556. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  6557. "keywords": [
  6558. "base16",
  6559. "base32",
  6560. "base32_decode",
  6561. "base32_encode",
  6562. "base64",
  6563. "base64_decode",
  6564. "base64_encode",
  6565. "bin2hex",
  6566. "encoding",
  6567. "hex",
  6568. "hex2bin",
  6569. "rfc4648"
  6570. ],
  6571. "support": {
  6572. "email": "info@paragonie.com",
  6573. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  6574. "source": "https://github.com/paragonie/constant_time_encoding"
  6575. },
  6576. "time": "2024-05-08T12:36:18+00:00"
  6577. },
  6578. {
  6579. "name": "paragonie/random_compat",
  6580. "version": "v9.99.100",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/paragonie/random_compat.git",
  6584. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6589. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6590. "shasum": ""
  6591. },
  6592. "require": {
  6593. "php": ">= 7"
  6594. },
  6595. "require-dev": {
  6596. "phpunit/phpunit": "4.*|5.*",
  6597. "vimeo/psalm": "^1"
  6598. },
  6599. "suggest": {
  6600. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6601. },
  6602. "type": "library",
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Paragon Initiative Enterprises",
  6610. "email": "security@paragonie.com",
  6611. "homepage": "https://paragonie.com"
  6612. }
  6613. ],
  6614. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6615. "keywords": [
  6616. "csprng",
  6617. "polyfill",
  6618. "pseudorandom",
  6619. "random"
  6620. ],
  6621. "support": {
  6622. "email": "info@paragonie.com",
  6623. "issues": "https://github.com/paragonie/random_compat/issues",
  6624. "source": "https://github.com/paragonie/random_compat"
  6625. },
  6626. "time": "2020-10-15T08:29:30+00:00"
  6627. },
  6628. {
  6629. "name": "paragonie/sodium_compat",
  6630. "version": "v2.5.0",
  6631. "source": {
  6632. "type": "git",
  6633. "url": "https://github.com/paragonie/sodium_compat.git",
  6634. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f"
  6635. },
  6636. "dist": {
  6637. "type": "zip",
  6638. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/4714da6efdc782c06690bc72ce34fae7941c2d9f",
  6639. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f",
  6640. "shasum": ""
  6641. },
  6642. "require": {
  6643. "php": "^8.1",
  6644. "php-64bit": "*"
  6645. },
  6646. "require-dev": {
  6647. "infection/infection": "^0",
  6648. "nikic/php-fuzzer": "^0",
  6649. "phpunit/phpunit": "^7|^8|^9|^10|^11",
  6650. "vimeo/psalm": "^4|^5|^6"
  6651. },
  6652. "suggest": {
  6653. "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  6654. },
  6655. "type": "library",
  6656. "extra": {
  6657. "branch-alias": {
  6658. "dev-master": "2.0.x-dev"
  6659. }
  6660. },
  6661. "autoload": {
  6662. "files": [
  6663. "autoload.php"
  6664. ],
  6665. "psr-4": {
  6666. "ParagonIE\\Sodium\\": "namespaced/"
  6667. }
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "ISC"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Paragon Initiative Enterprises",
  6676. "email": "security@paragonie.com"
  6677. },
  6678. {
  6679. "name": "Frank Denis",
  6680. "email": "jedisct1@pureftpd.org"
  6681. }
  6682. ],
  6683. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  6684. "keywords": [
  6685. "Authentication",
  6686. "BLAKE2b",
  6687. "ChaCha20",
  6688. "ChaCha20-Poly1305",
  6689. "Chapoly",
  6690. "Curve25519",
  6691. "Ed25519",
  6692. "EdDSA",
  6693. "Edwards-curve Digital Signature Algorithm",
  6694. "Elliptic Curve Diffie-Hellman",
  6695. "Poly1305",
  6696. "Pure-PHP cryptography",
  6697. "RFC 7748",
  6698. "RFC 8032",
  6699. "Salpoly",
  6700. "Salsa20",
  6701. "X25519",
  6702. "XChaCha20-Poly1305",
  6703. "XSalsa20-Poly1305",
  6704. "Xchacha20",
  6705. "Xsalsa20",
  6706. "aead",
  6707. "cryptography",
  6708. "ecdh",
  6709. "elliptic curve",
  6710. "elliptic curve cryptography",
  6711. "encryption",
  6712. "libsodium",
  6713. "php",
  6714. "public-key cryptography",
  6715. "secret-key cryptography",
  6716. "side-channel resistant"
  6717. ],
  6718. "support": {
  6719. "issues": "https://github.com/paragonie/sodium_compat/issues",
  6720. "source": "https://github.com/paragonie/sodium_compat/tree/v2.5.0"
  6721. },
  6722. "time": "2025-12-30T16:12:18+00:00"
  6723. },
  6724. {
  6725. "name": "paypal/paypal-checkout-sdk",
  6726. "version": "1.0.1",
  6727. "source": {
  6728. "type": "git",
  6729. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  6730. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1"
  6731. },
  6732. "dist": {
  6733. "type": "zip",
  6734. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  6735. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  6736. "shasum": ""
  6737. },
  6738. "require": {
  6739. "paypal/paypalhttp": "1.0.0"
  6740. },
  6741. "require-dev": {
  6742. "phpunit/phpunit": "^5.7"
  6743. },
  6744. "type": "library",
  6745. "autoload": {
  6746. "psr-4": {
  6747. "Sample\\": "samples/",
  6748. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  6749. }
  6750. },
  6751. "notification-url": "https://packagist.org/downloads/",
  6752. "license": [
  6753. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  6754. ],
  6755. "authors": [
  6756. {
  6757. "name": "PayPal",
  6758. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  6759. }
  6760. ],
  6761. "description": "PayPal's PHP SDK for Checkout REST APIs",
  6762. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  6763. "keywords": [
  6764. "checkout",
  6765. "orders",
  6766. "payments",
  6767. "paypal",
  6768. "rest",
  6769. "sdk"
  6770. ],
  6771. "support": {
  6772. "issues": "https://github.com/paypal/Checkout-PHP-SDK/issues",
  6773. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.1"
  6774. },
  6775. "abandoned": "paypal/paypal-server-sdk",
  6776. "time": "2019-11-07T23:16:44+00:00"
  6777. },
  6778. {
  6779. "name": "paypal/paypalhttp",
  6780. "version": "1.0.0",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/paypal/paypalhttp_php.git",
  6784. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  6789. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "ext-curl": "*"
  6794. },
  6795. "require-dev": {
  6796. "phpunit/phpunit": "^5.7",
  6797. "wiremock-php/wiremock-php": "1.43.2"
  6798. },
  6799. "type": "library",
  6800. "autoload": {
  6801. "psr-4": {
  6802. "PayPalHttp\\": "lib/PayPalHttp"
  6803. }
  6804. },
  6805. "notification-url": "https://packagist.org/downloads/",
  6806. "license": [
  6807. "MIT"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "PayPal",
  6812. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  6813. }
  6814. ],
  6815. "support": {
  6816. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  6817. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.0"
  6818. },
  6819. "time": "2019-11-06T21:27:12+00:00"
  6820. },
  6821. {
  6822. "name": "phenx/php-font-lib",
  6823. "version": "0.5.6",
  6824. "source": {
  6825. "type": "git",
  6826. "url": "https://github.com/dompdf/php-font-lib.git",
  6827. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  6828. },
  6829. "dist": {
  6830. "type": "zip",
  6831. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  6832. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  6833. "shasum": ""
  6834. },
  6835. "require": {
  6836. "ext-mbstring": "*"
  6837. },
  6838. "require-dev": {
  6839. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  6840. },
  6841. "type": "library",
  6842. "autoload": {
  6843. "psr-4": {
  6844. "FontLib\\": "src/FontLib"
  6845. }
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "LGPL-2.1-or-later"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Fabien Ménager",
  6854. "email": "fabien.menager@gmail.com"
  6855. }
  6856. ],
  6857. "description": "A library to read, parse, export and make subsets of different types of font files.",
  6858. "homepage": "https://github.com/PhenX/php-font-lib",
  6859. "support": {
  6860. "issues": "https://github.com/dompdf/php-font-lib/issues",
  6861. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  6862. },
  6863. "time": "2024-01-29T14:45:26+00:00"
  6864. },
  6865. {
  6866. "name": "phenx/php-svg-lib",
  6867. "version": "0.5.4",
  6868. "source": {
  6869. "type": "git",
  6870. "url": "https://github.com/dompdf/php-svg-lib.git",
  6871. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691"
  6872. },
  6873. "dist": {
  6874. "type": "zip",
  6875. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  6876. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  6877. "shasum": ""
  6878. },
  6879. "require": {
  6880. "ext-mbstring": "*",
  6881. "php": "^7.1 || ^8.0",
  6882. "sabberworm/php-css-parser": "^8.4"
  6883. },
  6884. "require-dev": {
  6885. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  6886. },
  6887. "type": "library",
  6888. "autoload": {
  6889. "psr-4": {
  6890. "Svg\\": "src/Svg"
  6891. }
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "license": [
  6895. "LGPL-3.0-or-later"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Fabien Ménager",
  6900. "email": "fabien.menager@gmail.com"
  6901. }
  6902. ],
  6903. "description": "A library to read, parse and export to PDF SVG files.",
  6904. "homepage": "https://github.com/PhenX/php-svg-lib",
  6905. "support": {
  6906. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  6907. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4"
  6908. },
  6909. "time": "2024-04-08T12:52:34+00:00"
  6910. },
  6911. {
  6912. "name": "php-http/discovery",
  6913. "version": "1.20.0",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://github.com/php-http/discovery.git",
  6917. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6922. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6923. "shasum": ""
  6924. },
  6925. "require": {
  6926. "composer-plugin-api": "^1.0|^2.0",
  6927. "php": "^7.1 || ^8.0"
  6928. },
  6929. "conflict": {
  6930. "nyholm/psr7": "<1.0",
  6931. "zendframework/zend-diactoros": "*"
  6932. },
  6933. "provide": {
  6934. "php-http/async-client-implementation": "*",
  6935. "php-http/client-implementation": "*",
  6936. "psr/http-client-implementation": "*",
  6937. "psr/http-factory-implementation": "*",
  6938. "psr/http-message-implementation": "*"
  6939. },
  6940. "require-dev": {
  6941. "composer/composer": "^1.0.2|^2.0",
  6942. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6943. "php-http/httplug": "^1.0 || ^2.0",
  6944. "php-http/message-factory": "^1.0",
  6945. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6946. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6947. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6948. },
  6949. "type": "composer-plugin",
  6950. "extra": {
  6951. "class": "Http\\Discovery\\Composer\\Plugin",
  6952. "plugin-optional": true
  6953. },
  6954. "autoload": {
  6955. "psr-4": {
  6956. "Http\\Discovery\\": "src/"
  6957. },
  6958. "exclude-from-classmap": [
  6959. "src/Composer/Plugin.php"
  6960. ]
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "license": [
  6964. "MIT"
  6965. ],
  6966. "authors": [
  6967. {
  6968. "name": "Márk Sági-Kazár",
  6969. "email": "mark.sagikazar@gmail.com"
  6970. }
  6971. ],
  6972. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6973. "homepage": "http://php-http.org",
  6974. "keywords": [
  6975. "adapter",
  6976. "client",
  6977. "discovery",
  6978. "factory",
  6979. "http",
  6980. "message",
  6981. "psr17",
  6982. "psr7"
  6983. ],
  6984. "support": {
  6985. "issues": "https://github.com/php-http/discovery/issues",
  6986. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6987. },
  6988. "time": "2024-10-02T11:20:13+00:00"
  6989. },
  6990. {
  6991. "name": "php-http/httplug",
  6992. "version": "2.4.1",
  6993. "source": {
  6994. "type": "git",
  6995. "url": "https://github.com/php-http/httplug.git",
  6996. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  6997. },
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  7001. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  7002. "shasum": ""
  7003. },
  7004. "require": {
  7005. "php": "^7.1 || ^8.0",
  7006. "php-http/promise": "^1.1",
  7007. "psr/http-client": "^1.0",
  7008. "psr/http-message": "^1.0 || ^2.0"
  7009. },
  7010. "require-dev": {
  7011. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  7012. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  7013. },
  7014. "type": "library",
  7015. "autoload": {
  7016. "psr-4": {
  7017. "Http\\Client\\": "src/"
  7018. }
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "MIT"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Eric GELOEN",
  7027. "email": "geloen.eric@gmail.com"
  7028. },
  7029. {
  7030. "name": "Márk Sági-Kazár",
  7031. "email": "mark.sagikazar@gmail.com",
  7032. "homepage": "https://sagikazarmark.hu"
  7033. }
  7034. ],
  7035. "description": "HTTPlug, the HTTP client abstraction for PHP",
  7036. "homepage": "http://httplug.io",
  7037. "keywords": [
  7038. "client",
  7039. "http"
  7040. ],
  7041. "support": {
  7042. "issues": "https://github.com/php-http/httplug/issues",
  7043. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  7044. },
  7045. "time": "2024-09-23T11:39:58+00:00"
  7046. },
  7047. {
  7048. "name": "php-http/multipart-stream-builder",
  7049. "version": "1.4.2",
  7050. "source": {
  7051. "type": "git",
  7052. "url": "https://github.com/php-http/multipart-stream-builder.git",
  7053. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  7054. },
  7055. "dist": {
  7056. "type": "zip",
  7057. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  7058. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  7059. "shasum": ""
  7060. },
  7061. "require": {
  7062. "php": "^7.1 || ^8.0",
  7063. "php-http/discovery": "^1.15",
  7064. "psr/http-factory-implementation": "^1.0"
  7065. },
  7066. "require-dev": {
  7067. "nyholm/psr7": "^1.0",
  7068. "php-http/message": "^1.5",
  7069. "php-http/message-factory": "^1.0.2",
  7070. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  7071. },
  7072. "type": "library",
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Http\\Message\\MultipartStream\\": "src/"
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Tobias Nyholm",
  7085. "email": "tobias.nyholm@gmail.com"
  7086. }
  7087. ],
  7088. "description": "A builder class that help you create a multipart stream",
  7089. "homepage": "http://php-http.org",
  7090. "keywords": [
  7091. "factory",
  7092. "http",
  7093. "message",
  7094. "multipart stream",
  7095. "stream"
  7096. ],
  7097. "support": {
  7098. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  7099. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  7100. },
  7101. "time": "2024-09-04T13:22:54+00:00"
  7102. },
  7103. {
  7104. "name": "php-http/promise",
  7105. "version": "1.3.1",
  7106. "source": {
  7107. "type": "git",
  7108. "url": "https://github.com/php-http/promise.git",
  7109. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  7110. },
  7111. "dist": {
  7112. "type": "zip",
  7113. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  7114. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  7115. "shasum": ""
  7116. },
  7117. "require": {
  7118. "php": "^7.1 || ^8.0"
  7119. },
  7120. "require-dev": {
  7121. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  7122. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  7123. },
  7124. "type": "library",
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Http\\Promise\\": "src/"
  7128. }
  7129. },
  7130. "notification-url": "https://packagist.org/downloads/",
  7131. "license": [
  7132. "MIT"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Joel Wurtz",
  7137. "email": "joel.wurtz@gmail.com"
  7138. },
  7139. {
  7140. "name": "Márk Sági-Kazár",
  7141. "email": "mark.sagikazar@gmail.com"
  7142. }
  7143. ],
  7144. "description": "Promise used for asynchronous HTTP requests",
  7145. "homepage": "http://httplug.io",
  7146. "keywords": [
  7147. "promise"
  7148. ],
  7149. "support": {
  7150. "issues": "https://github.com/php-http/promise/issues",
  7151. "source": "https://github.com/php-http/promise/tree/1.3.1"
  7152. },
  7153. "time": "2024-03-15T13:55:21+00:00"
  7154. },
  7155. {
  7156. "name": "phpoffice/phpspreadsheet",
  7157. "version": "1.30.0",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  7161. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  7166. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "composer/pcre": "^1||^2||^3",
  7171. "ext-ctype": "*",
  7172. "ext-dom": "*",
  7173. "ext-fileinfo": "*",
  7174. "ext-gd": "*",
  7175. "ext-iconv": "*",
  7176. "ext-libxml": "*",
  7177. "ext-mbstring": "*",
  7178. "ext-simplexml": "*",
  7179. "ext-xml": "*",
  7180. "ext-xmlreader": "*",
  7181. "ext-xmlwriter": "*",
  7182. "ext-zip": "*",
  7183. "ext-zlib": "*",
  7184. "ezyang/htmlpurifier": "^4.15",
  7185. "maennchen/zipstream-php": "^2.1 || ^3.0",
  7186. "markbaker/complex": "^3.0",
  7187. "markbaker/matrix": "^3.0",
  7188. "php": "^7.4 || ^8.0",
  7189. "psr/http-client": "^1.0",
  7190. "psr/http-factory": "^1.0",
  7191. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  7192. },
  7193. "require-dev": {
  7194. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  7195. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  7196. "friendsofphp/php-cs-fixer": "^3.2",
  7197. "mitoteam/jpgraph": "^10.3",
  7198. "mpdf/mpdf": "^8.1.1",
  7199. "phpcompatibility/php-compatibility": "^9.3",
  7200. "phpstan/phpstan": "^1.1",
  7201. "phpstan/phpstan-phpunit": "^1.0",
  7202. "phpunit/phpunit": "^8.5 || ^9.0",
  7203. "squizlabs/php_codesniffer": "^3.7",
  7204. "tecnickcom/tcpdf": "^6.5"
  7205. },
  7206. "suggest": {
  7207. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  7208. "ext-intl": "PHP Internationalization Functions",
  7209. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  7210. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  7211. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  7212. },
  7213. "type": "library",
  7214. "autoload": {
  7215. "psr-4": {
  7216. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  7217. }
  7218. },
  7219. "notification-url": "https://packagist.org/downloads/",
  7220. "license": [
  7221. "MIT"
  7222. ],
  7223. "authors": [
  7224. {
  7225. "name": "Maarten Balliauw",
  7226. "homepage": "https://blog.maartenballiauw.be"
  7227. },
  7228. {
  7229. "name": "Mark Baker",
  7230. "homepage": "https://markbakeruk.net"
  7231. },
  7232. {
  7233. "name": "Franck Lefevre",
  7234. "homepage": "https://rootslabs.net"
  7235. },
  7236. {
  7237. "name": "Erik Tilt"
  7238. },
  7239. {
  7240. "name": "Adrien Crivelli"
  7241. }
  7242. ],
  7243. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  7244. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  7245. "keywords": [
  7246. "OpenXML",
  7247. "excel",
  7248. "gnumeric",
  7249. "ods",
  7250. "php",
  7251. "spreadsheet",
  7252. "xls",
  7253. "xlsx"
  7254. ],
  7255. "support": {
  7256. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  7257. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  7258. },
  7259. "time": "2025-08-10T06:28:02+00:00"
  7260. },
  7261. {
  7262. "name": "phpoption/phpoption",
  7263. "version": "1.9.3",
  7264. "source": {
  7265. "type": "git",
  7266. "url": "https://github.com/schmittjoh/php-option.git",
  7267. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  7268. },
  7269. "dist": {
  7270. "type": "zip",
  7271. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7272. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7273. "shasum": ""
  7274. },
  7275. "require": {
  7276. "php": "^7.2.5 || ^8.0"
  7277. },
  7278. "require-dev": {
  7279. "bamarni/composer-bin-plugin": "^1.8.2",
  7280. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  7281. },
  7282. "type": "library",
  7283. "extra": {
  7284. "bamarni-bin": {
  7285. "bin-links": true,
  7286. "forward-command": false
  7287. },
  7288. "branch-alias": {
  7289. "dev-master": "1.9-dev"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "psr-4": {
  7294. "PhpOption\\": "src/PhpOption/"
  7295. }
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "Apache-2.0"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Johannes M. Schmitt",
  7304. "email": "schmittjoh@gmail.com",
  7305. "homepage": "https://github.com/schmittjoh"
  7306. },
  7307. {
  7308. "name": "Graham Campbell",
  7309. "email": "hello@gjcampbell.co.uk",
  7310. "homepage": "https://github.com/GrahamCampbell"
  7311. }
  7312. ],
  7313. "description": "Option Type for PHP",
  7314. "keywords": [
  7315. "language",
  7316. "option",
  7317. "php",
  7318. "type"
  7319. ],
  7320. "support": {
  7321. "issues": "https://github.com/schmittjoh/php-option/issues",
  7322. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  7323. },
  7324. "funding": [
  7325. {
  7326. "url": "https://github.com/GrahamCampbell",
  7327. "type": "github"
  7328. },
  7329. {
  7330. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  7331. "type": "tidelift"
  7332. }
  7333. ],
  7334. "time": "2024-07-20T21:41:07+00:00"
  7335. },
  7336. {
  7337. "name": "phpseclib/phpseclib",
  7338. "version": "3.0.43",
  7339. "source": {
  7340. "type": "git",
  7341. "url": "https://github.com/phpseclib/phpseclib.git",
  7342. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  7343. },
  7344. "dist": {
  7345. "type": "zip",
  7346. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  7347. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  7348. "shasum": ""
  7349. },
  7350. "require": {
  7351. "paragonie/constant_time_encoding": "^1|^2|^3",
  7352. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  7353. "php": ">=5.6.1"
  7354. },
  7355. "require-dev": {
  7356. "phpunit/phpunit": "*"
  7357. },
  7358. "suggest": {
  7359. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  7360. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  7361. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  7362. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  7363. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  7364. },
  7365. "type": "library",
  7366. "autoload": {
  7367. "files": [
  7368. "phpseclib/bootstrap.php"
  7369. ],
  7370. "psr-4": {
  7371. "phpseclib3\\": "phpseclib/"
  7372. }
  7373. },
  7374. "notification-url": "https://packagist.org/downloads/",
  7375. "license": [
  7376. "MIT"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Jim Wigginton",
  7381. "email": "terrafrost@php.net",
  7382. "role": "Lead Developer"
  7383. },
  7384. {
  7385. "name": "Patrick Monnerat",
  7386. "email": "pm@datasphere.ch",
  7387. "role": "Developer"
  7388. },
  7389. {
  7390. "name": "Andreas Fischer",
  7391. "email": "bantu@phpbb.com",
  7392. "role": "Developer"
  7393. },
  7394. {
  7395. "name": "Hans-Jürgen Petrich",
  7396. "email": "petrich@tronic-media.com",
  7397. "role": "Developer"
  7398. },
  7399. {
  7400. "name": "Graham Campbell",
  7401. "email": "graham@alt-three.com",
  7402. "role": "Developer"
  7403. }
  7404. ],
  7405. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  7406. "homepage": "http://phpseclib.sourceforge.net",
  7407. "keywords": [
  7408. "BigInteger",
  7409. "aes",
  7410. "asn.1",
  7411. "asn1",
  7412. "blowfish",
  7413. "crypto",
  7414. "cryptography",
  7415. "encryption",
  7416. "rsa",
  7417. "security",
  7418. "sftp",
  7419. "signature",
  7420. "signing",
  7421. "ssh",
  7422. "twofish",
  7423. "x.509",
  7424. "x509"
  7425. ],
  7426. "support": {
  7427. "issues": "https://github.com/phpseclib/phpseclib/issues",
  7428. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  7429. },
  7430. "funding": [
  7431. {
  7432. "url": "https://github.com/terrafrost",
  7433. "type": "github"
  7434. },
  7435. {
  7436. "url": "https://www.patreon.com/phpseclib",
  7437. "type": "patreon"
  7438. },
  7439. {
  7440. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  7441. "type": "tidelift"
  7442. }
  7443. ],
  7444. "time": "2024-12-14T21:12:59+00:00"
  7445. },
  7446. {
  7447. "name": "predis/predis",
  7448. "version": "v2.3.0",
  7449. "source": {
  7450. "type": "git",
  7451. "url": "https://github.com/predis/predis.git",
  7452. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9"
  7453. },
  7454. "dist": {
  7455. "type": "zip",
  7456. "url": "https://api.github.com/repos/predis/predis/zipball/bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  7457. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  7458. "shasum": ""
  7459. },
  7460. "require": {
  7461. "php": "^7.2 || ^8.0"
  7462. },
  7463. "require-dev": {
  7464. "friendsofphp/php-cs-fixer": "^3.3",
  7465. "phpstan/phpstan": "^1.9",
  7466. "phpunit/phpunit": "^8.0 || ^9.4"
  7467. },
  7468. "suggest": {
  7469. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  7470. },
  7471. "type": "library",
  7472. "autoload": {
  7473. "psr-4": {
  7474. "Predis\\": "src/"
  7475. }
  7476. },
  7477. "notification-url": "https://packagist.org/downloads/",
  7478. "license": [
  7479. "MIT"
  7480. ],
  7481. "authors": [
  7482. {
  7483. "name": "Till Krüss",
  7484. "homepage": "https://till.im",
  7485. "role": "Maintainer"
  7486. }
  7487. ],
  7488. "description": "A flexible and feature-complete Redis client for PHP.",
  7489. "homepage": "http://github.com/predis/predis",
  7490. "keywords": [
  7491. "nosql",
  7492. "predis",
  7493. "redis"
  7494. ],
  7495. "support": {
  7496. "issues": "https://github.com/predis/predis/issues",
  7497. "source": "https://github.com/predis/predis/tree/v2.3.0"
  7498. },
  7499. "funding": [
  7500. {
  7501. "url": "https://github.com/sponsors/tillkruss",
  7502. "type": "github"
  7503. }
  7504. ],
  7505. "time": "2024-11-21T20:00:02+00:00"
  7506. },
  7507. {
  7508. "name": "prettus/l5-repository",
  7509. "version": "2.10.1",
  7510. "source": {
  7511. "type": "git",
  7512. "url": "https://github.com/andersao/l5-repository.git",
  7513. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf"
  7514. },
  7515. "dist": {
  7516. "type": "zip",
  7517. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/27835088f92f42d73cc7f4f98b9386ddba709dcf",
  7518. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf",
  7519. "shasum": ""
  7520. },
  7521. "require": {
  7522. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7523. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7524. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7525. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7526. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7527. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7528. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7529. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7530. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4|~1.5|~1.6|~1.7"
  7531. },
  7532. "suggest": {
  7533. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  7534. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  7535. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  7536. },
  7537. "type": "library",
  7538. "extra": {
  7539. "laravel": {
  7540. "providers": [
  7541. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  7542. ]
  7543. }
  7544. },
  7545. "autoload": {
  7546. "psr-4": {
  7547. "Prettus\\Repository\\": "src/Prettus/Repository/"
  7548. }
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "MIT"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Anderson Andrade",
  7557. "email": "contato@andersonandra.de",
  7558. "homepage": "http://andersonandra.de",
  7559. "role": "Developer"
  7560. }
  7561. ],
  7562. "description": "Laravel 5|6|7|8|9|10|11|12 - Repositories to the database layer",
  7563. "homepage": "http://andersao.github.io/l5-repository",
  7564. "keywords": [
  7565. "cache",
  7566. "eloquent",
  7567. "laravel",
  7568. "model",
  7569. "repository"
  7570. ],
  7571. "support": {
  7572. "docs": "http://andersao.github.io/l5-repository",
  7573. "email": "contato@andersonandra.de",
  7574. "issues": "https://github.com/andersao/l5-repository/issues",
  7575. "source": "https://github.com/andersao/l5-repository",
  7576. "wiki": "https://github.com/andersao/l5-repository"
  7577. },
  7578. "time": "2025-03-10T11:13:50+00:00"
  7579. },
  7580. {
  7581. "name": "prettus/laravel-validation",
  7582. "version": "1.7.0",
  7583. "source": {
  7584. "type": "git",
  7585. "url": "https://github.com/andersao/laravel-validator.git",
  7586. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda"
  7587. },
  7588. "dist": {
  7589. "type": "zip",
  7590. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/fc6ecaaedb482767592eba2a4178792437c86bda",
  7591. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda",
  7592. "shasum": ""
  7593. },
  7594. "require": {
  7595. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7596. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7597. "php": ">=5.4.0"
  7598. },
  7599. "type": "library",
  7600. "autoload": {
  7601. "psr-4": {
  7602. "Prettus\\Validator\\": "src/Prettus/Validator/"
  7603. }
  7604. },
  7605. "notification-url": "https://packagist.org/downloads/",
  7606. "authors": [
  7607. {
  7608. "name": "Anderson Andrade",
  7609. "email": "contato@andersonandra.de",
  7610. "homepage": "http://andersonandra.de",
  7611. "role": "Developer"
  7612. }
  7613. ],
  7614. "description": "Laravel Validation Service",
  7615. "homepage": "http://andersao.github.io/laravel-validation",
  7616. "keywords": [
  7617. "laravel",
  7618. "service",
  7619. "validation"
  7620. ],
  7621. "support": {
  7622. "docs": "http://andersao.github.io/laravel-validation",
  7623. "email": "contato@andersonandra.de",
  7624. "issues": "https://github.com/andersao/laravel-validation/issues",
  7625. "source": "https://github.com/andersao/laravel-validation",
  7626. "wiki": "https://github.com/andersao/laravel-validation"
  7627. },
  7628. "time": "2025-03-07T18:33:05+00:00"
  7629. },
  7630. {
  7631. "name": "psr/cache",
  7632. "version": "3.0.0",
  7633. "source": {
  7634. "type": "git",
  7635. "url": "https://github.com/php-fig/cache.git",
  7636. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7637. },
  7638. "dist": {
  7639. "type": "zip",
  7640. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7641. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7642. "shasum": ""
  7643. },
  7644. "require": {
  7645. "php": ">=8.0.0"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "branch-alias": {
  7650. "dev-master": "1.0.x-dev"
  7651. }
  7652. },
  7653. "autoload": {
  7654. "psr-4": {
  7655. "Psr\\Cache\\": "src/"
  7656. }
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "MIT"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "PHP-FIG",
  7665. "homepage": "https://www.php-fig.org/"
  7666. }
  7667. ],
  7668. "description": "Common interface for caching libraries",
  7669. "keywords": [
  7670. "cache",
  7671. "psr",
  7672. "psr-6"
  7673. ],
  7674. "support": {
  7675. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7676. },
  7677. "time": "2021-02-03T23:26:27+00:00"
  7678. },
  7679. {
  7680. "name": "psr/clock",
  7681. "version": "1.0.0",
  7682. "source": {
  7683. "type": "git",
  7684. "url": "https://github.com/php-fig/clock.git",
  7685. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  7686. },
  7687. "dist": {
  7688. "type": "zip",
  7689. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7690. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7691. "shasum": ""
  7692. },
  7693. "require": {
  7694. "php": "^7.0 || ^8.0"
  7695. },
  7696. "type": "library",
  7697. "autoload": {
  7698. "psr-4": {
  7699. "Psr\\Clock\\": "src/"
  7700. }
  7701. },
  7702. "notification-url": "https://packagist.org/downloads/",
  7703. "license": [
  7704. "MIT"
  7705. ],
  7706. "authors": [
  7707. {
  7708. "name": "PHP-FIG",
  7709. "homepage": "https://www.php-fig.org/"
  7710. }
  7711. ],
  7712. "description": "Common interface for reading the clock.",
  7713. "homepage": "https://github.com/php-fig/clock",
  7714. "keywords": [
  7715. "clock",
  7716. "now",
  7717. "psr",
  7718. "psr-20",
  7719. "time"
  7720. ],
  7721. "support": {
  7722. "issues": "https://github.com/php-fig/clock/issues",
  7723. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  7724. },
  7725. "time": "2022-11-25T14:36:26+00:00"
  7726. },
  7727. {
  7728. "name": "psr/container",
  7729. "version": "2.0.2",
  7730. "source": {
  7731. "type": "git",
  7732. "url": "https://github.com/php-fig/container.git",
  7733. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7734. },
  7735. "dist": {
  7736. "type": "zip",
  7737. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7738. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7739. "shasum": ""
  7740. },
  7741. "require": {
  7742. "php": ">=7.4.0"
  7743. },
  7744. "type": "library",
  7745. "extra": {
  7746. "branch-alias": {
  7747. "dev-master": "2.0.x-dev"
  7748. }
  7749. },
  7750. "autoload": {
  7751. "psr-4": {
  7752. "Psr\\Container\\": "src/"
  7753. }
  7754. },
  7755. "notification-url": "https://packagist.org/downloads/",
  7756. "license": [
  7757. "MIT"
  7758. ],
  7759. "authors": [
  7760. {
  7761. "name": "PHP-FIG",
  7762. "homepage": "https://www.php-fig.org/"
  7763. }
  7764. ],
  7765. "description": "Common Container Interface (PHP FIG PSR-11)",
  7766. "homepage": "https://github.com/php-fig/container",
  7767. "keywords": [
  7768. "PSR-11",
  7769. "container",
  7770. "container-interface",
  7771. "container-interop",
  7772. "psr"
  7773. ],
  7774. "support": {
  7775. "issues": "https://github.com/php-fig/container/issues",
  7776. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7777. },
  7778. "time": "2021-11-05T16:47:00+00:00"
  7779. },
  7780. {
  7781. "name": "psr/event-dispatcher",
  7782. "version": "1.0.0",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/php-fig/event-dispatcher.git",
  7786. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7791. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7792. "shasum": ""
  7793. },
  7794. "require": {
  7795. "php": ">=7.2.0"
  7796. },
  7797. "type": "library",
  7798. "extra": {
  7799. "branch-alias": {
  7800. "dev-master": "1.0.x-dev"
  7801. }
  7802. },
  7803. "autoload": {
  7804. "psr-4": {
  7805. "Psr\\EventDispatcher\\": "src/"
  7806. }
  7807. },
  7808. "notification-url": "https://packagist.org/downloads/",
  7809. "license": [
  7810. "MIT"
  7811. ],
  7812. "authors": [
  7813. {
  7814. "name": "PHP-FIG",
  7815. "homepage": "http://www.php-fig.org/"
  7816. }
  7817. ],
  7818. "description": "Standard interfaces for event handling.",
  7819. "keywords": [
  7820. "events",
  7821. "psr",
  7822. "psr-14"
  7823. ],
  7824. "support": {
  7825. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7826. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7827. },
  7828. "time": "2019-01-08T18:20:26+00:00"
  7829. },
  7830. {
  7831. "name": "psr/http-client",
  7832. "version": "1.0.3",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/php-fig/http-client.git",
  7836. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7841. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7842. "shasum": ""
  7843. },
  7844. "require": {
  7845. "php": "^7.0 || ^8.0",
  7846. "psr/http-message": "^1.0 || ^2.0"
  7847. },
  7848. "type": "library",
  7849. "extra": {
  7850. "branch-alias": {
  7851. "dev-master": "1.0.x-dev"
  7852. }
  7853. },
  7854. "autoload": {
  7855. "psr-4": {
  7856. "Psr\\Http\\Client\\": "src/"
  7857. }
  7858. },
  7859. "notification-url": "https://packagist.org/downloads/",
  7860. "license": [
  7861. "MIT"
  7862. ],
  7863. "authors": [
  7864. {
  7865. "name": "PHP-FIG",
  7866. "homepage": "https://www.php-fig.org/"
  7867. }
  7868. ],
  7869. "description": "Common interface for HTTP clients",
  7870. "homepage": "https://github.com/php-fig/http-client",
  7871. "keywords": [
  7872. "http",
  7873. "http-client",
  7874. "psr",
  7875. "psr-18"
  7876. ],
  7877. "support": {
  7878. "source": "https://github.com/php-fig/http-client"
  7879. },
  7880. "time": "2023-09-23T14:17:50+00:00"
  7881. },
  7882. {
  7883. "name": "psr/http-factory",
  7884. "version": "1.1.0",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/php-fig/http-factory.git",
  7888. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7893. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7894. "shasum": ""
  7895. },
  7896. "require": {
  7897. "php": ">=7.1",
  7898. "psr/http-message": "^1.0 || ^2.0"
  7899. },
  7900. "type": "library",
  7901. "extra": {
  7902. "branch-alias": {
  7903. "dev-master": "1.0.x-dev"
  7904. }
  7905. },
  7906. "autoload": {
  7907. "psr-4": {
  7908. "Psr\\Http\\Message\\": "src/"
  7909. }
  7910. },
  7911. "notification-url": "https://packagist.org/downloads/",
  7912. "license": [
  7913. "MIT"
  7914. ],
  7915. "authors": [
  7916. {
  7917. "name": "PHP-FIG",
  7918. "homepage": "https://www.php-fig.org/"
  7919. }
  7920. ],
  7921. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7922. "keywords": [
  7923. "factory",
  7924. "http",
  7925. "message",
  7926. "psr",
  7927. "psr-17",
  7928. "psr-7",
  7929. "request",
  7930. "response"
  7931. ],
  7932. "support": {
  7933. "source": "https://github.com/php-fig/http-factory"
  7934. },
  7935. "time": "2024-04-15T12:06:14+00:00"
  7936. },
  7937. {
  7938. "name": "psr/http-message",
  7939. "version": "2.0",
  7940. "source": {
  7941. "type": "git",
  7942. "url": "https://github.com/php-fig/http-message.git",
  7943. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7944. },
  7945. "dist": {
  7946. "type": "zip",
  7947. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7948. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7949. "shasum": ""
  7950. },
  7951. "require": {
  7952. "php": "^7.2 || ^8.0"
  7953. },
  7954. "type": "library",
  7955. "extra": {
  7956. "branch-alias": {
  7957. "dev-master": "2.0.x-dev"
  7958. }
  7959. },
  7960. "autoload": {
  7961. "psr-4": {
  7962. "Psr\\Http\\Message\\": "src/"
  7963. }
  7964. },
  7965. "notification-url": "https://packagist.org/downloads/",
  7966. "license": [
  7967. "MIT"
  7968. ],
  7969. "authors": [
  7970. {
  7971. "name": "PHP-FIG",
  7972. "homepage": "https://www.php-fig.org/"
  7973. }
  7974. ],
  7975. "description": "Common interface for HTTP messages",
  7976. "homepage": "https://github.com/php-fig/http-message",
  7977. "keywords": [
  7978. "http",
  7979. "http-message",
  7980. "psr",
  7981. "psr-7",
  7982. "request",
  7983. "response"
  7984. ],
  7985. "support": {
  7986. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7987. },
  7988. "time": "2023-04-04T09:54:51+00:00"
  7989. },
  7990. {
  7991. "name": "psr/link",
  7992. "version": "2.0.1",
  7993. "source": {
  7994. "type": "git",
  7995. "url": "https://github.com/php-fig/link.git",
  7996. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  7997. },
  7998. "dist": {
  7999. "type": "zip",
  8000. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  8001. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  8002. "shasum": ""
  8003. },
  8004. "require": {
  8005. "php": ">=8.0.0"
  8006. },
  8007. "suggest": {
  8008. "fig/link-util": "Provides some useful PSR-13 utilities"
  8009. },
  8010. "type": "library",
  8011. "extra": {
  8012. "branch-alias": {
  8013. "dev-master": "2.0.x-dev"
  8014. }
  8015. },
  8016. "autoload": {
  8017. "psr-4": {
  8018. "Psr\\Link\\": "src/"
  8019. }
  8020. },
  8021. "notification-url": "https://packagist.org/downloads/",
  8022. "license": [
  8023. "MIT"
  8024. ],
  8025. "authors": [
  8026. {
  8027. "name": "PHP-FIG",
  8028. "homepage": "http://www.php-fig.org/"
  8029. }
  8030. ],
  8031. "description": "Common interfaces for HTTP links",
  8032. "homepage": "https://github.com/php-fig/link",
  8033. "keywords": [
  8034. "http",
  8035. "http-link",
  8036. "link",
  8037. "psr",
  8038. "psr-13",
  8039. "rest"
  8040. ],
  8041. "support": {
  8042. "source": "https://github.com/php-fig/link/tree/2.0.1"
  8043. },
  8044. "time": "2021-03-11T23:00:27+00:00"
  8045. },
  8046. {
  8047. "name": "psr/log",
  8048. "version": "3.0.2",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/php-fig/log.git",
  8052. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  8057. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "php": ">=8.0.0"
  8062. },
  8063. "type": "library",
  8064. "extra": {
  8065. "branch-alias": {
  8066. "dev-master": "3.x-dev"
  8067. }
  8068. },
  8069. "autoload": {
  8070. "psr-4": {
  8071. "Psr\\Log\\": "src"
  8072. }
  8073. },
  8074. "notification-url": "https://packagist.org/downloads/",
  8075. "license": [
  8076. "MIT"
  8077. ],
  8078. "authors": [
  8079. {
  8080. "name": "PHP-FIG",
  8081. "homepage": "https://www.php-fig.org/"
  8082. }
  8083. ],
  8084. "description": "Common interface for logging libraries",
  8085. "homepage": "https://github.com/php-fig/log",
  8086. "keywords": [
  8087. "log",
  8088. "psr",
  8089. "psr-3"
  8090. ],
  8091. "support": {
  8092. "source": "https://github.com/php-fig/log/tree/3.0.2"
  8093. },
  8094. "time": "2024-09-11T13:17:53+00:00"
  8095. },
  8096. {
  8097. "name": "psr/simple-cache",
  8098. "version": "3.0.0",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/php-fig/simple-cache.git",
  8102. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  8107. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "php": ">=8.0.0"
  8112. },
  8113. "type": "library",
  8114. "extra": {
  8115. "branch-alias": {
  8116. "dev-master": "3.0.x-dev"
  8117. }
  8118. },
  8119. "autoload": {
  8120. "psr-4": {
  8121. "Psr\\SimpleCache\\": "src/"
  8122. }
  8123. },
  8124. "notification-url": "https://packagist.org/downloads/",
  8125. "license": [
  8126. "MIT"
  8127. ],
  8128. "authors": [
  8129. {
  8130. "name": "PHP-FIG",
  8131. "homepage": "https://www.php-fig.org/"
  8132. }
  8133. ],
  8134. "description": "Common interfaces for simple caching",
  8135. "keywords": [
  8136. "cache",
  8137. "caching",
  8138. "psr",
  8139. "psr-16",
  8140. "simple-cache"
  8141. ],
  8142. "support": {
  8143. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  8144. },
  8145. "time": "2021-10-29T13:26:27+00:00"
  8146. },
  8147. {
  8148. "name": "psy/psysh",
  8149. "version": "v0.12.8",
  8150. "source": {
  8151. "type": "git",
  8152. "url": "https://github.com/bobthecow/psysh.git",
  8153. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  8154. },
  8155. "dist": {
  8156. "type": "zip",
  8157. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  8158. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  8159. "shasum": ""
  8160. },
  8161. "require": {
  8162. "ext-json": "*",
  8163. "ext-tokenizer": "*",
  8164. "nikic/php-parser": "^5.0 || ^4.0",
  8165. "php": "^8.0 || ^7.4",
  8166. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  8167. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  8168. },
  8169. "conflict": {
  8170. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  8171. },
  8172. "require-dev": {
  8173. "bamarni/composer-bin-plugin": "^1.2"
  8174. },
  8175. "suggest": {
  8176. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8177. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8178. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  8179. },
  8180. "bin": [
  8181. "bin/psysh"
  8182. ],
  8183. "type": "library",
  8184. "extra": {
  8185. "bamarni-bin": {
  8186. "bin-links": false,
  8187. "forward-command": false
  8188. },
  8189. "branch-alias": {
  8190. "dev-main": "0.12.x-dev"
  8191. }
  8192. },
  8193. "autoload": {
  8194. "files": [
  8195. "src/functions.php"
  8196. ],
  8197. "psr-4": {
  8198. "Psy\\": "src/"
  8199. }
  8200. },
  8201. "notification-url": "https://packagist.org/downloads/",
  8202. "license": [
  8203. "MIT"
  8204. ],
  8205. "authors": [
  8206. {
  8207. "name": "Justin Hileman",
  8208. "email": "justin@justinhileman.info",
  8209. "homepage": "http://justinhileman.com"
  8210. }
  8211. ],
  8212. "description": "An interactive shell for modern PHP.",
  8213. "homepage": "http://psysh.org",
  8214. "keywords": [
  8215. "REPL",
  8216. "console",
  8217. "interactive",
  8218. "shell"
  8219. ],
  8220. "support": {
  8221. "issues": "https://github.com/bobthecow/psysh/issues",
  8222. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  8223. },
  8224. "time": "2025-03-16T03:05:19+00:00"
  8225. },
  8226. {
  8227. "name": "pusher/pusher-php-server",
  8228. "version": "7.2.7",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/pusher/pusher-http-php.git",
  8232. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  8237. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "ext-curl": "*",
  8242. "ext-json": "*",
  8243. "guzzlehttp/guzzle": "^7.2",
  8244. "paragonie/sodium_compat": "^1.6|^2.0",
  8245. "php": "^7.3|^8.0",
  8246. "psr/log": "^1.0|^2.0|^3.0"
  8247. },
  8248. "require-dev": {
  8249. "overtrue/phplint": "^2.3",
  8250. "phpunit/phpunit": "^9.3"
  8251. },
  8252. "type": "library",
  8253. "extra": {
  8254. "branch-alias": {
  8255. "dev-master": "5.0-dev"
  8256. }
  8257. },
  8258. "autoload": {
  8259. "psr-4": {
  8260. "Pusher\\": "src/"
  8261. }
  8262. },
  8263. "notification-url": "https://packagist.org/downloads/",
  8264. "license": [
  8265. "MIT"
  8266. ],
  8267. "description": "Library for interacting with the Pusher REST API",
  8268. "keywords": [
  8269. "events",
  8270. "messaging",
  8271. "php-pusher-server",
  8272. "publish",
  8273. "push",
  8274. "pusher",
  8275. "real time",
  8276. "real-time",
  8277. "realtime",
  8278. "rest",
  8279. "trigger"
  8280. ],
  8281. "support": {
  8282. "issues": "https://github.com/pusher/pusher-http-php/issues",
  8283. "source": "https://github.com/pusher/pusher-http-php/tree/7.2.7"
  8284. },
  8285. "time": "2025-01-06T10:56:20+00:00"
  8286. },
  8287. {
  8288. "name": "ralouphie/getallheaders",
  8289. "version": "3.0.3",
  8290. "source": {
  8291. "type": "git",
  8292. "url": "https://github.com/ralouphie/getallheaders.git",
  8293. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8294. },
  8295. "dist": {
  8296. "type": "zip",
  8297. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8298. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8299. "shasum": ""
  8300. },
  8301. "require": {
  8302. "php": ">=5.6"
  8303. },
  8304. "require-dev": {
  8305. "php-coveralls/php-coveralls": "^2.1",
  8306. "phpunit/phpunit": "^5 || ^6.5"
  8307. },
  8308. "type": "library",
  8309. "autoload": {
  8310. "files": [
  8311. "src/getallheaders.php"
  8312. ]
  8313. },
  8314. "notification-url": "https://packagist.org/downloads/",
  8315. "license": [
  8316. "MIT"
  8317. ],
  8318. "authors": [
  8319. {
  8320. "name": "Ralph Khattar",
  8321. "email": "ralph.khattar@gmail.com"
  8322. }
  8323. ],
  8324. "description": "A polyfill for getallheaders.",
  8325. "support": {
  8326. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8327. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8328. },
  8329. "time": "2019-03-08T08:55:37+00:00"
  8330. },
  8331. {
  8332. "name": "ramsey/collection",
  8333. "version": "2.1.0",
  8334. "source": {
  8335. "type": "git",
  8336. "url": "https://github.com/ramsey/collection.git",
  8337. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109"
  8338. },
  8339. "dist": {
  8340. "type": "zip",
  8341. "url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  8342. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  8343. "shasum": ""
  8344. },
  8345. "require": {
  8346. "php": "^8.1"
  8347. },
  8348. "require-dev": {
  8349. "captainhook/plugin-composer": "^5.3",
  8350. "ergebnis/composer-normalize": "^2.45",
  8351. "fakerphp/faker": "^1.24",
  8352. "hamcrest/hamcrest-php": "^2.0",
  8353. "jangregor/phpstan-prophecy": "^2.1",
  8354. "mockery/mockery": "^1.6",
  8355. "php-parallel-lint/php-console-highlighter": "^1.0",
  8356. "php-parallel-lint/php-parallel-lint": "^1.4",
  8357. "phpspec/prophecy-phpunit": "^2.3",
  8358. "phpstan/extension-installer": "^1.4",
  8359. "phpstan/phpstan": "^2.1",
  8360. "phpstan/phpstan-mockery": "^2.0",
  8361. "phpstan/phpstan-phpunit": "^2.0",
  8362. "phpunit/phpunit": "^10.5",
  8363. "ramsey/coding-standard": "^2.3",
  8364. "ramsey/conventional-commits": "^1.6",
  8365. "roave/security-advisories": "dev-latest"
  8366. },
  8367. "type": "library",
  8368. "extra": {
  8369. "captainhook": {
  8370. "force-install": true
  8371. },
  8372. "ramsey/conventional-commits": {
  8373. "configFile": "conventional-commits.json"
  8374. }
  8375. },
  8376. "autoload": {
  8377. "psr-4": {
  8378. "Ramsey\\Collection\\": "src/"
  8379. }
  8380. },
  8381. "notification-url": "https://packagist.org/downloads/",
  8382. "license": [
  8383. "MIT"
  8384. ],
  8385. "authors": [
  8386. {
  8387. "name": "Ben Ramsey",
  8388. "email": "ben@benramsey.com",
  8389. "homepage": "https://benramsey.com"
  8390. }
  8391. ],
  8392. "description": "A PHP library for representing and manipulating collections.",
  8393. "keywords": [
  8394. "array",
  8395. "collection",
  8396. "hash",
  8397. "map",
  8398. "queue",
  8399. "set"
  8400. ],
  8401. "support": {
  8402. "issues": "https://github.com/ramsey/collection/issues",
  8403. "source": "https://github.com/ramsey/collection/tree/2.1.0"
  8404. },
  8405. "time": "2025-03-02T04:48:29+00:00"
  8406. },
  8407. {
  8408. "name": "ramsey/uuid",
  8409. "version": "4.7.6",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/ramsey/uuid.git",
  8413. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  8418. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  8419. "shasum": ""
  8420. },
  8421. "require": {
  8422. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  8423. "ext-json": "*",
  8424. "php": "^8.0",
  8425. "ramsey/collection": "^1.2 || ^2.0"
  8426. },
  8427. "replace": {
  8428. "rhumsaa/uuid": "self.version"
  8429. },
  8430. "require-dev": {
  8431. "captainhook/captainhook": "^5.10",
  8432. "captainhook/plugin-composer": "^5.3",
  8433. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  8434. "doctrine/annotations": "^1.8",
  8435. "ergebnis/composer-normalize": "^2.15",
  8436. "mockery/mockery": "^1.3",
  8437. "paragonie/random-lib": "^2",
  8438. "php-mock/php-mock": "^2.2",
  8439. "php-mock/php-mock-mockery": "^1.3",
  8440. "php-parallel-lint/php-parallel-lint": "^1.1",
  8441. "phpbench/phpbench": "^1.0",
  8442. "phpstan/extension-installer": "^1.1",
  8443. "phpstan/phpstan": "^1.8",
  8444. "phpstan/phpstan-mockery": "^1.1",
  8445. "phpstan/phpstan-phpunit": "^1.1",
  8446. "phpunit/phpunit": "^8.5 || ^9",
  8447. "ramsey/composer-repl": "^1.4",
  8448. "slevomat/coding-standard": "^8.4",
  8449. "squizlabs/php_codesniffer": "^3.5",
  8450. "vimeo/psalm": "^4.9"
  8451. },
  8452. "suggest": {
  8453. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  8454. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  8455. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  8456. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  8457. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  8458. },
  8459. "type": "library",
  8460. "extra": {
  8461. "captainhook": {
  8462. "force-install": true
  8463. }
  8464. },
  8465. "autoload": {
  8466. "files": [
  8467. "src/functions.php"
  8468. ],
  8469. "psr-4": {
  8470. "Ramsey\\Uuid\\": "src/"
  8471. }
  8472. },
  8473. "notification-url": "https://packagist.org/downloads/",
  8474. "license": [
  8475. "MIT"
  8476. ],
  8477. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  8478. "keywords": [
  8479. "guid",
  8480. "identifier",
  8481. "uuid"
  8482. ],
  8483. "support": {
  8484. "issues": "https://github.com/ramsey/uuid/issues",
  8485. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  8486. },
  8487. "funding": [
  8488. {
  8489. "url": "https://github.com/ramsey",
  8490. "type": "github"
  8491. },
  8492. {
  8493. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  8494. "type": "tidelift"
  8495. }
  8496. ],
  8497. "time": "2024-04-27T21:32:50+00:00"
  8498. },
  8499. {
  8500. "name": "sabberworm/php-css-parser",
  8501. "version": "v8.7.0",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  8505. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/f414ff953002a9b18e3a116f5e462c56f21237cf",
  8510. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "ext-iconv": "*",
  8515. "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  8516. },
  8517. "require-dev": {
  8518. "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.40"
  8519. },
  8520. "suggest": {
  8521. "ext-mbstring": "for parsing UTF-8 CSS"
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-main": "9.0.x-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "psr-4": {
  8531. "Sabberworm\\CSS\\": "src/"
  8532. }
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "MIT"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Raphael Schweikert"
  8541. },
  8542. {
  8543. "name": "Oliver Klee",
  8544. "email": "github@oliverklee.de"
  8545. },
  8546. {
  8547. "name": "Jake Hotson",
  8548. "email": "jake.github@qzdesign.co.uk"
  8549. }
  8550. ],
  8551. "description": "Parser for CSS Files written in PHP",
  8552. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  8553. "keywords": [
  8554. "css",
  8555. "parser",
  8556. "stylesheet"
  8557. ],
  8558. "support": {
  8559. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  8560. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.7.0"
  8561. },
  8562. "time": "2024-10-27T17:38:32+00:00"
  8563. },
  8564. {
  8565. "name": "setasign/fpdi",
  8566. "version": "v2.6.4",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/Setasign/FPDI.git",
  8570. "reference": "4b53852fde2734ec6a07e458a085db627c60eada"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada",
  8575. "reference": "4b53852fde2734ec6a07e458a085db627c60eada",
  8576. "shasum": ""
  8577. },
  8578. "require": {
  8579. "ext-zlib": "*",
  8580. "php": "^7.1 || ^8.0"
  8581. },
  8582. "conflict": {
  8583. "setasign/tfpdf": "<1.31"
  8584. },
  8585. "require-dev": {
  8586. "phpunit/phpunit": "^7",
  8587. "setasign/fpdf": "~1.8.6",
  8588. "setasign/tfpdf": "~1.33",
  8589. "squizlabs/php_codesniffer": "^3.5",
  8590. "tecnickcom/tcpdf": "^6.8"
  8591. },
  8592. "suggest": {
  8593. "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
  8594. },
  8595. "type": "library",
  8596. "autoload": {
  8597. "psr-4": {
  8598. "setasign\\Fpdi\\": "src/"
  8599. }
  8600. },
  8601. "notification-url": "https://packagist.org/downloads/",
  8602. "license": [
  8603. "MIT"
  8604. ],
  8605. "authors": [
  8606. {
  8607. "name": "Jan Slabon",
  8608. "email": "jan.slabon@setasign.com",
  8609. "homepage": "https://www.setasign.com"
  8610. },
  8611. {
  8612. "name": "Maximilian Kresse",
  8613. "email": "maximilian.kresse@setasign.com",
  8614. "homepage": "https://www.setasign.com"
  8615. }
  8616. ],
  8617. "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
  8618. "homepage": "https://www.setasign.com/fpdi",
  8619. "keywords": [
  8620. "fpdf",
  8621. "fpdi",
  8622. "pdf"
  8623. ],
  8624. "support": {
  8625. "issues": "https://github.com/Setasign/FPDI/issues",
  8626. "source": "https://github.com/Setasign/FPDI/tree/v2.6.4"
  8627. },
  8628. "funding": [
  8629. {
  8630. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  8631. "type": "tidelift"
  8632. }
  8633. ],
  8634. "time": "2025-08-05T09:57:14+00:00"
  8635. },
  8636. {
  8637. "name": "shetabit/visitor",
  8638. "version": "v4.4.1",
  8639. "source": {
  8640. "type": "git",
  8641. "url": "https://github.com/shetabit/visitor.git",
  8642. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96"
  8643. },
  8644. "dist": {
  8645. "type": "zip",
  8646. "url": "https://api.github.com/repos/shetabit/visitor/zipball/4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  8647. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  8648. "shasum": ""
  8649. },
  8650. "require": {
  8651. "illuminate/support": "9.*|10.*|11.*|12.*",
  8652. "jaybizzle/crawler-detect": "^1.2",
  8653. "mobiledetect/mobiledetectlib": "^4.8",
  8654. "php": ">=8.0",
  8655. "ua-parser/uap-php": "^3.9"
  8656. },
  8657. "require-dev": {
  8658. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  8659. "phpunit/phpunit": ">=7.5",
  8660. "squizlabs/php_codesniffer": "^3.4"
  8661. },
  8662. "type": "library",
  8663. "extra": {
  8664. "laravel": {
  8665. "aliases": {
  8666. "Visitor": "Shetabit\\Visitor\\Facade\\Visitor"
  8667. },
  8668. "providers": [
  8669. "Shetabit\\Visitor\\Provider\\VisitorServiceProvider"
  8670. ]
  8671. }
  8672. },
  8673. "autoload": {
  8674. "files": [
  8675. "src/helpers.php"
  8676. ],
  8677. "psr-4": {
  8678. "Shetabit\\Visitor\\": "src"
  8679. }
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "MIT"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "Mahdi Khanzadi",
  8688. "email": "khanzadimahdi@gmail.com",
  8689. "homepage": "https://github.com/khanzadimahdi",
  8690. "role": "Developer"
  8691. }
  8692. ],
  8693. "description": "Laravel visitor",
  8694. "homepage": "https://github.com/shetabit/visitor",
  8695. "keywords": [
  8696. "parse laravel user agents",
  8697. "shetabit",
  8698. "trace laravel visitors",
  8699. "track laravel visitors",
  8700. "visitor"
  8701. ],
  8702. "support": {
  8703. "issues": "https://github.com/shetabit/visitor/issues",
  8704. "source": "https://github.com/shetabit/visitor/tree/v4.4.1"
  8705. },
  8706. "time": "2025-03-18T14:58:13+00:00"
  8707. },
  8708. {
  8709. "name": "spatie/browsershot",
  8710. "version": "5.0.8",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/spatie/browsershot.git",
  8714. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/spatie/browsershot/zipball/0102971ae974022ec4a7a149e8924ea355b52cc3",
  8719. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3",
  8720. "shasum": ""
  8721. },
  8722. "require": {
  8723. "ext-fileinfo": "*",
  8724. "ext-json": "*",
  8725. "php": "^8.2",
  8726. "spatie/temporary-directory": "^2.0",
  8727. "symfony/process": "^6.0|^7.0"
  8728. },
  8729. "require-dev": {
  8730. "pestphp/pest": "^3.0",
  8731. "spatie/image": "^3.6",
  8732. "spatie/pdf-to-text": "^1.52",
  8733. "spatie/phpunit-snapshot-assertions": "^4.2.3|^5.0"
  8734. },
  8735. "type": "library",
  8736. "autoload": {
  8737. "psr-4": {
  8738. "Spatie\\Browsershot\\": "src"
  8739. }
  8740. },
  8741. "notification-url": "https://packagist.org/downloads/",
  8742. "license": [
  8743. "MIT"
  8744. ],
  8745. "authors": [
  8746. {
  8747. "name": "Freek Van der Herten",
  8748. "email": "freek@spatie.be",
  8749. "homepage": "https://github.com/freekmurze",
  8750. "role": "Developer"
  8751. }
  8752. ],
  8753. "description": "Convert a webpage to an image or pdf using headless Chrome",
  8754. "homepage": "https://github.com/spatie/browsershot",
  8755. "keywords": [
  8756. "chrome",
  8757. "convert",
  8758. "headless",
  8759. "image",
  8760. "pdf",
  8761. "puppeteer",
  8762. "screenshot",
  8763. "webpage"
  8764. ],
  8765. "support": {
  8766. "source": "https://github.com/spatie/browsershot/tree/5.0.8"
  8767. },
  8768. "funding": [
  8769. {
  8770. "url": "https://github.com/spatie",
  8771. "type": "github"
  8772. }
  8773. ],
  8774. "time": "2025-02-17T09:56:12+00:00"
  8775. },
  8776. {
  8777. "name": "spatie/crawler",
  8778. "version": "8.4.2",
  8779. "source": {
  8780. "type": "git",
  8781. "url": "https://github.com/spatie/crawler.git",
  8782. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3"
  8783. },
  8784. "dist": {
  8785. "type": "zip",
  8786. "url": "https://api.github.com/repos/spatie/crawler/zipball/4dc593040018885229dfc8df7cc4bf12cd470cf3",
  8787. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3",
  8788. "shasum": ""
  8789. },
  8790. "require": {
  8791. "guzzlehttp/guzzle": "^7.3",
  8792. "guzzlehttp/psr7": "^2.0",
  8793. "illuminate/collections": "^10.0|^11.0|^12.0",
  8794. "nicmart/tree": "^0.9",
  8795. "php": "^8.2",
  8796. "spatie/browsershot": "^5.0.5",
  8797. "spatie/robots-txt": "^2.0",
  8798. "symfony/dom-crawler": "^6.0|^7.0"
  8799. },
  8800. "require-dev": {
  8801. "pestphp/pest": "^2.0",
  8802. "spatie/ray": "^1.37"
  8803. },
  8804. "type": "library",
  8805. "autoload": {
  8806. "psr-4": {
  8807. "Spatie\\Crawler\\": "src"
  8808. }
  8809. },
  8810. "notification-url": "https://packagist.org/downloads/",
  8811. "license": [
  8812. "MIT"
  8813. ],
  8814. "authors": [
  8815. {
  8816. "name": "Freek Van der Herten",
  8817. "email": "freek@spatie.be"
  8818. }
  8819. ],
  8820. "description": "Crawl all internal links found on a website",
  8821. "homepage": "https://github.com/spatie/crawler",
  8822. "keywords": [
  8823. "crawler",
  8824. "link",
  8825. "spatie",
  8826. "website"
  8827. ],
  8828. "support": {
  8829. "issues": "https://github.com/spatie/crawler/issues",
  8830. "source": "https://github.com/spatie/crawler/tree/8.4.2"
  8831. },
  8832. "funding": [
  8833. {
  8834. "url": "https://spatie.be/open-source/support-us",
  8835. "type": "custom"
  8836. },
  8837. {
  8838. "url": "https://github.com/spatie",
  8839. "type": "github"
  8840. }
  8841. ],
  8842. "time": "2025-02-24T09:20:47+00:00"
  8843. },
  8844. {
  8845. "name": "spatie/image",
  8846. "version": "3.9.4",
  8847. "source": {
  8848. "type": "git",
  8849. "url": "https://github.com/spatie/image.git",
  8850. "reference": "6a322b5e9268e3903d4fb6e1ff08b7dcc3aa9429"
  8851. },
  8852. "dist": {
  8853. "type": "zip",
  8854. "url": "https://api.github.com/repos/spatie/image/zipball/6a322b5e9268e3903d4fb6e1ff08b7dcc3aa9429",
  8855. "reference": "6a322b5e9268e3903d4fb6e1ff08b7dcc3aa9429",
  8856. "shasum": ""
  8857. },
  8858. "require": {
  8859. "ext-exif": "*",
  8860. "ext-json": "*",
  8861. "ext-mbstring": "*",
  8862. "php": "^8.2",
  8863. "spatie/image-optimizer": "^1.7.5",
  8864. "spatie/temporary-directory": "^2.2",
  8865. "symfony/process": "^6.4|^7.0|^8.0"
  8866. },
  8867. "require-dev": {
  8868. "ext-gd": "*",
  8869. "ext-imagick": "*",
  8870. "laravel/sail": "^1.34",
  8871. "pestphp/pest": "^3.0|^4.0",
  8872. "phpstan/phpstan": "^1.10.50",
  8873. "spatie/pest-plugin-snapshots": "^2.1",
  8874. "spatie/pixelmatch-php": "^1.0",
  8875. "spatie/ray": "^1.40.1",
  8876. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  8877. },
  8878. "type": "library",
  8879. "autoload": {
  8880. "psr-4": {
  8881. "Spatie\\Image\\": "src"
  8882. }
  8883. },
  8884. "notification-url": "https://packagist.org/downloads/",
  8885. "license": [
  8886. "MIT"
  8887. ],
  8888. "authors": [
  8889. {
  8890. "name": "Freek Van der Herten",
  8891. "email": "freek@spatie.be",
  8892. "homepage": "https://spatie.be",
  8893. "role": "Developer"
  8894. }
  8895. ],
  8896. "description": "Manipulate images with an expressive API",
  8897. "homepage": "https://github.com/spatie/image",
  8898. "keywords": [
  8899. "image",
  8900. "spatie"
  8901. ],
  8902. "support": {
  8903. "source": "https://github.com/spatie/image/tree/3.9.4"
  8904. },
  8905. "funding": [
  8906. {
  8907. "url": "https://spatie.be/open-source/support-us",
  8908. "type": "custom"
  8909. },
  8910. {
  8911. "url": "https://github.com/spatie",
  8912. "type": "github"
  8913. }
  8914. ],
  8915. "time": "2026-03-13T14:23:45+00:00"
  8916. },
  8917. {
  8918. "name": "spatie/image-optimizer",
  8919. "version": "1.8.1",
  8920. "source": {
  8921. "type": "git",
  8922. "url": "https://github.com/spatie/image-optimizer.git",
  8923. "reference": "2ad9ac7c19501739183359ae64ea6c15869c23d9"
  8924. },
  8925. "dist": {
  8926. "type": "zip",
  8927. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/2ad9ac7c19501739183359ae64ea6c15869c23d9",
  8928. "reference": "2ad9ac7c19501739183359ae64ea6c15869c23d9",
  8929. "shasum": ""
  8930. },
  8931. "require": {
  8932. "ext-fileinfo": "*",
  8933. "php": "^7.3|^8.0",
  8934. "psr/log": "^1.0 | ^2.0 | ^3.0",
  8935. "symfony/process": "^4.2|^5.0|^6.0|^7.0|^8.0"
  8936. },
  8937. "require-dev": {
  8938. "pestphp/pest": "^1.21|^2.0|^3.0|^4.0",
  8939. "phpunit/phpunit": "^8.5.21|^9.4.4|^10.0|^11.0|^12.0",
  8940. "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0|^8.0"
  8941. },
  8942. "type": "library",
  8943. "autoload": {
  8944. "psr-4": {
  8945. "Spatie\\ImageOptimizer\\": "src"
  8946. }
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "MIT"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Freek Van der Herten",
  8955. "email": "freek@spatie.be",
  8956. "homepage": "https://spatie.be",
  8957. "role": "Developer"
  8958. }
  8959. ],
  8960. "description": "Easily optimize images using PHP",
  8961. "homepage": "https://github.com/spatie/image-optimizer",
  8962. "keywords": [
  8963. "image-optimizer",
  8964. "spatie"
  8965. ],
  8966. "support": {
  8967. "issues": "https://github.com/spatie/image-optimizer/issues",
  8968. "source": "https://github.com/spatie/image-optimizer/tree/1.8.1"
  8969. },
  8970. "time": "2025-11-26T10:57:19+00:00"
  8971. },
  8972. {
  8973. "name": "spatie/laravel-medialibrary",
  8974. "version": "11.21.0",
  8975. "source": {
  8976. "type": "git",
  8977. "url": "https://github.com/spatie/laravel-medialibrary.git",
  8978. "reference": "d6e2595033ffd130d4dd5d124510ab3304794c44"
  8979. },
  8980. "dist": {
  8981. "type": "zip",
  8982. "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/d6e2595033ffd130d4dd5d124510ab3304794c44",
  8983. "reference": "d6e2595033ffd130d4dd5d124510ab3304794c44",
  8984. "shasum": ""
  8985. },
  8986. "require": {
  8987. "composer/semver": "^3.4",
  8988. "ext-exif": "*",
  8989. "ext-fileinfo": "*",
  8990. "ext-json": "*",
  8991. "illuminate/bus": "^10.2|^11.0|^12.0|^13.0",
  8992. "illuminate/conditionable": "^10.2|^11.0|^12.0|^13.0",
  8993. "illuminate/console": "^10.2|^11.0|^12.0|^13.0",
  8994. "illuminate/database": "^10.2|^11.0|^12.0|^13.0",
  8995. "illuminate/pipeline": "^10.2|^11.0|^12.0|^13.0",
  8996. "illuminate/support": "^10.2|^11.0|^12.0|^13.0",
  8997. "maennchen/zipstream-php": "^3.1",
  8998. "php": "^8.2",
  8999. "spatie/image": "^3.3.2",
  9000. "spatie/laravel-package-tools": "^1.16.1",
  9001. "spatie/temporary-directory": "^2.2",
  9002. "symfony/console": "^6.4.1|^7.0|^8.0"
  9003. },
  9004. "conflict": {
  9005. "php-ffmpeg/php-ffmpeg": "<0.6.1"
  9006. },
  9007. "require-dev": {
  9008. "aws/aws-sdk-php": "^3.293.10",
  9009. "ext-imagick": "*",
  9010. "ext-pdo_sqlite": "*",
  9011. "ext-zip": "*",
  9012. "guzzlehttp/guzzle": "^7.8.1",
  9013. "larastan/larastan": "^2.7|^3.0",
  9014. "league/flysystem-aws-s3-v3": "^3.22",
  9015. "mockery/mockery": "^1.6.7",
  9016. "orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
  9017. "pestphp/pest": "^2.36|^3.0|^4.0",
  9018. "phpstan/extension-installer": "^1.3.1",
  9019. "spatie/laravel-ray": "^1.33",
  9020. "spatie/pdf-to-image": "^2.2|^3.0",
  9021. "spatie/pest-expectations": "^1.13",
  9022. "spatie/pest-plugin-snapshots": "^2.1"
  9023. },
  9024. "suggest": {
  9025. "league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage",
  9026. "php-ffmpeg/php-ffmpeg": "Required for generating video thumbnails",
  9027. "spatie/pdf-to-image": "Required for generating thumbnails of PDFs and SVGs"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "laravel": {
  9032. "providers": [
  9033. "Spatie\\MediaLibrary\\MediaLibraryServiceProvider"
  9034. ]
  9035. }
  9036. },
  9037. "autoload": {
  9038. "psr-4": {
  9039. "Spatie\\MediaLibrary\\": "src"
  9040. }
  9041. },
  9042. "notification-url": "https://packagist.org/downloads/",
  9043. "license": [
  9044. "MIT"
  9045. ],
  9046. "authors": [
  9047. {
  9048. "name": "Freek Van der Herten",
  9049. "email": "freek@spatie.be",
  9050. "homepage": "https://spatie.be",
  9051. "role": "Developer"
  9052. }
  9053. ],
  9054. "description": "Associate files with Eloquent models",
  9055. "homepage": "https://github.com/spatie/laravel-medialibrary",
  9056. "keywords": [
  9057. "cms",
  9058. "conversion",
  9059. "downloads",
  9060. "images",
  9061. "laravel",
  9062. "laravel-medialibrary",
  9063. "media",
  9064. "spatie"
  9065. ],
  9066. "support": {
  9067. "issues": "https://github.com/spatie/laravel-medialibrary/issues",
  9068. "source": "https://github.com/spatie/laravel-medialibrary/tree/11.21.0"
  9069. },
  9070. "funding": [
  9071. {
  9072. "url": "https://spatie.be/open-source/support-us",
  9073. "type": "custom"
  9074. },
  9075. {
  9076. "url": "https://github.com/spatie",
  9077. "type": "github"
  9078. }
  9079. ],
  9080. "time": "2026-02-21T15:58:56+00:00"
  9081. },
  9082. {
  9083. "name": "spatie/laravel-package-tools",
  9084. "version": "1.19.0",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/spatie/laravel-package-tools.git",
  9088. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  9093. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  9094. "shasum": ""
  9095. },
  9096. "require": {
  9097. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  9098. "php": "^8.0"
  9099. },
  9100. "require-dev": {
  9101. "mockery/mockery": "^1.5",
  9102. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  9103. "pestphp/pest": "^1.23|^2.1|^3.1",
  9104. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  9105. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  9106. },
  9107. "type": "library",
  9108. "autoload": {
  9109. "psr-4": {
  9110. "Spatie\\LaravelPackageTools\\": "src"
  9111. }
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "MIT"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Freek Van der Herten",
  9120. "email": "freek@spatie.be",
  9121. "role": "Developer"
  9122. }
  9123. ],
  9124. "description": "Tools for creating Laravel packages",
  9125. "homepage": "https://github.com/spatie/laravel-package-tools",
  9126. "keywords": [
  9127. "laravel-package-tools",
  9128. "spatie"
  9129. ],
  9130. "support": {
  9131. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  9132. "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0"
  9133. },
  9134. "funding": [
  9135. {
  9136. "url": "https://github.com/spatie",
  9137. "type": "github"
  9138. }
  9139. ],
  9140. "time": "2025-02-06T14:58:20+00:00"
  9141. },
  9142. {
  9143. "name": "spatie/laravel-responsecache",
  9144. "version": "7.6.4",
  9145. "source": {
  9146. "type": "git",
  9147. "url": "https://github.com/spatie/laravel-responsecache.git",
  9148. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db"
  9149. },
  9150. "dist": {
  9151. "type": "zip",
  9152. "url": "https://api.github.com/repos/spatie/laravel-responsecache/zipball/fbac90e8df40bc6c877302934e3e971c2da409db",
  9153. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db",
  9154. "shasum": ""
  9155. },
  9156. "require": {
  9157. "illuminate/cache": "^10.0|^11.0|^12.0",
  9158. "illuminate/console": "^10.0|^11.0|^12.0",
  9159. "illuminate/container": "^10.0|^11.0|^12.0",
  9160. "illuminate/http": "^10.0|^11.0|^12.0",
  9161. "illuminate/support": "^10.0|^11.0|^12.0",
  9162. "nesbot/carbon": "^2.63|^3.0",
  9163. "php": "^8.2",
  9164. "spatie/laravel-package-tools": "^1.9"
  9165. },
  9166. "require-dev": {
  9167. "laravel/framework": "^10.0|^11.0|^12.0",
  9168. "mockery/mockery": "^1.4",
  9169. "orchestra/testbench": "^8.0|^9.0|^10.0",
  9170. "pestphp/pest": "^2.22|^3.0"
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "laravel": {
  9175. "aliases": {
  9176. "ResponseCache": "Spatie\\ResponseCache\\Facades\\ResponseCache"
  9177. },
  9178. "providers": [
  9179. "Spatie\\ResponseCache\\ResponseCacheServiceProvider"
  9180. ]
  9181. }
  9182. },
  9183. "autoload": {
  9184. "psr-4": {
  9185. "Spatie\\ResponseCache\\": "src"
  9186. }
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "MIT"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "Freek Van der Herten",
  9195. "email": "freek@spatie.be",
  9196. "homepage": "https://spatie.be",
  9197. "role": "Developer"
  9198. }
  9199. ],
  9200. "description": "Speed up a Laravel application by caching the entire response",
  9201. "homepage": "https://github.com/spatie/laravel-responsecache",
  9202. "keywords": [
  9203. "cache",
  9204. "laravel",
  9205. "laravel-responsecache",
  9206. "performance",
  9207. "response",
  9208. "spatie"
  9209. ],
  9210. "support": {
  9211. "source": "https://github.com/spatie/laravel-responsecache/tree/7.6.4"
  9212. },
  9213. "funding": [
  9214. {
  9215. "url": "https://spatie.be/open-source/support-us",
  9216. "type": "custom"
  9217. },
  9218. {
  9219. "url": "https://github.com/spatie",
  9220. "type": "github"
  9221. }
  9222. ],
  9223. "time": "2025-02-25T15:05:05+00:00"
  9224. },
  9225. {
  9226. "name": "spatie/laravel-sitemap",
  9227. "version": "7.3.5",
  9228. "source": {
  9229. "type": "git",
  9230. "url": "https://github.com/spatie/laravel-sitemap.git",
  9231. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399"
  9232. },
  9233. "dist": {
  9234. "type": "zip",
  9235. "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/329b23c8bc6396de2d47d0633ce2cd3f04921399",
  9236. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399",
  9237. "shasum": ""
  9238. },
  9239. "require": {
  9240. "guzzlehttp/guzzle": "^7.8",
  9241. "illuminate/support": "^11.0|^12.0",
  9242. "nesbot/carbon": "^2.71|^3.0",
  9243. "php": "^8.2||^8.3||^8.4",
  9244. "spatie/crawler": "^8.0.1",
  9245. "spatie/laravel-package-tools": "^1.16.1",
  9246. "symfony/dom-crawler": "^6.3.4|^7.0"
  9247. },
  9248. "require-dev": {
  9249. "mockery/mockery": "^1.6.6",
  9250. "orchestra/testbench": "^9.0|^10.0",
  9251. "pestphp/pest": "^3.7.4",
  9252. "spatie/pest-plugin-snapshots": "^2.1",
  9253. "spatie/phpunit-snapshot-assertions": "^5.1.2",
  9254. "spatie/temporary-directory": "^2.2"
  9255. },
  9256. "type": "library",
  9257. "extra": {
  9258. "laravel": {
  9259. "providers": [
  9260. "Spatie\\Sitemap\\SitemapServiceProvider"
  9261. ]
  9262. }
  9263. },
  9264. "autoload": {
  9265. "psr-4": {
  9266. "Spatie\\Sitemap\\": "src"
  9267. }
  9268. },
  9269. "notification-url": "https://packagist.org/downloads/",
  9270. "license": [
  9271. "MIT"
  9272. ],
  9273. "authors": [
  9274. {
  9275. "name": "Freek Van der Herten",
  9276. "email": "freek@spatie.be",
  9277. "homepage": "https://spatie.be",
  9278. "role": "Developer"
  9279. }
  9280. ],
  9281. "description": "Create and generate sitemaps with ease",
  9282. "homepage": "https://github.com/spatie/laravel-sitemap",
  9283. "keywords": [
  9284. "laravel-sitemap",
  9285. "spatie"
  9286. ],
  9287. "support": {
  9288. "source": "https://github.com/spatie/laravel-sitemap/tree/7.3.5"
  9289. },
  9290. "funding": [
  9291. {
  9292. "url": "https://spatie.be/open-source/support-us",
  9293. "type": "custom"
  9294. }
  9295. ],
  9296. "time": "2025-02-21T09:20:51+00:00"
  9297. },
  9298. {
  9299. "name": "spatie/robots-txt",
  9300. "version": "2.3.1",
  9301. "source": {
  9302. "type": "git",
  9303. "url": "https://github.com/spatie/robots-txt.git",
  9304. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000"
  9305. },
  9306. "dist": {
  9307. "type": "zip",
  9308. "url": "https://api.github.com/repos/spatie/robots-txt/zipball/58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  9309. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  9310. "shasum": ""
  9311. },
  9312. "require": {
  9313. "php": "^8.1"
  9314. },
  9315. "require-dev": {
  9316. "phpunit/phpunit": "^11.5.2"
  9317. },
  9318. "type": "library",
  9319. "autoload": {
  9320. "psr-4": {
  9321. "Spatie\\Robots\\": "src"
  9322. }
  9323. },
  9324. "notification-url": "https://packagist.org/downloads/",
  9325. "license": [
  9326. "MIT"
  9327. ],
  9328. "authors": [
  9329. {
  9330. "name": "Brent Roose",
  9331. "email": "brent@spatie.be",
  9332. "homepage": "https://spatie.be",
  9333. "role": "Developer"
  9334. }
  9335. ],
  9336. "description": "Determine if a page may be crawled from robots.txt and robots meta tags",
  9337. "homepage": "https://github.com/spatie/robots-txt",
  9338. "keywords": [
  9339. "robots-txt",
  9340. "spatie"
  9341. ],
  9342. "support": {
  9343. "issues": "https://github.com/spatie/robots-txt/issues",
  9344. "source": "https://github.com/spatie/robots-txt/tree/2.3.1"
  9345. },
  9346. "funding": [
  9347. {
  9348. "url": "https://spatie.be/open-source/support-us",
  9349. "type": "custom"
  9350. },
  9351. {
  9352. "url": "https://github.com/spatie",
  9353. "type": "github"
  9354. }
  9355. ],
  9356. "time": "2025-01-31T09:33:25+00:00"
  9357. },
  9358. {
  9359. "name": "spatie/temporary-directory",
  9360. "version": "2.3.0",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/spatie/temporary-directory.git",
  9364. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  9369. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  9370. "shasum": ""
  9371. },
  9372. "require": {
  9373. "php": "^8.0"
  9374. },
  9375. "require-dev": {
  9376. "phpunit/phpunit": "^9.5"
  9377. },
  9378. "type": "library",
  9379. "autoload": {
  9380. "psr-4": {
  9381. "Spatie\\TemporaryDirectory\\": "src"
  9382. }
  9383. },
  9384. "notification-url": "https://packagist.org/downloads/",
  9385. "license": [
  9386. "MIT"
  9387. ],
  9388. "authors": [
  9389. {
  9390. "name": "Alex Vanderbist",
  9391. "email": "alex@spatie.be",
  9392. "homepage": "https://spatie.be",
  9393. "role": "Developer"
  9394. }
  9395. ],
  9396. "description": "Easily create, use and destroy temporary directories",
  9397. "homepage": "https://github.com/spatie/temporary-directory",
  9398. "keywords": [
  9399. "php",
  9400. "spatie",
  9401. "temporary-directory"
  9402. ],
  9403. "support": {
  9404. "issues": "https://github.com/spatie/temporary-directory/issues",
  9405. "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
  9406. },
  9407. "funding": [
  9408. {
  9409. "url": "https://spatie.be/open-source/support-us",
  9410. "type": "custom"
  9411. },
  9412. {
  9413. "url": "https://github.com/spatie",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2025-01-13T13:04:43+00:00"
  9418. },
  9419. {
  9420. "name": "stevebauman/purify",
  9421. "version": "v6.3.1",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/stevebauman/purify.git",
  9425. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/stevebauman/purify/zipball/3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  9430. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "ezyang/htmlpurifier": "^4.17",
  9435. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  9436. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  9437. "php": ">=7.4"
  9438. },
  9439. "require-dev": {
  9440. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  9441. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.5.3"
  9442. },
  9443. "type": "library",
  9444. "extra": {
  9445. "laravel": {
  9446. "aliases": {
  9447. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  9448. },
  9449. "providers": [
  9450. "Stevebauman\\Purify\\PurifyServiceProvider"
  9451. ]
  9452. }
  9453. },
  9454. "autoload": {
  9455. "psr-4": {
  9456. "Stevebauman\\Purify\\": "src/"
  9457. }
  9458. },
  9459. "notification-url": "https://packagist.org/downloads/",
  9460. "license": [
  9461. "MIT"
  9462. ],
  9463. "authors": [
  9464. {
  9465. "name": "Steve Bauman",
  9466. "email": "steven_bauman@outlook.com"
  9467. }
  9468. ],
  9469. "description": "An HTML Purifier / Sanitizer for Laravel",
  9470. "keywords": [
  9471. "Purifier",
  9472. "clean",
  9473. "cleaner",
  9474. "html",
  9475. "laravel",
  9476. "purification",
  9477. "purify"
  9478. ],
  9479. "support": {
  9480. "issues": "https://github.com/stevebauman/purify/issues",
  9481. "source": "https://github.com/stevebauman/purify/tree/v6.3.1"
  9482. },
  9483. "time": "2025-05-21T16:53:09+00:00"
  9484. },
  9485. {
  9486. "name": "symfony/console",
  9487. "version": "v7.3.3",
  9488. "source": {
  9489. "type": "git",
  9490. "url": "https://github.com/symfony/console.git",
  9491. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7"
  9492. },
  9493. "dist": {
  9494. "type": "zip",
  9495. "url": "https://api.github.com/repos/symfony/console/zipball/cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  9496. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  9497. "shasum": ""
  9498. },
  9499. "require": {
  9500. "php": ">=8.2",
  9501. "symfony/deprecation-contracts": "^2.5|^3",
  9502. "symfony/polyfill-mbstring": "~1.0",
  9503. "symfony/service-contracts": "^2.5|^3",
  9504. "symfony/string": "^7.2"
  9505. },
  9506. "conflict": {
  9507. "symfony/dependency-injection": "<6.4",
  9508. "symfony/dotenv": "<6.4",
  9509. "symfony/event-dispatcher": "<6.4",
  9510. "symfony/lock": "<6.4",
  9511. "symfony/process": "<6.4"
  9512. },
  9513. "provide": {
  9514. "psr/log-implementation": "1.0|2.0|3.0"
  9515. },
  9516. "require-dev": {
  9517. "psr/log": "^1|^2|^3",
  9518. "symfony/config": "^6.4|^7.0",
  9519. "symfony/dependency-injection": "^6.4|^7.0",
  9520. "symfony/event-dispatcher": "^6.4|^7.0",
  9521. "symfony/http-foundation": "^6.4|^7.0",
  9522. "symfony/http-kernel": "^6.4|^7.0",
  9523. "symfony/lock": "^6.4|^7.0",
  9524. "symfony/messenger": "^6.4|^7.0",
  9525. "symfony/process": "^6.4|^7.0",
  9526. "symfony/stopwatch": "^6.4|^7.0",
  9527. "symfony/var-dumper": "^6.4|^7.0"
  9528. },
  9529. "type": "library",
  9530. "autoload": {
  9531. "psr-4": {
  9532. "Symfony\\Component\\Console\\": ""
  9533. },
  9534. "exclude-from-classmap": [
  9535. "/Tests/"
  9536. ]
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "MIT"
  9541. ],
  9542. "authors": [
  9543. {
  9544. "name": "Fabien Potencier",
  9545. "email": "fabien@symfony.com"
  9546. },
  9547. {
  9548. "name": "Symfony Community",
  9549. "homepage": "https://symfony.com/contributors"
  9550. }
  9551. ],
  9552. "description": "Eases the creation of beautiful and testable command line interfaces",
  9553. "homepage": "https://symfony.com",
  9554. "keywords": [
  9555. "cli",
  9556. "command-line",
  9557. "console",
  9558. "terminal"
  9559. ],
  9560. "support": {
  9561. "source": "https://github.com/symfony/console/tree/v7.3.3"
  9562. },
  9563. "funding": [
  9564. {
  9565. "url": "https://symfony.com/sponsor",
  9566. "type": "custom"
  9567. },
  9568. {
  9569. "url": "https://github.com/fabpot",
  9570. "type": "github"
  9571. },
  9572. {
  9573. "url": "https://github.com/nicolas-grekas",
  9574. "type": "github"
  9575. },
  9576. {
  9577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9578. "type": "tidelift"
  9579. }
  9580. ],
  9581. "time": "2025-08-25T06:35:40+00:00"
  9582. },
  9583. {
  9584. "name": "symfony/css-selector",
  9585. "version": "v7.2.0",
  9586. "source": {
  9587. "type": "git",
  9588. "url": "https://github.com/symfony/css-selector.git",
  9589. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  9590. },
  9591. "dist": {
  9592. "type": "zip",
  9593. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9594. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9595. "shasum": ""
  9596. },
  9597. "require": {
  9598. "php": ">=8.2"
  9599. },
  9600. "type": "library",
  9601. "autoload": {
  9602. "psr-4": {
  9603. "Symfony\\Component\\CssSelector\\": ""
  9604. },
  9605. "exclude-from-classmap": [
  9606. "/Tests/"
  9607. ]
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "MIT"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "Fabien Potencier",
  9616. "email": "fabien@symfony.com"
  9617. },
  9618. {
  9619. "name": "Jean-François Simon",
  9620. "email": "jeanfrancois.simon@sensiolabs.com"
  9621. },
  9622. {
  9623. "name": "Symfony Community",
  9624. "homepage": "https://symfony.com/contributors"
  9625. }
  9626. ],
  9627. "description": "Converts CSS selectors to XPath expressions",
  9628. "homepage": "https://symfony.com",
  9629. "support": {
  9630. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  9631. },
  9632. "funding": [
  9633. {
  9634. "url": "https://symfony.com/sponsor",
  9635. "type": "custom"
  9636. },
  9637. {
  9638. "url": "https://github.com/fabpot",
  9639. "type": "github"
  9640. },
  9641. {
  9642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9643. "type": "tidelift"
  9644. }
  9645. ],
  9646. "time": "2024-09-25T14:21:43+00:00"
  9647. },
  9648. {
  9649. "name": "symfony/deprecation-contracts",
  9650. "version": "v3.6.0",
  9651. "source": {
  9652. "type": "git",
  9653. "url": "https://github.com/symfony/deprecation-contracts.git",
  9654. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  9655. },
  9656. "dist": {
  9657. "type": "zip",
  9658. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  9659. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  9660. "shasum": ""
  9661. },
  9662. "require": {
  9663. "php": ">=8.1"
  9664. },
  9665. "type": "library",
  9666. "extra": {
  9667. "thanks": {
  9668. "url": "https://github.com/symfony/contracts",
  9669. "name": "symfony/contracts"
  9670. },
  9671. "branch-alias": {
  9672. "dev-main": "3.6-dev"
  9673. }
  9674. },
  9675. "autoload": {
  9676. "files": [
  9677. "function.php"
  9678. ]
  9679. },
  9680. "notification-url": "https://packagist.org/downloads/",
  9681. "license": [
  9682. "MIT"
  9683. ],
  9684. "authors": [
  9685. {
  9686. "name": "Nicolas Grekas",
  9687. "email": "p@tchwork.com"
  9688. },
  9689. {
  9690. "name": "Symfony Community",
  9691. "homepage": "https://symfony.com/contributors"
  9692. }
  9693. ],
  9694. "description": "A generic function and convention to trigger deprecation notices",
  9695. "homepage": "https://symfony.com",
  9696. "support": {
  9697. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  9698. },
  9699. "funding": [
  9700. {
  9701. "url": "https://symfony.com/sponsor",
  9702. "type": "custom"
  9703. },
  9704. {
  9705. "url": "https://github.com/fabpot",
  9706. "type": "github"
  9707. },
  9708. {
  9709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9710. "type": "tidelift"
  9711. }
  9712. ],
  9713. "time": "2024-09-25T14:21:43+00:00"
  9714. },
  9715. {
  9716. "name": "symfony/dom-crawler",
  9717. "version": "v7.2.4",
  9718. "source": {
  9719. "type": "git",
  9720. "url": "https://github.com/symfony/dom-crawler.git",
  9721. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7"
  9722. },
  9723. "dist": {
  9724. "type": "zip",
  9725. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  9726. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  9727. "shasum": ""
  9728. },
  9729. "require": {
  9730. "masterminds/html5": "^2.6",
  9731. "php": ">=8.2",
  9732. "symfony/polyfill-ctype": "~1.8",
  9733. "symfony/polyfill-mbstring": "~1.0"
  9734. },
  9735. "require-dev": {
  9736. "symfony/css-selector": "^6.4|^7.0"
  9737. },
  9738. "type": "library",
  9739. "autoload": {
  9740. "psr-4": {
  9741. "Symfony\\Component\\DomCrawler\\": ""
  9742. },
  9743. "exclude-from-classmap": [
  9744. "/Tests/"
  9745. ]
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "MIT"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Fabien Potencier",
  9754. "email": "fabien@symfony.com"
  9755. },
  9756. {
  9757. "name": "Symfony Community",
  9758. "homepage": "https://symfony.com/contributors"
  9759. }
  9760. ],
  9761. "description": "Eases DOM navigation for HTML and XML documents",
  9762. "homepage": "https://symfony.com",
  9763. "support": {
  9764. "source": "https://github.com/symfony/dom-crawler/tree/v7.2.4"
  9765. },
  9766. "funding": [
  9767. {
  9768. "url": "https://symfony.com/sponsor",
  9769. "type": "custom"
  9770. },
  9771. {
  9772. "url": "https://github.com/fabpot",
  9773. "type": "github"
  9774. },
  9775. {
  9776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9777. "type": "tidelift"
  9778. }
  9779. ],
  9780. "time": "2025-02-17T15:53:07+00:00"
  9781. },
  9782. {
  9783. "name": "symfony/error-handler",
  9784. "version": "v7.2.4",
  9785. "source": {
  9786. "type": "git",
  9787. "url": "https://github.com/symfony/error-handler.git",
  9788. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5"
  9789. },
  9790. "dist": {
  9791. "type": "zip",
  9792. "url": "https://api.github.com/repos/symfony/error-handler/zipball/aabf79938aa795350c07ce6464dd1985607d95d5",
  9793. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5",
  9794. "shasum": ""
  9795. },
  9796. "require": {
  9797. "php": ">=8.2",
  9798. "psr/log": "^1|^2|^3",
  9799. "symfony/var-dumper": "^6.4|^7.0"
  9800. },
  9801. "conflict": {
  9802. "symfony/deprecation-contracts": "<2.5",
  9803. "symfony/http-kernel": "<6.4"
  9804. },
  9805. "require-dev": {
  9806. "symfony/deprecation-contracts": "^2.5|^3",
  9807. "symfony/http-kernel": "^6.4|^7.0",
  9808. "symfony/serializer": "^6.4|^7.0"
  9809. },
  9810. "bin": [
  9811. "Resources/bin/patch-type-declarations"
  9812. ],
  9813. "type": "library",
  9814. "autoload": {
  9815. "psr-4": {
  9816. "Symfony\\Component\\ErrorHandler\\": ""
  9817. },
  9818. "exclude-from-classmap": [
  9819. "/Tests/"
  9820. ]
  9821. },
  9822. "notification-url": "https://packagist.org/downloads/",
  9823. "license": [
  9824. "MIT"
  9825. ],
  9826. "authors": [
  9827. {
  9828. "name": "Fabien Potencier",
  9829. "email": "fabien@symfony.com"
  9830. },
  9831. {
  9832. "name": "Symfony Community",
  9833. "homepage": "https://symfony.com/contributors"
  9834. }
  9835. ],
  9836. "description": "Provides tools to manage errors and ease debugging PHP code",
  9837. "homepage": "https://symfony.com",
  9838. "support": {
  9839. "source": "https://github.com/symfony/error-handler/tree/v7.2.4"
  9840. },
  9841. "funding": [
  9842. {
  9843. "url": "https://symfony.com/sponsor",
  9844. "type": "custom"
  9845. },
  9846. {
  9847. "url": "https://github.com/fabpot",
  9848. "type": "github"
  9849. },
  9850. {
  9851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9852. "type": "tidelift"
  9853. }
  9854. ],
  9855. "time": "2025-02-02T20:27:07+00:00"
  9856. },
  9857. {
  9858. "name": "symfony/event-dispatcher",
  9859. "version": "v7.2.0",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/symfony/event-dispatcher.git",
  9863. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  9868. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  9869. "shasum": ""
  9870. },
  9871. "require": {
  9872. "php": ">=8.2",
  9873. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9874. },
  9875. "conflict": {
  9876. "symfony/dependency-injection": "<6.4",
  9877. "symfony/service-contracts": "<2.5"
  9878. },
  9879. "provide": {
  9880. "psr/event-dispatcher-implementation": "1.0",
  9881. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9882. },
  9883. "require-dev": {
  9884. "psr/log": "^1|^2|^3",
  9885. "symfony/config": "^6.4|^7.0",
  9886. "symfony/dependency-injection": "^6.4|^7.0",
  9887. "symfony/error-handler": "^6.4|^7.0",
  9888. "symfony/expression-language": "^6.4|^7.0",
  9889. "symfony/http-foundation": "^6.4|^7.0",
  9890. "symfony/service-contracts": "^2.5|^3",
  9891. "symfony/stopwatch": "^6.4|^7.0"
  9892. },
  9893. "type": "library",
  9894. "autoload": {
  9895. "psr-4": {
  9896. "Symfony\\Component\\EventDispatcher\\": ""
  9897. },
  9898. "exclude-from-classmap": [
  9899. "/Tests/"
  9900. ]
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "MIT"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Fabien Potencier",
  9909. "email": "fabien@symfony.com"
  9910. },
  9911. {
  9912. "name": "Symfony Community",
  9913. "homepage": "https://symfony.com/contributors"
  9914. }
  9915. ],
  9916. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9917. "homepage": "https://symfony.com",
  9918. "support": {
  9919. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  9920. },
  9921. "funding": [
  9922. {
  9923. "url": "https://symfony.com/sponsor",
  9924. "type": "custom"
  9925. },
  9926. {
  9927. "url": "https://github.com/fabpot",
  9928. "type": "github"
  9929. },
  9930. {
  9931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9932. "type": "tidelift"
  9933. }
  9934. ],
  9935. "time": "2024-09-25T14:21:43+00:00"
  9936. },
  9937. {
  9938. "name": "symfony/event-dispatcher-contracts",
  9939. "version": "v3.6.0",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9943. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  9948. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=8.1",
  9953. "psr/event-dispatcher": "^1"
  9954. },
  9955. "type": "library",
  9956. "extra": {
  9957. "thanks": {
  9958. "url": "https://github.com/symfony/contracts",
  9959. "name": "symfony/contracts"
  9960. },
  9961. "branch-alias": {
  9962. "dev-main": "3.6-dev"
  9963. }
  9964. },
  9965. "autoload": {
  9966. "psr-4": {
  9967. "Symfony\\Contracts\\EventDispatcher\\": ""
  9968. }
  9969. },
  9970. "notification-url": "https://packagist.org/downloads/",
  9971. "license": [
  9972. "MIT"
  9973. ],
  9974. "authors": [
  9975. {
  9976. "name": "Nicolas Grekas",
  9977. "email": "p@tchwork.com"
  9978. },
  9979. {
  9980. "name": "Symfony Community",
  9981. "homepage": "https://symfony.com/contributors"
  9982. }
  9983. ],
  9984. "description": "Generic abstractions related to dispatching event",
  9985. "homepage": "https://symfony.com",
  9986. "keywords": [
  9987. "abstractions",
  9988. "contracts",
  9989. "decoupling",
  9990. "interfaces",
  9991. "interoperability",
  9992. "standards"
  9993. ],
  9994. "support": {
  9995. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  9996. },
  9997. "funding": [
  9998. {
  9999. "url": "https://symfony.com/sponsor",
  10000. "type": "custom"
  10001. },
  10002. {
  10003. "url": "https://github.com/fabpot",
  10004. "type": "github"
  10005. },
  10006. {
  10007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10008. "type": "tidelift"
  10009. }
  10010. ],
  10011. "time": "2024-09-25T14:21:43+00:00"
  10012. },
  10013. {
  10014. "name": "symfony/filesystem",
  10015. "version": "v7.4.8",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/symfony/filesystem.git",
  10019. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5",
  10024. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5",
  10025. "shasum": ""
  10026. },
  10027. "require": {
  10028. "php": ">=8.2",
  10029. "symfony/polyfill-ctype": "~1.8",
  10030. "symfony/polyfill-mbstring": "~1.8"
  10031. },
  10032. "require-dev": {
  10033. "symfony/process": "^6.4|^7.0|^8.0"
  10034. },
  10035. "type": "library",
  10036. "autoload": {
  10037. "psr-4": {
  10038. "Symfony\\Component\\Filesystem\\": ""
  10039. },
  10040. "exclude-from-classmap": [
  10041. "/Tests/"
  10042. ]
  10043. },
  10044. "notification-url": "https://packagist.org/downloads/",
  10045. "license": [
  10046. "MIT"
  10047. ],
  10048. "authors": [
  10049. {
  10050. "name": "Fabien Potencier",
  10051. "email": "fabien@symfony.com"
  10052. },
  10053. {
  10054. "name": "Symfony Community",
  10055. "homepage": "https://symfony.com/contributors"
  10056. }
  10057. ],
  10058. "description": "Provides basic utilities for the filesystem",
  10059. "homepage": "https://symfony.com",
  10060. "support": {
  10061. "source": "https://github.com/symfony/filesystem/tree/v7.4.8"
  10062. },
  10063. "funding": [
  10064. {
  10065. "url": "https://symfony.com/sponsor",
  10066. "type": "custom"
  10067. },
  10068. {
  10069. "url": "https://github.com/fabpot",
  10070. "type": "github"
  10071. },
  10072. {
  10073. "url": "https://github.com/nicolas-grekas",
  10074. "type": "github"
  10075. },
  10076. {
  10077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10078. "type": "tidelift"
  10079. }
  10080. ],
  10081. "time": "2026-03-24T13:12:05+00:00"
  10082. },
  10083. {
  10084. "name": "symfony/finder",
  10085. "version": "v7.2.2",
  10086. "source": {
  10087. "type": "git",
  10088. "url": "https://github.com/symfony/finder.git",
  10089. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  10090. },
  10091. "dist": {
  10092. "type": "zip",
  10093. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  10094. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  10095. "shasum": ""
  10096. },
  10097. "require": {
  10098. "php": ">=8.2"
  10099. },
  10100. "require-dev": {
  10101. "symfony/filesystem": "^6.4|^7.0"
  10102. },
  10103. "type": "library",
  10104. "autoload": {
  10105. "psr-4": {
  10106. "Symfony\\Component\\Finder\\": ""
  10107. },
  10108. "exclude-from-classmap": [
  10109. "/Tests/"
  10110. ]
  10111. },
  10112. "notification-url": "https://packagist.org/downloads/",
  10113. "license": [
  10114. "MIT"
  10115. ],
  10116. "authors": [
  10117. {
  10118. "name": "Fabien Potencier",
  10119. "email": "fabien@symfony.com"
  10120. },
  10121. {
  10122. "name": "Symfony Community",
  10123. "homepage": "https://symfony.com/contributors"
  10124. }
  10125. ],
  10126. "description": "Finds files and directories via an intuitive fluent interface",
  10127. "homepage": "https://symfony.com",
  10128. "support": {
  10129. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  10130. },
  10131. "funding": [
  10132. {
  10133. "url": "https://symfony.com/sponsor",
  10134. "type": "custom"
  10135. },
  10136. {
  10137. "url": "https://github.com/fabpot",
  10138. "type": "github"
  10139. },
  10140. {
  10141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10142. "type": "tidelift"
  10143. }
  10144. ],
  10145. "time": "2024-12-30T19:00:17+00:00"
  10146. },
  10147. {
  10148. "name": "symfony/http-foundation",
  10149. "version": "v7.3.7",
  10150. "source": {
  10151. "type": "git",
  10152. "url": "https://github.com/symfony/http-foundation.git",
  10153. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4"
  10154. },
  10155. "dist": {
  10156. "type": "zip",
  10157. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  10158. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  10159. "shasum": ""
  10160. },
  10161. "require": {
  10162. "php": ">=8.2",
  10163. "symfony/deprecation-contracts": "^2.5|^3.0",
  10164. "symfony/polyfill-mbstring": "~1.1",
  10165. "symfony/polyfill-php83": "^1.27"
  10166. },
  10167. "conflict": {
  10168. "doctrine/dbal": "<3.6",
  10169. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10170. },
  10171. "require-dev": {
  10172. "doctrine/dbal": "^3.6|^4",
  10173. "predis/predis": "^1.1|^2.0",
  10174. "symfony/cache": "^6.4.12|^7.1.5",
  10175. "symfony/clock": "^6.4|^7.0",
  10176. "symfony/dependency-injection": "^6.4|^7.0",
  10177. "symfony/expression-language": "^6.4|^7.0",
  10178. "symfony/http-kernel": "^6.4|^7.0",
  10179. "symfony/mime": "^6.4|^7.0",
  10180. "symfony/rate-limiter": "^6.4|^7.0"
  10181. },
  10182. "type": "library",
  10183. "autoload": {
  10184. "psr-4": {
  10185. "Symfony\\Component\\HttpFoundation\\": ""
  10186. },
  10187. "exclude-from-classmap": [
  10188. "/Tests/"
  10189. ]
  10190. },
  10191. "notification-url": "https://packagist.org/downloads/",
  10192. "license": [
  10193. "MIT"
  10194. ],
  10195. "authors": [
  10196. {
  10197. "name": "Fabien Potencier",
  10198. "email": "fabien@symfony.com"
  10199. },
  10200. {
  10201. "name": "Symfony Community",
  10202. "homepage": "https://symfony.com/contributors"
  10203. }
  10204. ],
  10205. "description": "Defines an object-oriented layer for the HTTP specification",
  10206. "homepage": "https://symfony.com",
  10207. "support": {
  10208. "source": "https://github.com/symfony/http-foundation/tree/v7.3.7"
  10209. },
  10210. "funding": [
  10211. {
  10212. "url": "https://symfony.com/sponsor",
  10213. "type": "custom"
  10214. },
  10215. {
  10216. "url": "https://github.com/fabpot",
  10217. "type": "github"
  10218. },
  10219. {
  10220. "url": "https://github.com/nicolas-grekas",
  10221. "type": "github"
  10222. },
  10223. {
  10224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10225. "type": "tidelift"
  10226. }
  10227. ],
  10228. "time": "2025-11-08T16:41:12+00:00"
  10229. },
  10230. {
  10231. "name": "symfony/http-kernel",
  10232. "version": "v7.2.4",
  10233. "source": {
  10234. "type": "git",
  10235. "url": "https://github.com/symfony/http-kernel.git",
  10236. "reference": "9f1103734c5789798fefb90e91de4586039003ed"
  10237. },
  10238. "dist": {
  10239. "type": "zip",
  10240. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f1103734c5789798fefb90e91de4586039003ed",
  10241. "reference": "9f1103734c5789798fefb90e91de4586039003ed",
  10242. "shasum": ""
  10243. },
  10244. "require": {
  10245. "php": ">=8.2",
  10246. "psr/log": "^1|^2|^3",
  10247. "symfony/deprecation-contracts": "^2.5|^3",
  10248. "symfony/error-handler": "^6.4|^7.0",
  10249. "symfony/event-dispatcher": "^6.4|^7.0",
  10250. "symfony/http-foundation": "^6.4|^7.0",
  10251. "symfony/polyfill-ctype": "^1.8"
  10252. },
  10253. "conflict": {
  10254. "symfony/browser-kit": "<6.4",
  10255. "symfony/cache": "<6.4",
  10256. "symfony/config": "<6.4",
  10257. "symfony/console": "<6.4",
  10258. "symfony/dependency-injection": "<6.4",
  10259. "symfony/doctrine-bridge": "<6.4",
  10260. "symfony/form": "<6.4",
  10261. "symfony/http-client": "<6.4",
  10262. "symfony/http-client-contracts": "<2.5",
  10263. "symfony/mailer": "<6.4",
  10264. "symfony/messenger": "<6.4",
  10265. "symfony/translation": "<6.4",
  10266. "symfony/translation-contracts": "<2.5",
  10267. "symfony/twig-bridge": "<6.4",
  10268. "symfony/validator": "<6.4",
  10269. "symfony/var-dumper": "<6.4",
  10270. "twig/twig": "<3.12"
  10271. },
  10272. "provide": {
  10273. "psr/log-implementation": "1.0|2.0|3.0"
  10274. },
  10275. "require-dev": {
  10276. "psr/cache": "^1.0|^2.0|^3.0",
  10277. "symfony/browser-kit": "^6.4|^7.0",
  10278. "symfony/clock": "^6.4|^7.0",
  10279. "symfony/config": "^6.4|^7.0",
  10280. "symfony/console": "^6.4|^7.0",
  10281. "symfony/css-selector": "^6.4|^7.0",
  10282. "symfony/dependency-injection": "^6.4|^7.0",
  10283. "symfony/dom-crawler": "^6.4|^7.0",
  10284. "symfony/expression-language": "^6.4|^7.0",
  10285. "symfony/finder": "^6.4|^7.0",
  10286. "symfony/http-client-contracts": "^2.5|^3",
  10287. "symfony/process": "^6.4|^7.0",
  10288. "symfony/property-access": "^7.1",
  10289. "symfony/routing": "^6.4|^7.0",
  10290. "symfony/serializer": "^7.1",
  10291. "symfony/stopwatch": "^6.4|^7.0",
  10292. "symfony/translation": "^6.4|^7.0",
  10293. "symfony/translation-contracts": "^2.5|^3",
  10294. "symfony/uid": "^6.4|^7.0",
  10295. "symfony/validator": "^6.4|^7.0",
  10296. "symfony/var-dumper": "^6.4|^7.0",
  10297. "symfony/var-exporter": "^6.4|^7.0",
  10298. "twig/twig": "^3.12"
  10299. },
  10300. "type": "library",
  10301. "autoload": {
  10302. "psr-4": {
  10303. "Symfony\\Component\\HttpKernel\\": ""
  10304. },
  10305. "exclude-from-classmap": [
  10306. "/Tests/"
  10307. ]
  10308. },
  10309. "notification-url": "https://packagist.org/downloads/",
  10310. "license": [
  10311. "MIT"
  10312. ],
  10313. "authors": [
  10314. {
  10315. "name": "Fabien Potencier",
  10316. "email": "fabien@symfony.com"
  10317. },
  10318. {
  10319. "name": "Symfony Community",
  10320. "homepage": "https://symfony.com/contributors"
  10321. }
  10322. ],
  10323. "description": "Provides a structured process for converting a Request into a Response",
  10324. "homepage": "https://symfony.com",
  10325. "support": {
  10326. "source": "https://github.com/symfony/http-kernel/tree/v7.2.4"
  10327. },
  10328. "funding": [
  10329. {
  10330. "url": "https://symfony.com/sponsor",
  10331. "type": "custom"
  10332. },
  10333. {
  10334. "url": "https://github.com/fabpot",
  10335. "type": "github"
  10336. },
  10337. {
  10338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10339. "type": "tidelift"
  10340. }
  10341. ],
  10342. "time": "2025-02-26T11:01:22+00:00"
  10343. },
  10344. {
  10345. "name": "symfony/mailer",
  10346. "version": "v7.2.3",
  10347. "source": {
  10348. "type": "git",
  10349. "url": "https://github.com/symfony/mailer.git",
  10350. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  10351. },
  10352. "dist": {
  10353. "type": "zip",
  10354. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  10355. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  10356. "shasum": ""
  10357. },
  10358. "require": {
  10359. "egulias/email-validator": "^2.1.10|^3|^4",
  10360. "php": ">=8.2",
  10361. "psr/event-dispatcher": "^1",
  10362. "psr/log": "^1|^2|^3",
  10363. "symfony/event-dispatcher": "^6.4|^7.0",
  10364. "symfony/mime": "^7.2",
  10365. "symfony/service-contracts": "^2.5|^3"
  10366. },
  10367. "conflict": {
  10368. "symfony/http-client-contracts": "<2.5",
  10369. "symfony/http-kernel": "<6.4",
  10370. "symfony/messenger": "<6.4",
  10371. "symfony/mime": "<6.4",
  10372. "symfony/twig-bridge": "<6.4"
  10373. },
  10374. "require-dev": {
  10375. "symfony/console": "^6.4|^7.0",
  10376. "symfony/http-client": "^6.4|^7.0",
  10377. "symfony/messenger": "^6.4|^7.0",
  10378. "symfony/twig-bridge": "^6.4|^7.0"
  10379. },
  10380. "type": "library",
  10381. "autoload": {
  10382. "psr-4": {
  10383. "Symfony\\Component\\Mailer\\": ""
  10384. },
  10385. "exclude-from-classmap": [
  10386. "/Tests/"
  10387. ]
  10388. },
  10389. "notification-url": "https://packagist.org/downloads/",
  10390. "license": [
  10391. "MIT"
  10392. ],
  10393. "authors": [
  10394. {
  10395. "name": "Fabien Potencier",
  10396. "email": "fabien@symfony.com"
  10397. },
  10398. {
  10399. "name": "Symfony Community",
  10400. "homepage": "https://symfony.com/contributors"
  10401. }
  10402. ],
  10403. "description": "Helps sending emails",
  10404. "homepage": "https://symfony.com",
  10405. "support": {
  10406. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  10407. },
  10408. "funding": [
  10409. {
  10410. "url": "https://symfony.com/sponsor",
  10411. "type": "custom"
  10412. },
  10413. {
  10414. "url": "https://github.com/fabpot",
  10415. "type": "github"
  10416. },
  10417. {
  10418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10419. "type": "tidelift"
  10420. }
  10421. ],
  10422. "time": "2025-01-27T11:08:17+00:00"
  10423. },
  10424. {
  10425. "name": "symfony/mime",
  10426. "version": "v7.3.4",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/symfony/mime.git",
  10430. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35",
  10435. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "php": ">=8.2",
  10440. "symfony/polyfill-intl-idn": "^1.10",
  10441. "symfony/polyfill-mbstring": "^1.0"
  10442. },
  10443. "conflict": {
  10444. "egulias/email-validator": "~3.0.0",
  10445. "phpdocumentor/reflection-docblock": "<3.2.2",
  10446. "phpdocumentor/type-resolver": "<1.4.0",
  10447. "symfony/mailer": "<6.4",
  10448. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  10449. },
  10450. "require-dev": {
  10451. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10452. "league/html-to-markdown": "^5.0",
  10453. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10454. "symfony/dependency-injection": "^6.4|^7.0",
  10455. "symfony/process": "^6.4|^7.0",
  10456. "symfony/property-access": "^6.4|^7.0",
  10457. "symfony/property-info": "^6.4|^7.0",
  10458. "symfony/serializer": "^6.4.3|^7.0.3"
  10459. },
  10460. "type": "library",
  10461. "autoload": {
  10462. "psr-4": {
  10463. "Symfony\\Component\\Mime\\": ""
  10464. },
  10465. "exclude-from-classmap": [
  10466. "/Tests/"
  10467. ]
  10468. },
  10469. "notification-url": "https://packagist.org/downloads/",
  10470. "license": [
  10471. "MIT"
  10472. ],
  10473. "authors": [
  10474. {
  10475. "name": "Fabien Potencier",
  10476. "email": "fabien@symfony.com"
  10477. },
  10478. {
  10479. "name": "Symfony Community",
  10480. "homepage": "https://symfony.com/contributors"
  10481. }
  10482. ],
  10483. "description": "Allows manipulating MIME messages",
  10484. "homepage": "https://symfony.com",
  10485. "keywords": [
  10486. "mime",
  10487. "mime-type"
  10488. ],
  10489. "support": {
  10490. "source": "https://github.com/symfony/mime/tree/v7.3.4"
  10491. },
  10492. "funding": [
  10493. {
  10494. "url": "https://symfony.com/sponsor",
  10495. "type": "custom"
  10496. },
  10497. {
  10498. "url": "https://github.com/fabpot",
  10499. "type": "github"
  10500. },
  10501. {
  10502. "url": "https://github.com/nicolas-grekas",
  10503. "type": "github"
  10504. },
  10505. {
  10506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10507. "type": "tidelift"
  10508. }
  10509. ],
  10510. "time": "2025-09-16T08:38:17+00:00"
  10511. },
  10512. {
  10513. "name": "symfony/polyfill-ctype",
  10514. "version": "v1.33.0",
  10515. "source": {
  10516. "type": "git",
  10517. "url": "https://github.com/symfony/polyfill-ctype.git",
  10518. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  10519. },
  10520. "dist": {
  10521. "type": "zip",
  10522. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  10523. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  10524. "shasum": ""
  10525. },
  10526. "require": {
  10527. "php": ">=7.2"
  10528. },
  10529. "provide": {
  10530. "ext-ctype": "*"
  10531. },
  10532. "suggest": {
  10533. "ext-ctype": "For best performance"
  10534. },
  10535. "type": "library",
  10536. "extra": {
  10537. "thanks": {
  10538. "url": "https://github.com/symfony/polyfill",
  10539. "name": "symfony/polyfill"
  10540. }
  10541. },
  10542. "autoload": {
  10543. "files": [
  10544. "bootstrap.php"
  10545. ],
  10546. "psr-4": {
  10547. "Symfony\\Polyfill\\Ctype\\": ""
  10548. }
  10549. },
  10550. "notification-url": "https://packagist.org/downloads/",
  10551. "license": [
  10552. "MIT"
  10553. ],
  10554. "authors": [
  10555. {
  10556. "name": "Gert de Pagter",
  10557. "email": "BackEndTea@gmail.com"
  10558. },
  10559. {
  10560. "name": "Symfony Community",
  10561. "homepage": "https://symfony.com/contributors"
  10562. }
  10563. ],
  10564. "description": "Symfony polyfill for ctype functions",
  10565. "homepage": "https://symfony.com",
  10566. "keywords": [
  10567. "compatibility",
  10568. "ctype",
  10569. "polyfill",
  10570. "portable"
  10571. ],
  10572. "support": {
  10573. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  10574. },
  10575. "funding": [
  10576. {
  10577. "url": "https://symfony.com/sponsor",
  10578. "type": "custom"
  10579. },
  10580. {
  10581. "url": "https://github.com/fabpot",
  10582. "type": "github"
  10583. },
  10584. {
  10585. "url": "https://github.com/nicolas-grekas",
  10586. "type": "github"
  10587. },
  10588. {
  10589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10590. "type": "tidelift"
  10591. }
  10592. ],
  10593. "time": "2024-09-09T11:45:10+00:00"
  10594. },
  10595. {
  10596. "name": "symfony/polyfill-intl-grapheme",
  10597. "version": "v1.33.0",
  10598. "source": {
  10599. "type": "git",
  10600. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10601. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  10602. },
  10603. "dist": {
  10604. "type": "zip",
  10605. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  10606. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  10607. "shasum": ""
  10608. },
  10609. "require": {
  10610. "php": ">=7.2"
  10611. },
  10612. "suggest": {
  10613. "ext-intl": "For best performance"
  10614. },
  10615. "type": "library",
  10616. "extra": {
  10617. "thanks": {
  10618. "url": "https://github.com/symfony/polyfill",
  10619. "name": "symfony/polyfill"
  10620. }
  10621. },
  10622. "autoload": {
  10623. "files": [
  10624. "bootstrap.php"
  10625. ],
  10626. "psr-4": {
  10627. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10628. }
  10629. },
  10630. "notification-url": "https://packagist.org/downloads/",
  10631. "license": [
  10632. "MIT"
  10633. ],
  10634. "authors": [
  10635. {
  10636. "name": "Nicolas Grekas",
  10637. "email": "p@tchwork.com"
  10638. },
  10639. {
  10640. "name": "Symfony Community",
  10641. "homepage": "https://symfony.com/contributors"
  10642. }
  10643. ],
  10644. "description": "Symfony polyfill for intl's grapheme_* functions",
  10645. "homepage": "https://symfony.com",
  10646. "keywords": [
  10647. "compatibility",
  10648. "grapheme",
  10649. "intl",
  10650. "polyfill",
  10651. "portable",
  10652. "shim"
  10653. ],
  10654. "support": {
  10655. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  10656. },
  10657. "funding": [
  10658. {
  10659. "url": "https://symfony.com/sponsor",
  10660. "type": "custom"
  10661. },
  10662. {
  10663. "url": "https://github.com/fabpot",
  10664. "type": "github"
  10665. },
  10666. {
  10667. "url": "https://github.com/nicolas-grekas",
  10668. "type": "github"
  10669. },
  10670. {
  10671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10672. "type": "tidelift"
  10673. }
  10674. ],
  10675. "time": "2025-06-27T09:58:17+00:00"
  10676. },
  10677. {
  10678. "name": "symfony/polyfill-intl-idn",
  10679. "version": "v1.33.0",
  10680. "source": {
  10681. "type": "git",
  10682. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10683. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  10684. },
  10685. "dist": {
  10686. "type": "zip",
  10687. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  10688. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  10689. "shasum": ""
  10690. },
  10691. "require": {
  10692. "php": ">=7.2",
  10693. "symfony/polyfill-intl-normalizer": "^1.10"
  10694. },
  10695. "suggest": {
  10696. "ext-intl": "For best performance"
  10697. },
  10698. "type": "library",
  10699. "extra": {
  10700. "thanks": {
  10701. "url": "https://github.com/symfony/polyfill",
  10702. "name": "symfony/polyfill"
  10703. }
  10704. },
  10705. "autoload": {
  10706. "files": [
  10707. "bootstrap.php"
  10708. ],
  10709. "psr-4": {
  10710. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10711. }
  10712. },
  10713. "notification-url": "https://packagist.org/downloads/",
  10714. "license": [
  10715. "MIT"
  10716. ],
  10717. "authors": [
  10718. {
  10719. "name": "Laurent Bassin",
  10720. "email": "laurent@bassin.info"
  10721. },
  10722. {
  10723. "name": "Trevor Rowbotham",
  10724. "email": "trevor.rowbotham@pm.me"
  10725. },
  10726. {
  10727. "name": "Symfony Community",
  10728. "homepage": "https://symfony.com/contributors"
  10729. }
  10730. ],
  10731. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10732. "homepage": "https://symfony.com",
  10733. "keywords": [
  10734. "compatibility",
  10735. "idn",
  10736. "intl",
  10737. "polyfill",
  10738. "portable",
  10739. "shim"
  10740. ],
  10741. "support": {
  10742. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  10743. },
  10744. "funding": [
  10745. {
  10746. "url": "https://symfony.com/sponsor",
  10747. "type": "custom"
  10748. },
  10749. {
  10750. "url": "https://github.com/fabpot",
  10751. "type": "github"
  10752. },
  10753. {
  10754. "url": "https://github.com/nicolas-grekas",
  10755. "type": "github"
  10756. },
  10757. {
  10758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10759. "type": "tidelift"
  10760. }
  10761. ],
  10762. "time": "2024-09-10T14:38:51+00:00"
  10763. },
  10764. {
  10765. "name": "symfony/polyfill-intl-normalizer",
  10766. "version": "v1.33.0",
  10767. "source": {
  10768. "type": "git",
  10769. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10770. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  10771. },
  10772. "dist": {
  10773. "type": "zip",
  10774. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  10775. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  10776. "shasum": ""
  10777. },
  10778. "require": {
  10779. "php": ">=7.2"
  10780. },
  10781. "suggest": {
  10782. "ext-intl": "For best performance"
  10783. },
  10784. "type": "library",
  10785. "extra": {
  10786. "thanks": {
  10787. "url": "https://github.com/symfony/polyfill",
  10788. "name": "symfony/polyfill"
  10789. }
  10790. },
  10791. "autoload": {
  10792. "files": [
  10793. "bootstrap.php"
  10794. ],
  10795. "psr-4": {
  10796. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10797. },
  10798. "classmap": [
  10799. "Resources/stubs"
  10800. ]
  10801. },
  10802. "notification-url": "https://packagist.org/downloads/",
  10803. "license": [
  10804. "MIT"
  10805. ],
  10806. "authors": [
  10807. {
  10808. "name": "Nicolas Grekas",
  10809. "email": "p@tchwork.com"
  10810. },
  10811. {
  10812. "name": "Symfony Community",
  10813. "homepage": "https://symfony.com/contributors"
  10814. }
  10815. ],
  10816. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10817. "homepage": "https://symfony.com",
  10818. "keywords": [
  10819. "compatibility",
  10820. "intl",
  10821. "normalizer",
  10822. "polyfill",
  10823. "portable",
  10824. "shim"
  10825. ],
  10826. "support": {
  10827. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  10828. },
  10829. "funding": [
  10830. {
  10831. "url": "https://symfony.com/sponsor",
  10832. "type": "custom"
  10833. },
  10834. {
  10835. "url": "https://github.com/fabpot",
  10836. "type": "github"
  10837. },
  10838. {
  10839. "url": "https://github.com/nicolas-grekas",
  10840. "type": "github"
  10841. },
  10842. {
  10843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10844. "type": "tidelift"
  10845. }
  10846. ],
  10847. "time": "2024-09-09T11:45:10+00:00"
  10848. },
  10849. {
  10850. "name": "symfony/polyfill-mbstring",
  10851. "version": "v1.33.0",
  10852. "source": {
  10853. "type": "git",
  10854. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10855. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  10856. },
  10857. "dist": {
  10858. "type": "zip",
  10859. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  10860. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  10861. "shasum": ""
  10862. },
  10863. "require": {
  10864. "ext-iconv": "*",
  10865. "php": ">=7.2"
  10866. },
  10867. "provide": {
  10868. "ext-mbstring": "*"
  10869. },
  10870. "suggest": {
  10871. "ext-mbstring": "For best performance"
  10872. },
  10873. "type": "library",
  10874. "extra": {
  10875. "thanks": {
  10876. "url": "https://github.com/symfony/polyfill",
  10877. "name": "symfony/polyfill"
  10878. }
  10879. },
  10880. "autoload": {
  10881. "files": [
  10882. "bootstrap.php"
  10883. ],
  10884. "psr-4": {
  10885. "Symfony\\Polyfill\\Mbstring\\": ""
  10886. }
  10887. },
  10888. "notification-url": "https://packagist.org/downloads/",
  10889. "license": [
  10890. "MIT"
  10891. ],
  10892. "authors": [
  10893. {
  10894. "name": "Nicolas Grekas",
  10895. "email": "p@tchwork.com"
  10896. },
  10897. {
  10898. "name": "Symfony Community",
  10899. "homepage": "https://symfony.com/contributors"
  10900. }
  10901. ],
  10902. "description": "Symfony polyfill for the Mbstring extension",
  10903. "homepage": "https://symfony.com",
  10904. "keywords": [
  10905. "compatibility",
  10906. "mbstring",
  10907. "polyfill",
  10908. "portable",
  10909. "shim"
  10910. ],
  10911. "support": {
  10912. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  10913. },
  10914. "funding": [
  10915. {
  10916. "url": "https://symfony.com/sponsor",
  10917. "type": "custom"
  10918. },
  10919. {
  10920. "url": "https://github.com/fabpot",
  10921. "type": "github"
  10922. },
  10923. {
  10924. "url": "https://github.com/nicolas-grekas",
  10925. "type": "github"
  10926. },
  10927. {
  10928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10929. "type": "tidelift"
  10930. }
  10931. ],
  10932. "time": "2024-12-23T08:48:59+00:00"
  10933. },
  10934. {
  10935. "name": "symfony/polyfill-php80",
  10936. "version": "v1.33.0",
  10937. "source": {
  10938. "type": "git",
  10939. "url": "https://github.com/symfony/polyfill-php80.git",
  10940. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  10941. },
  10942. "dist": {
  10943. "type": "zip",
  10944. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  10945. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  10946. "shasum": ""
  10947. },
  10948. "require": {
  10949. "php": ">=7.2"
  10950. },
  10951. "type": "library",
  10952. "extra": {
  10953. "thanks": {
  10954. "url": "https://github.com/symfony/polyfill",
  10955. "name": "symfony/polyfill"
  10956. }
  10957. },
  10958. "autoload": {
  10959. "files": [
  10960. "bootstrap.php"
  10961. ],
  10962. "psr-4": {
  10963. "Symfony\\Polyfill\\Php80\\": ""
  10964. },
  10965. "classmap": [
  10966. "Resources/stubs"
  10967. ]
  10968. },
  10969. "notification-url": "https://packagist.org/downloads/",
  10970. "license": [
  10971. "MIT"
  10972. ],
  10973. "authors": [
  10974. {
  10975. "name": "Ion Bazan",
  10976. "email": "ion.bazan@gmail.com"
  10977. },
  10978. {
  10979. "name": "Nicolas Grekas",
  10980. "email": "p@tchwork.com"
  10981. },
  10982. {
  10983. "name": "Symfony Community",
  10984. "homepage": "https://symfony.com/contributors"
  10985. }
  10986. ],
  10987. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  10988. "homepage": "https://symfony.com",
  10989. "keywords": [
  10990. "compatibility",
  10991. "polyfill",
  10992. "portable",
  10993. "shim"
  10994. ],
  10995. "support": {
  10996. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  10997. },
  10998. "funding": [
  10999. {
  11000. "url": "https://symfony.com/sponsor",
  11001. "type": "custom"
  11002. },
  11003. {
  11004. "url": "https://github.com/fabpot",
  11005. "type": "github"
  11006. },
  11007. {
  11008. "url": "https://github.com/nicolas-grekas",
  11009. "type": "github"
  11010. },
  11011. {
  11012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11013. "type": "tidelift"
  11014. }
  11015. ],
  11016. "time": "2025-01-02T08:10:11+00:00"
  11017. },
  11018. {
  11019. "name": "symfony/polyfill-php82",
  11020. "version": "v1.31.0",
  11021. "source": {
  11022. "type": "git",
  11023. "url": "https://github.com/symfony/polyfill-php82.git",
  11024. "reference": "5d2ed36f7734637dacc025f179698031951b1692"
  11025. },
  11026. "dist": {
  11027. "type": "zip",
  11028. "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/5d2ed36f7734637dacc025f179698031951b1692",
  11029. "reference": "5d2ed36f7734637dacc025f179698031951b1692",
  11030. "shasum": ""
  11031. },
  11032. "require": {
  11033. "php": ">=7.2"
  11034. },
  11035. "type": "library",
  11036. "extra": {
  11037. "thanks": {
  11038. "url": "https://github.com/symfony/polyfill",
  11039. "name": "symfony/polyfill"
  11040. }
  11041. },
  11042. "autoload": {
  11043. "files": [
  11044. "bootstrap.php"
  11045. ],
  11046. "psr-4": {
  11047. "Symfony\\Polyfill\\Php82\\": ""
  11048. },
  11049. "classmap": [
  11050. "Resources/stubs"
  11051. ]
  11052. },
  11053. "notification-url": "https://packagist.org/downloads/",
  11054. "license": [
  11055. "MIT"
  11056. ],
  11057. "authors": [
  11058. {
  11059. "name": "Nicolas Grekas",
  11060. "email": "p@tchwork.com"
  11061. },
  11062. {
  11063. "name": "Symfony Community",
  11064. "homepage": "https://symfony.com/contributors"
  11065. }
  11066. ],
  11067. "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions",
  11068. "homepage": "https://symfony.com",
  11069. "keywords": [
  11070. "compatibility",
  11071. "polyfill",
  11072. "portable",
  11073. "shim"
  11074. ],
  11075. "support": {
  11076. "source": "https://github.com/symfony/polyfill-php82/tree/v1.31.0"
  11077. },
  11078. "funding": [
  11079. {
  11080. "url": "https://symfony.com/sponsor",
  11081. "type": "custom"
  11082. },
  11083. {
  11084. "url": "https://github.com/fabpot",
  11085. "type": "github"
  11086. },
  11087. {
  11088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11089. "type": "tidelift"
  11090. }
  11091. ],
  11092. "time": "2024-09-09T11:45:10+00:00"
  11093. },
  11094. {
  11095. "name": "symfony/polyfill-php83",
  11096. "version": "v1.33.0",
  11097. "source": {
  11098. "type": "git",
  11099. "url": "https://github.com/symfony/polyfill-php83.git",
  11100. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  11101. },
  11102. "dist": {
  11103. "type": "zip",
  11104. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  11105. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  11106. "shasum": ""
  11107. },
  11108. "require": {
  11109. "php": ">=7.2"
  11110. },
  11111. "type": "library",
  11112. "extra": {
  11113. "thanks": {
  11114. "url": "https://github.com/symfony/polyfill",
  11115. "name": "symfony/polyfill"
  11116. }
  11117. },
  11118. "autoload": {
  11119. "files": [
  11120. "bootstrap.php"
  11121. ],
  11122. "psr-4": {
  11123. "Symfony\\Polyfill\\Php83\\": ""
  11124. },
  11125. "classmap": [
  11126. "Resources/stubs"
  11127. ]
  11128. },
  11129. "notification-url": "https://packagist.org/downloads/",
  11130. "license": [
  11131. "MIT"
  11132. ],
  11133. "authors": [
  11134. {
  11135. "name": "Nicolas Grekas",
  11136. "email": "p@tchwork.com"
  11137. },
  11138. {
  11139. "name": "Symfony Community",
  11140. "homepage": "https://symfony.com/contributors"
  11141. }
  11142. ],
  11143. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11144. "homepage": "https://symfony.com",
  11145. "keywords": [
  11146. "compatibility",
  11147. "polyfill",
  11148. "portable",
  11149. "shim"
  11150. ],
  11151. "support": {
  11152. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  11153. },
  11154. "funding": [
  11155. {
  11156. "url": "https://symfony.com/sponsor",
  11157. "type": "custom"
  11158. },
  11159. {
  11160. "url": "https://github.com/fabpot",
  11161. "type": "github"
  11162. },
  11163. {
  11164. "url": "https://github.com/nicolas-grekas",
  11165. "type": "github"
  11166. },
  11167. {
  11168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11169. "type": "tidelift"
  11170. }
  11171. ],
  11172. "time": "2025-07-08T02:45:35+00:00"
  11173. },
  11174. {
  11175. "name": "symfony/polyfill-php84",
  11176. "version": "v1.33.0",
  11177. "source": {
  11178. "type": "git",
  11179. "url": "https://github.com/symfony/polyfill-php84.git",
  11180. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  11181. },
  11182. "dist": {
  11183. "type": "zip",
  11184. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  11185. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  11186. "shasum": ""
  11187. },
  11188. "require": {
  11189. "php": ">=7.2"
  11190. },
  11191. "type": "library",
  11192. "extra": {
  11193. "thanks": {
  11194. "url": "https://github.com/symfony/polyfill",
  11195. "name": "symfony/polyfill"
  11196. }
  11197. },
  11198. "autoload": {
  11199. "files": [
  11200. "bootstrap.php"
  11201. ],
  11202. "psr-4": {
  11203. "Symfony\\Polyfill\\Php84\\": ""
  11204. },
  11205. "classmap": [
  11206. "Resources/stubs"
  11207. ]
  11208. },
  11209. "notification-url": "https://packagist.org/downloads/",
  11210. "license": [
  11211. "MIT"
  11212. ],
  11213. "authors": [
  11214. {
  11215. "name": "Nicolas Grekas",
  11216. "email": "p@tchwork.com"
  11217. },
  11218. {
  11219. "name": "Symfony Community",
  11220. "homepage": "https://symfony.com/contributors"
  11221. }
  11222. ],
  11223. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  11224. "homepage": "https://symfony.com",
  11225. "keywords": [
  11226. "compatibility",
  11227. "polyfill",
  11228. "portable",
  11229. "shim"
  11230. ],
  11231. "support": {
  11232. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  11233. },
  11234. "funding": [
  11235. {
  11236. "url": "https://symfony.com/sponsor",
  11237. "type": "custom"
  11238. },
  11239. {
  11240. "url": "https://github.com/fabpot",
  11241. "type": "github"
  11242. },
  11243. {
  11244. "url": "https://github.com/nicolas-grekas",
  11245. "type": "github"
  11246. },
  11247. {
  11248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11249. "type": "tidelift"
  11250. }
  11251. ],
  11252. "time": "2025-06-24T13:30:11+00:00"
  11253. },
  11254. {
  11255. "name": "symfony/polyfill-uuid",
  11256. "version": "v1.31.0",
  11257. "source": {
  11258. "type": "git",
  11259. "url": "https://github.com/symfony/polyfill-uuid.git",
  11260. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  11261. },
  11262. "dist": {
  11263. "type": "zip",
  11264. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  11265. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  11266. "shasum": ""
  11267. },
  11268. "require": {
  11269. "php": ">=7.2"
  11270. },
  11271. "provide": {
  11272. "ext-uuid": "*"
  11273. },
  11274. "suggest": {
  11275. "ext-uuid": "For best performance"
  11276. },
  11277. "type": "library",
  11278. "extra": {
  11279. "thanks": {
  11280. "url": "https://github.com/symfony/polyfill",
  11281. "name": "symfony/polyfill"
  11282. }
  11283. },
  11284. "autoload": {
  11285. "files": [
  11286. "bootstrap.php"
  11287. ],
  11288. "psr-4": {
  11289. "Symfony\\Polyfill\\Uuid\\": ""
  11290. }
  11291. },
  11292. "notification-url": "https://packagist.org/downloads/",
  11293. "license": [
  11294. "MIT"
  11295. ],
  11296. "authors": [
  11297. {
  11298. "name": "Grégoire Pineau",
  11299. "email": "lyrixx@lyrixx.info"
  11300. },
  11301. {
  11302. "name": "Symfony Community",
  11303. "homepage": "https://symfony.com/contributors"
  11304. }
  11305. ],
  11306. "description": "Symfony polyfill for uuid functions",
  11307. "homepage": "https://symfony.com",
  11308. "keywords": [
  11309. "compatibility",
  11310. "polyfill",
  11311. "portable",
  11312. "uuid"
  11313. ],
  11314. "support": {
  11315. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  11316. },
  11317. "funding": [
  11318. {
  11319. "url": "https://symfony.com/sponsor",
  11320. "type": "custom"
  11321. },
  11322. {
  11323. "url": "https://github.com/fabpot",
  11324. "type": "github"
  11325. },
  11326. {
  11327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11328. "type": "tidelift"
  11329. }
  11330. ],
  11331. "time": "2024-09-09T11:45:10+00:00"
  11332. },
  11333. {
  11334. "name": "symfony/process",
  11335. "version": "v7.2.4",
  11336. "source": {
  11337. "type": "git",
  11338. "url": "https://github.com/symfony/process.git",
  11339. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf"
  11340. },
  11341. "dist": {
  11342. "type": "zip",
  11343. "url": "https://api.github.com/repos/symfony/process/zipball/d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  11344. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  11345. "shasum": ""
  11346. },
  11347. "require": {
  11348. "php": ">=8.2"
  11349. },
  11350. "type": "library",
  11351. "autoload": {
  11352. "psr-4": {
  11353. "Symfony\\Component\\Process\\": ""
  11354. },
  11355. "exclude-from-classmap": [
  11356. "/Tests/"
  11357. ]
  11358. },
  11359. "notification-url": "https://packagist.org/downloads/",
  11360. "license": [
  11361. "MIT"
  11362. ],
  11363. "authors": [
  11364. {
  11365. "name": "Fabien Potencier",
  11366. "email": "fabien@symfony.com"
  11367. },
  11368. {
  11369. "name": "Symfony Community",
  11370. "homepage": "https://symfony.com/contributors"
  11371. }
  11372. ],
  11373. "description": "Executes commands in sub-processes",
  11374. "homepage": "https://symfony.com",
  11375. "support": {
  11376. "source": "https://github.com/symfony/process/tree/v7.2.4"
  11377. },
  11378. "funding": [
  11379. {
  11380. "url": "https://symfony.com/sponsor",
  11381. "type": "custom"
  11382. },
  11383. {
  11384. "url": "https://github.com/fabpot",
  11385. "type": "github"
  11386. },
  11387. {
  11388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11389. "type": "tidelift"
  11390. }
  11391. ],
  11392. "time": "2025-02-05T08:33:46+00:00"
  11393. },
  11394. {
  11395. "name": "symfony/property-access",
  11396. "version": "v7.4.8",
  11397. "source": {
  11398. "type": "git",
  11399. "url": "https://github.com/symfony/property-access.git",
  11400. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc"
  11401. },
  11402. "dist": {
  11403. "type": "zip",
  11404. "url": "https://api.github.com/repos/symfony/property-access/zipball/b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  11405. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  11406. "shasum": ""
  11407. },
  11408. "require": {
  11409. "php": ">=8.2",
  11410. "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4"
  11411. },
  11412. "require-dev": {
  11413. "symfony/cache": "^6.4|^7.0|^8.0",
  11414. "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0"
  11415. },
  11416. "type": "library",
  11417. "autoload": {
  11418. "psr-4": {
  11419. "Symfony\\Component\\PropertyAccess\\": ""
  11420. },
  11421. "exclude-from-classmap": [
  11422. "/Tests/"
  11423. ]
  11424. },
  11425. "notification-url": "https://packagist.org/downloads/",
  11426. "license": [
  11427. "MIT"
  11428. ],
  11429. "authors": [
  11430. {
  11431. "name": "Fabien Potencier",
  11432. "email": "fabien@symfony.com"
  11433. },
  11434. {
  11435. "name": "Symfony Community",
  11436. "homepage": "https://symfony.com/contributors"
  11437. }
  11438. ],
  11439. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  11440. "homepage": "https://symfony.com",
  11441. "keywords": [
  11442. "access",
  11443. "array",
  11444. "extraction",
  11445. "index",
  11446. "injection",
  11447. "object",
  11448. "property",
  11449. "property-path",
  11450. "reflection"
  11451. ],
  11452. "support": {
  11453. "source": "https://github.com/symfony/property-access/tree/v7.4.8"
  11454. },
  11455. "funding": [
  11456. {
  11457. "url": "https://symfony.com/sponsor",
  11458. "type": "custom"
  11459. },
  11460. {
  11461. "url": "https://github.com/fabpot",
  11462. "type": "github"
  11463. },
  11464. {
  11465. "url": "https://github.com/nicolas-grekas",
  11466. "type": "github"
  11467. },
  11468. {
  11469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11470. "type": "tidelift"
  11471. }
  11472. ],
  11473. "time": "2026-03-24T13:12:05+00:00"
  11474. },
  11475. {
  11476. "name": "symfony/property-info",
  11477. "version": "v7.4.8",
  11478. "source": {
  11479. "type": "git",
  11480. "url": "https://github.com/symfony/property-info.git",
  11481. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175"
  11482. },
  11483. "dist": {
  11484. "type": "zip",
  11485. "url": "https://api.github.com/repos/symfony/property-info/zipball/ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  11486. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  11487. "shasum": ""
  11488. },
  11489. "require": {
  11490. "php": ">=8.2",
  11491. "symfony/deprecation-contracts": "^2.5|^3",
  11492. "symfony/string": "^6.4|^7.0|^8.0",
  11493. "symfony/type-info": "^7.4.7|^8.0.7"
  11494. },
  11495. "conflict": {
  11496. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  11497. "phpdocumentor/type-resolver": "<1.5.1",
  11498. "symfony/cache": "<6.4",
  11499. "symfony/dependency-injection": "<6.4",
  11500. "symfony/serializer": "<6.4"
  11501. },
  11502. "require-dev": {
  11503. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  11504. "phpstan/phpdoc-parser": "^1.0|^2.0",
  11505. "symfony/cache": "^6.4|^7.0|^8.0",
  11506. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  11507. "symfony/serializer": "^6.4|^7.0|^8.0"
  11508. },
  11509. "type": "library",
  11510. "autoload": {
  11511. "psr-4": {
  11512. "Symfony\\Component\\PropertyInfo\\": ""
  11513. },
  11514. "exclude-from-classmap": [
  11515. "/Tests/"
  11516. ]
  11517. },
  11518. "notification-url": "https://packagist.org/downloads/",
  11519. "license": [
  11520. "MIT"
  11521. ],
  11522. "authors": [
  11523. {
  11524. "name": "Kévin Dunglas",
  11525. "email": "dunglas@gmail.com"
  11526. },
  11527. {
  11528. "name": "Symfony Community",
  11529. "homepage": "https://symfony.com/contributors"
  11530. }
  11531. ],
  11532. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  11533. "homepage": "https://symfony.com",
  11534. "keywords": [
  11535. "doctrine",
  11536. "phpdoc",
  11537. "property",
  11538. "symfony",
  11539. "type",
  11540. "validator"
  11541. ],
  11542. "support": {
  11543. "source": "https://github.com/symfony/property-info/tree/v7.4.8"
  11544. },
  11545. "funding": [
  11546. {
  11547. "url": "https://symfony.com/sponsor",
  11548. "type": "custom"
  11549. },
  11550. {
  11551. "url": "https://github.com/fabpot",
  11552. "type": "github"
  11553. },
  11554. {
  11555. "url": "https://github.com/nicolas-grekas",
  11556. "type": "github"
  11557. },
  11558. {
  11559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11560. "type": "tidelift"
  11561. }
  11562. ],
  11563. "time": "2026-03-24T13:12:05+00:00"
  11564. },
  11565. {
  11566. "name": "symfony/psr-http-message-bridge",
  11567. "version": "v7.2.0",
  11568. "source": {
  11569. "type": "git",
  11570. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11571. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f"
  11572. },
  11573. "dist": {
  11574. "type": "zip",
  11575. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  11576. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  11577. "shasum": ""
  11578. },
  11579. "require": {
  11580. "php": ">=8.2",
  11581. "psr/http-message": "^1.0|^2.0",
  11582. "symfony/http-foundation": "^6.4|^7.0"
  11583. },
  11584. "conflict": {
  11585. "php-http/discovery": "<1.15",
  11586. "symfony/http-kernel": "<6.4"
  11587. },
  11588. "require-dev": {
  11589. "nyholm/psr7": "^1.1",
  11590. "php-http/discovery": "^1.15",
  11591. "psr/log": "^1.1.4|^2|^3",
  11592. "symfony/browser-kit": "^6.4|^7.0",
  11593. "symfony/config": "^6.4|^7.0",
  11594. "symfony/event-dispatcher": "^6.4|^7.0",
  11595. "symfony/framework-bundle": "^6.4|^7.0",
  11596. "symfony/http-kernel": "^6.4|^7.0"
  11597. },
  11598. "type": "symfony-bridge",
  11599. "autoload": {
  11600. "psr-4": {
  11601. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11602. },
  11603. "exclude-from-classmap": [
  11604. "/Tests/"
  11605. ]
  11606. },
  11607. "notification-url": "https://packagist.org/downloads/",
  11608. "license": [
  11609. "MIT"
  11610. ],
  11611. "authors": [
  11612. {
  11613. "name": "Fabien Potencier",
  11614. "email": "fabien@symfony.com"
  11615. },
  11616. {
  11617. "name": "Symfony Community",
  11618. "homepage": "https://symfony.com/contributors"
  11619. }
  11620. ],
  11621. "description": "PSR HTTP message bridge",
  11622. "homepage": "https://symfony.com",
  11623. "keywords": [
  11624. "http",
  11625. "http-message",
  11626. "psr-17",
  11627. "psr-7"
  11628. ],
  11629. "support": {
  11630. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.2.0"
  11631. },
  11632. "funding": [
  11633. {
  11634. "url": "https://symfony.com/sponsor",
  11635. "type": "custom"
  11636. },
  11637. {
  11638. "url": "https://github.com/fabpot",
  11639. "type": "github"
  11640. },
  11641. {
  11642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11643. "type": "tidelift"
  11644. }
  11645. ],
  11646. "time": "2024-09-26T08:57:56+00:00"
  11647. },
  11648. {
  11649. "name": "symfony/routing",
  11650. "version": "v7.2.3",
  11651. "source": {
  11652. "type": "git",
  11653. "url": "https://github.com/symfony/routing.git",
  11654. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  11655. },
  11656. "dist": {
  11657. "type": "zip",
  11658. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  11659. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  11660. "shasum": ""
  11661. },
  11662. "require": {
  11663. "php": ">=8.2",
  11664. "symfony/deprecation-contracts": "^2.5|^3"
  11665. },
  11666. "conflict": {
  11667. "symfony/config": "<6.4",
  11668. "symfony/dependency-injection": "<6.4",
  11669. "symfony/yaml": "<6.4"
  11670. },
  11671. "require-dev": {
  11672. "psr/log": "^1|^2|^3",
  11673. "symfony/config": "^6.4|^7.0",
  11674. "symfony/dependency-injection": "^6.4|^7.0",
  11675. "symfony/expression-language": "^6.4|^7.0",
  11676. "symfony/http-foundation": "^6.4|^7.0",
  11677. "symfony/yaml": "^6.4|^7.0"
  11678. },
  11679. "type": "library",
  11680. "autoload": {
  11681. "psr-4": {
  11682. "Symfony\\Component\\Routing\\": ""
  11683. },
  11684. "exclude-from-classmap": [
  11685. "/Tests/"
  11686. ]
  11687. },
  11688. "notification-url": "https://packagist.org/downloads/",
  11689. "license": [
  11690. "MIT"
  11691. ],
  11692. "authors": [
  11693. {
  11694. "name": "Fabien Potencier",
  11695. "email": "fabien@symfony.com"
  11696. },
  11697. {
  11698. "name": "Symfony Community",
  11699. "homepage": "https://symfony.com/contributors"
  11700. }
  11701. ],
  11702. "description": "Maps an HTTP request to a set of configuration variables",
  11703. "homepage": "https://symfony.com",
  11704. "keywords": [
  11705. "router",
  11706. "routing",
  11707. "uri",
  11708. "url"
  11709. ],
  11710. "support": {
  11711. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  11712. },
  11713. "funding": [
  11714. {
  11715. "url": "https://symfony.com/sponsor",
  11716. "type": "custom"
  11717. },
  11718. {
  11719. "url": "https://github.com/fabpot",
  11720. "type": "github"
  11721. },
  11722. {
  11723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11724. "type": "tidelift"
  11725. }
  11726. ],
  11727. "time": "2025-01-17T10:56:55+00:00"
  11728. },
  11729. {
  11730. "name": "symfony/serializer",
  11731. "version": "v7.4.8",
  11732. "source": {
  11733. "type": "git",
  11734. "url": "https://github.com/symfony/serializer.git",
  11735. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455"
  11736. },
  11737. "dist": {
  11738. "type": "zip",
  11739. "url": "https://api.github.com/repos/symfony/serializer/zipball/006fd51717addf2df2bd1a64dafef6b7fab6b455",
  11740. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455",
  11741. "shasum": ""
  11742. },
  11743. "require": {
  11744. "php": ">=8.2",
  11745. "symfony/deprecation-contracts": "^2.5|^3",
  11746. "symfony/polyfill-ctype": "~1.8",
  11747. "symfony/polyfill-php84": "^1.30"
  11748. },
  11749. "conflict": {
  11750. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  11751. "phpdocumentor/type-resolver": "<1.5.1",
  11752. "symfony/dependency-injection": "<6.4",
  11753. "symfony/property-access": "<6.4",
  11754. "symfony/property-info": "<6.4",
  11755. "symfony/type-info": "<7.2.5",
  11756. "symfony/uid": "<6.4",
  11757. "symfony/validator": "<6.4",
  11758. "symfony/yaml": "<6.4"
  11759. },
  11760. "require-dev": {
  11761. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  11762. "phpstan/phpdoc-parser": "^1.0|^2.0",
  11763. "seld/jsonlint": "^1.10",
  11764. "symfony/cache": "^6.4|^7.0|^8.0",
  11765. "symfony/config": "^6.4|^7.0|^8.0",
  11766. "symfony/console": "^6.4|^7.0|^8.0",
  11767. "symfony/dependency-injection": "^7.2|^8.0",
  11768. "symfony/error-handler": "^6.4|^7.0|^8.0",
  11769. "symfony/filesystem": "^6.4|^7.0|^8.0",
  11770. "symfony/form": "^6.4|^7.0|^8.0",
  11771. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  11772. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  11773. "symfony/messenger": "^6.4|^7.0|^8.0",
  11774. "symfony/mime": "^6.4|^7.0|^8.0",
  11775. "symfony/property-access": "^6.4|^7.0|^8.0",
  11776. "symfony/property-info": "^6.4|^7.0|^8.0",
  11777. "symfony/translation-contracts": "^2.5|^3",
  11778. "symfony/type-info": "^7.2.5|^8.0",
  11779. "symfony/uid": "^6.4|^7.0|^8.0",
  11780. "symfony/validator": "^6.4|^7.0|^8.0",
  11781. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  11782. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  11783. "symfony/yaml": "^6.4|^7.0|^8.0"
  11784. },
  11785. "type": "library",
  11786. "autoload": {
  11787. "psr-4": {
  11788. "Symfony\\Component\\Serializer\\": ""
  11789. },
  11790. "exclude-from-classmap": [
  11791. "/Tests/"
  11792. ]
  11793. },
  11794. "notification-url": "https://packagist.org/downloads/",
  11795. "license": [
  11796. "MIT"
  11797. ],
  11798. "authors": [
  11799. {
  11800. "name": "Fabien Potencier",
  11801. "email": "fabien@symfony.com"
  11802. },
  11803. {
  11804. "name": "Symfony Community",
  11805. "homepage": "https://symfony.com/contributors"
  11806. }
  11807. ],
  11808. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11809. "homepage": "https://symfony.com",
  11810. "support": {
  11811. "source": "https://github.com/symfony/serializer/tree/v7.4.8"
  11812. },
  11813. "funding": [
  11814. {
  11815. "url": "https://symfony.com/sponsor",
  11816. "type": "custom"
  11817. },
  11818. {
  11819. "url": "https://github.com/fabpot",
  11820. "type": "github"
  11821. },
  11822. {
  11823. "url": "https://github.com/nicolas-grekas",
  11824. "type": "github"
  11825. },
  11826. {
  11827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11828. "type": "tidelift"
  11829. }
  11830. ],
  11831. "time": "2026-03-30T21:34:42+00:00"
  11832. },
  11833. {
  11834. "name": "symfony/service-contracts",
  11835. "version": "v3.6.0",
  11836. "source": {
  11837. "type": "git",
  11838. "url": "https://github.com/symfony/service-contracts.git",
  11839. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  11840. },
  11841. "dist": {
  11842. "type": "zip",
  11843. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  11844. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  11845. "shasum": ""
  11846. },
  11847. "require": {
  11848. "php": ">=8.1",
  11849. "psr/container": "^1.1|^2.0",
  11850. "symfony/deprecation-contracts": "^2.5|^3"
  11851. },
  11852. "conflict": {
  11853. "ext-psr": "<1.1|>=2"
  11854. },
  11855. "type": "library",
  11856. "extra": {
  11857. "thanks": {
  11858. "url": "https://github.com/symfony/contracts",
  11859. "name": "symfony/contracts"
  11860. },
  11861. "branch-alias": {
  11862. "dev-main": "3.6-dev"
  11863. }
  11864. },
  11865. "autoload": {
  11866. "psr-4": {
  11867. "Symfony\\Contracts\\Service\\": ""
  11868. },
  11869. "exclude-from-classmap": [
  11870. "/Test/"
  11871. ]
  11872. },
  11873. "notification-url": "https://packagist.org/downloads/",
  11874. "license": [
  11875. "MIT"
  11876. ],
  11877. "authors": [
  11878. {
  11879. "name": "Nicolas Grekas",
  11880. "email": "p@tchwork.com"
  11881. },
  11882. {
  11883. "name": "Symfony Community",
  11884. "homepage": "https://symfony.com/contributors"
  11885. }
  11886. ],
  11887. "description": "Generic abstractions related to writing services",
  11888. "homepage": "https://symfony.com",
  11889. "keywords": [
  11890. "abstractions",
  11891. "contracts",
  11892. "decoupling",
  11893. "interfaces",
  11894. "interoperability",
  11895. "standards"
  11896. ],
  11897. "support": {
  11898. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  11899. },
  11900. "funding": [
  11901. {
  11902. "url": "https://symfony.com/sponsor",
  11903. "type": "custom"
  11904. },
  11905. {
  11906. "url": "https://github.com/fabpot",
  11907. "type": "github"
  11908. },
  11909. {
  11910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11911. "type": "tidelift"
  11912. }
  11913. ],
  11914. "time": "2025-04-25T09:37:31+00:00"
  11915. },
  11916. {
  11917. "name": "symfony/string",
  11918. "version": "v7.3.3",
  11919. "source": {
  11920. "type": "git",
  11921. "url": "https://github.com/symfony/string.git",
  11922. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c"
  11923. },
  11924. "dist": {
  11925. "type": "zip",
  11926. "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  11927. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  11928. "shasum": ""
  11929. },
  11930. "require": {
  11931. "php": ">=8.2",
  11932. "symfony/polyfill-ctype": "~1.8",
  11933. "symfony/polyfill-intl-grapheme": "~1.0",
  11934. "symfony/polyfill-intl-normalizer": "~1.0",
  11935. "symfony/polyfill-mbstring": "~1.0"
  11936. },
  11937. "conflict": {
  11938. "symfony/translation-contracts": "<2.5"
  11939. },
  11940. "require-dev": {
  11941. "symfony/emoji": "^7.1",
  11942. "symfony/error-handler": "^6.4|^7.0",
  11943. "symfony/http-client": "^6.4|^7.0",
  11944. "symfony/intl": "^6.4|^7.0",
  11945. "symfony/translation-contracts": "^2.5|^3.0",
  11946. "symfony/var-exporter": "^6.4|^7.0"
  11947. },
  11948. "type": "library",
  11949. "autoload": {
  11950. "files": [
  11951. "Resources/functions.php"
  11952. ],
  11953. "psr-4": {
  11954. "Symfony\\Component\\String\\": ""
  11955. },
  11956. "exclude-from-classmap": [
  11957. "/Tests/"
  11958. ]
  11959. },
  11960. "notification-url": "https://packagist.org/downloads/",
  11961. "license": [
  11962. "MIT"
  11963. ],
  11964. "authors": [
  11965. {
  11966. "name": "Nicolas Grekas",
  11967. "email": "p@tchwork.com"
  11968. },
  11969. {
  11970. "name": "Symfony Community",
  11971. "homepage": "https://symfony.com/contributors"
  11972. }
  11973. ],
  11974. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11975. "homepage": "https://symfony.com",
  11976. "keywords": [
  11977. "grapheme",
  11978. "i18n",
  11979. "string",
  11980. "unicode",
  11981. "utf-8",
  11982. "utf8"
  11983. ],
  11984. "support": {
  11985. "source": "https://github.com/symfony/string/tree/v7.3.3"
  11986. },
  11987. "funding": [
  11988. {
  11989. "url": "https://symfony.com/sponsor",
  11990. "type": "custom"
  11991. },
  11992. {
  11993. "url": "https://github.com/fabpot",
  11994. "type": "github"
  11995. },
  11996. {
  11997. "url": "https://github.com/nicolas-grekas",
  11998. "type": "github"
  11999. },
  12000. {
  12001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12002. "type": "tidelift"
  12003. }
  12004. ],
  12005. "time": "2025-08-25T06:35:40+00:00"
  12006. },
  12007. {
  12008. "name": "symfony/translation",
  12009. "version": "v6.4.19",
  12010. "source": {
  12011. "type": "git",
  12012. "url": "https://github.com/symfony/translation.git",
  12013. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e"
  12014. },
  12015. "dist": {
  12016. "type": "zip",
  12017. "url": "https://api.github.com/repos/symfony/translation/zipball/3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  12018. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  12019. "shasum": ""
  12020. },
  12021. "require": {
  12022. "php": ">=8.1",
  12023. "symfony/deprecation-contracts": "^2.5|^3",
  12024. "symfony/polyfill-mbstring": "~1.0",
  12025. "symfony/translation-contracts": "^2.5|^3.0"
  12026. },
  12027. "conflict": {
  12028. "symfony/config": "<5.4",
  12029. "symfony/console": "<5.4",
  12030. "symfony/dependency-injection": "<5.4",
  12031. "symfony/http-client-contracts": "<2.5",
  12032. "symfony/http-kernel": "<5.4",
  12033. "symfony/service-contracts": "<2.5",
  12034. "symfony/twig-bundle": "<5.4",
  12035. "symfony/yaml": "<5.4"
  12036. },
  12037. "provide": {
  12038. "symfony/translation-implementation": "2.3|3.0"
  12039. },
  12040. "require-dev": {
  12041. "nikic/php-parser": "^4.18|^5.0",
  12042. "psr/log": "^1|^2|^3",
  12043. "symfony/config": "^5.4|^6.0|^7.0",
  12044. "symfony/console": "^5.4|^6.0|^7.0",
  12045. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12046. "symfony/finder": "^5.4|^6.0|^7.0",
  12047. "symfony/http-client-contracts": "^2.5|^3.0",
  12048. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12049. "symfony/intl": "^5.4|^6.0|^7.0",
  12050. "symfony/polyfill-intl-icu": "^1.21",
  12051. "symfony/routing": "^5.4|^6.0|^7.0",
  12052. "symfony/service-contracts": "^2.5|^3",
  12053. "symfony/yaml": "^5.4|^6.0|^7.0"
  12054. },
  12055. "type": "library",
  12056. "autoload": {
  12057. "files": [
  12058. "Resources/functions.php"
  12059. ],
  12060. "psr-4": {
  12061. "Symfony\\Component\\Translation\\": ""
  12062. },
  12063. "exclude-from-classmap": [
  12064. "/Tests/"
  12065. ]
  12066. },
  12067. "notification-url": "https://packagist.org/downloads/",
  12068. "license": [
  12069. "MIT"
  12070. ],
  12071. "authors": [
  12072. {
  12073. "name": "Fabien Potencier",
  12074. "email": "fabien@symfony.com"
  12075. },
  12076. {
  12077. "name": "Symfony Community",
  12078. "homepage": "https://symfony.com/contributors"
  12079. }
  12080. ],
  12081. "description": "Provides tools to internationalize your application",
  12082. "homepage": "https://symfony.com",
  12083. "support": {
  12084. "source": "https://github.com/symfony/translation/tree/v6.4.19"
  12085. },
  12086. "funding": [
  12087. {
  12088. "url": "https://symfony.com/sponsor",
  12089. "type": "custom"
  12090. },
  12091. {
  12092. "url": "https://github.com/fabpot",
  12093. "type": "github"
  12094. },
  12095. {
  12096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12097. "type": "tidelift"
  12098. }
  12099. ],
  12100. "time": "2025-02-13T10:18:43+00:00"
  12101. },
  12102. {
  12103. "name": "symfony/translation-contracts",
  12104. "version": "v3.6.0",
  12105. "source": {
  12106. "type": "git",
  12107. "url": "https://github.com/symfony/translation-contracts.git",
  12108. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  12109. },
  12110. "dist": {
  12111. "type": "zip",
  12112. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  12113. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  12114. "shasum": ""
  12115. },
  12116. "require": {
  12117. "php": ">=8.1"
  12118. },
  12119. "type": "library",
  12120. "extra": {
  12121. "thanks": {
  12122. "url": "https://github.com/symfony/contracts",
  12123. "name": "symfony/contracts"
  12124. },
  12125. "branch-alias": {
  12126. "dev-main": "3.6-dev"
  12127. }
  12128. },
  12129. "autoload": {
  12130. "psr-4": {
  12131. "Symfony\\Contracts\\Translation\\": ""
  12132. },
  12133. "exclude-from-classmap": [
  12134. "/Test/"
  12135. ]
  12136. },
  12137. "notification-url": "https://packagist.org/downloads/",
  12138. "license": [
  12139. "MIT"
  12140. ],
  12141. "authors": [
  12142. {
  12143. "name": "Nicolas Grekas",
  12144. "email": "p@tchwork.com"
  12145. },
  12146. {
  12147. "name": "Symfony Community",
  12148. "homepage": "https://symfony.com/contributors"
  12149. }
  12150. ],
  12151. "description": "Generic abstractions related to translation",
  12152. "homepage": "https://symfony.com",
  12153. "keywords": [
  12154. "abstractions",
  12155. "contracts",
  12156. "decoupling",
  12157. "interfaces",
  12158. "interoperability",
  12159. "standards"
  12160. ],
  12161. "support": {
  12162. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  12163. },
  12164. "funding": [
  12165. {
  12166. "url": "https://symfony.com/sponsor",
  12167. "type": "custom"
  12168. },
  12169. {
  12170. "url": "https://github.com/fabpot",
  12171. "type": "github"
  12172. },
  12173. {
  12174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12175. "type": "tidelift"
  12176. }
  12177. ],
  12178. "time": "2024-09-27T08:32:26+00:00"
  12179. },
  12180. {
  12181. "name": "symfony/type-info",
  12182. "version": "v7.4.8",
  12183. "source": {
  12184. "type": "git",
  12185. "url": "https://github.com/symfony/type-info.git",
  12186. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd"
  12187. },
  12188. "dist": {
  12189. "type": "zip",
  12190. "url": "https://api.github.com/repos/symfony/type-info/zipball/6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  12191. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  12192. "shasum": ""
  12193. },
  12194. "require": {
  12195. "php": ">=8.2",
  12196. "psr/container": "^1.1|^2.0",
  12197. "symfony/deprecation-contracts": "^2.5|^3"
  12198. },
  12199. "conflict": {
  12200. "phpstan/phpdoc-parser": "<1.30"
  12201. },
  12202. "require-dev": {
  12203. "phpstan/phpdoc-parser": "^1.30|^2.0"
  12204. },
  12205. "type": "library",
  12206. "autoload": {
  12207. "psr-4": {
  12208. "Symfony\\Component\\TypeInfo\\": ""
  12209. },
  12210. "exclude-from-classmap": [
  12211. "/Tests/"
  12212. ]
  12213. },
  12214. "notification-url": "https://packagist.org/downloads/",
  12215. "license": [
  12216. "MIT"
  12217. ],
  12218. "authors": [
  12219. {
  12220. "name": "Mathias Arlaud",
  12221. "email": "mathias.arlaud@gmail.com"
  12222. },
  12223. {
  12224. "name": "Baptiste LEDUC",
  12225. "email": "baptiste.leduc@gmail.com"
  12226. },
  12227. {
  12228. "name": "Symfony Community",
  12229. "homepage": "https://symfony.com/contributors"
  12230. }
  12231. ],
  12232. "description": "Extracts PHP types information.",
  12233. "homepage": "https://symfony.com",
  12234. "keywords": [
  12235. "PHPStan",
  12236. "phpdoc",
  12237. "symfony",
  12238. "type"
  12239. ],
  12240. "support": {
  12241. "source": "https://github.com/symfony/type-info/tree/v7.4.8"
  12242. },
  12243. "funding": [
  12244. {
  12245. "url": "https://symfony.com/sponsor",
  12246. "type": "custom"
  12247. },
  12248. {
  12249. "url": "https://github.com/fabpot",
  12250. "type": "github"
  12251. },
  12252. {
  12253. "url": "https://github.com/nicolas-grekas",
  12254. "type": "github"
  12255. },
  12256. {
  12257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12258. "type": "tidelift"
  12259. }
  12260. ],
  12261. "time": "2026-03-24T13:12:05+00:00"
  12262. },
  12263. {
  12264. "name": "symfony/uid",
  12265. "version": "v7.2.0",
  12266. "source": {
  12267. "type": "git",
  12268. "url": "https://github.com/symfony/uid.git",
  12269. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  12270. },
  12271. "dist": {
  12272. "type": "zip",
  12273. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  12274. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  12275. "shasum": ""
  12276. },
  12277. "require": {
  12278. "php": ">=8.2",
  12279. "symfony/polyfill-uuid": "^1.15"
  12280. },
  12281. "require-dev": {
  12282. "symfony/console": "^6.4|^7.0"
  12283. },
  12284. "type": "library",
  12285. "autoload": {
  12286. "psr-4": {
  12287. "Symfony\\Component\\Uid\\": ""
  12288. },
  12289. "exclude-from-classmap": [
  12290. "/Tests/"
  12291. ]
  12292. },
  12293. "notification-url": "https://packagist.org/downloads/",
  12294. "license": [
  12295. "MIT"
  12296. ],
  12297. "authors": [
  12298. {
  12299. "name": "Grégoire Pineau",
  12300. "email": "lyrixx@lyrixx.info"
  12301. },
  12302. {
  12303. "name": "Nicolas Grekas",
  12304. "email": "p@tchwork.com"
  12305. },
  12306. {
  12307. "name": "Symfony Community",
  12308. "homepage": "https://symfony.com/contributors"
  12309. }
  12310. ],
  12311. "description": "Provides an object-oriented API to generate and represent UIDs",
  12312. "homepage": "https://symfony.com",
  12313. "keywords": [
  12314. "UID",
  12315. "ulid",
  12316. "uuid"
  12317. ],
  12318. "support": {
  12319. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  12320. },
  12321. "funding": [
  12322. {
  12323. "url": "https://symfony.com/sponsor",
  12324. "type": "custom"
  12325. },
  12326. {
  12327. "url": "https://github.com/fabpot",
  12328. "type": "github"
  12329. },
  12330. {
  12331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12332. "type": "tidelift"
  12333. }
  12334. ],
  12335. "time": "2024-09-25T14:21:43+00:00"
  12336. },
  12337. {
  12338. "name": "symfony/validator",
  12339. "version": "v7.4.8",
  12340. "source": {
  12341. "type": "git",
  12342. "url": "https://github.com/symfony/validator.git",
  12343. "reference": "8f73cbddae916756f319b3e195088da216f0f12f"
  12344. },
  12345. "dist": {
  12346. "type": "zip",
  12347. "url": "https://api.github.com/repos/symfony/validator/zipball/8f73cbddae916756f319b3e195088da216f0f12f",
  12348. "reference": "8f73cbddae916756f319b3e195088da216f0f12f",
  12349. "shasum": ""
  12350. },
  12351. "require": {
  12352. "php": ">=8.2",
  12353. "symfony/deprecation-contracts": "^2.5|^3",
  12354. "symfony/polyfill-ctype": "~1.8",
  12355. "symfony/polyfill-mbstring": "~1.0",
  12356. "symfony/polyfill-php83": "^1.27",
  12357. "symfony/translation-contracts": "^2.5|^3"
  12358. },
  12359. "conflict": {
  12360. "doctrine/lexer": "<1.1",
  12361. "symfony/dependency-injection": "<6.4",
  12362. "symfony/doctrine-bridge": "<7.0",
  12363. "symfony/expression-language": "<6.4",
  12364. "symfony/http-kernel": "<6.4",
  12365. "symfony/intl": "<6.4",
  12366. "symfony/property-info": "<6.4",
  12367. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  12368. "symfony/var-exporter": "<6.4.25|>=7.0,<7.3.3",
  12369. "symfony/yaml": "<6.4"
  12370. },
  12371. "require-dev": {
  12372. "egulias/email-validator": "^2.1.10|^3|^4",
  12373. "symfony/cache": "^6.4|^7.0|^8.0",
  12374. "symfony/config": "^6.4|^7.0|^8.0",
  12375. "symfony/console": "^6.4|^7.0|^8.0",
  12376. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  12377. "symfony/expression-language": "^6.4|^7.0|^8.0",
  12378. "symfony/finder": "^6.4|^7.0|^8.0",
  12379. "symfony/http-client": "^6.4|^7.0|^8.0",
  12380. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  12381. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  12382. "symfony/intl": "^6.4|^7.0|^8.0",
  12383. "symfony/mime": "^6.4|^7.0|^8.0",
  12384. "symfony/process": "^6.4|^7.0|^8.0",
  12385. "symfony/property-access": "^6.4|^7.0|^8.0",
  12386. "symfony/property-info": "^6.4|^7.0|^8.0",
  12387. "symfony/string": "^6.4|^7.0|^8.0",
  12388. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  12389. "symfony/type-info": "^7.1.8",
  12390. "symfony/yaml": "^6.4|^7.0|^8.0"
  12391. },
  12392. "type": "library",
  12393. "autoload": {
  12394. "psr-4": {
  12395. "Symfony\\Component\\Validator\\": ""
  12396. },
  12397. "exclude-from-classmap": [
  12398. "/Tests/",
  12399. "/Resources/bin/"
  12400. ]
  12401. },
  12402. "notification-url": "https://packagist.org/downloads/",
  12403. "license": [
  12404. "MIT"
  12405. ],
  12406. "authors": [
  12407. {
  12408. "name": "Fabien Potencier",
  12409. "email": "fabien@symfony.com"
  12410. },
  12411. {
  12412. "name": "Symfony Community",
  12413. "homepage": "https://symfony.com/contributors"
  12414. }
  12415. ],
  12416. "description": "Provides tools to validate values",
  12417. "homepage": "https://symfony.com",
  12418. "support": {
  12419. "source": "https://github.com/symfony/validator/tree/v7.4.8"
  12420. },
  12421. "funding": [
  12422. {
  12423. "url": "https://symfony.com/sponsor",
  12424. "type": "custom"
  12425. },
  12426. {
  12427. "url": "https://github.com/fabpot",
  12428. "type": "github"
  12429. },
  12430. {
  12431. "url": "https://github.com/nicolas-grekas",
  12432. "type": "github"
  12433. },
  12434. {
  12435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12436. "type": "tidelift"
  12437. }
  12438. ],
  12439. "time": "2026-03-30T12:55:43+00:00"
  12440. },
  12441. {
  12442. "name": "symfony/var-dumper",
  12443. "version": "v7.2.3",
  12444. "source": {
  12445. "type": "git",
  12446. "url": "https://github.com/symfony/var-dumper.git",
  12447. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  12448. },
  12449. "dist": {
  12450. "type": "zip",
  12451. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  12452. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  12453. "shasum": ""
  12454. },
  12455. "require": {
  12456. "php": ">=8.2",
  12457. "symfony/polyfill-mbstring": "~1.0"
  12458. },
  12459. "conflict": {
  12460. "symfony/console": "<6.4"
  12461. },
  12462. "require-dev": {
  12463. "ext-iconv": "*",
  12464. "symfony/console": "^6.4|^7.0",
  12465. "symfony/http-kernel": "^6.4|^7.0",
  12466. "symfony/process": "^6.4|^7.0",
  12467. "symfony/uid": "^6.4|^7.0",
  12468. "twig/twig": "^3.12"
  12469. },
  12470. "bin": [
  12471. "Resources/bin/var-dump-server"
  12472. ],
  12473. "type": "library",
  12474. "autoload": {
  12475. "files": [
  12476. "Resources/functions/dump.php"
  12477. ],
  12478. "psr-4": {
  12479. "Symfony\\Component\\VarDumper\\": ""
  12480. },
  12481. "exclude-from-classmap": [
  12482. "/Tests/"
  12483. ]
  12484. },
  12485. "notification-url": "https://packagist.org/downloads/",
  12486. "license": [
  12487. "MIT"
  12488. ],
  12489. "authors": [
  12490. {
  12491. "name": "Nicolas Grekas",
  12492. "email": "p@tchwork.com"
  12493. },
  12494. {
  12495. "name": "Symfony Community",
  12496. "homepage": "https://symfony.com/contributors"
  12497. }
  12498. ],
  12499. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12500. "homepage": "https://symfony.com",
  12501. "keywords": [
  12502. "debug",
  12503. "dump"
  12504. ],
  12505. "support": {
  12506. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  12507. },
  12508. "funding": [
  12509. {
  12510. "url": "https://symfony.com/sponsor",
  12511. "type": "custom"
  12512. },
  12513. {
  12514. "url": "https://github.com/fabpot",
  12515. "type": "github"
  12516. },
  12517. {
  12518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12519. "type": "tidelift"
  12520. }
  12521. ],
  12522. "time": "2025-01-17T11:39:41+00:00"
  12523. },
  12524. {
  12525. "name": "symfony/web-link",
  12526. "version": "v7.4.8",
  12527. "source": {
  12528. "type": "git",
  12529. "url": "https://github.com/symfony/web-link.git",
  12530. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25"
  12531. },
  12532. "dist": {
  12533. "type": "zip",
  12534. "url": "https://api.github.com/repos/symfony/web-link/zipball/0711009963009e7d6d59149327f3ad633ee3fe25",
  12535. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25",
  12536. "shasum": ""
  12537. },
  12538. "require": {
  12539. "php": ">=8.2",
  12540. "psr/link": "^1.1|^2.0"
  12541. },
  12542. "conflict": {
  12543. "symfony/http-kernel": "<6.4"
  12544. },
  12545. "provide": {
  12546. "psr/link-implementation": "1.0|2.0"
  12547. },
  12548. "require-dev": {
  12549. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  12550. },
  12551. "type": "library",
  12552. "autoload": {
  12553. "psr-4": {
  12554. "Symfony\\Component\\WebLink\\": ""
  12555. },
  12556. "exclude-from-classmap": [
  12557. "/Tests/"
  12558. ]
  12559. },
  12560. "notification-url": "https://packagist.org/downloads/",
  12561. "license": [
  12562. "MIT"
  12563. ],
  12564. "authors": [
  12565. {
  12566. "name": "Kévin Dunglas",
  12567. "email": "dunglas@gmail.com"
  12568. },
  12569. {
  12570. "name": "Symfony Community",
  12571. "homepage": "https://symfony.com/contributors"
  12572. }
  12573. ],
  12574. "description": "Manages links between resources",
  12575. "homepage": "https://symfony.com",
  12576. "keywords": [
  12577. "dns-prefetch",
  12578. "http",
  12579. "http2",
  12580. "link",
  12581. "performance",
  12582. "prefetch",
  12583. "preload",
  12584. "prerender",
  12585. "psr13",
  12586. "push"
  12587. ],
  12588. "support": {
  12589. "source": "https://github.com/symfony/web-link/tree/v7.4.8"
  12590. },
  12591. "funding": [
  12592. {
  12593. "url": "https://symfony.com/sponsor",
  12594. "type": "custom"
  12595. },
  12596. {
  12597. "url": "https://github.com/fabpot",
  12598. "type": "github"
  12599. },
  12600. {
  12601. "url": "https://github.com/nicolas-grekas",
  12602. "type": "github"
  12603. },
  12604. {
  12605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12606. "type": "tidelift"
  12607. }
  12608. ],
  12609. "time": "2026-03-24T13:12:05+00:00"
  12610. },
  12611. {
  12612. "name": "tijsverkoyen/css-to-inline-styles",
  12613. "version": "v2.3.0",
  12614. "source": {
  12615. "type": "git",
  12616. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  12617. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  12618. },
  12619. "dist": {
  12620. "type": "zip",
  12621. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  12622. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  12623. "shasum": ""
  12624. },
  12625. "require": {
  12626. "ext-dom": "*",
  12627. "ext-libxml": "*",
  12628. "php": "^7.4 || ^8.0",
  12629. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  12630. },
  12631. "require-dev": {
  12632. "phpstan/phpstan": "^2.0",
  12633. "phpstan/phpstan-phpunit": "^2.0",
  12634. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  12635. },
  12636. "type": "library",
  12637. "extra": {
  12638. "branch-alias": {
  12639. "dev-master": "2.x-dev"
  12640. }
  12641. },
  12642. "autoload": {
  12643. "psr-4": {
  12644. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  12645. }
  12646. },
  12647. "notification-url": "https://packagist.org/downloads/",
  12648. "license": [
  12649. "BSD-3-Clause"
  12650. ],
  12651. "authors": [
  12652. {
  12653. "name": "Tijs Verkoyen",
  12654. "email": "css_to_inline_styles@verkoyen.eu",
  12655. "role": "Developer"
  12656. }
  12657. ],
  12658. "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.",
  12659. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  12660. "support": {
  12661. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  12662. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  12663. },
  12664. "time": "2024-12-21T16:25:41+00:00"
  12665. },
  12666. {
  12667. "name": "ua-parser/uap-php",
  12668. "version": "v3.9.14",
  12669. "source": {
  12670. "type": "git",
  12671. "url": "https://github.com/ua-parser/uap-php.git",
  12672. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6"
  12673. },
  12674. "dist": {
  12675. "type": "zip",
  12676. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  12677. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  12678. "shasum": ""
  12679. },
  12680. "require": {
  12681. "composer/ca-bundle": "^1.1",
  12682. "php": "^7.2 || ^8.0"
  12683. },
  12684. "require-dev": {
  12685. "phpstan/phpstan": "^0.12.33",
  12686. "phpunit/phpunit": "^8 || ^9",
  12687. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12688. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12689. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12690. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12691. "vimeo/psalm": "^3.12"
  12692. },
  12693. "suggest": {
  12694. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12695. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12696. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12697. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  12698. },
  12699. "bin": [
  12700. "bin/uaparser"
  12701. ],
  12702. "type": "library",
  12703. "autoload": {
  12704. "psr-4": {
  12705. "UAParser\\": "src"
  12706. }
  12707. },
  12708. "notification-url": "https://packagist.org/downloads/",
  12709. "license": [
  12710. "MIT"
  12711. ],
  12712. "authors": [
  12713. {
  12714. "name": "Dave Olsen",
  12715. "email": "dmolsen@gmail.com"
  12716. },
  12717. {
  12718. "name": "Lars Strojny",
  12719. "email": "lars@strojny.net"
  12720. }
  12721. ],
  12722. "description": "A multi-language port of Browserscope's user agent parser.",
  12723. "support": {
  12724. "issues": "https://github.com/ua-parser/uap-php/issues",
  12725. "source": "https://github.com/ua-parser/uap-php/tree/v3.9.14"
  12726. },
  12727. "time": "2020-10-02T23:36:20+00:00"
  12728. },
  12729. {
  12730. "name": "vlucas/phpdotenv",
  12731. "version": "v5.6.1",
  12732. "source": {
  12733. "type": "git",
  12734. "url": "https://github.com/vlucas/phpdotenv.git",
  12735. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  12736. },
  12737. "dist": {
  12738. "type": "zip",
  12739. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  12740. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  12741. "shasum": ""
  12742. },
  12743. "require": {
  12744. "ext-pcre": "*",
  12745. "graham-campbell/result-type": "^1.1.3",
  12746. "php": "^7.2.5 || ^8.0",
  12747. "phpoption/phpoption": "^1.9.3",
  12748. "symfony/polyfill-ctype": "^1.24",
  12749. "symfony/polyfill-mbstring": "^1.24",
  12750. "symfony/polyfill-php80": "^1.24"
  12751. },
  12752. "require-dev": {
  12753. "bamarni/composer-bin-plugin": "^1.8.2",
  12754. "ext-filter": "*",
  12755. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  12756. },
  12757. "suggest": {
  12758. "ext-filter": "Required to use the boolean validator."
  12759. },
  12760. "type": "library",
  12761. "extra": {
  12762. "bamarni-bin": {
  12763. "bin-links": true,
  12764. "forward-command": false
  12765. },
  12766. "branch-alias": {
  12767. "dev-master": "5.6-dev"
  12768. }
  12769. },
  12770. "autoload": {
  12771. "psr-4": {
  12772. "Dotenv\\": "src/"
  12773. }
  12774. },
  12775. "notification-url": "https://packagist.org/downloads/",
  12776. "license": [
  12777. "BSD-3-Clause"
  12778. ],
  12779. "authors": [
  12780. {
  12781. "name": "Graham Campbell",
  12782. "email": "hello@gjcampbell.co.uk",
  12783. "homepage": "https://github.com/GrahamCampbell"
  12784. },
  12785. {
  12786. "name": "Vance Lucas",
  12787. "email": "vance@vancelucas.com",
  12788. "homepage": "https://github.com/vlucas"
  12789. }
  12790. ],
  12791. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  12792. "keywords": [
  12793. "dotenv",
  12794. "env",
  12795. "environment"
  12796. ],
  12797. "support": {
  12798. "issues": "https://github.com/vlucas/phpdotenv/issues",
  12799. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  12800. },
  12801. "funding": [
  12802. {
  12803. "url": "https://github.com/GrahamCampbell",
  12804. "type": "github"
  12805. },
  12806. {
  12807. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  12808. "type": "tidelift"
  12809. }
  12810. ],
  12811. "time": "2024-07-20T21:52:34+00:00"
  12812. },
  12813. {
  12814. "name": "voku/portable-ascii",
  12815. "version": "2.0.3",
  12816. "source": {
  12817. "type": "git",
  12818. "url": "https://github.com/voku/portable-ascii.git",
  12819. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  12820. },
  12821. "dist": {
  12822. "type": "zip",
  12823. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  12824. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  12825. "shasum": ""
  12826. },
  12827. "require": {
  12828. "php": ">=7.0.0"
  12829. },
  12830. "require-dev": {
  12831. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  12832. },
  12833. "suggest": {
  12834. "ext-intl": "Use Intl for transliterator_transliterate() support"
  12835. },
  12836. "type": "library",
  12837. "autoload": {
  12838. "psr-4": {
  12839. "voku\\": "src/voku/"
  12840. }
  12841. },
  12842. "notification-url": "https://packagist.org/downloads/",
  12843. "license": [
  12844. "MIT"
  12845. ],
  12846. "authors": [
  12847. {
  12848. "name": "Lars Moelleken",
  12849. "homepage": "https://www.moelleken.org/"
  12850. }
  12851. ],
  12852. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  12853. "homepage": "https://github.com/voku/portable-ascii",
  12854. "keywords": [
  12855. "ascii",
  12856. "clean",
  12857. "php"
  12858. ],
  12859. "support": {
  12860. "issues": "https://github.com/voku/portable-ascii/issues",
  12861. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  12862. },
  12863. "funding": [
  12864. {
  12865. "url": "https://www.paypal.me/moelleken",
  12866. "type": "custom"
  12867. },
  12868. {
  12869. "url": "https://github.com/voku",
  12870. "type": "github"
  12871. },
  12872. {
  12873. "url": "https://opencollective.com/portable-ascii",
  12874. "type": "open_collective"
  12875. },
  12876. {
  12877. "url": "https://www.patreon.com/voku",
  12878. "type": "patreon"
  12879. },
  12880. {
  12881. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  12882. "type": "tidelift"
  12883. }
  12884. ],
  12885. "time": "2024-11-21T01:49:47+00:00"
  12886. },
  12887. {
  12888. "name": "webmozart/assert",
  12889. "version": "1.11.0",
  12890. "source": {
  12891. "type": "git",
  12892. "url": "https://github.com/webmozarts/assert.git",
  12893. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  12894. },
  12895. "dist": {
  12896. "type": "zip",
  12897. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  12898. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  12899. "shasum": ""
  12900. },
  12901. "require": {
  12902. "ext-ctype": "*",
  12903. "php": "^7.2 || ^8.0"
  12904. },
  12905. "conflict": {
  12906. "phpstan/phpstan": "<0.12.20",
  12907. "vimeo/psalm": "<4.6.1 || 4.6.2"
  12908. },
  12909. "require-dev": {
  12910. "phpunit/phpunit": "^8.5.13"
  12911. },
  12912. "type": "library",
  12913. "extra": {
  12914. "branch-alias": {
  12915. "dev-master": "1.10-dev"
  12916. }
  12917. },
  12918. "autoload": {
  12919. "psr-4": {
  12920. "Webmozart\\Assert\\": "src/"
  12921. }
  12922. },
  12923. "notification-url": "https://packagist.org/downloads/",
  12924. "license": [
  12925. "MIT"
  12926. ],
  12927. "authors": [
  12928. {
  12929. "name": "Bernhard Schussek",
  12930. "email": "bschussek@gmail.com"
  12931. }
  12932. ],
  12933. "description": "Assertions to validate method input/output with nice error messages.",
  12934. "keywords": [
  12935. "assert",
  12936. "check",
  12937. "validate"
  12938. ],
  12939. "support": {
  12940. "issues": "https://github.com/webmozarts/assert/issues",
  12941. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  12942. },
  12943. "time": "2022-06-03T18:03:27+00:00"
  12944. },
  12945. {
  12946. "name": "webonyx/graphql-php",
  12947. "version": "v15.31.3",
  12948. "source": {
  12949. "type": "git",
  12950. "url": "https://github.com/webonyx/graphql-php.git",
  12951. "reference": "c20acbef1cb4af427ef6797512bfb2e651a85db9"
  12952. },
  12953. "dist": {
  12954. "type": "zip",
  12955. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/c20acbef1cb4af427ef6797512bfb2e651a85db9",
  12956. "reference": "c20acbef1cb4af427ef6797512bfb2e651a85db9",
  12957. "shasum": ""
  12958. },
  12959. "require": {
  12960. "ext-json": "*",
  12961. "ext-mbstring": "*",
  12962. "php": "^7.4 || ^8"
  12963. },
  12964. "require-dev": {
  12965. "amphp/amp": "^2.6",
  12966. "amphp/http-server": "^2.1",
  12967. "dms/phpunit-arraysubset-asserts": "dev-master",
  12968. "ergebnis/composer-normalize": "^2.28",
  12969. "friendsofphp/php-cs-fixer": "3.94.2",
  12970. "mll-lab/php-cs-fixer-config": "5.13.0",
  12971. "nyholm/psr7": "^1.5",
  12972. "phpbench/phpbench": "^1.2",
  12973. "phpstan/extension-installer": "^1.1",
  12974. "phpstan/phpstan": "2.1.43",
  12975. "phpstan/phpstan-phpunit": "2.0.16",
  12976. "phpstan/phpstan-strict-rules": "2.0.10",
  12977. "phpunit/phpunit": "^9.5 || ^10.5.21 || ^11",
  12978. "psr/http-message": "^1 || ^2",
  12979. "react/http": "^1.6",
  12980. "react/promise": "^2.0 || ^3.0",
  12981. "rector/rector": "^2.0",
  12982. "symfony/polyfill-php81": "^1.23",
  12983. "symfony/var-exporter": "^5 || ^6 || ^7 || ^8",
  12984. "thecodingmachine/safe": "^1.3 || ^2 || ^3",
  12985. "ticketswap/phpstan-error-formatter": "1.2.6"
  12986. },
  12987. "suggest": {
  12988. "amphp/http-server": "To leverage async resolving with webserver on AMPHP platform",
  12989. "psr/http-message": "To use standard GraphQL server",
  12990. "react/promise": "To leverage async resolving on React PHP platform"
  12991. },
  12992. "type": "library",
  12993. "autoload": {
  12994. "psr-4": {
  12995. "GraphQL\\": "src/"
  12996. }
  12997. },
  12998. "notification-url": "https://packagist.org/downloads/",
  12999. "license": [
  13000. "MIT"
  13001. ],
  13002. "description": "A PHP port of GraphQL reference implementation",
  13003. "homepage": "https://github.com/webonyx/graphql-php",
  13004. "keywords": [
  13005. "api",
  13006. "graphql"
  13007. ],
  13008. "support": {
  13009. "issues": "https://github.com/webonyx/graphql-php/issues",
  13010. "source": "https://github.com/webonyx/graphql-php/tree/v15.31.3"
  13011. },
  13012. "funding": [
  13013. {
  13014. "url": "https://github.com/spawnia",
  13015. "type": "github"
  13016. },
  13017. {
  13018. "url": "https://opencollective.com/webonyx-graphql-php",
  13019. "type": "open_collective"
  13020. }
  13021. ],
  13022. "time": "2026-03-29T18:22:41+00:00"
  13023. },
  13024. {
  13025. "name": "willdurand/negotiation",
  13026. "version": "3.1.0",
  13027. "source": {
  13028. "type": "git",
  13029. "url": "https://github.com/willdurand/Negotiation.git",
  13030. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  13031. },
  13032. "dist": {
  13033. "type": "zip",
  13034. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  13035. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  13036. "shasum": ""
  13037. },
  13038. "require": {
  13039. "php": ">=7.1.0"
  13040. },
  13041. "require-dev": {
  13042. "symfony/phpunit-bridge": "^5.0"
  13043. },
  13044. "type": "library",
  13045. "extra": {
  13046. "branch-alias": {
  13047. "dev-master": "3.0-dev"
  13048. }
  13049. },
  13050. "autoload": {
  13051. "psr-4": {
  13052. "Negotiation\\": "src/Negotiation"
  13053. }
  13054. },
  13055. "notification-url": "https://packagist.org/downloads/",
  13056. "license": [
  13057. "MIT"
  13058. ],
  13059. "authors": [
  13060. {
  13061. "name": "William Durand",
  13062. "email": "will+git@drnd.me"
  13063. }
  13064. ],
  13065. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  13066. "homepage": "http://williamdurand.fr/Negotiation/",
  13067. "keywords": [
  13068. "accept",
  13069. "content",
  13070. "format",
  13071. "header",
  13072. "negotiation"
  13073. ],
  13074. "support": {
  13075. "issues": "https://github.com/willdurand/Negotiation/issues",
  13076. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  13077. },
  13078. "time": "2022-01-30T20:08:53+00:00"
  13079. }
  13080. ],
  13081. "packages-dev": [
  13082. {
  13083. "name": "bagisto/laravel-datafaker",
  13084. "version": "v2.3.0",
  13085. "source": {
  13086. "type": "git",
  13087. "url": "https://github.com/bagisto/laravel-data-faker.git",
  13088. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289"
  13089. },
  13090. "dist": {
  13091. "type": "zip",
  13092. "url": "https://api.github.com/repos/bagisto/laravel-data-faker/zipball/b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  13093. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  13094. "shasum": ""
  13095. },
  13096. "type": "library",
  13097. "extra": {
  13098. "laravel": {
  13099. "aliases": [],
  13100. "providers": [
  13101. "Webkul\\Faker\\Providers\\FakerServiceProvider"
  13102. ]
  13103. }
  13104. },
  13105. "autoload": {
  13106. "psr-4": {
  13107. "Webkul\\Faker\\": "src"
  13108. }
  13109. },
  13110. "notification-url": "https://packagist.org/downloads/",
  13111. "license": [
  13112. "MIT"
  13113. ],
  13114. "authors": [
  13115. {
  13116. "name": "Bagisto Data Faker",
  13117. "email": "support@bagisto.com"
  13118. }
  13119. ],
  13120. "description": "Create fake customers, categories and products in Bagisto.",
  13121. "homepage": "https://github.com/bagisto/laravel-data-faker",
  13122. "keywords": [
  13123. "bagisto",
  13124. "fake categories",
  13125. "fake customers",
  13126. "fake products"
  13127. ],
  13128. "support": {
  13129. "issues": "https://github.com/bagisto/laravel-data-faker/issues",
  13130. "source": "https://github.com/bagisto/laravel-data-faker/tree/v2.3.0"
  13131. },
  13132. "time": "2025-08-05T12:30:38+00:00"
  13133. },
  13134. {
  13135. "name": "barryvdh/laravel-debugbar",
  13136. "version": "v3.15.2",
  13137. "source": {
  13138. "type": "git",
  13139. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  13140. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729"
  13141. },
  13142. "dist": {
  13143. "type": "zip",
  13144. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  13145. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  13146. "shasum": ""
  13147. },
  13148. "require": {
  13149. "illuminate/routing": "^9|^10|^11|^12",
  13150. "illuminate/session": "^9|^10|^11|^12",
  13151. "illuminate/support": "^9|^10|^11|^12",
  13152. "php": "^8.1",
  13153. "php-debugbar/php-debugbar": "~2.1.1",
  13154. "symfony/finder": "^6|^7"
  13155. },
  13156. "conflict": {
  13157. "maximebf/debugbar": "*"
  13158. },
  13159. "require-dev": {
  13160. "mockery/mockery": "^1.3.3",
  13161. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  13162. "phpunit/phpunit": "^9.5.10|^10|^11",
  13163. "squizlabs/php_codesniffer": "^3.5"
  13164. },
  13165. "type": "library",
  13166. "extra": {
  13167. "laravel": {
  13168. "aliases": {
  13169. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  13170. },
  13171. "providers": [
  13172. "Barryvdh\\Debugbar\\ServiceProvider"
  13173. ]
  13174. },
  13175. "branch-alias": {
  13176. "dev-master": "3.15-dev"
  13177. }
  13178. },
  13179. "autoload": {
  13180. "files": [
  13181. "src/helpers.php"
  13182. ],
  13183. "psr-4": {
  13184. "Barryvdh\\Debugbar\\": "src/"
  13185. }
  13186. },
  13187. "notification-url": "https://packagist.org/downloads/",
  13188. "license": [
  13189. "MIT"
  13190. ],
  13191. "authors": [
  13192. {
  13193. "name": "Barry vd. Heuvel",
  13194. "email": "barryvdh@gmail.com"
  13195. }
  13196. ],
  13197. "description": "PHP Debugbar integration for Laravel",
  13198. "keywords": [
  13199. "debug",
  13200. "debugbar",
  13201. "dev",
  13202. "laravel",
  13203. "profiler",
  13204. "webprofiler"
  13205. ],
  13206. "support": {
  13207. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  13208. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.2"
  13209. },
  13210. "funding": [
  13211. {
  13212. "url": "https://fruitcake.nl",
  13213. "type": "custom"
  13214. },
  13215. {
  13216. "url": "https://github.com/barryvdh",
  13217. "type": "github"
  13218. }
  13219. ],
  13220. "time": "2025-02-25T15:25:22+00:00"
  13221. },
  13222. {
  13223. "name": "brianium/paratest",
  13224. "version": "v7.7.0",
  13225. "source": {
  13226. "type": "git",
  13227. "url": "https://github.com/paratestphp/paratest.git",
  13228. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  13229. },
  13230. "dist": {
  13231. "type": "zip",
  13232. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  13233. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  13234. "shasum": ""
  13235. },
  13236. "require": {
  13237. "ext-dom": "*",
  13238. "ext-pcre": "*",
  13239. "ext-reflection": "*",
  13240. "ext-simplexml": "*",
  13241. "fidry/cpu-core-counter": "^1.2.0",
  13242. "jean85/pretty-package-versions": "^2.1.0",
  13243. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  13244. "phpunit/php-code-coverage": "^11.0.8",
  13245. "phpunit/php-file-iterator": "^5.1.0",
  13246. "phpunit/php-timer": "^7.0.1",
  13247. "phpunit/phpunit": "^11.5.1",
  13248. "sebastian/environment": "^7.2.0",
  13249. "symfony/console": "^6.4.14 || ^7.2.1",
  13250. "symfony/process": "^6.4.14 || ^7.2.0"
  13251. },
  13252. "require-dev": {
  13253. "doctrine/coding-standard": "^12.0.0",
  13254. "ext-pcov": "*",
  13255. "ext-posix": "*",
  13256. "phpstan/phpstan": "^2.0.3",
  13257. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  13258. "phpstan/phpstan-phpunit": "^2.0.1",
  13259. "phpstan/phpstan-strict-rules": "^2",
  13260. "squizlabs/php_codesniffer": "^3.11.1",
  13261. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  13262. },
  13263. "bin": [
  13264. "bin/paratest",
  13265. "bin/paratest_for_phpstorm"
  13266. ],
  13267. "type": "library",
  13268. "autoload": {
  13269. "psr-4": {
  13270. "ParaTest\\": [
  13271. "src/"
  13272. ]
  13273. }
  13274. },
  13275. "notification-url": "https://packagist.org/downloads/",
  13276. "license": [
  13277. "MIT"
  13278. ],
  13279. "authors": [
  13280. {
  13281. "name": "Brian Scaturro",
  13282. "email": "scaturrob@gmail.com",
  13283. "role": "Developer"
  13284. },
  13285. {
  13286. "name": "Filippo Tessarotto",
  13287. "email": "zoeslam@gmail.com",
  13288. "role": "Developer"
  13289. }
  13290. ],
  13291. "description": "Parallel testing for PHP",
  13292. "homepage": "https://github.com/paratestphp/paratest",
  13293. "keywords": [
  13294. "concurrent",
  13295. "parallel",
  13296. "phpunit",
  13297. "testing"
  13298. ],
  13299. "support": {
  13300. "issues": "https://github.com/paratestphp/paratest/issues",
  13301. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  13302. },
  13303. "funding": [
  13304. {
  13305. "url": "https://github.com/sponsors/Slamdunk",
  13306. "type": "github"
  13307. },
  13308. {
  13309. "url": "https://paypal.me/filippotessarotto",
  13310. "type": "paypal"
  13311. }
  13312. ],
  13313. "time": "2024-12-11T14:50:44+00:00"
  13314. },
  13315. {
  13316. "name": "doctrine/deprecations",
  13317. "version": "1.1.5",
  13318. "source": {
  13319. "type": "git",
  13320. "url": "https://github.com/doctrine/deprecations.git",
  13321. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  13322. },
  13323. "dist": {
  13324. "type": "zip",
  13325. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  13326. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  13327. "shasum": ""
  13328. },
  13329. "require": {
  13330. "php": "^7.1 || ^8.0"
  13331. },
  13332. "conflict": {
  13333. "phpunit/phpunit": "<=7.5 || >=13"
  13334. },
  13335. "require-dev": {
  13336. "doctrine/coding-standard": "^9 || ^12 || ^13",
  13337. "phpstan/phpstan": "1.4.10 || 2.1.11",
  13338. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  13339. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  13340. "psr/log": "^1 || ^2 || ^3"
  13341. },
  13342. "suggest": {
  13343. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  13344. },
  13345. "type": "library",
  13346. "autoload": {
  13347. "psr-4": {
  13348. "Doctrine\\Deprecations\\": "src"
  13349. }
  13350. },
  13351. "notification-url": "https://packagist.org/downloads/",
  13352. "license": [
  13353. "MIT"
  13354. ],
  13355. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  13356. "homepage": "https://www.doctrine-project.org/",
  13357. "support": {
  13358. "issues": "https://github.com/doctrine/deprecations/issues",
  13359. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  13360. },
  13361. "time": "2025-04-07T20:06:18+00:00"
  13362. },
  13363. {
  13364. "name": "fakerphp/faker",
  13365. "version": "v1.24.1",
  13366. "source": {
  13367. "type": "git",
  13368. "url": "https://github.com/FakerPHP/Faker.git",
  13369. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  13370. },
  13371. "dist": {
  13372. "type": "zip",
  13373. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  13374. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  13375. "shasum": ""
  13376. },
  13377. "require": {
  13378. "php": "^7.4 || ^8.0",
  13379. "psr/container": "^1.0 || ^2.0",
  13380. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  13381. },
  13382. "conflict": {
  13383. "fzaninotto/faker": "*"
  13384. },
  13385. "require-dev": {
  13386. "bamarni/composer-bin-plugin": "^1.4.1",
  13387. "doctrine/persistence": "^1.3 || ^2.0",
  13388. "ext-intl": "*",
  13389. "phpunit/phpunit": "^9.5.26",
  13390. "symfony/phpunit-bridge": "^5.4.16"
  13391. },
  13392. "suggest": {
  13393. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  13394. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  13395. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  13396. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  13397. "ext-mbstring": "Required for multibyte Unicode string functionality."
  13398. },
  13399. "type": "library",
  13400. "autoload": {
  13401. "psr-4": {
  13402. "Faker\\": "src/Faker/"
  13403. }
  13404. },
  13405. "notification-url": "https://packagist.org/downloads/",
  13406. "license": [
  13407. "MIT"
  13408. ],
  13409. "authors": [
  13410. {
  13411. "name": "François Zaninotto"
  13412. }
  13413. ],
  13414. "description": "Faker is a PHP library that generates fake data for you.",
  13415. "keywords": [
  13416. "data",
  13417. "faker",
  13418. "fixtures"
  13419. ],
  13420. "support": {
  13421. "issues": "https://github.com/FakerPHP/Faker/issues",
  13422. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  13423. },
  13424. "time": "2024-11-21T13:46:39+00:00"
  13425. },
  13426. {
  13427. "name": "fidry/cpu-core-counter",
  13428. "version": "1.2.0",
  13429. "source": {
  13430. "type": "git",
  13431. "url": "https://github.com/theofidry/cpu-core-counter.git",
  13432. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  13433. },
  13434. "dist": {
  13435. "type": "zip",
  13436. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  13437. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  13438. "shasum": ""
  13439. },
  13440. "require": {
  13441. "php": "^7.2 || ^8.0"
  13442. },
  13443. "require-dev": {
  13444. "fidry/makefile": "^0.2.0",
  13445. "fidry/php-cs-fixer-config": "^1.1.2",
  13446. "phpstan/extension-installer": "^1.2.0",
  13447. "phpstan/phpstan": "^1.9.2",
  13448. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  13449. "phpstan/phpstan-phpunit": "^1.2.2",
  13450. "phpstan/phpstan-strict-rules": "^1.4.4",
  13451. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  13452. "webmozarts/strict-phpunit": "^7.5"
  13453. },
  13454. "type": "library",
  13455. "autoload": {
  13456. "psr-4": {
  13457. "Fidry\\CpuCoreCounter\\": "src/"
  13458. }
  13459. },
  13460. "notification-url": "https://packagist.org/downloads/",
  13461. "license": [
  13462. "MIT"
  13463. ],
  13464. "authors": [
  13465. {
  13466. "name": "Théo FIDRY",
  13467. "email": "theo.fidry@gmail.com"
  13468. }
  13469. ],
  13470. "description": "Tiny utility to get the number of CPU cores.",
  13471. "keywords": [
  13472. "CPU",
  13473. "core"
  13474. ],
  13475. "support": {
  13476. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  13477. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  13478. },
  13479. "funding": [
  13480. {
  13481. "url": "https://github.com/theofidry",
  13482. "type": "github"
  13483. }
  13484. ],
  13485. "time": "2024-08-06T10:04:20+00:00"
  13486. },
  13487. {
  13488. "name": "filp/whoops",
  13489. "version": "2.18.0",
  13490. "source": {
  13491. "type": "git",
  13492. "url": "https://github.com/filp/whoops.git",
  13493. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
  13494. },
  13495. "dist": {
  13496. "type": "zip",
  13497. "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  13498. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  13499. "shasum": ""
  13500. },
  13501. "require": {
  13502. "php": "^7.1 || ^8.0",
  13503. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  13504. },
  13505. "require-dev": {
  13506. "mockery/mockery": "^1.0",
  13507. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  13508. "symfony/var-dumper": "^4.0 || ^5.0"
  13509. },
  13510. "suggest": {
  13511. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  13512. "whoops/soap": "Formats errors as SOAP responses"
  13513. },
  13514. "type": "library",
  13515. "extra": {
  13516. "branch-alias": {
  13517. "dev-master": "2.7-dev"
  13518. }
  13519. },
  13520. "autoload": {
  13521. "psr-4": {
  13522. "Whoops\\": "src/Whoops/"
  13523. }
  13524. },
  13525. "notification-url": "https://packagist.org/downloads/",
  13526. "license": [
  13527. "MIT"
  13528. ],
  13529. "authors": [
  13530. {
  13531. "name": "Filipe Dobreira",
  13532. "homepage": "https://github.com/filp",
  13533. "role": "Developer"
  13534. }
  13535. ],
  13536. "description": "php error handling for cool kids",
  13537. "homepage": "https://filp.github.io/whoops/",
  13538. "keywords": [
  13539. "error",
  13540. "exception",
  13541. "handling",
  13542. "library",
  13543. "throwable",
  13544. "whoops"
  13545. ],
  13546. "support": {
  13547. "issues": "https://github.com/filp/whoops/issues",
  13548. "source": "https://github.com/filp/whoops/tree/2.18.0"
  13549. },
  13550. "funding": [
  13551. {
  13552. "url": "https://github.com/denis-sokolov",
  13553. "type": "github"
  13554. }
  13555. ],
  13556. "time": "2025-03-15T12:00:00+00:00"
  13557. },
  13558. {
  13559. "name": "hamcrest/hamcrest-php",
  13560. "version": "v2.0.1",
  13561. "source": {
  13562. "type": "git",
  13563. "url": "https://github.com/hamcrest/hamcrest-php.git",
  13564. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  13565. },
  13566. "dist": {
  13567. "type": "zip",
  13568. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  13569. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  13570. "shasum": ""
  13571. },
  13572. "require": {
  13573. "php": "^5.3|^7.0|^8.0"
  13574. },
  13575. "replace": {
  13576. "cordoval/hamcrest-php": "*",
  13577. "davedevelopment/hamcrest-php": "*",
  13578. "kodova/hamcrest-php": "*"
  13579. },
  13580. "require-dev": {
  13581. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  13582. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  13583. },
  13584. "type": "library",
  13585. "extra": {
  13586. "branch-alias": {
  13587. "dev-master": "2.1-dev"
  13588. }
  13589. },
  13590. "autoload": {
  13591. "classmap": [
  13592. "hamcrest"
  13593. ]
  13594. },
  13595. "notification-url": "https://packagist.org/downloads/",
  13596. "license": [
  13597. "BSD-3-Clause"
  13598. ],
  13599. "description": "This is the PHP port of Hamcrest Matchers",
  13600. "keywords": [
  13601. "test"
  13602. ],
  13603. "support": {
  13604. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  13605. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  13606. },
  13607. "time": "2020-07-09T08:09:16+00:00"
  13608. },
  13609. {
  13610. "name": "jean85/pretty-package-versions",
  13611. "version": "2.1.1",
  13612. "source": {
  13613. "type": "git",
  13614. "url": "https://github.com/Jean85/pretty-package-versions.git",
  13615. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  13616. },
  13617. "dist": {
  13618. "type": "zip",
  13619. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  13620. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  13621. "shasum": ""
  13622. },
  13623. "require": {
  13624. "composer-runtime-api": "^2.1.0",
  13625. "php": "^7.4|^8.0"
  13626. },
  13627. "require-dev": {
  13628. "friendsofphp/php-cs-fixer": "^3.2",
  13629. "jean85/composer-provided-replaced-stub-package": "^1.0",
  13630. "phpstan/phpstan": "^2.0",
  13631. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  13632. "rector/rector": "^2.0",
  13633. "vimeo/psalm": "^4.3 || ^5.0"
  13634. },
  13635. "type": "library",
  13636. "extra": {
  13637. "branch-alias": {
  13638. "dev-master": "1.x-dev"
  13639. }
  13640. },
  13641. "autoload": {
  13642. "psr-4": {
  13643. "Jean85\\": "src/"
  13644. }
  13645. },
  13646. "notification-url": "https://packagist.org/downloads/",
  13647. "license": [
  13648. "MIT"
  13649. ],
  13650. "authors": [
  13651. {
  13652. "name": "Alessandro Lai",
  13653. "email": "alessandro.lai85@gmail.com"
  13654. }
  13655. ],
  13656. "description": "A library to get pretty versions strings of installed dependencies",
  13657. "keywords": [
  13658. "composer",
  13659. "package",
  13660. "release",
  13661. "versions"
  13662. ],
  13663. "support": {
  13664. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  13665. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  13666. },
  13667. "time": "2025-03-19T14:43:43+00:00"
  13668. },
  13669. {
  13670. "name": "laravel/pint",
  13671. "version": "v1.21.2",
  13672. "source": {
  13673. "type": "git",
  13674. "url": "https://github.com/laravel/pint.git",
  13675. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558"
  13676. },
  13677. "dist": {
  13678. "type": "zip",
  13679. "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558",
  13680. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558",
  13681. "shasum": ""
  13682. },
  13683. "require": {
  13684. "ext-json": "*",
  13685. "ext-mbstring": "*",
  13686. "ext-tokenizer": "*",
  13687. "ext-xml": "*",
  13688. "php": "^8.2.0"
  13689. },
  13690. "require-dev": {
  13691. "friendsofphp/php-cs-fixer": "^3.72.0",
  13692. "illuminate/view": "^11.44.2",
  13693. "larastan/larastan": "^3.2.0",
  13694. "laravel-zero/framework": "^11.36.1",
  13695. "mockery/mockery": "^1.6.12",
  13696. "nunomaduro/termwind": "^2.3",
  13697. "pestphp/pest": "^2.36.0"
  13698. },
  13699. "bin": [
  13700. "builds/pint"
  13701. ],
  13702. "type": "project",
  13703. "autoload": {
  13704. "psr-4": {
  13705. "App\\": "app/",
  13706. "Database\\Seeders\\": "database/seeders/",
  13707. "Database\\Factories\\": "database/factories/"
  13708. }
  13709. },
  13710. "notification-url": "https://packagist.org/downloads/",
  13711. "license": [
  13712. "MIT"
  13713. ],
  13714. "authors": [
  13715. {
  13716. "name": "Nuno Maduro",
  13717. "email": "enunomaduro@gmail.com"
  13718. }
  13719. ],
  13720. "description": "An opinionated code formatter for PHP.",
  13721. "homepage": "https://laravel.com",
  13722. "keywords": [
  13723. "format",
  13724. "formatter",
  13725. "lint",
  13726. "linter",
  13727. "php"
  13728. ],
  13729. "support": {
  13730. "issues": "https://github.com/laravel/pint/issues",
  13731. "source": "https://github.com/laravel/pint"
  13732. },
  13733. "time": "2025-03-14T22:31:42+00:00"
  13734. },
  13735. {
  13736. "name": "mockery/mockery",
  13737. "version": "1.6.12",
  13738. "source": {
  13739. "type": "git",
  13740. "url": "https://github.com/mockery/mockery.git",
  13741. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  13742. },
  13743. "dist": {
  13744. "type": "zip",
  13745. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  13746. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  13747. "shasum": ""
  13748. },
  13749. "require": {
  13750. "hamcrest/hamcrest-php": "^2.0.1",
  13751. "lib-pcre": ">=7.0",
  13752. "php": ">=7.3"
  13753. },
  13754. "conflict": {
  13755. "phpunit/phpunit": "<8.0"
  13756. },
  13757. "require-dev": {
  13758. "phpunit/phpunit": "^8.5 || ^9.6.17",
  13759. "symplify/easy-coding-standard": "^12.1.14"
  13760. },
  13761. "type": "library",
  13762. "autoload": {
  13763. "files": [
  13764. "library/helpers.php",
  13765. "library/Mockery.php"
  13766. ],
  13767. "psr-4": {
  13768. "Mockery\\": "library/Mockery"
  13769. }
  13770. },
  13771. "notification-url": "https://packagist.org/downloads/",
  13772. "license": [
  13773. "BSD-3-Clause"
  13774. ],
  13775. "authors": [
  13776. {
  13777. "name": "Pádraic Brady",
  13778. "email": "padraic.brady@gmail.com",
  13779. "homepage": "https://github.com/padraic",
  13780. "role": "Author"
  13781. },
  13782. {
  13783. "name": "Dave Marshall",
  13784. "email": "dave.marshall@atstsolutions.co.uk",
  13785. "homepage": "https://davedevelopment.co.uk",
  13786. "role": "Developer"
  13787. },
  13788. {
  13789. "name": "Nathanael Esayeas",
  13790. "email": "nathanael.esayeas@protonmail.com",
  13791. "homepage": "https://github.com/ghostwriter",
  13792. "role": "Lead Developer"
  13793. }
  13794. ],
  13795. "description": "Mockery is a simple yet flexible PHP mock object framework",
  13796. "homepage": "https://github.com/mockery/mockery",
  13797. "keywords": [
  13798. "BDD",
  13799. "TDD",
  13800. "library",
  13801. "mock",
  13802. "mock objects",
  13803. "mockery",
  13804. "stub",
  13805. "test",
  13806. "test double",
  13807. "testing"
  13808. ],
  13809. "support": {
  13810. "docs": "https://docs.mockery.io/",
  13811. "issues": "https://github.com/mockery/mockery/issues",
  13812. "rss": "https://github.com/mockery/mockery/releases.atom",
  13813. "security": "https://github.com/mockery/mockery/security/advisories",
  13814. "source": "https://github.com/mockery/mockery"
  13815. },
  13816. "time": "2024-05-16T03:13:13+00:00"
  13817. },
  13818. {
  13819. "name": "nunomaduro/collision",
  13820. "version": "v8.7.0",
  13821. "source": {
  13822. "type": "git",
  13823. "url": "https://github.com/nunomaduro/collision.git",
  13824. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26"
  13825. },
  13826. "dist": {
  13827. "type": "zip",
  13828. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/586cb8181a257a2152b6a855ca8d9598878a1a26",
  13829. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26",
  13830. "shasum": ""
  13831. },
  13832. "require": {
  13833. "filp/whoops": "^2.17.0",
  13834. "nunomaduro/termwind": "^2.3.0",
  13835. "php": "^8.2.0",
  13836. "symfony/console": "^7.2.1"
  13837. },
  13838. "conflict": {
  13839. "laravel/framework": "<11.39.1 || >=13.0.0",
  13840. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  13841. },
  13842. "require-dev": {
  13843. "larastan/larastan": "^2.10.0",
  13844. "laravel/framework": "^11.44.2",
  13845. "laravel/pint": "^1.21.2",
  13846. "laravel/sail": "^1.41.0",
  13847. "laravel/sanctum": "^4.0.8",
  13848. "laravel/tinker": "^2.10.1",
  13849. "orchestra/testbench-core": "^9.12.0",
  13850. "pestphp/pest": "^3.7.4",
  13851. "sebastian/environment": "^6.1.0 || ^7.2.0"
  13852. },
  13853. "type": "library",
  13854. "extra": {
  13855. "laravel": {
  13856. "providers": [
  13857. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  13858. ]
  13859. },
  13860. "branch-alias": {
  13861. "dev-8.x": "8.x-dev"
  13862. }
  13863. },
  13864. "autoload": {
  13865. "files": [
  13866. "./src/Adapters/Phpunit/Autoload.php"
  13867. ],
  13868. "psr-4": {
  13869. "NunoMaduro\\Collision\\": "src/"
  13870. }
  13871. },
  13872. "notification-url": "https://packagist.org/downloads/",
  13873. "license": [
  13874. "MIT"
  13875. ],
  13876. "authors": [
  13877. {
  13878. "name": "Nuno Maduro",
  13879. "email": "enunomaduro@gmail.com"
  13880. }
  13881. ],
  13882. "description": "Cli error handling for console/command-line PHP applications.",
  13883. "keywords": [
  13884. "artisan",
  13885. "cli",
  13886. "command-line",
  13887. "console",
  13888. "dev",
  13889. "error",
  13890. "handling",
  13891. "laravel",
  13892. "laravel-zero",
  13893. "php",
  13894. "symfony"
  13895. ],
  13896. "support": {
  13897. "issues": "https://github.com/nunomaduro/collision/issues",
  13898. "source": "https://github.com/nunomaduro/collision"
  13899. },
  13900. "funding": [
  13901. {
  13902. "url": "https://www.paypal.com/paypalme/enunomaduro",
  13903. "type": "custom"
  13904. },
  13905. {
  13906. "url": "https://github.com/nunomaduro",
  13907. "type": "github"
  13908. },
  13909. {
  13910. "url": "https://www.patreon.com/nunomaduro",
  13911. "type": "patreon"
  13912. }
  13913. ],
  13914. "time": "2025-03-14T22:37:40+00:00"
  13915. },
  13916. {
  13917. "name": "pestphp/pest",
  13918. "version": "v3.7.4",
  13919. "source": {
  13920. "type": "git",
  13921. "url": "https://github.com/pestphp/pest.git",
  13922. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b"
  13923. },
  13924. "dist": {
  13925. "type": "zip",
  13926. "url": "https://api.github.com/repos/pestphp/pest/zipball/4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  13927. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  13928. "shasum": ""
  13929. },
  13930. "require": {
  13931. "brianium/paratest": "^7.7.0",
  13932. "nunomaduro/collision": "^8.6.1",
  13933. "nunomaduro/termwind": "^2.3.0",
  13934. "pestphp/pest-plugin": "^3.0.0",
  13935. "pestphp/pest-plugin-arch": "^3.0.0",
  13936. "pestphp/pest-plugin-mutate": "^3.0.5",
  13937. "php": "^8.2.0",
  13938. "phpunit/phpunit": "^11.5.3"
  13939. },
  13940. "conflict": {
  13941. "filp/whoops": "<2.16.0",
  13942. "phpunit/phpunit": ">11.5.3",
  13943. "sebastian/exporter": "<6.0.0",
  13944. "webmozart/assert": "<1.11.0"
  13945. },
  13946. "require-dev": {
  13947. "pestphp/pest-dev-tools": "^3.3.0",
  13948. "pestphp/pest-plugin-type-coverage": "^3.2.3",
  13949. "symfony/process": "^7.2.0"
  13950. },
  13951. "bin": [
  13952. "bin/pest"
  13953. ],
  13954. "type": "library",
  13955. "extra": {
  13956. "pest": {
  13957. "plugins": [
  13958. "Pest\\Mutate\\Plugins\\Mutate",
  13959. "Pest\\Plugins\\Configuration",
  13960. "Pest\\Plugins\\Bail",
  13961. "Pest\\Plugins\\Cache",
  13962. "Pest\\Plugins\\Coverage",
  13963. "Pest\\Plugins\\Init",
  13964. "Pest\\Plugins\\Environment",
  13965. "Pest\\Plugins\\Help",
  13966. "Pest\\Plugins\\Memory",
  13967. "Pest\\Plugins\\Only",
  13968. "Pest\\Plugins\\Printer",
  13969. "Pest\\Plugins\\ProcessIsolation",
  13970. "Pest\\Plugins\\Profile",
  13971. "Pest\\Plugins\\Retry",
  13972. "Pest\\Plugins\\Snapshot",
  13973. "Pest\\Plugins\\Verbose",
  13974. "Pest\\Plugins\\Version",
  13975. "Pest\\Plugins\\Parallel"
  13976. ]
  13977. },
  13978. "phpstan": {
  13979. "includes": [
  13980. "extension.neon"
  13981. ]
  13982. }
  13983. },
  13984. "autoload": {
  13985. "files": [
  13986. "src/Functions.php",
  13987. "src/Pest.php"
  13988. ],
  13989. "psr-4": {
  13990. "Pest\\": "src/"
  13991. }
  13992. },
  13993. "notification-url": "https://packagist.org/downloads/",
  13994. "license": [
  13995. "MIT"
  13996. ],
  13997. "authors": [
  13998. {
  13999. "name": "Nuno Maduro",
  14000. "email": "enunomaduro@gmail.com"
  14001. }
  14002. ],
  14003. "description": "The elegant PHP Testing Framework.",
  14004. "keywords": [
  14005. "framework",
  14006. "pest",
  14007. "php",
  14008. "test",
  14009. "testing",
  14010. "unit"
  14011. ],
  14012. "support": {
  14013. "issues": "https://github.com/pestphp/pest/issues",
  14014. "source": "https://github.com/pestphp/pest/tree/v3.7.4"
  14015. },
  14016. "funding": [
  14017. {
  14018. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14019. "type": "custom"
  14020. },
  14021. {
  14022. "url": "https://github.com/nunomaduro",
  14023. "type": "github"
  14024. }
  14025. ],
  14026. "time": "2025-01-23T14:03:29+00:00"
  14027. },
  14028. {
  14029. "name": "pestphp/pest-plugin",
  14030. "version": "v3.0.0",
  14031. "source": {
  14032. "type": "git",
  14033. "url": "https://github.com/pestphp/pest-plugin.git",
  14034. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  14035. },
  14036. "dist": {
  14037. "type": "zip",
  14038. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  14039. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  14040. "shasum": ""
  14041. },
  14042. "require": {
  14043. "composer-plugin-api": "^2.0.0",
  14044. "composer-runtime-api": "^2.2.2",
  14045. "php": "^8.2"
  14046. },
  14047. "conflict": {
  14048. "pestphp/pest": "<3.0.0"
  14049. },
  14050. "require-dev": {
  14051. "composer/composer": "^2.7.9",
  14052. "pestphp/pest": "^3.0.0",
  14053. "pestphp/pest-dev-tools": "^3.0.0"
  14054. },
  14055. "type": "composer-plugin",
  14056. "extra": {
  14057. "class": "Pest\\Plugin\\Manager"
  14058. },
  14059. "autoload": {
  14060. "psr-4": {
  14061. "Pest\\Plugin\\": "src/"
  14062. }
  14063. },
  14064. "notification-url": "https://packagist.org/downloads/",
  14065. "license": [
  14066. "MIT"
  14067. ],
  14068. "description": "The Pest plugin manager",
  14069. "keywords": [
  14070. "framework",
  14071. "manager",
  14072. "pest",
  14073. "php",
  14074. "plugin",
  14075. "test",
  14076. "testing",
  14077. "unit"
  14078. ],
  14079. "support": {
  14080. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  14081. },
  14082. "funding": [
  14083. {
  14084. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  14085. "type": "custom"
  14086. },
  14087. {
  14088. "url": "https://github.com/nunomaduro",
  14089. "type": "github"
  14090. },
  14091. {
  14092. "url": "https://www.patreon.com/nunomaduro",
  14093. "type": "patreon"
  14094. }
  14095. ],
  14096. "time": "2024-09-08T23:21:41+00:00"
  14097. },
  14098. {
  14099. "name": "pestphp/pest-plugin-arch",
  14100. "version": "v3.0.0",
  14101. "source": {
  14102. "type": "git",
  14103. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  14104. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  14105. },
  14106. "dist": {
  14107. "type": "zip",
  14108. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  14109. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  14110. "shasum": ""
  14111. },
  14112. "require": {
  14113. "pestphp/pest-plugin": "^3.0.0",
  14114. "php": "^8.2",
  14115. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  14116. },
  14117. "require-dev": {
  14118. "pestphp/pest": "^3.0.0",
  14119. "pestphp/pest-dev-tools": "^3.0.0"
  14120. },
  14121. "type": "library",
  14122. "extra": {
  14123. "pest": {
  14124. "plugins": [
  14125. "Pest\\Arch\\Plugin"
  14126. ]
  14127. }
  14128. },
  14129. "autoload": {
  14130. "files": [
  14131. "src/Autoload.php"
  14132. ],
  14133. "psr-4": {
  14134. "Pest\\Arch\\": "src/"
  14135. }
  14136. },
  14137. "notification-url": "https://packagist.org/downloads/",
  14138. "license": [
  14139. "MIT"
  14140. ],
  14141. "description": "The Arch plugin for Pest PHP.",
  14142. "keywords": [
  14143. "arch",
  14144. "architecture",
  14145. "framework",
  14146. "pest",
  14147. "php",
  14148. "plugin",
  14149. "test",
  14150. "testing",
  14151. "unit"
  14152. ],
  14153. "support": {
  14154. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  14155. },
  14156. "funding": [
  14157. {
  14158. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14159. "type": "custom"
  14160. },
  14161. {
  14162. "url": "https://github.com/nunomaduro",
  14163. "type": "github"
  14164. }
  14165. ],
  14166. "time": "2024-09-08T23:23:55+00:00"
  14167. },
  14168. {
  14169. "name": "pestphp/pest-plugin-laravel",
  14170. "version": "v3.1.0",
  14171. "source": {
  14172. "type": "git",
  14173. "url": "https://github.com/pestphp/pest-plugin-laravel.git",
  14174. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd"
  14175. },
  14176. "dist": {
  14177. "type": "zip",
  14178. "url": "https://api.github.com/repos/pestphp/pest-plugin-laravel/zipball/1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  14179. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  14180. "shasum": ""
  14181. },
  14182. "require": {
  14183. "laravel/framework": "^11.39.1|^12.0.0",
  14184. "pestphp/pest": "^3.7.4",
  14185. "php": "^8.2.0"
  14186. },
  14187. "require-dev": {
  14188. "laravel/dusk": "^8.2.13|dev-develop",
  14189. "orchestra/testbench": "^9.9.0|^10.0.0",
  14190. "pestphp/pest-dev-tools": "^3.3.0"
  14191. },
  14192. "type": "library",
  14193. "extra": {
  14194. "pest": {
  14195. "plugins": [
  14196. "Pest\\Laravel\\Plugin"
  14197. ]
  14198. },
  14199. "laravel": {
  14200. "providers": [
  14201. "Pest\\Laravel\\PestServiceProvider"
  14202. ]
  14203. }
  14204. },
  14205. "autoload": {
  14206. "files": [
  14207. "src/Autoload.php"
  14208. ],
  14209. "psr-4": {
  14210. "Pest\\Laravel\\": "src/"
  14211. }
  14212. },
  14213. "notification-url": "https://packagist.org/downloads/",
  14214. "license": [
  14215. "MIT"
  14216. ],
  14217. "description": "The Pest Laravel Plugin",
  14218. "keywords": [
  14219. "framework",
  14220. "laravel",
  14221. "pest",
  14222. "php",
  14223. "test",
  14224. "testing",
  14225. "unit"
  14226. ],
  14227. "support": {
  14228. "source": "https://github.com/pestphp/pest-plugin-laravel/tree/v3.1.0"
  14229. },
  14230. "funding": [
  14231. {
  14232. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14233. "type": "custom"
  14234. },
  14235. {
  14236. "url": "https://github.com/nunomaduro",
  14237. "type": "github"
  14238. }
  14239. ],
  14240. "time": "2025-01-24T13:22:39+00:00"
  14241. },
  14242. {
  14243. "name": "pestphp/pest-plugin-mutate",
  14244. "version": "v3.0.5",
  14245. "source": {
  14246. "type": "git",
  14247. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  14248. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  14249. },
  14250. "dist": {
  14251. "type": "zip",
  14252. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  14253. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  14254. "shasum": ""
  14255. },
  14256. "require": {
  14257. "nikic/php-parser": "^5.2.0",
  14258. "pestphp/pest-plugin": "^3.0.0",
  14259. "php": "^8.2",
  14260. "psr/simple-cache": "^3.0.0"
  14261. },
  14262. "require-dev": {
  14263. "pestphp/pest": "^3.0.8",
  14264. "pestphp/pest-dev-tools": "^3.0.0",
  14265. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  14266. },
  14267. "type": "library",
  14268. "autoload": {
  14269. "psr-4": {
  14270. "Pest\\Mutate\\": "src/"
  14271. }
  14272. },
  14273. "notification-url": "https://packagist.org/downloads/",
  14274. "license": [
  14275. "MIT"
  14276. ],
  14277. "authors": [
  14278. {
  14279. "name": "Sandro Gehri",
  14280. "email": "sandrogehri@gmail.com"
  14281. }
  14282. ],
  14283. "description": "Mutates your code to find untested cases",
  14284. "keywords": [
  14285. "framework",
  14286. "mutate",
  14287. "mutation",
  14288. "pest",
  14289. "php",
  14290. "plugin",
  14291. "test",
  14292. "testing",
  14293. "unit"
  14294. ],
  14295. "support": {
  14296. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  14297. },
  14298. "funding": [
  14299. {
  14300. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14301. "type": "custom"
  14302. },
  14303. {
  14304. "url": "https://github.com/gehrisandro",
  14305. "type": "github"
  14306. },
  14307. {
  14308. "url": "https://github.com/nunomaduro",
  14309. "type": "github"
  14310. }
  14311. ],
  14312. "time": "2024-09-22T07:54:40+00:00"
  14313. },
  14314. {
  14315. "name": "phar-io/manifest",
  14316. "version": "2.0.4",
  14317. "source": {
  14318. "type": "git",
  14319. "url": "https://github.com/phar-io/manifest.git",
  14320. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  14321. },
  14322. "dist": {
  14323. "type": "zip",
  14324. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  14325. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  14326. "shasum": ""
  14327. },
  14328. "require": {
  14329. "ext-dom": "*",
  14330. "ext-libxml": "*",
  14331. "ext-phar": "*",
  14332. "ext-xmlwriter": "*",
  14333. "phar-io/version": "^3.0.1",
  14334. "php": "^7.2 || ^8.0"
  14335. },
  14336. "type": "library",
  14337. "extra": {
  14338. "branch-alias": {
  14339. "dev-master": "2.0.x-dev"
  14340. }
  14341. },
  14342. "autoload": {
  14343. "classmap": [
  14344. "src/"
  14345. ]
  14346. },
  14347. "notification-url": "https://packagist.org/downloads/",
  14348. "license": [
  14349. "BSD-3-Clause"
  14350. ],
  14351. "authors": [
  14352. {
  14353. "name": "Arne Blankerts",
  14354. "email": "arne@blankerts.de",
  14355. "role": "Developer"
  14356. },
  14357. {
  14358. "name": "Sebastian Heuer",
  14359. "email": "sebastian@phpeople.de",
  14360. "role": "Developer"
  14361. },
  14362. {
  14363. "name": "Sebastian Bergmann",
  14364. "email": "sebastian@phpunit.de",
  14365. "role": "Developer"
  14366. }
  14367. ],
  14368. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  14369. "support": {
  14370. "issues": "https://github.com/phar-io/manifest/issues",
  14371. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  14372. },
  14373. "funding": [
  14374. {
  14375. "url": "https://github.com/theseer",
  14376. "type": "github"
  14377. }
  14378. ],
  14379. "time": "2024-03-03T12:33:53+00:00"
  14380. },
  14381. {
  14382. "name": "phar-io/version",
  14383. "version": "3.2.1",
  14384. "source": {
  14385. "type": "git",
  14386. "url": "https://github.com/phar-io/version.git",
  14387. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  14388. },
  14389. "dist": {
  14390. "type": "zip",
  14391. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  14392. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  14393. "shasum": ""
  14394. },
  14395. "require": {
  14396. "php": "^7.2 || ^8.0"
  14397. },
  14398. "type": "library",
  14399. "autoload": {
  14400. "classmap": [
  14401. "src/"
  14402. ]
  14403. },
  14404. "notification-url": "https://packagist.org/downloads/",
  14405. "license": [
  14406. "BSD-3-Clause"
  14407. ],
  14408. "authors": [
  14409. {
  14410. "name": "Arne Blankerts",
  14411. "email": "arne@blankerts.de",
  14412. "role": "Developer"
  14413. },
  14414. {
  14415. "name": "Sebastian Heuer",
  14416. "email": "sebastian@phpeople.de",
  14417. "role": "Developer"
  14418. },
  14419. {
  14420. "name": "Sebastian Bergmann",
  14421. "email": "sebastian@phpunit.de",
  14422. "role": "Developer"
  14423. }
  14424. ],
  14425. "description": "Library for handling version information and constraints",
  14426. "support": {
  14427. "issues": "https://github.com/phar-io/version/issues",
  14428. "source": "https://github.com/phar-io/version/tree/3.2.1"
  14429. },
  14430. "time": "2022-02-21T01:04:05+00:00"
  14431. },
  14432. {
  14433. "name": "php-debugbar/php-debugbar",
  14434. "version": "v2.1.6",
  14435. "source": {
  14436. "type": "git",
  14437. "url": "https://github.com/php-debugbar/php-debugbar.git",
  14438. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  14439. },
  14440. "dist": {
  14441. "type": "zip",
  14442. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  14443. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  14444. "shasum": ""
  14445. },
  14446. "require": {
  14447. "php": "^8",
  14448. "psr/log": "^1|^2|^3",
  14449. "symfony/var-dumper": "^4|^5|^6|^7"
  14450. },
  14451. "require-dev": {
  14452. "dbrekelmans/bdi": "^1",
  14453. "phpunit/phpunit": "^8|^9",
  14454. "symfony/panther": "^1|^2.1",
  14455. "twig/twig": "^1.38|^2.7|^3.0"
  14456. },
  14457. "suggest": {
  14458. "kriswallsmith/assetic": "The best way to manage assets",
  14459. "monolog/monolog": "Log using Monolog",
  14460. "predis/predis": "Redis storage"
  14461. },
  14462. "type": "library",
  14463. "extra": {
  14464. "branch-alias": {
  14465. "dev-master": "2.0-dev"
  14466. }
  14467. },
  14468. "autoload": {
  14469. "psr-4": {
  14470. "DebugBar\\": "src/DebugBar/"
  14471. }
  14472. },
  14473. "notification-url": "https://packagist.org/downloads/",
  14474. "license": [
  14475. "MIT"
  14476. ],
  14477. "authors": [
  14478. {
  14479. "name": "Maxime Bouroumeau-Fuseau",
  14480. "email": "maxime.bouroumeau@gmail.com",
  14481. "homepage": "http://maximebf.com"
  14482. },
  14483. {
  14484. "name": "Barry vd. Heuvel",
  14485. "email": "barryvdh@gmail.com"
  14486. }
  14487. ],
  14488. "description": "Debug bar in the browser for php application",
  14489. "homepage": "https://github.com/php-debugbar/php-debugbar",
  14490. "keywords": [
  14491. "debug",
  14492. "debug bar",
  14493. "debugbar",
  14494. "dev"
  14495. ],
  14496. "support": {
  14497. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  14498. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  14499. },
  14500. "time": "2025-02-21T17:47:03+00:00"
  14501. },
  14502. {
  14503. "name": "phpdocumentor/reflection-common",
  14504. "version": "2.2.0",
  14505. "source": {
  14506. "type": "git",
  14507. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  14508. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  14509. },
  14510. "dist": {
  14511. "type": "zip",
  14512. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  14513. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  14514. "shasum": ""
  14515. },
  14516. "require": {
  14517. "php": "^7.2 || ^8.0"
  14518. },
  14519. "type": "library",
  14520. "extra": {
  14521. "branch-alias": {
  14522. "dev-2.x": "2.x-dev"
  14523. }
  14524. },
  14525. "autoload": {
  14526. "psr-4": {
  14527. "phpDocumentor\\Reflection\\": "src/"
  14528. }
  14529. },
  14530. "notification-url": "https://packagist.org/downloads/",
  14531. "license": [
  14532. "MIT"
  14533. ],
  14534. "authors": [
  14535. {
  14536. "name": "Jaap van Otterdijk",
  14537. "email": "opensource@ijaap.nl"
  14538. }
  14539. ],
  14540. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  14541. "homepage": "http://www.phpdoc.org",
  14542. "keywords": [
  14543. "FQSEN",
  14544. "phpDocumentor",
  14545. "phpdoc",
  14546. "reflection",
  14547. "static analysis"
  14548. ],
  14549. "support": {
  14550. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  14551. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  14552. },
  14553. "time": "2020-06-27T09:03:43+00:00"
  14554. },
  14555. {
  14556. "name": "phpdocumentor/reflection-docblock",
  14557. "version": "5.6.3",
  14558. "source": {
  14559. "type": "git",
  14560. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  14561. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
  14562. },
  14563. "dist": {
  14564. "type": "zip",
  14565. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
  14566. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
  14567. "shasum": ""
  14568. },
  14569. "require": {
  14570. "doctrine/deprecations": "^1.1",
  14571. "ext-filter": "*",
  14572. "php": "^7.4 || ^8.0",
  14573. "phpdocumentor/reflection-common": "^2.2",
  14574. "phpdocumentor/type-resolver": "^1.7",
  14575. "phpstan/phpdoc-parser": "^1.7|^2.0",
  14576. "webmozart/assert": "^1.9.1"
  14577. },
  14578. "require-dev": {
  14579. "mockery/mockery": "~1.3.5 || ~1.6.0",
  14580. "phpstan/extension-installer": "^1.1",
  14581. "phpstan/phpstan": "^1.8",
  14582. "phpstan/phpstan-mockery": "^1.1",
  14583. "phpstan/phpstan-webmozart-assert": "^1.2",
  14584. "phpunit/phpunit": "^9.5",
  14585. "psalm/phar": "^5.26"
  14586. },
  14587. "type": "library",
  14588. "extra": {
  14589. "branch-alias": {
  14590. "dev-master": "5.x-dev"
  14591. }
  14592. },
  14593. "autoload": {
  14594. "psr-4": {
  14595. "phpDocumentor\\Reflection\\": "src"
  14596. }
  14597. },
  14598. "notification-url": "https://packagist.org/downloads/",
  14599. "license": [
  14600. "MIT"
  14601. ],
  14602. "authors": [
  14603. {
  14604. "name": "Mike van Riel",
  14605. "email": "me@mikevanriel.com"
  14606. },
  14607. {
  14608. "name": "Jaap van Otterdijk",
  14609. "email": "opensource@ijaap.nl"
  14610. }
  14611. ],
  14612. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  14613. "support": {
  14614. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  14615. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
  14616. },
  14617. "time": "2025-08-01T19:43:32+00:00"
  14618. },
  14619. {
  14620. "name": "phpdocumentor/type-resolver",
  14621. "version": "1.10.0",
  14622. "source": {
  14623. "type": "git",
  14624. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  14625. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  14626. },
  14627. "dist": {
  14628. "type": "zip",
  14629. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  14630. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  14631. "shasum": ""
  14632. },
  14633. "require": {
  14634. "doctrine/deprecations": "^1.0",
  14635. "php": "^7.3 || ^8.0",
  14636. "phpdocumentor/reflection-common": "^2.0",
  14637. "phpstan/phpdoc-parser": "^1.18|^2.0"
  14638. },
  14639. "require-dev": {
  14640. "ext-tokenizer": "*",
  14641. "phpbench/phpbench": "^1.2",
  14642. "phpstan/extension-installer": "^1.1",
  14643. "phpstan/phpstan": "^1.8",
  14644. "phpstan/phpstan-phpunit": "^1.1",
  14645. "phpunit/phpunit": "^9.5",
  14646. "rector/rector": "^0.13.9",
  14647. "vimeo/psalm": "^4.25"
  14648. },
  14649. "type": "library",
  14650. "extra": {
  14651. "branch-alias": {
  14652. "dev-1.x": "1.x-dev"
  14653. }
  14654. },
  14655. "autoload": {
  14656. "psr-4": {
  14657. "phpDocumentor\\Reflection\\": "src"
  14658. }
  14659. },
  14660. "notification-url": "https://packagist.org/downloads/",
  14661. "license": [
  14662. "MIT"
  14663. ],
  14664. "authors": [
  14665. {
  14666. "name": "Mike van Riel",
  14667. "email": "me@mikevanriel.com"
  14668. }
  14669. ],
  14670. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  14671. "support": {
  14672. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  14673. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  14674. },
  14675. "time": "2024-11-09T15:12:26+00:00"
  14676. },
  14677. {
  14678. "name": "phpstan/phpdoc-parser",
  14679. "version": "2.3.0",
  14680. "source": {
  14681. "type": "git",
  14682. "url": "https://github.com/phpstan/phpdoc-parser.git",
  14683. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
  14684. },
  14685. "dist": {
  14686. "type": "zip",
  14687. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
  14688. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
  14689. "shasum": ""
  14690. },
  14691. "require": {
  14692. "php": "^7.4 || ^8.0"
  14693. },
  14694. "require-dev": {
  14695. "doctrine/annotations": "^2.0",
  14696. "nikic/php-parser": "^5.3.0",
  14697. "php-parallel-lint/php-parallel-lint": "^1.2",
  14698. "phpstan/extension-installer": "^1.0",
  14699. "phpstan/phpstan": "^2.0",
  14700. "phpstan/phpstan-phpunit": "^2.0",
  14701. "phpstan/phpstan-strict-rules": "^2.0",
  14702. "phpunit/phpunit": "^9.6",
  14703. "symfony/process": "^5.2"
  14704. },
  14705. "type": "library",
  14706. "autoload": {
  14707. "psr-4": {
  14708. "PHPStan\\PhpDocParser\\": [
  14709. "src/"
  14710. ]
  14711. }
  14712. },
  14713. "notification-url": "https://packagist.org/downloads/",
  14714. "license": [
  14715. "MIT"
  14716. ],
  14717. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  14718. "support": {
  14719. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  14720. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
  14721. },
  14722. "time": "2025-08-30T15:50:23+00:00"
  14723. },
  14724. {
  14725. "name": "phpunit/php-code-coverage",
  14726. "version": "11.0.9",
  14727. "source": {
  14728. "type": "git",
  14729. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  14730. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  14731. },
  14732. "dist": {
  14733. "type": "zip",
  14734. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  14735. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  14736. "shasum": ""
  14737. },
  14738. "require": {
  14739. "ext-dom": "*",
  14740. "ext-libxml": "*",
  14741. "ext-xmlwriter": "*",
  14742. "nikic/php-parser": "^5.4.0",
  14743. "php": ">=8.2",
  14744. "phpunit/php-file-iterator": "^5.1.0",
  14745. "phpunit/php-text-template": "^4.0.1",
  14746. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  14747. "sebastian/complexity": "^4.0.1",
  14748. "sebastian/environment": "^7.2.0",
  14749. "sebastian/lines-of-code": "^3.0.1",
  14750. "sebastian/version": "^5.0.2",
  14751. "theseer/tokenizer": "^1.2.3"
  14752. },
  14753. "require-dev": {
  14754. "phpunit/phpunit": "^11.5.2"
  14755. },
  14756. "suggest": {
  14757. "ext-pcov": "PHP extension that provides line coverage",
  14758. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  14759. },
  14760. "type": "library",
  14761. "extra": {
  14762. "branch-alias": {
  14763. "dev-main": "11.0.x-dev"
  14764. }
  14765. },
  14766. "autoload": {
  14767. "classmap": [
  14768. "src/"
  14769. ]
  14770. },
  14771. "notification-url": "https://packagist.org/downloads/",
  14772. "license": [
  14773. "BSD-3-Clause"
  14774. ],
  14775. "authors": [
  14776. {
  14777. "name": "Sebastian Bergmann",
  14778. "email": "sebastian@phpunit.de",
  14779. "role": "lead"
  14780. }
  14781. ],
  14782. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  14783. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  14784. "keywords": [
  14785. "coverage",
  14786. "testing",
  14787. "xunit"
  14788. ],
  14789. "support": {
  14790. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  14791. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  14792. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  14793. },
  14794. "funding": [
  14795. {
  14796. "url": "https://github.com/sebastianbergmann",
  14797. "type": "github"
  14798. }
  14799. ],
  14800. "time": "2025-02-25T13:26:39+00:00"
  14801. },
  14802. {
  14803. "name": "phpunit/php-file-iterator",
  14804. "version": "5.1.0",
  14805. "source": {
  14806. "type": "git",
  14807. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  14808. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  14809. },
  14810. "dist": {
  14811. "type": "zip",
  14812. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  14813. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  14814. "shasum": ""
  14815. },
  14816. "require": {
  14817. "php": ">=8.2"
  14818. },
  14819. "require-dev": {
  14820. "phpunit/phpunit": "^11.0"
  14821. },
  14822. "type": "library",
  14823. "extra": {
  14824. "branch-alias": {
  14825. "dev-main": "5.0-dev"
  14826. }
  14827. },
  14828. "autoload": {
  14829. "classmap": [
  14830. "src/"
  14831. ]
  14832. },
  14833. "notification-url": "https://packagist.org/downloads/",
  14834. "license": [
  14835. "BSD-3-Clause"
  14836. ],
  14837. "authors": [
  14838. {
  14839. "name": "Sebastian Bergmann",
  14840. "email": "sebastian@phpunit.de",
  14841. "role": "lead"
  14842. }
  14843. ],
  14844. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  14845. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  14846. "keywords": [
  14847. "filesystem",
  14848. "iterator"
  14849. ],
  14850. "support": {
  14851. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  14852. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  14853. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  14854. },
  14855. "funding": [
  14856. {
  14857. "url": "https://github.com/sebastianbergmann",
  14858. "type": "github"
  14859. }
  14860. ],
  14861. "time": "2024-08-27T05:02:59+00:00"
  14862. },
  14863. {
  14864. "name": "phpunit/php-invoker",
  14865. "version": "5.0.1",
  14866. "source": {
  14867. "type": "git",
  14868. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  14869. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  14870. },
  14871. "dist": {
  14872. "type": "zip",
  14873. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  14874. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  14875. "shasum": ""
  14876. },
  14877. "require": {
  14878. "php": ">=8.2"
  14879. },
  14880. "require-dev": {
  14881. "ext-pcntl": "*",
  14882. "phpunit/phpunit": "^11.0"
  14883. },
  14884. "suggest": {
  14885. "ext-pcntl": "*"
  14886. },
  14887. "type": "library",
  14888. "extra": {
  14889. "branch-alias": {
  14890. "dev-main": "5.0-dev"
  14891. }
  14892. },
  14893. "autoload": {
  14894. "classmap": [
  14895. "src/"
  14896. ]
  14897. },
  14898. "notification-url": "https://packagist.org/downloads/",
  14899. "license": [
  14900. "BSD-3-Clause"
  14901. ],
  14902. "authors": [
  14903. {
  14904. "name": "Sebastian Bergmann",
  14905. "email": "sebastian@phpunit.de",
  14906. "role": "lead"
  14907. }
  14908. ],
  14909. "description": "Invoke callables with a timeout",
  14910. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  14911. "keywords": [
  14912. "process"
  14913. ],
  14914. "support": {
  14915. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  14916. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  14917. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  14918. },
  14919. "funding": [
  14920. {
  14921. "url": "https://github.com/sebastianbergmann",
  14922. "type": "github"
  14923. }
  14924. ],
  14925. "time": "2024-07-03T05:07:44+00:00"
  14926. },
  14927. {
  14928. "name": "phpunit/php-text-template",
  14929. "version": "4.0.1",
  14930. "source": {
  14931. "type": "git",
  14932. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  14933. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  14934. },
  14935. "dist": {
  14936. "type": "zip",
  14937. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  14938. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  14939. "shasum": ""
  14940. },
  14941. "require": {
  14942. "php": ">=8.2"
  14943. },
  14944. "require-dev": {
  14945. "phpunit/phpunit": "^11.0"
  14946. },
  14947. "type": "library",
  14948. "extra": {
  14949. "branch-alias": {
  14950. "dev-main": "4.0-dev"
  14951. }
  14952. },
  14953. "autoload": {
  14954. "classmap": [
  14955. "src/"
  14956. ]
  14957. },
  14958. "notification-url": "https://packagist.org/downloads/",
  14959. "license": [
  14960. "BSD-3-Clause"
  14961. ],
  14962. "authors": [
  14963. {
  14964. "name": "Sebastian Bergmann",
  14965. "email": "sebastian@phpunit.de",
  14966. "role": "lead"
  14967. }
  14968. ],
  14969. "description": "Simple template engine.",
  14970. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  14971. "keywords": [
  14972. "template"
  14973. ],
  14974. "support": {
  14975. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  14976. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  14977. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  14978. },
  14979. "funding": [
  14980. {
  14981. "url": "https://github.com/sebastianbergmann",
  14982. "type": "github"
  14983. }
  14984. ],
  14985. "time": "2024-07-03T05:08:43+00:00"
  14986. },
  14987. {
  14988. "name": "phpunit/php-timer",
  14989. "version": "7.0.1",
  14990. "source": {
  14991. "type": "git",
  14992. "url": "https://github.com/sebastianbergmann/php-timer.git",
  14993. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  14994. },
  14995. "dist": {
  14996. "type": "zip",
  14997. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  14998. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  14999. "shasum": ""
  15000. },
  15001. "require": {
  15002. "php": ">=8.2"
  15003. },
  15004. "require-dev": {
  15005. "phpunit/phpunit": "^11.0"
  15006. },
  15007. "type": "library",
  15008. "extra": {
  15009. "branch-alias": {
  15010. "dev-main": "7.0-dev"
  15011. }
  15012. },
  15013. "autoload": {
  15014. "classmap": [
  15015. "src/"
  15016. ]
  15017. },
  15018. "notification-url": "https://packagist.org/downloads/",
  15019. "license": [
  15020. "BSD-3-Clause"
  15021. ],
  15022. "authors": [
  15023. {
  15024. "name": "Sebastian Bergmann",
  15025. "email": "sebastian@phpunit.de",
  15026. "role": "lead"
  15027. }
  15028. ],
  15029. "description": "Utility class for timing",
  15030. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  15031. "keywords": [
  15032. "timer"
  15033. ],
  15034. "support": {
  15035. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  15036. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  15037. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  15038. },
  15039. "funding": [
  15040. {
  15041. "url": "https://github.com/sebastianbergmann",
  15042. "type": "github"
  15043. }
  15044. ],
  15045. "time": "2024-07-03T05:09:35+00:00"
  15046. },
  15047. {
  15048. "name": "phpunit/phpunit",
  15049. "version": "11.5.3",
  15050. "source": {
  15051. "type": "git",
  15052. "url": "https://github.com/sebastianbergmann/phpunit.git",
  15053. "reference": "30e319e578a7b5da3543073e30002bf82042f701"
  15054. },
  15055. "dist": {
  15056. "type": "zip",
  15057. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701",
  15058. "reference": "30e319e578a7b5da3543073e30002bf82042f701",
  15059. "shasum": ""
  15060. },
  15061. "require": {
  15062. "ext-dom": "*",
  15063. "ext-json": "*",
  15064. "ext-libxml": "*",
  15065. "ext-mbstring": "*",
  15066. "ext-xml": "*",
  15067. "ext-xmlwriter": "*",
  15068. "myclabs/deep-copy": "^1.12.1",
  15069. "phar-io/manifest": "^2.0.4",
  15070. "phar-io/version": "^3.2.1",
  15071. "php": ">=8.2",
  15072. "phpunit/php-code-coverage": "^11.0.8",
  15073. "phpunit/php-file-iterator": "^5.1.0",
  15074. "phpunit/php-invoker": "^5.0.1",
  15075. "phpunit/php-text-template": "^4.0.1",
  15076. "phpunit/php-timer": "^7.0.1",
  15077. "sebastian/cli-parser": "^3.0.2",
  15078. "sebastian/code-unit": "^3.0.2",
  15079. "sebastian/comparator": "^6.3.0",
  15080. "sebastian/diff": "^6.0.2",
  15081. "sebastian/environment": "^7.2.0",
  15082. "sebastian/exporter": "^6.3.0",
  15083. "sebastian/global-state": "^7.0.2",
  15084. "sebastian/object-enumerator": "^6.0.1",
  15085. "sebastian/type": "^5.1.0",
  15086. "sebastian/version": "^5.0.2",
  15087. "staabm/side-effects-detector": "^1.0.5"
  15088. },
  15089. "suggest": {
  15090. "ext-soap": "To be able to generate mocks based on WSDL files"
  15091. },
  15092. "bin": [
  15093. "phpunit"
  15094. ],
  15095. "type": "library",
  15096. "extra": {
  15097. "branch-alias": {
  15098. "dev-main": "11.5-dev"
  15099. }
  15100. },
  15101. "autoload": {
  15102. "files": [
  15103. "src/Framework/Assert/Functions.php"
  15104. ],
  15105. "classmap": [
  15106. "src/"
  15107. ]
  15108. },
  15109. "notification-url": "https://packagist.org/downloads/",
  15110. "license": [
  15111. "BSD-3-Clause"
  15112. ],
  15113. "authors": [
  15114. {
  15115. "name": "Sebastian Bergmann",
  15116. "email": "sebastian@phpunit.de",
  15117. "role": "lead"
  15118. }
  15119. ],
  15120. "description": "The PHP Unit Testing framework.",
  15121. "homepage": "https://phpunit.de/",
  15122. "keywords": [
  15123. "phpunit",
  15124. "testing",
  15125. "xunit"
  15126. ],
  15127. "support": {
  15128. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  15129. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  15130. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3"
  15131. },
  15132. "funding": [
  15133. {
  15134. "url": "https://phpunit.de/sponsors.html",
  15135. "type": "custom"
  15136. },
  15137. {
  15138. "url": "https://github.com/sebastianbergmann",
  15139. "type": "github"
  15140. },
  15141. {
  15142. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  15143. "type": "tidelift"
  15144. }
  15145. ],
  15146. "time": "2025-01-13T09:36:00+00:00"
  15147. },
  15148. {
  15149. "name": "sebastian/cli-parser",
  15150. "version": "3.0.2",
  15151. "source": {
  15152. "type": "git",
  15153. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  15154. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  15155. },
  15156. "dist": {
  15157. "type": "zip",
  15158. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  15159. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  15160. "shasum": ""
  15161. },
  15162. "require": {
  15163. "php": ">=8.2"
  15164. },
  15165. "require-dev": {
  15166. "phpunit/phpunit": "^11.0"
  15167. },
  15168. "type": "library",
  15169. "extra": {
  15170. "branch-alias": {
  15171. "dev-main": "3.0-dev"
  15172. }
  15173. },
  15174. "autoload": {
  15175. "classmap": [
  15176. "src/"
  15177. ]
  15178. },
  15179. "notification-url": "https://packagist.org/downloads/",
  15180. "license": [
  15181. "BSD-3-Clause"
  15182. ],
  15183. "authors": [
  15184. {
  15185. "name": "Sebastian Bergmann",
  15186. "email": "sebastian@phpunit.de",
  15187. "role": "lead"
  15188. }
  15189. ],
  15190. "description": "Library for parsing CLI options",
  15191. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  15192. "support": {
  15193. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  15194. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  15195. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  15196. },
  15197. "funding": [
  15198. {
  15199. "url": "https://github.com/sebastianbergmann",
  15200. "type": "github"
  15201. }
  15202. ],
  15203. "time": "2024-07-03T04:41:36+00:00"
  15204. },
  15205. {
  15206. "name": "sebastian/code-unit",
  15207. "version": "3.0.3",
  15208. "source": {
  15209. "type": "git",
  15210. "url": "https://github.com/sebastianbergmann/code-unit.git",
  15211. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  15212. },
  15213. "dist": {
  15214. "type": "zip",
  15215. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  15216. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  15217. "shasum": ""
  15218. },
  15219. "require": {
  15220. "php": ">=8.2"
  15221. },
  15222. "require-dev": {
  15223. "phpunit/phpunit": "^11.5"
  15224. },
  15225. "type": "library",
  15226. "extra": {
  15227. "branch-alias": {
  15228. "dev-main": "3.0-dev"
  15229. }
  15230. },
  15231. "autoload": {
  15232. "classmap": [
  15233. "src/"
  15234. ]
  15235. },
  15236. "notification-url": "https://packagist.org/downloads/",
  15237. "license": [
  15238. "BSD-3-Clause"
  15239. ],
  15240. "authors": [
  15241. {
  15242. "name": "Sebastian Bergmann",
  15243. "email": "sebastian@phpunit.de",
  15244. "role": "lead"
  15245. }
  15246. ],
  15247. "description": "Collection of value objects that represent the PHP code units",
  15248. "homepage": "https://github.com/sebastianbergmann/code-unit",
  15249. "support": {
  15250. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  15251. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  15252. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  15253. },
  15254. "funding": [
  15255. {
  15256. "url": "https://github.com/sebastianbergmann",
  15257. "type": "github"
  15258. }
  15259. ],
  15260. "time": "2025-03-19T07:56:08+00:00"
  15261. },
  15262. {
  15263. "name": "sebastian/code-unit-reverse-lookup",
  15264. "version": "4.0.1",
  15265. "source": {
  15266. "type": "git",
  15267. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  15268. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  15269. },
  15270. "dist": {
  15271. "type": "zip",
  15272. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  15273. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  15274. "shasum": ""
  15275. },
  15276. "require": {
  15277. "php": ">=8.2"
  15278. },
  15279. "require-dev": {
  15280. "phpunit/phpunit": "^11.0"
  15281. },
  15282. "type": "library",
  15283. "extra": {
  15284. "branch-alias": {
  15285. "dev-main": "4.0-dev"
  15286. }
  15287. },
  15288. "autoload": {
  15289. "classmap": [
  15290. "src/"
  15291. ]
  15292. },
  15293. "notification-url": "https://packagist.org/downloads/",
  15294. "license": [
  15295. "BSD-3-Clause"
  15296. ],
  15297. "authors": [
  15298. {
  15299. "name": "Sebastian Bergmann",
  15300. "email": "sebastian@phpunit.de"
  15301. }
  15302. ],
  15303. "description": "Looks up which function or method a line of code belongs to",
  15304. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  15305. "support": {
  15306. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  15307. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  15308. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  15309. },
  15310. "funding": [
  15311. {
  15312. "url": "https://github.com/sebastianbergmann",
  15313. "type": "github"
  15314. }
  15315. ],
  15316. "time": "2024-07-03T04:45:54+00:00"
  15317. },
  15318. {
  15319. "name": "sebastian/comparator",
  15320. "version": "6.3.1",
  15321. "source": {
  15322. "type": "git",
  15323. "url": "https://github.com/sebastianbergmann/comparator.git",
  15324. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  15325. },
  15326. "dist": {
  15327. "type": "zip",
  15328. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  15329. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  15330. "shasum": ""
  15331. },
  15332. "require": {
  15333. "ext-dom": "*",
  15334. "ext-mbstring": "*",
  15335. "php": ">=8.2",
  15336. "sebastian/diff": "^6.0",
  15337. "sebastian/exporter": "^6.0"
  15338. },
  15339. "require-dev": {
  15340. "phpunit/phpunit": "^11.4"
  15341. },
  15342. "suggest": {
  15343. "ext-bcmath": "For comparing BcMath\\Number objects"
  15344. },
  15345. "type": "library",
  15346. "extra": {
  15347. "branch-alias": {
  15348. "dev-main": "6.3-dev"
  15349. }
  15350. },
  15351. "autoload": {
  15352. "classmap": [
  15353. "src/"
  15354. ]
  15355. },
  15356. "notification-url": "https://packagist.org/downloads/",
  15357. "license": [
  15358. "BSD-3-Clause"
  15359. ],
  15360. "authors": [
  15361. {
  15362. "name": "Sebastian Bergmann",
  15363. "email": "sebastian@phpunit.de"
  15364. },
  15365. {
  15366. "name": "Jeff Welch",
  15367. "email": "whatthejeff@gmail.com"
  15368. },
  15369. {
  15370. "name": "Volker Dusch",
  15371. "email": "github@wallbash.com"
  15372. },
  15373. {
  15374. "name": "Bernhard Schussek",
  15375. "email": "bschussek@2bepublished.at"
  15376. }
  15377. ],
  15378. "description": "Provides the functionality to compare PHP values for equality",
  15379. "homepage": "https://github.com/sebastianbergmann/comparator",
  15380. "keywords": [
  15381. "comparator",
  15382. "compare",
  15383. "equality"
  15384. ],
  15385. "support": {
  15386. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  15387. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  15388. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  15389. },
  15390. "funding": [
  15391. {
  15392. "url": "https://github.com/sebastianbergmann",
  15393. "type": "github"
  15394. }
  15395. ],
  15396. "time": "2025-03-07T06:57:01+00:00"
  15397. },
  15398. {
  15399. "name": "sebastian/complexity",
  15400. "version": "4.0.1",
  15401. "source": {
  15402. "type": "git",
  15403. "url": "https://github.com/sebastianbergmann/complexity.git",
  15404. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  15405. },
  15406. "dist": {
  15407. "type": "zip",
  15408. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  15409. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  15410. "shasum": ""
  15411. },
  15412. "require": {
  15413. "nikic/php-parser": "^5.0",
  15414. "php": ">=8.2"
  15415. },
  15416. "require-dev": {
  15417. "phpunit/phpunit": "^11.0"
  15418. },
  15419. "type": "library",
  15420. "extra": {
  15421. "branch-alias": {
  15422. "dev-main": "4.0-dev"
  15423. }
  15424. },
  15425. "autoload": {
  15426. "classmap": [
  15427. "src/"
  15428. ]
  15429. },
  15430. "notification-url": "https://packagist.org/downloads/",
  15431. "license": [
  15432. "BSD-3-Clause"
  15433. ],
  15434. "authors": [
  15435. {
  15436. "name": "Sebastian Bergmann",
  15437. "email": "sebastian@phpunit.de",
  15438. "role": "lead"
  15439. }
  15440. ],
  15441. "description": "Library for calculating the complexity of PHP code units",
  15442. "homepage": "https://github.com/sebastianbergmann/complexity",
  15443. "support": {
  15444. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  15445. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  15446. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  15447. },
  15448. "funding": [
  15449. {
  15450. "url": "https://github.com/sebastianbergmann",
  15451. "type": "github"
  15452. }
  15453. ],
  15454. "time": "2024-07-03T04:49:50+00:00"
  15455. },
  15456. {
  15457. "name": "sebastian/diff",
  15458. "version": "6.0.2",
  15459. "source": {
  15460. "type": "git",
  15461. "url": "https://github.com/sebastianbergmann/diff.git",
  15462. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  15463. },
  15464. "dist": {
  15465. "type": "zip",
  15466. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  15467. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  15468. "shasum": ""
  15469. },
  15470. "require": {
  15471. "php": ">=8.2"
  15472. },
  15473. "require-dev": {
  15474. "phpunit/phpunit": "^11.0",
  15475. "symfony/process": "^4.2 || ^5"
  15476. },
  15477. "type": "library",
  15478. "extra": {
  15479. "branch-alias": {
  15480. "dev-main": "6.0-dev"
  15481. }
  15482. },
  15483. "autoload": {
  15484. "classmap": [
  15485. "src/"
  15486. ]
  15487. },
  15488. "notification-url": "https://packagist.org/downloads/",
  15489. "license": [
  15490. "BSD-3-Clause"
  15491. ],
  15492. "authors": [
  15493. {
  15494. "name": "Sebastian Bergmann",
  15495. "email": "sebastian@phpunit.de"
  15496. },
  15497. {
  15498. "name": "Kore Nordmann",
  15499. "email": "mail@kore-nordmann.de"
  15500. }
  15501. ],
  15502. "description": "Diff implementation",
  15503. "homepage": "https://github.com/sebastianbergmann/diff",
  15504. "keywords": [
  15505. "diff",
  15506. "udiff",
  15507. "unidiff",
  15508. "unified diff"
  15509. ],
  15510. "support": {
  15511. "issues": "https://github.com/sebastianbergmann/diff/issues",
  15512. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  15513. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  15514. },
  15515. "funding": [
  15516. {
  15517. "url": "https://github.com/sebastianbergmann",
  15518. "type": "github"
  15519. }
  15520. ],
  15521. "time": "2024-07-03T04:53:05+00:00"
  15522. },
  15523. {
  15524. "name": "sebastian/environment",
  15525. "version": "7.2.0",
  15526. "source": {
  15527. "type": "git",
  15528. "url": "https://github.com/sebastianbergmann/environment.git",
  15529. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  15530. },
  15531. "dist": {
  15532. "type": "zip",
  15533. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  15534. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  15535. "shasum": ""
  15536. },
  15537. "require": {
  15538. "php": ">=8.2"
  15539. },
  15540. "require-dev": {
  15541. "phpunit/phpunit": "^11.0"
  15542. },
  15543. "suggest": {
  15544. "ext-posix": "*"
  15545. },
  15546. "type": "library",
  15547. "extra": {
  15548. "branch-alias": {
  15549. "dev-main": "7.2-dev"
  15550. }
  15551. },
  15552. "autoload": {
  15553. "classmap": [
  15554. "src/"
  15555. ]
  15556. },
  15557. "notification-url": "https://packagist.org/downloads/",
  15558. "license": [
  15559. "BSD-3-Clause"
  15560. ],
  15561. "authors": [
  15562. {
  15563. "name": "Sebastian Bergmann",
  15564. "email": "sebastian@phpunit.de"
  15565. }
  15566. ],
  15567. "description": "Provides functionality to handle HHVM/PHP environments",
  15568. "homepage": "https://github.com/sebastianbergmann/environment",
  15569. "keywords": [
  15570. "Xdebug",
  15571. "environment",
  15572. "hhvm"
  15573. ],
  15574. "support": {
  15575. "issues": "https://github.com/sebastianbergmann/environment/issues",
  15576. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  15577. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  15578. },
  15579. "funding": [
  15580. {
  15581. "url": "https://github.com/sebastianbergmann",
  15582. "type": "github"
  15583. }
  15584. ],
  15585. "time": "2024-07-03T04:54:44+00:00"
  15586. },
  15587. {
  15588. "name": "sebastian/exporter",
  15589. "version": "6.3.0",
  15590. "source": {
  15591. "type": "git",
  15592. "url": "https://github.com/sebastianbergmann/exporter.git",
  15593. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  15594. },
  15595. "dist": {
  15596. "type": "zip",
  15597. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  15598. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  15599. "shasum": ""
  15600. },
  15601. "require": {
  15602. "ext-mbstring": "*",
  15603. "php": ">=8.2",
  15604. "sebastian/recursion-context": "^6.0"
  15605. },
  15606. "require-dev": {
  15607. "phpunit/phpunit": "^11.3"
  15608. },
  15609. "type": "library",
  15610. "extra": {
  15611. "branch-alias": {
  15612. "dev-main": "6.1-dev"
  15613. }
  15614. },
  15615. "autoload": {
  15616. "classmap": [
  15617. "src/"
  15618. ]
  15619. },
  15620. "notification-url": "https://packagist.org/downloads/",
  15621. "license": [
  15622. "BSD-3-Clause"
  15623. ],
  15624. "authors": [
  15625. {
  15626. "name": "Sebastian Bergmann",
  15627. "email": "sebastian@phpunit.de"
  15628. },
  15629. {
  15630. "name": "Jeff Welch",
  15631. "email": "whatthejeff@gmail.com"
  15632. },
  15633. {
  15634. "name": "Volker Dusch",
  15635. "email": "github@wallbash.com"
  15636. },
  15637. {
  15638. "name": "Adam Harvey",
  15639. "email": "aharvey@php.net"
  15640. },
  15641. {
  15642. "name": "Bernhard Schussek",
  15643. "email": "bschussek@gmail.com"
  15644. }
  15645. ],
  15646. "description": "Provides the functionality to export PHP variables for visualization",
  15647. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  15648. "keywords": [
  15649. "export",
  15650. "exporter"
  15651. ],
  15652. "support": {
  15653. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  15654. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  15655. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  15656. },
  15657. "funding": [
  15658. {
  15659. "url": "https://github.com/sebastianbergmann",
  15660. "type": "github"
  15661. }
  15662. ],
  15663. "time": "2024-12-05T09:17:50+00:00"
  15664. },
  15665. {
  15666. "name": "sebastian/global-state",
  15667. "version": "7.0.2",
  15668. "source": {
  15669. "type": "git",
  15670. "url": "https://github.com/sebastianbergmann/global-state.git",
  15671. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  15672. },
  15673. "dist": {
  15674. "type": "zip",
  15675. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  15676. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  15677. "shasum": ""
  15678. },
  15679. "require": {
  15680. "php": ">=8.2",
  15681. "sebastian/object-reflector": "^4.0",
  15682. "sebastian/recursion-context": "^6.0"
  15683. },
  15684. "require-dev": {
  15685. "ext-dom": "*",
  15686. "phpunit/phpunit": "^11.0"
  15687. },
  15688. "type": "library",
  15689. "extra": {
  15690. "branch-alias": {
  15691. "dev-main": "7.0-dev"
  15692. }
  15693. },
  15694. "autoload": {
  15695. "classmap": [
  15696. "src/"
  15697. ]
  15698. },
  15699. "notification-url": "https://packagist.org/downloads/",
  15700. "license": [
  15701. "BSD-3-Clause"
  15702. ],
  15703. "authors": [
  15704. {
  15705. "name": "Sebastian Bergmann",
  15706. "email": "sebastian@phpunit.de"
  15707. }
  15708. ],
  15709. "description": "Snapshotting of global state",
  15710. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  15711. "keywords": [
  15712. "global state"
  15713. ],
  15714. "support": {
  15715. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  15716. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  15717. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  15718. },
  15719. "funding": [
  15720. {
  15721. "url": "https://github.com/sebastianbergmann",
  15722. "type": "github"
  15723. }
  15724. ],
  15725. "time": "2024-07-03T04:57:36+00:00"
  15726. },
  15727. {
  15728. "name": "sebastian/lines-of-code",
  15729. "version": "3.0.1",
  15730. "source": {
  15731. "type": "git",
  15732. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  15733. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  15734. },
  15735. "dist": {
  15736. "type": "zip",
  15737. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  15738. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  15739. "shasum": ""
  15740. },
  15741. "require": {
  15742. "nikic/php-parser": "^5.0",
  15743. "php": ">=8.2"
  15744. },
  15745. "require-dev": {
  15746. "phpunit/phpunit": "^11.0"
  15747. },
  15748. "type": "library",
  15749. "extra": {
  15750. "branch-alias": {
  15751. "dev-main": "3.0-dev"
  15752. }
  15753. },
  15754. "autoload": {
  15755. "classmap": [
  15756. "src/"
  15757. ]
  15758. },
  15759. "notification-url": "https://packagist.org/downloads/",
  15760. "license": [
  15761. "BSD-3-Clause"
  15762. ],
  15763. "authors": [
  15764. {
  15765. "name": "Sebastian Bergmann",
  15766. "email": "sebastian@phpunit.de",
  15767. "role": "lead"
  15768. }
  15769. ],
  15770. "description": "Library for counting the lines of code in PHP source code",
  15771. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  15772. "support": {
  15773. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  15774. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  15775. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  15776. },
  15777. "funding": [
  15778. {
  15779. "url": "https://github.com/sebastianbergmann",
  15780. "type": "github"
  15781. }
  15782. ],
  15783. "time": "2024-07-03T04:58:38+00:00"
  15784. },
  15785. {
  15786. "name": "sebastian/object-enumerator",
  15787. "version": "6.0.1",
  15788. "source": {
  15789. "type": "git",
  15790. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  15791. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  15792. },
  15793. "dist": {
  15794. "type": "zip",
  15795. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  15796. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  15797. "shasum": ""
  15798. },
  15799. "require": {
  15800. "php": ">=8.2",
  15801. "sebastian/object-reflector": "^4.0",
  15802. "sebastian/recursion-context": "^6.0"
  15803. },
  15804. "require-dev": {
  15805. "phpunit/phpunit": "^11.0"
  15806. },
  15807. "type": "library",
  15808. "extra": {
  15809. "branch-alias": {
  15810. "dev-main": "6.0-dev"
  15811. }
  15812. },
  15813. "autoload": {
  15814. "classmap": [
  15815. "src/"
  15816. ]
  15817. },
  15818. "notification-url": "https://packagist.org/downloads/",
  15819. "license": [
  15820. "BSD-3-Clause"
  15821. ],
  15822. "authors": [
  15823. {
  15824. "name": "Sebastian Bergmann",
  15825. "email": "sebastian@phpunit.de"
  15826. }
  15827. ],
  15828. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  15829. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  15830. "support": {
  15831. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  15832. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  15833. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  15834. },
  15835. "funding": [
  15836. {
  15837. "url": "https://github.com/sebastianbergmann",
  15838. "type": "github"
  15839. }
  15840. ],
  15841. "time": "2024-07-03T05:00:13+00:00"
  15842. },
  15843. {
  15844. "name": "sebastian/object-reflector",
  15845. "version": "4.0.1",
  15846. "source": {
  15847. "type": "git",
  15848. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  15849. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  15850. },
  15851. "dist": {
  15852. "type": "zip",
  15853. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  15854. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  15855. "shasum": ""
  15856. },
  15857. "require": {
  15858. "php": ">=8.2"
  15859. },
  15860. "require-dev": {
  15861. "phpunit/phpunit": "^11.0"
  15862. },
  15863. "type": "library",
  15864. "extra": {
  15865. "branch-alias": {
  15866. "dev-main": "4.0-dev"
  15867. }
  15868. },
  15869. "autoload": {
  15870. "classmap": [
  15871. "src/"
  15872. ]
  15873. },
  15874. "notification-url": "https://packagist.org/downloads/",
  15875. "license": [
  15876. "BSD-3-Clause"
  15877. ],
  15878. "authors": [
  15879. {
  15880. "name": "Sebastian Bergmann",
  15881. "email": "sebastian@phpunit.de"
  15882. }
  15883. ],
  15884. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  15885. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  15886. "support": {
  15887. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  15888. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  15889. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  15890. },
  15891. "funding": [
  15892. {
  15893. "url": "https://github.com/sebastianbergmann",
  15894. "type": "github"
  15895. }
  15896. ],
  15897. "time": "2024-07-03T05:01:32+00:00"
  15898. },
  15899. {
  15900. "name": "sebastian/recursion-context",
  15901. "version": "6.0.2",
  15902. "source": {
  15903. "type": "git",
  15904. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  15905. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  15906. },
  15907. "dist": {
  15908. "type": "zip",
  15909. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  15910. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  15911. "shasum": ""
  15912. },
  15913. "require": {
  15914. "php": ">=8.2"
  15915. },
  15916. "require-dev": {
  15917. "phpunit/phpunit": "^11.0"
  15918. },
  15919. "type": "library",
  15920. "extra": {
  15921. "branch-alias": {
  15922. "dev-main": "6.0-dev"
  15923. }
  15924. },
  15925. "autoload": {
  15926. "classmap": [
  15927. "src/"
  15928. ]
  15929. },
  15930. "notification-url": "https://packagist.org/downloads/",
  15931. "license": [
  15932. "BSD-3-Clause"
  15933. ],
  15934. "authors": [
  15935. {
  15936. "name": "Sebastian Bergmann",
  15937. "email": "sebastian@phpunit.de"
  15938. },
  15939. {
  15940. "name": "Jeff Welch",
  15941. "email": "whatthejeff@gmail.com"
  15942. },
  15943. {
  15944. "name": "Adam Harvey",
  15945. "email": "aharvey@php.net"
  15946. }
  15947. ],
  15948. "description": "Provides functionality to recursively process PHP variables",
  15949. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  15950. "support": {
  15951. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  15952. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  15953. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  15954. },
  15955. "funding": [
  15956. {
  15957. "url": "https://github.com/sebastianbergmann",
  15958. "type": "github"
  15959. }
  15960. ],
  15961. "time": "2024-07-03T05:10:34+00:00"
  15962. },
  15963. {
  15964. "name": "sebastian/type",
  15965. "version": "5.1.2",
  15966. "source": {
  15967. "type": "git",
  15968. "url": "https://github.com/sebastianbergmann/type.git",
  15969. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  15970. },
  15971. "dist": {
  15972. "type": "zip",
  15973. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  15974. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  15975. "shasum": ""
  15976. },
  15977. "require": {
  15978. "php": ">=8.2"
  15979. },
  15980. "require-dev": {
  15981. "phpunit/phpunit": "^11.3"
  15982. },
  15983. "type": "library",
  15984. "extra": {
  15985. "branch-alias": {
  15986. "dev-main": "5.1-dev"
  15987. }
  15988. },
  15989. "autoload": {
  15990. "classmap": [
  15991. "src/"
  15992. ]
  15993. },
  15994. "notification-url": "https://packagist.org/downloads/",
  15995. "license": [
  15996. "BSD-3-Clause"
  15997. ],
  15998. "authors": [
  15999. {
  16000. "name": "Sebastian Bergmann",
  16001. "email": "sebastian@phpunit.de",
  16002. "role": "lead"
  16003. }
  16004. ],
  16005. "description": "Collection of value objects that represent the types of the PHP type system",
  16006. "homepage": "https://github.com/sebastianbergmann/type",
  16007. "support": {
  16008. "issues": "https://github.com/sebastianbergmann/type/issues",
  16009. "security": "https://github.com/sebastianbergmann/type/security/policy",
  16010. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  16011. },
  16012. "funding": [
  16013. {
  16014. "url": "https://github.com/sebastianbergmann",
  16015. "type": "github"
  16016. }
  16017. ],
  16018. "time": "2025-03-18T13:35:50+00:00"
  16019. },
  16020. {
  16021. "name": "sebastian/version",
  16022. "version": "5.0.2",
  16023. "source": {
  16024. "type": "git",
  16025. "url": "https://github.com/sebastianbergmann/version.git",
  16026. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  16027. },
  16028. "dist": {
  16029. "type": "zip",
  16030. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  16031. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  16032. "shasum": ""
  16033. },
  16034. "require": {
  16035. "php": ">=8.2"
  16036. },
  16037. "type": "library",
  16038. "extra": {
  16039. "branch-alias": {
  16040. "dev-main": "5.0-dev"
  16041. }
  16042. },
  16043. "autoload": {
  16044. "classmap": [
  16045. "src/"
  16046. ]
  16047. },
  16048. "notification-url": "https://packagist.org/downloads/",
  16049. "license": [
  16050. "BSD-3-Clause"
  16051. ],
  16052. "authors": [
  16053. {
  16054. "name": "Sebastian Bergmann",
  16055. "email": "sebastian@phpunit.de",
  16056. "role": "lead"
  16057. }
  16058. ],
  16059. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  16060. "homepage": "https://github.com/sebastianbergmann/version",
  16061. "support": {
  16062. "issues": "https://github.com/sebastianbergmann/version/issues",
  16063. "security": "https://github.com/sebastianbergmann/version/security/policy",
  16064. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  16065. },
  16066. "funding": [
  16067. {
  16068. "url": "https://github.com/sebastianbergmann",
  16069. "type": "github"
  16070. }
  16071. ],
  16072. "time": "2024-10-09T05:16:32+00:00"
  16073. },
  16074. {
  16075. "name": "staabm/side-effects-detector",
  16076. "version": "1.0.5",
  16077. "source": {
  16078. "type": "git",
  16079. "url": "https://github.com/staabm/side-effects-detector.git",
  16080. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  16081. },
  16082. "dist": {
  16083. "type": "zip",
  16084. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  16085. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  16086. "shasum": ""
  16087. },
  16088. "require": {
  16089. "ext-tokenizer": "*",
  16090. "php": "^7.4 || ^8.0"
  16091. },
  16092. "require-dev": {
  16093. "phpstan/extension-installer": "^1.4.3",
  16094. "phpstan/phpstan": "^1.12.6",
  16095. "phpunit/phpunit": "^9.6.21",
  16096. "symfony/var-dumper": "^5.4.43",
  16097. "tomasvotruba/type-coverage": "1.0.0",
  16098. "tomasvotruba/unused-public": "1.0.0"
  16099. },
  16100. "type": "library",
  16101. "autoload": {
  16102. "classmap": [
  16103. "lib/"
  16104. ]
  16105. },
  16106. "notification-url": "https://packagist.org/downloads/",
  16107. "license": [
  16108. "MIT"
  16109. ],
  16110. "description": "A static analysis tool to detect side effects in PHP code",
  16111. "keywords": [
  16112. "static analysis"
  16113. ],
  16114. "support": {
  16115. "issues": "https://github.com/staabm/side-effects-detector/issues",
  16116. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  16117. },
  16118. "funding": [
  16119. {
  16120. "url": "https://github.com/staabm",
  16121. "type": "github"
  16122. }
  16123. ],
  16124. "time": "2024-10-20T05:08:20+00:00"
  16125. },
  16126. {
  16127. "name": "ta-tikoma/phpunit-architecture-test",
  16128. "version": "0.8.4",
  16129. "source": {
  16130. "type": "git",
  16131. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  16132. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  16133. },
  16134. "dist": {
  16135. "type": "zip",
  16136. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  16137. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  16138. "shasum": ""
  16139. },
  16140. "require": {
  16141. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  16142. "php": "^8.1.0",
  16143. "phpdocumentor/reflection-docblock": "^5.3.0",
  16144. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  16145. "symfony/finder": "^6.4.0 || ^7.0.0"
  16146. },
  16147. "require-dev": {
  16148. "laravel/pint": "^1.13.7",
  16149. "phpstan/phpstan": "^1.10.52"
  16150. },
  16151. "type": "library",
  16152. "autoload": {
  16153. "psr-4": {
  16154. "PHPUnit\\Architecture\\": "src/"
  16155. }
  16156. },
  16157. "notification-url": "https://packagist.org/downloads/",
  16158. "license": [
  16159. "MIT"
  16160. ],
  16161. "authors": [
  16162. {
  16163. "name": "Ni Shi",
  16164. "email": "futik0ma011@gmail.com"
  16165. },
  16166. {
  16167. "name": "Nuno Maduro",
  16168. "email": "enunomaduro@gmail.com"
  16169. }
  16170. ],
  16171. "description": "Methods for testing application architecture",
  16172. "keywords": [
  16173. "architecture",
  16174. "phpunit",
  16175. "stucture",
  16176. "test",
  16177. "testing"
  16178. ],
  16179. "support": {
  16180. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  16181. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  16182. },
  16183. "time": "2024-01-05T14:10:56+00:00"
  16184. },
  16185. {
  16186. "name": "theseer/tokenizer",
  16187. "version": "1.2.3",
  16188. "source": {
  16189. "type": "git",
  16190. "url": "https://github.com/theseer/tokenizer.git",
  16191. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  16192. },
  16193. "dist": {
  16194. "type": "zip",
  16195. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  16196. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  16197. "shasum": ""
  16198. },
  16199. "require": {
  16200. "ext-dom": "*",
  16201. "ext-tokenizer": "*",
  16202. "ext-xmlwriter": "*",
  16203. "php": "^7.2 || ^8.0"
  16204. },
  16205. "type": "library",
  16206. "autoload": {
  16207. "classmap": [
  16208. "src/"
  16209. ]
  16210. },
  16211. "notification-url": "https://packagist.org/downloads/",
  16212. "license": [
  16213. "BSD-3-Clause"
  16214. ],
  16215. "authors": [
  16216. {
  16217. "name": "Arne Blankerts",
  16218. "email": "arne@blankerts.de",
  16219. "role": "Developer"
  16220. }
  16221. ],
  16222. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  16223. "support": {
  16224. "issues": "https://github.com/theseer/tokenizer/issues",
  16225. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  16226. },
  16227. "funding": [
  16228. {
  16229. "url": "https://github.com/theseer",
  16230. "type": "github"
  16231. }
  16232. ],
  16233. "time": "2024-03-03T12:36:25+00:00"
  16234. }
  16235. ],
  16236. "aliases": [],
  16237. "minimum-stability": "stable",
  16238. "stability-flags": {
  16239. "bagisto/image-cache": 20
  16240. },
  16241. "prefer-stable": true,
  16242. "prefer-lowest": false,
  16243. "platform": {
  16244. "php": "^8.2",
  16245. "ext-calendar": "*",
  16246. "ext-curl": "*",
  16247. "ext-intl": "*",
  16248. "ext-mbstring": "*",
  16249. "ext-openssl": "*",
  16250. "ext-pdo": "*",
  16251. "ext-pdo_mysql": "*",
  16252. "ext-tokenizer": "*"
  16253. },
  16254. "platform-dev": [],
  16255. "plugin-api-version": "2.6.0"
  16256. }