composer.lock 577 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706157071570815709157101571115712157131571415715157161571715718157191572015721157221572315724157251572615727157281572915730157311573215733157341573515736157371573815739157401574115742157431574415745157461574715748157491575015751157521575315754157551575615757157581575915760157611576215763157641576515766157671576815769157701577115772157731577415775157761577715778157791578015781157821578315784157851578615787157881578915790157911579215793157941579515796157971579815799158001580115802158031580415805158061580715808158091581015811158121581315814158151581615817158181581915820158211582215823158241582515826158271582815829158301583115832158331583415835158361583715838158391584015841158421584315844158451584615847158481584915850158511585215853158541585515856158571585815859158601586115862158631586415865158661586715868158691587015871158721587315874158751587615877158781587915880158811588215883158841588515886158871588815889158901589115892158931589415895158961589715898158991590015901159021590315904159051590615907159081590915910159111591215913159141591515916159171591815919159201592115922159231592415925159261592715928159291593015931159321593315934159351593615937159381593915940159411594215943159441594515946159471594815949159501595115952159531595415955159561595715958159591596015961159621596315964159651596615967
  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": "5b4ecb6b96b299dce930ca9b3090436b",
  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/image-cache",
  1165. "version": "dev-master",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/bagisto/image-cache.git",
  1169. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/bagisto/image-cache/zipball/b5a24e83ec4387261ae55947534d573fb897c86c",
  1174. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "illuminate/cache": "^9|~10|~11",
  1179. "illuminate/filesystem": "^9|~10|~11",
  1180. "intervention/image": "~2.2",
  1181. "nesbot/carbon": "^2.72.2",
  1182. "opis/closure": "^3.5",
  1183. "php": "^8.2"
  1184. },
  1185. "require-dev": {
  1186. "phpunit/phpunit": "^10.0"
  1187. },
  1188. "default-branch": true,
  1189. "type": "library",
  1190. "autoload": {
  1191. "psr-4": {
  1192. "Intervention\\Image\\": "src/Intervention/Image"
  1193. }
  1194. },
  1195. "notification-url": "https://packagist.org/downloads/",
  1196. "license": [
  1197. "MIT"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Oliver Vogel",
  1202. "email": "oliver@intervention.io",
  1203. "homepage": "http://intervention.io/"
  1204. }
  1205. ],
  1206. "description": "Caching extension for the Intervention Image Class",
  1207. "homepage": "https://image.intervention.io",
  1208. "keywords": [
  1209. "cache",
  1210. "gd",
  1211. "image",
  1212. "imagick",
  1213. "laravel"
  1214. ],
  1215. "support": {
  1216. "source": "https://github.com/bagisto/image-cache/tree/master"
  1217. },
  1218. "time": "2024-10-03T06:31:17+00:00"
  1219. },
  1220. {
  1221. "name": "barryvdh/laravel-dompdf",
  1222. "version": "v2.2.0",
  1223. "source": {
  1224. "type": "git",
  1225. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  1226. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8"
  1227. },
  1228. "dist": {
  1229. "type": "zip",
  1230. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c96f90c97666cebec154ca1ffb67afed372114d8",
  1231. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8",
  1232. "shasum": ""
  1233. },
  1234. "require": {
  1235. "dompdf/dompdf": "^2.0.7",
  1236. "illuminate/support": "^6|^7|^8|^9|^10|^11",
  1237. "php": "^7.2 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "larastan/larastan": "^1.0|^2.7.0",
  1241. "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
  1242. "phpro/grumphp": "^1 || ^2.5",
  1243. "squizlabs/php_codesniffer": "^3.5"
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "laravel": {
  1248. "aliases": {
  1249. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf",
  1250. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf"
  1251. },
  1252. "providers": [
  1253. "Barryvdh\\DomPDF\\ServiceProvider"
  1254. ]
  1255. },
  1256. "branch-alias": {
  1257. "dev-master": "2.0-dev"
  1258. }
  1259. },
  1260. "autoload": {
  1261. "psr-4": {
  1262. "Barryvdh\\DomPDF\\": "src"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Barry vd. Heuvel",
  1272. "email": "barryvdh@gmail.com"
  1273. }
  1274. ],
  1275. "description": "A DOMPDF Wrapper for Laravel",
  1276. "keywords": [
  1277. "dompdf",
  1278. "laravel",
  1279. "pdf"
  1280. ],
  1281. "support": {
  1282. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  1283. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.2.0"
  1284. },
  1285. "funding": [
  1286. {
  1287. "url": "https://fruitcake.nl",
  1288. "type": "custom"
  1289. },
  1290. {
  1291. "url": "https://github.com/barryvdh",
  1292. "type": "github"
  1293. }
  1294. ],
  1295. "time": "2024-04-25T13:16:04+00:00"
  1296. },
  1297. {
  1298. "name": "brick/math",
  1299. "version": "0.12.3",
  1300. "source": {
  1301. "type": "git",
  1302. "url": "https://github.com/brick/math.git",
  1303. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  1304. },
  1305. "dist": {
  1306. "type": "zip",
  1307. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  1308. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  1309. "shasum": ""
  1310. },
  1311. "require": {
  1312. "php": "^8.1"
  1313. },
  1314. "require-dev": {
  1315. "php-coveralls/php-coveralls": "^2.2",
  1316. "phpunit/phpunit": "^10.1",
  1317. "vimeo/psalm": "6.8.8"
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Brick\\Math\\": "src/"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "description": "Arbitrary-precision arithmetic library",
  1330. "keywords": [
  1331. "Arbitrary-precision",
  1332. "BigInteger",
  1333. "BigRational",
  1334. "arithmetic",
  1335. "bigdecimal",
  1336. "bignum",
  1337. "bignumber",
  1338. "brick",
  1339. "decimal",
  1340. "integer",
  1341. "math",
  1342. "mathematics",
  1343. "rational"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/brick/math/issues",
  1347. "source": "https://github.com/brick/math/tree/0.12.3"
  1348. },
  1349. "funding": [
  1350. {
  1351. "url": "https://github.com/BenMorel",
  1352. "type": "github"
  1353. }
  1354. ],
  1355. "time": "2025-02-28T13:11:00+00:00"
  1356. },
  1357. {
  1358. "name": "carbonphp/carbon-doctrine-types",
  1359. "version": "3.2.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1363. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1368. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1369. "shasum": ""
  1370. },
  1371. "require": {
  1372. "php": "^8.1"
  1373. },
  1374. "conflict": {
  1375. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  1376. },
  1377. "require-dev": {
  1378. "doctrine/dbal": "^4.0.0",
  1379. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1380. "phpunit/phpunit": "^10.3"
  1381. },
  1382. "type": "library",
  1383. "autoload": {
  1384. "psr-4": {
  1385. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "KyleKatarn",
  1395. "email": "kylekatarnls@gmail.com"
  1396. }
  1397. ],
  1398. "description": "Types to use Carbon in Doctrine",
  1399. "keywords": [
  1400. "carbon",
  1401. "date",
  1402. "datetime",
  1403. "doctrine",
  1404. "time"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1408. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1409. },
  1410. "funding": [
  1411. {
  1412. "url": "https://github.com/kylekatarnls",
  1413. "type": "github"
  1414. },
  1415. {
  1416. "url": "https://opencollective.com/Carbon",
  1417. "type": "open_collective"
  1418. },
  1419. {
  1420. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1421. "type": "tidelift"
  1422. }
  1423. ],
  1424. "time": "2024-02-09T16:56:22+00:00"
  1425. },
  1426. {
  1427. "name": "composer/ca-bundle",
  1428. "version": "1.5.6",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/composer/ca-bundle.git",
  1432. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175",
  1437. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175",
  1438. "shasum": ""
  1439. },
  1440. "require": {
  1441. "ext-openssl": "*",
  1442. "ext-pcre": "*",
  1443. "php": "^7.2 || ^8.0"
  1444. },
  1445. "require-dev": {
  1446. "phpstan/phpstan": "^1.10",
  1447. "phpunit/phpunit": "^8 || ^9",
  1448. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1449. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1450. },
  1451. "type": "library",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-main": "1.x-dev"
  1455. }
  1456. },
  1457. "autoload": {
  1458. "psr-4": {
  1459. "Composer\\CaBundle\\": "src"
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Jordi Boggiano",
  1469. "email": "j.boggiano@seld.be",
  1470. "homepage": "http://seld.be"
  1471. }
  1472. ],
  1473. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1474. "keywords": [
  1475. "cabundle",
  1476. "cacert",
  1477. "certificate",
  1478. "ssl",
  1479. "tls"
  1480. ],
  1481. "support": {
  1482. "irc": "irc://irc.freenode.org/composer",
  1483. "issues": "https://github.com/composer/ca-bundle/issues",
  1484. "source": "https://github.com/composer/ca-bundle/tree/1.5.6"
  1485. },
  1486. "funding": [
  1487. {
  1488. "url": "https://packagist.com",
  1489. "type": "custom"
  1490. },
  1491. {
  1492. "url": "https://github.com/composer",
  1493. "type": "github"
  1494. },
  1495. {
  1496. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1497. "type": "tidelift"
  1498. }
  1499. ],
  1500. "time": "2025-03-06T14:30:56+00:00"
  1501. },
  1502. {
  1503. "name": "composer/pcre",
  1504. "version": "3.3.2",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/composer/pcre.git",
  1508. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1513. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1514. "shasum": ""
  1515. },
  1516. "require": {
  1517. "php": "^7.4 || ^8.0"
  1518. },
  1519. "conflict": {
  1520. "phpstan/phpstan": "<1.11.10"
  1521. },
  1522. "require-dev": {
  1523. "phpstan/phpstan": "^1.12 || ^2",
  1524. "phpstan/phpstan-strict-rules": "^1 || ^2",
  1525. "phpunit/phpunit": "^8 || ^9"
  1526. },
  1527. "type": "library",
  1528. "extra": {
  1529. "phpstan": {
  1530. "includes": [
  1531. "extension.neon"
  1532. ]
  1533. },
  1534. "branch-alias": {
  1535. "dev-main": "3.x-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Composer\\Pcre\\": "src"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Jordi Boggiano",
  1550. "email": "j.boggiano@seld.be",
  1551. "homepage": "http://seld.be"
  1552. }
  1553. ],
  1554. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  1555. "keywords": [
  1556. "PCRE",
  1557. "preg",
  1558. "regex",
  1559. "regular expression"
  1560. ],
  1561. "support": {
  1562. "issues": "https://github.com/composer/pcre/issues",
  1563. "source": "https://github.com/composer/pcre/tree/3.3.2"
  1564. },
  1565. "funding": [
  1566. {
  1567. "url": "https://packagist.com",
  1568. "type": "custom"
  1569. },
  1570. {
  1571. "url": "https://github.com/composer",
  1572. "type": "github"
  1573. },
  1574. {
  1575. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1576. "type": "tidelift"
  1577. }
  1578. ],
  1579. "time": "2024-11-12T16:29:46+00:00"
  1580. },
  1581. {
  1582. "name": "composer/semver",
  1583. "version": "3.4.4",
  1584. "source": {
  1585. "type": "git",
  1586. "url": "https://github.com/composer/semver.git",
  1587. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  1588. },
  1589. "dist": {
  1590. "type": "zip",
  1591. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  1592. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  1593. "shasum": ""
  1594. },
  1595. "require": {
  1596. "php": "^5.3.2 || ^7.0 || ^8.0"
  1597. },
  1598. "require-dev": {
  1599. "phpstan/phpstan": "^1.11",
  1600. "symfony/phpunit-bridge": "^3 || ^7"
  1601. },
  1602. "type": "library",
  1603. "extra": {
  1604. "branch-alias": {
  1605. "dev-main": "3.x-dev"
  1606. }
  1607. },
  1608. "autoload": {
  1609. "psr-4": {
  1610. "Composer\\Semver\\": "src"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Nils Adermann",
  1620. "email": "naderman@naderman.de",
  1621. "homepage": "http://www.naderman.de"
  1622. },
  1623. {
  1624. "name": "Jordi Boggiano",
  1625. "email": "j.boggiano@seld.be",
  1626. "homepage": "http://seld.be"
  1627. },
  1628. {
  1629. "name": "Rob Bast",
  1630. "email": "rob.bast@gmail.com",
  1631. "homepage": "http://robbast.nl"
  1632. }
  1633. ],
  1634. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1635. "keywords": [
  1636. "semantic",
  1637. "semver",
  1638. "validation",
  1639. "versioning"
  1640. ],
  1641. "support": {
  1642. "irc": "ircs://irc.libera.chat:6697/composer",
  1643. "issues": "https://github.com/composer/semver/issues",
  1644. "source": "https://github.com/composer/semver/tree/3.4.4"
  1645. },
  1646. "funding": [
  1647. {
  1648. "url": "https://packagist.com",
  1649. "type": "custom"
  1650. },
  1651. {
  1652. "url": "https://github.com/composer",
  1653. "type": "github"
  1654. }
  1655. ],
  1656. "time": "2025-08-20T19:15:30+00:00"
  1657. },
  1658. {
  1659. "name": "dflydev/dot-access-data",
  1660. "version": "v3.0.3",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1664. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1669. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "php": "^7.1 || ^8.0"
  1674. },
  1675. "require-dev": {
  1676. "phpstan/phpstan": "^0.12.42",
  1677. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1678. "scrutinizer/ocular": "1.6.0",
  1679. "squizlabs/php_codesniffer": "^3.5",
  1680. "vimeo/psalm": "^4.0.0"
  1681. },
  1682. "type": "library",
  1683. "extra": {
  1684. "branch-alias": {
  1685. "dev-main": "3.x-dev"
  1686. }
  1687. },
  1688. "autoload": {
  1689. "psr-4": {
  1690. "Dflydev\\DotAccessData\\": "src/"
  1691. }
  1692. },
  1693. "notification-url": "https://packagist.org/downloads/",
  1694. "license": [
  1695. "MIT"
  1696. ],
  1697. "authors": [
  1698. {
  1699. "name": "Dragonfly Development Inc.",
  1700. "email": "info@dflydev.com",
  1701. "homepage": "http://dflydev.com"
  1702. },
  1703. {
  1704. "name": "Beau Simensen",
  1705. "email": "beau@dflydev.com",
  1706. "homepage": "http://beausimensen.com"
  1707. },
  1708. {
  1709. "name": "Carlos Frutos",
  1710. "email": "carlos@kiwing.it",
  1711. "homepage": "https://github.com/cfrutos"
  1712. },
  1713. {
  1714. "name": "Colin O'Dell",
  1715. "email": "colinodell@gmail.com",
  1716. "homepage": "https://www.colinodell.com"
  1717. }
  1718. ],
  1719. "description": "Given a deep data structure, access data by dot notation.",
  1720. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1721. "keywords": [
  1722. "access",
  1723. "data",
  1724. "dot",
  1725. "notation"
  1726. ],
  1727. "support": {
  1728. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1729. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1730. },
  1731. "time": "2024-07-08T12:26:09+00:00"
  1732. },
  1733. {
  1734. "name": "diglactic/laravel-breadcrumbs",
  1735. "version": "v9.0.0",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/diglactic/laravel-breadcrumbs.git",
  1739. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/diglactic/laravel-breadcrumbs/zipball/88e8f01e013e811215770e27b40a74014c28f2c4",
  1744. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "facade/ignition-contracts": "^1.0",
  1749. "laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  1750. "php": "^7.3 || ^8.0"
  1751. },
  1752. "conflict": {
  1753. "davejamesmiller/laravel-breadcrumbs": "*"
  1754. },
  1755. "require-dev": {
  1756. "orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  1757. "php-coveralls/php-coveralls": "^2.7",
  1758. "phpunit/phpunit": "^9.5 || ^10.5",
  1759. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1"
  1760. },
  1761. "type": "library",
  1762. "extra": {
  1763. "laravel": {
  1764. "aliases": {
  1765. "Breadcrumbs": "Diglactic\\Breadcrumbs\\Breadcrumbs"
  1766. },
  1767. "providers": [
  1768. "Diglactic\\Breadcrumbs\\ServiceProvider"
  1769. ]
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Diglactic\\Breadcrumbs\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Sheng Slogar",
  1784. "email": "sheng@diglactic.com",
  1785. "role": "Maintainer"
  1786. },
  1787. {
  1788. "name": "Dave James Miller",
  1789. "email": "dave@davejamesmiller.com",
  1790. "role": "Original Creator"
  1791. }
  1792. ],
  1793. "description": "A simple Laravel-style way to create breadcrumbs.",
  1794. "homepage": "https://github.com/diglactic/laravel-breadcrumbs",
  1795. "keywords": [
  1796. "laravel"
  1797. ],
  1798. "support": {
  1799. "issues": "https://github.com/diglactic/laravel-breadcrumbs/issues",
  1800. "source": "https://github.com/diglactic/laravel-breadcrumbs/tree/v9.0.0"
  1801. },
  1802. "time": "2024-03-12T00:42:39+00:00"
  1803. },
  1804. {
  1805. "name": "doctrine/inflector",
  1806. "version": "2.0.10",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/doctrine/inflector.git",
  1810. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1815. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "php": "^7.2 || ^8.0"
  1820. },
  1821. "require-dev": {
  1822. "doctrine/coding-standard": "^11.0",
  1823. "phpstan/phpstan": "^1.8",
  1824. "phpstan/phpstan-phpunit": "^1.1",
  1825. "phpstan/phpstan-strict-rules": "^1.3",
  1826. "phpunit/phpunit": "^8.5 || ^9.5",
  1827. "vimeo/psalm": "^4.25 || ^5.4"
  1828. },
  1829. "type": "library",
  1830. "autoload": {
  1831. "psr-4": {
  1832. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1833. }
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Guilherme Blanco",
  1842. "email": "guilhermeblanco@gmail.com"
  1843. },
  1844. {
  1845. "name": "Roman Borschel",
  1846. "email": "roman@code-factory.org"
  1847. },
  1848. {
  1849. "name": "Benjamin Eberlei",
  1850. "email": "kontakt@beberlei.de"
  1851. },
  1852. {
  1853. "name": "Jonathan Wage",
  1854. "email": "jonwage@gmail.com"
  1855. },
  1856. {
  1857. "name": "Johannes Schmitt",
  1858. "email": "schmittjoh@gmail.com"
  1859. }
  1860. ],
  1861. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1862. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1863. "keywords": [
  1864. "inflection",
  1865. "inflector",
  1866. "lowercase",
  1867. "manipulation",
  1868. "php",
  1869. "plural",
  1870. "singular",
  1871. "strings",
  1872. "uppercase",
  1873. "words"
  1874. ],
  1875. "support": {
  1876. "issues": "https://github.com/doctrine/inflector/issues",
  1877. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1878. },
  1879. "funding": [
  1880. {
  1881. "url": "https://www.doctrine-project.org/sponsorship.html",
  1882. "type": "custom"
  1883. },
  1884. {
  1885. "url": "https://www.patreon.com/phpdoctrine",
  1886. "type": "patreon"
  1887. },
  1888. {
  1889. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1890. "type": "tidelift"
  1891. }
  1892. ],
  1893. "time": "2024-02-18T20:23:39+00:00"
  1894. },
  1895. {
  1896. "name": "doctrine/lexer",
  1897. "version": "3.0.1",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/doctrine/lexer.git",
  1901. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1906. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "php": "^8.1"
  1911. },
  1912. "require-dev": {
  1913. "doctrine/coding-standard": "^12",
  1914. "phpstan/phpstan": "^1.10",
  1915. "phpunit/phpunit": "^10.5",
  1916. "psalm/plugin-phpunit": "^0.18.3",
  1917. "vimeo/psalm": "^5.21"
  1918. },
  1919. "type": "library",
  1920. "autoload": {
  1921. "psr-4": {
  1922. "Doctrine\\Common\\Lexer\\": "src"
  1923. }
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "MIT"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Guilherme Blanco",
  1932. "email": "guilhermeblanco@gmail.com"
  1933. },
  1934. {
  1935. "name": "Roman Borschel",
  1936. "email": "roman@code-factory.org"
  1937. },
  1938. {
  1939. "name": "Johannes Schmitt",
  1940. "email": "schmittjoh@gmail.com"
  1941. }
  1942. ],
  1943. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1944. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1945. "keywords": [
  1946. "annotations",
  1947. "docblock",
  1948. "lexer",
  1949. "parser",
  1950. "php"
  1951. ],
  1952. "support": {
  1953. "issues": "https://github.com/doctrine/lexer/issues",
  1954. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1955. },
  1956. "funding": [
  1957. {
  1958. "url": "https://www.doctrine-project.org/sponsorship.html",
  1959. "type": "custom"
  1960. },
  1961. {
  1962. "url": "https://www.patreon.com/phpdoctrine",
  1963. "type": "patreon"
  1964. },
  1965. {
  1966. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1967. "type": "tidelift"
  1968. }
  1969. ],
  1970. "time": "2024-02-05T11:56:58+00:00"
  1971. },
  1972. {
  1973. "name": "dompdf/dompdf",
  1974. "version": "v2.0.8",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/dompdf/dompdf.git",
  1978. "reference": "c20247574601700e1f7c8dab39310fca1964dc52"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52",
  1983. "reference": "c20247574601700e1f7c8dab39310fca1964dc52",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "ext-dom": "*",
  1988. "ext-mbstring": "*",
  1989. "masterminds/html5": "^2.0",
  1990. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  1991. "phenx/php-svg-lib": ">=0.5.2 <1.0.0",
  1992. "php": "^7.1 || ^8.0"
  1993. },
  1994. "require-dev": {
  1995. "ext-json": "*",
  1996. "ext-zip": "*",
  1997. "mockery/mockery": "^1.3",
  1998. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1999. "squizlabs/php_codesniffer": "^3.5"
  2000. },
  2001. "suggest": {
  2002. "ext-gd": "Needed to process images",
  2003. "ext-gmagick": "Improves image processing performance",
  2004. "ext-imagick": "Improves image processing performance",
  2005. "ext-zlib": "Needed for pdf stream compression"
  2006. },
  2007. "type": "library",
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Dompdf\\": "src/"
  2011. },
  2012. "classmap": [
  2013. "lib/"
  2014. ]
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "LGPL-2.1"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "The Dompdf Community",
  2023. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  2024. }
  2025. ],
  2026. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  2027. "homepage": "https://github.com/dompdf/dompdf",
  2028. "support": {
  2029. "issues": "https://github.com/dompdf/dompdf/issues",
  2030. "source": "https://github.com/dompdf/dompdf/tree/v2.0.8"
  2031. },
  2032. "time": "2024-04-29T13:06:17+00:00"
  2033. },
  2034. {
  2035. "name": "dragonmantank/cron-expression",
  2036. "version": "v3.4.0",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/dragonmantank/cron-expression.git",
  2040. "reference": "8c784d071debd117328803d86b2097615b457500"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  2045. "reference": "8c784d071debd117328803d86b2097615b457500",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "php": "^7.2|^8.0",
  2050. "webmozart/assert": "^1.0"
  2051. },
  2052. "replace": {
  2053. "mtdowling/cron-expression": "^1.0"
  2054. },
  2055. "require-dev": {
  2056. "phpstan/extension-installer": "^1.0",
  2057. "phpstan/phpstan": "^1.0",
  2058. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2059. },
  2060. "type": "library",
  2061. "extra": {
  2062. "branch-alias": {
  2063. "dev-master": "3.x-dev"
  2064. }
  2065. },
  2066. "autoload": {
  2067. "psr-4": {
  2068. "Cron\\": "src/Cron/"
  2069. }
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Chris Tankersley",
  2078. "email": "chris@ctankersley.com",
  2079. "homepage": "https://github.com/dragonmantank"
  2080. }
  2081. ],
  2082. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2083. "keywords": [
  2084. "cron",
  2085. "schedule"
  2086. ],
  2087. "support": {
  2088. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  2089. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  2090. },
  2091. "funding": [
  2092. {
  2093. "url": "https://github.com/dragonmantank",
  2094. "type": "github"
  2095. }
  2096. ],
  2097. "time": "2024-10-09T13:47:03+00:00"
  2098. },
  2099. {
  2100. "name": "egulias/email-validator",
  2101. "version": "4.0.4",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/egulias/EmailValidator.git",
  2105. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  2110. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "doctrine/lexer": "^2.0 || ^3.0",
  2115. "php": ">=8.1",
  2116. "symfony/polyfill-intl-idn": "^1.26"
  2117. },
  2118. "require-dev": {
  2119. "phpunit/phpunit": "^10.2",
  2120. "vimeo/psalm": "^5.12"
  2121. },
  2122. "suggest": {
  2123. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "4.0.x-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "Egulias\\EmailValidator\\": "src"
  2134. }
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Eduardo Gulias Davis"
  2143. }
  2144. ],
  2145. "description": "A library for validating emails against several RFCs",
  2146. "homepage": "https://github.com/egulias/EmailValidator",
  2147. "keywords": [
  2148. "email",
  2149. "emailvalidation",
  2150. "emailvalidator",
  2151. "validation",
  2152. "validator"
  2153. ],
  2154. "support": {
  2155. "issues": "https://github.com/egulias/EmailValidator/issues",
  2156. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  2157. },
  2158. "funding": [
  2159. {
  2160. "url": "https://github.com/egulias",
  2161. "type": "github"
  2162. }
  2163. ],
  2164. "time": "2025-03-06T22:45:56+00:00"
  2165. },
  2166. {
  2167. "name": "elastic/transport",
  2168. "version": "v8.10.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/elastic/elastic-transport-php.git",
  2172. "reference": "8be37d679637545e50b1cea9f8ee903888783021"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/8be37d679637545e50b1cea9f8ee903888783021",
  2177. "reference": "8be37d679637545e50b1cea9f8ee903888783021",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "composer-runtime-api": "^2.0",
  2182. "open-telemetry/api": "^1.0",
  2183. "php": "^7.4 || ^8.0",
  2184. "php-http/discovery": "^1.14",
  2185. "php-http/httplug": "^2.3",
  2186. "psr/http-client": "^1.0",
  2187. "psr/http-factory": "^1.0",
  2188. "psr/http-message": "^1.0 || ^2.0",
  2189. "psr/log": "^1 || ^2 || ^3"
  2190. },
  2191. "require-dev": {
  2192. "nyholm/psr7": "^1.5",
  2193. "open-telemetry/sdk": "^1.0",
  2194. "php-http/mock-client": "^1.5",
  2195. "phpstan/phpstan": "^1.4",
  2196. "phpunit/phpunit": "^9.5",
  2197. "symfony/http-client": "^5.4"
  2198. },
  2199. "type": "library",
  2200. "autoload": {
  2201. "psr-4": {
  2202. "Elastic\\Transport\\": "src/"
  2203. }
  2204. },
  2205. "notification-url": "https://packagist.org/downloads/",
  2206. "license": [
  2207. "MIT"
  2208. ],
  2209. "description": "HTTP transport PHP library for Elastic products",
  2210. "keywords": [
  2211. "PSR_17",
  2212. "elastic",
  2213. "http",
  2214. "psr-18",
  2215. "psr-7",
  2216. "transport"
  2217. ],
  2218. "support": {
  2219. "issues": "https://github.com/elastic/elastic-transport-php/issues",
  2220. "source": "https://github.com/elastic/elastic-transport-php/tree/v8.10.0"
  2221. },
  2222. "time": "2024-08-14T08:55:07+00:00"
  2223. },
  2224. {
  2225. "name": "elasticsearch/elasticsearch",
  2226. "version": "v8.17.0",
  2227. "source": {
  2228. "type": "git",
  2229. "url": "https://github.com/elastic/elasticsearch-php.git",
  2230. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b"
  2231. },
  2232. "dist": {
  2233. "type": "zip",
  2234. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  2235. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  2236. "shasum": ""
  2237. },
  2238. "require": {
  2239. "elastic/transport": "^8.10",
  2240. "guzzlehttp/guzzle": "^7.0",
  2241. "php": "^7.4 || ^8.0",
  2242. "psr/http-client": "^1.0",
  2243. "psr/http-message": "^1.1 || ^2.0",
  2244. "psr/log": "^1|^2|^3"
  2245. },
  2246. "require-dev": {
  2247. "ext-yaml": "*",
  2248. "ext-zip": "*",
  2249. "mockery/mockery": "^1.5",
  2250. "nyholm/psr7": "^1.5",
  2251. "php-http/message-factory": "^1.0",
  2252. "php-http/mock-client": "^1.5",
  2253. "phpstan/phpstan": "^1.4",
  2254. "phpunit/phpunit": "^9.5",
  2255. "psr/http-factory": "^1.0",
  2256. "symfony/finder": "~4.0",
  2257. "symfony/http-client": "^5.0|^6.0|^7.0"
  2258. },
  2259. "type": "library",
  2260. "autoload": {
  2261. "psr-4": {
  2262. "Elastic\\Elasticsearch\\": "src/"
  2263. }
  2264. },
  2265. "notification-url": "https://packagist.org/downloads/",
  2266. "license": [
  2267. "MIT"
  2268. ],
  2269. "description": "PHP Client for Elasticsearch",
  2270. "keywords": [
  2271. "client",
  2272. "elastic",
  2273. "elasticsearch",
  2274. "search"
  2275. ],
  2276. "support": {
  2277. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  2278. "source": "https://github.com/elastic/elasticsearch-php/tree/v8.17.0"
  2279. },
  2280. "time": "2024-12-18T11:00:27+00:00"
  2281. },
  2282. {
  2283. "name": "enshrined/svg-sanitize",
  2284. "version": "0.22.0",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/darylldoyle/svg-sanitizer.git",
  2288. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/0afa95ea74be155a7bcd6c6fb60c276c39984500",
  2293. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500",
  2294. "shasum": ""
  2295. },
  2296. "require": {
  2297. "ext-dom": "*",
  2298. "ext-libxml": "*",
  2299. "php": "^7.1 || ^8.0"
  2300. },
  2301. "require-dev": {
  2302. "phpunit/phpunit": "^6.5 || ^8.5"
  2303. },
  2304. "type": "library",
  2305. "autoload": {
  2306. "psr-4": {
  2307. "enshrined\\svgSanitize\\": "src"
  2308. }
  2309. },
  2310. "notification-url": "https://packagist.org/downloads/",
  2311. "license": [
  2312. "GPL-2.0-or-later"
  2313. ],
  2314. "authors": [
  2315. {
  2316. "name": "Daryll Doyle",
  2317. "email": "daryll@enshrined.co.uk"
  2318. }
  2319. ],
  2320. "description": "An SVG sanitizer for PHP",
  2321. "support": {
  2322. "issues": "https://github.com/darylldoyle/svg-sanitizer/issues",
  2323. "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.22.0"
  2324. },
  2325. "time": "2025-08-12T10:13:48+00:00"
  2326. },
  2327. {
  2328. "name": "ezyang/htmlpurifier",
  2329. "version": "v4.18.0",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/ezyang/htmlpurifier.git",
  2333. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  2338. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "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"
  2343. },
  2344. "require-dev": {
  2345. "cerdic/css-tidy": "^1.7 || ^2.0",
  2346. "simpletest/simpletest": "dev-master"
  2347. },
  2348. "suggest": {
  2349. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  2350. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  2351. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  2352. "ext-tidy": "Used for pretty-printing HTML"
  2353. },
  2354. "type": "library",
  2355. "autoload": {
  2356. "files": [
  2357. "library/HTMLPurifier.composer.php"
  2358. ],
  2359. "psr-0": {
  2360. "HTMLPurifier": "library/"
  2361. },
  2362. "exclude-from-classmap": [
  2363. "/library/HTMLPurifier/Language/"
  2364. ]
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "LGPL-2.1-or-later"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Edward Z. Yang",
  2373. "email": "admin@htmlpurifier.org",
  2374. "homepage": "http://ezyang.com"
  2375. }
  2376. ],
  2377. "description": "Standards compliant HTML filter written in PHP",
  2378. "homepage": "http://htmlpurifier.org/",
  2379. "keywords": [
  2380. "html"
  2381. ],
  2382. "support": {
  2383. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  2384. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  2385. },
  2386. "time": "2024-11-01T03:51:45+00:00"
  2387. },
  2388. {
  2389. "name": "facade/ignition-contracts",
  2390. "version": "1.0.2",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/facade/ignition-contracts.git",
  2394. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  2399. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  2400. "shasum": ""
  2401. },
  2402. "require": {
  2403. "php": "^7.3|^8.0"
  2404. },
  2405. "require-dev": {
  2406. "friendsofphp/php-cs-fixer": "^v2.15.8",
  2407. "phpunit/phpunit": "^9.3.11",
  2408. "vimeo/psalm": "^3.17.1"
  2409. },
  2410. "type": "library",
  2411. "autoload": {
  2412. "psr-4": {
  2413. "Facade\\IgnitionContracts\\": "src"
  2414. }
  2415. },
  2416. "notification-url": "https://packagist.org/downloads/",
  2417. "license": [
  2418. "MIT"
  2419. ],
  2420. "authors": [
  2421. {
  2422. "name": "Freek Van der Herten",
  2423. "email": "freek@spatie.be",
  2424. "homepage": "https://flareapp.io",
  2425. "role": "Developer"
  2426. }
  2427. ],
  2428. "description": "Solution contracts for Ignition",
  2429. "homepage": "https://github.com/facade/ignition-contracts",
  2430. "keywords": [
  2431. "contracts",
  2432. "flare",
  2433. "ignition"
  2434. ],
  2435. "support": {
  2436. "issues": "https://github.com/facade/ignition-contracts/issues",
  2437. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  2438. },
  2439. "time": "2020-10-16T08:27:54+00:00"
  2440. },
  2441. {
  2442. "name": "firebase/php-jwt",
  2443. "version": "v6.11.0",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/firebase/php-jwt.git",
  2447. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2452. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": "^8.0"
  2457. },
  2458. "require-dev": {
  2459. "guzzlehttp/guzzle": "^7.4",
  2460. "phpspec/prophecy-phpunit": "^2.0",
  2461. "phpunit/phpunit": "^9.5",
  2462. "psr/cache": "^2.0||^3.0",
  2463. "psr/http-client": "^1.0",
  2464. "psr/http-factory": "^1.0"
  2465. },
  2466. "suggest": {
  2467. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2468. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2469. },
  2470. "type": "library",
  2471. "autoload": {
  2472. "psr-4": {
  2473. "Firebase\\JWT\\": "src"
  2474. }
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "BSD-3-Clause"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Neuman Vong",
  2483. "email": "neuman+pear@twilio.com",
  2484. "role": "Developer"
  2485. },
  2486. {
  2487. "name": "Anant Narayanan",
  2488. "email": "anant@php.net",
  2489. "role": "Developer"
  2490. }
  2491. ],
  2492. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2493. "homepage": "https://github.com/firebase/php-jwt",
  2494. "keywords": [
  2495. "jwt",
  2496. "php"
  2497. ],
  2498. "support": {
  2499. "issues": "https://github.com/firebase/php-jwt/issues",
  2500. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  2501. },
  2502. "time": "2025-01-23T05:11:06+00:00"
  2503. },
  2504. {
  2505. "name": "fruitcake/php-cors",
  2506. "version": "v1.3.0",
  2507. "source": {
  2508. "type": "git",
  2509. "url": "https://github.com/fruitcake/php-cors.git",
  2510. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2511. },
  2512. "dist": {
  2513. "type": "zip",
  2514. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2515. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2516. "shasum": ""
  2517. },
  2518. "require": {
  2519. "php": "^7.4|^8.0",
  2520. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2521. },
  2522. "require-dev": {
  2523. "phpstan/phpstan": "^1.4",
  2524. "phpunit/phpunit": "^9",
  2525. "squizlabs/php_codesniffer": "^3.5"
  2526. },
  2527. "type": "library",
  2528. "extra": {
  2529. "branch-alias": {
  2530. "dev-master": "1.2-dev"
  2531. }
  2532. },
  2533. "autoload": {
  2534. "psr-4": {
  2535. "Fruitcake\\Cors\\": "src/"
  2536. }
  2537. },
  2538. "notification-url": "https://packagist.org/downloads/",
  2539. "license": [
  2540. "MIT"
  2541. ],
  2542. "authors": [
  2543. {
  2544. "name": "Fruitcake",
  2545. "homepage": "https://fruitcake.nl"
  2546. },
  2547. {
  2548. "name": "Barryvdh",
  2549. "email": "barryvdh@gmail.com"
  2550. }
  2551. ],
  2552. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2553. "homepage": "https://github.com/fruitcake/php-cors",
  2554. "keywords": [
  2555. "cors",
  2556. "laravel",
  2557. "symfony"
  2558. ],
  2559. "support": {
  2560. "issues": "https://github.com/fruitcake/php-cors/issues",
  2561. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2562. },
  2563. "funding": [
  2564. {
  2565. "url": "https://fruitcake.nl",
  2566. "type": "custom"
  2567. },
  2568. {
  2569. "url": "https://github.com/barryvdh",
  2570. "type": "github"
  2571. }
  2572. ],
  2573. "time": "2023-10-12T05:21:21+00:00"
  2574. },
  2575. {
  2576. "name": "graham-campbell/result-type",
  2577. "version": "v1.1.3",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2581. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2586. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "php": "^7.2.5 || ^8.0",
  2591. "phpoption/phpoption": "^1.9.3"
  2592. },
  2593. "require-dev": {
  2594. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2595. },
  2596. "type": "library",
  2597. "autoload": {
  2598. "psr-4": {
  2599. "GrahamCampbell\\ResultType\\": "src/"
  2600. }
  2601. },
  2602. "notification-url": "https://packagist.org/downloads/",
  2603. "license": [
  2604. "MIT"
  2605. ],
  2606. "authors": [
  2607. {
  2608. "name": "Graham Campbell",
  2609. "email": "hello@gjcampbell.co.uk",
  2610. "homepage": "https://github.com/GrahamCampbell"
  2611. }
  2612. ],
  2613. "description": "An Implementation Of The Result Type",
  2614. "keywords": [
  2615. "Graham Campbell",
  2616. "GrahamCampbell",
  2617. "Result Type",
  2618. "Result-Type",
  2619. "result"
  2620. ],
  2621. "support": {
  2622. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2623. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2624. },
  2625. "funding": [
  2626. {
  2627. "url": "https://github.com/GrahamCampbell",
  2628. "type": "github"
  2629. },
  2630. {
  2631. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2632. "type": "tidelift"
  2633. }
  2634. ],
  2635. "time": "2024-07-20T21:45:45+00:00"
  2636. },
  2637. {
  2638. "name": "guzzlehttp/guzzle",
  2639. "version": "7.9.2",
  2640. "source": {
  2641. "type": "git",
  2642. "url": "https://github.com/guzzle/guzzle.git",
  2643. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2644. },
  2645. "dist": {
  2646. "type": "zip",
  2647. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2648. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2649. "shasum": ""
  2650. },
  2651. "require": {
  2652. "ext-json": "*",
  2653. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2654. "guzzlehttp/psr7": "^2.7.0",
  2655. "php": "^7.2.5 || ^8.0",
  2656. "psr/http-client": "^1.0",
  2657. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2658. },
  2659. "provide": {
  2660. "psr/http-client-implementation": "1.0"
  2661. },
  2662. "require-dev": {
  2663. "bamarni/composer-bin-plugin": "^1.8.2",
  2664. "ext-curl": "*",
  2665. "guzzle/client-integration-tests": "3.0.2",
  2666. "php-http/message-factory": "^1.1",
  2667. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2668. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2669. },
  2670. "suggest": {
  2671. "ext-curl": "Required for CURL handler support",
  2672. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2673. "psr/log": "Required for using the Log middleware"
  2674. },
  2675. "type": "library",
  2676. "extra": {
  2677. "bamarni-bin": {
  2678. "bin-links": true,
  2679. "forward-command": false
  2680. }
  2681. },
  2682. "autoload": {
  2683. "files": [
  2684. "src/functions_include.php"
  2685. ],
  2686. "psr-4": {
  2687. "GuzzleHttp\\": "src/"
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Graham Campbell",
  2697. "email": "hello@gjcampbell.co.uk",
  2698. "homepage": "https://github.com/GrahamCampbell"
  2699. },
  2700. {
  2701. "name": "Michael Dowling",
  2702. "email": "mtdowling@gmail.com",
  2703. "homepage": "https://github.com/mtdowling"
  2704. },
  2705. {
  2706. "name": "Jeremy Lindblom",
  2707. "email": "jeremeamia@gmail.com",
  2708. "homepage": "https://github.com/jeremeamia"
  2709. },
  2710. {
  2711. "name": "George Mponos",
  2712. "email": "gmponos@gmail.com",
  2713. "homepage": "https://github.com/gmponos"
  2714. },
  2715. {
  2716. "name": "Tobias Nyholm",
  2717. "email": "tobias.nyholm@gmail.com",
  2718. "homepage": "https://github.com/Nyholm"
  2719. },
  2720. {
  2721. "name": "Márk Sági-Kazár",
  2722. "email": "mark.sagikazar@gmail.com",
  2723. "homepage": "https://github.com/sagikazarmark"
  2724. },
  2725. {
  2726. "name": "Tobias Schultze",
  2727. "email": "webmaster@tubo-world.de",
  2728. "homepage": "https://github.com/Tobion"
  2729. }
  2730. ],
  2731. "description": "Guzzle is a PHP HTTP client library",
  2732. "keywords": [
  2733. "client",
  2734. "curl",
  2735. "framework",
  2736. "http",
  2737. "http client",
  2738. "psr-18",
  2739. "psr-7",
  2740. "rest",
  2741. "web service"
  2742. ],
  2743. "support": {
  2744. "issues": "https://github.com/guzzle/guzzle/issues",
  2745. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2746. },
  2747. "funding": [
  2748. {
  2749. "url": "https://github.com/GrahamCampbell",
  2750. "type": "github"
  2751. },
  2752. {
  2753. "url": "https://github.com/Nyholm",
  2754. "type": "github"
  2755. },
  2756. {
  2757. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2758. "type": "tidelift"
  2759. }
  2760. ],
  2761. "time": "2024-07-24T11:22:20+00:00"
  2762. },
  2763. {
  2764. "name": "guzzlehttp/promises",
  2765. "version": "2.0.4",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/guzzle/promises.git",
  2769. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2774. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": "^7.2.5 || ^8.0"
  2779. },
  2780. "require-dev": {
  2781. "bamarni/composer-bin-plugin": "^1.8.2",
  2782. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "bamarni-bin": {
  2787. "bin-links": true,
  2788. "forward-command": false
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "GuzzleHttp\\Promise\\": "src/"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Graham Campbell",
  2803. "email": "hello@gjcampbell.co.uk",
  2804. "homepage": "https://github.com/GrahamCampbell"
  2805. },
  2806. {
  2807. "name": "Michael Dowling",
  2808. "email": "mtdowling@gmail.com",
  2809. "homepage": "https://github.com/mtdowling"
  2810. },
  2811. {
  2812. "name": "Tobias Nyholm",
  2813. "email": "tobias.nyholm@gmail.com",
  2814. "homepage": "https://github.com/Nyholm"
  2815. },
  2816. {
  2817. "name": "Tobias Schultze",
  2818. "email": "webmaster@tubo-world.de",
  2819. "homepage": "https://github.com/Tobion"
  2820. }
  2821. ],
  2822. "description": "Guzzle promises library",
  2823. "keywords": [
  2824. "promise"
  2825. ],
  2826. "support": {
  2827. "issues": "https://github.com/guzzle/promises/issues",
  2828. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2829. },
  2830. "funding": [
  2831. {
  2832. "url": "https://github.com/GrahamCampbell",
  2833. "type": "github"
  2834. },
  2835. {
  2836. "url": "https://github.com/Nyholm",
  2837. "type": "github"
  2838. },
  2839. {
  2840. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2841. "type": "tidelift"
  2842. }
  2843. ],
  2844. "time": "2024-10-17T10:06:22+00:00"
  2845. },
  2846. {
  2847. "name": "guzzlehttp/psr7",
  2848. "version": "2.7.0",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://github.com/guzzle/psr7.git",
  2852. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2857. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2858. "shasum": ""
  2859. },
  2860. "require": {
  2861. "php": "^7.2.5 || ^8.0",
  2862. "psr/http-factory": "^1.0",
  2863. "psr/http-message": "^1.1 || ^2.0",
  2864. "ralouphie/getallheaders": "^3.0"
  2865. },
  2866. "provide": {
  2867. "psr/http-factory-implementation": "1.0",
  2868. "psr/http-message-implementation": "1.0"
  2869. },
  2870. "require-dev": {
  2871. "bamarni/composer-bin-plugin": "^1.8.2",
  2872. "http-interop/http-factory-tests": "0.9.0",
  2873. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2874. },
  2875. "suggest": {
  2876. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2877. },
  2878. "type": "library",
  2879. "extra": {
  2880. "bamarni-bin": {
  2881. "bin-links": true,
  2882. "forward-command": false
  2883. }
  2884. },
  2885. "autoload": {
  2886. "psr-4": {
  2887. "GuzzleHttp\\Psr7\\": "src/"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Graham Campbell",
  2897. "email": "hello@gjcampbell.co.uk",
  2898. "homepage": "https://github.com/GrahamCampbell"
  2899. },
  2900. {
  2901. "name": "Michael Dowling",
  2902. "email": "mtdowling@gmail.com",
  2903. "homepage": "https://github.com/mtdowling"
  2904. },
  2905. {
  2906. "name": "George Mponos",
  2907. "email": "gmponos@gmail.com",
  2908. "homepage": "https://github.com/gmponos"
  2909. },
  2910. {
  2911. "name": "Tobias Nyholm",
  2912. "email": "tobias.nyholm@gmail.com",
  2913. "homepage": "https://github.com/Nyholm"
  2914. },
  2915. {
  2916. "name": "Márk Sági-Kazár",
  2917. "email": "mark.sagikazar@gmail.com",
  2918. "homepage": "https://github.com/sagikazarmark"
  2919. },
  2920. {
  2921. "name": "Tobias Schultze",
  2922. "email": "webmaster@tubo-world.de",
  2923. "homepage": "https://github.com/Tobion"
  2924. },
  2925. {
  2926. "name": "Márk Sági-Kazár",
  2927. "email": "mark.sagikazar@gmail.com",
  2928. "homepage": "https://sagikazarmark.hu"
  2929. }
  2930. ],
  2931. "description": "PSR-7 message implementation that also provides common utility methods",
  2932. "keywords": [
  2933. "http",
  2934. "message",
  2935. "psr-7",
  2936. "request",
  2937. "response",
  2938. "stream",
  2939. "uri",
  2940. "url"
  2941. ],
  2942. "support": {
  2943. "issues": "https://github.com/guzzle/psr7/issues",
  2944. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2945. },
  2946. "funding": [
  2947. {
  2948. "url": "https://github.com/GrahamCampbell",
  2949. "type": "github"
  2950. },
  2951. {
  2952. "url": "https://github.com/Nyholm",
  2953. "type": "github"
  2954. },
  2955. {
  2956. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2957. "type": "tidelift"
  2958. }
  2959. ],
  2960. "time": "2024-07-18T11:15:46+00:00"
  2961. },
  2962. {
  2963. "name": "guzzlehttp/uri-template",
  2964. "version": "v1.0.4",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/guzzle/uri-template.git",
  2968. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  2973. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "php": "^7.2.5 || ^8.0",
  2978. "symfony/polyfill-php80": "^1.24"
  2979. },
  2980. "require-dev": {
  2981. "bamarni/composer-bin-plugin": "^1.8.2",
  2982. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2983. "uri-template/tests": "1.0.0"
  2984. },
  2985. "type": "library",
  2986. "extra": {
  2987. "bamarni-bin": {
  2988. "bin-links": true,
  2989. "forward-command": false
  2990. }
  2991. },
  2992. "autoload": {
  2993. "psr-4": {
  2994. "GuzzleHttp\\UriTemplate\\": "src"
  2995. }
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "MIT"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "Graham Campbell",
  3004. "email": "hello@gjcampbell.co.uk",
  3005. "homepage": "https://github.com/GrahamCampbell"
  3006. },
  3007. {
  3008. "name": "Michael Dowling",
  3009. "email": "mtdowling@gmail.com",
  3010. "homepage": "https://github.com/mtdowling"
  3011. },
  3012. {
  3013. "name": "George Mponos",
  3014. "email": "gmponos@gmail.com",
  3015. "homepage": "https://github.com/gmponos"
  3016. },
  3017. {
  3018. "name": "Tobias Nyholm",
  3019. "email": "tobias.nyholm@gmail.com",
  3020. "homepage": "https://github.com/Nyholm"
  3021. }
  3022. ],
  3023. "description": "A polyfill class for uri_template of PHP",
  3024. "keywords": [
  3025. "guzzlehttp",
  3026. "uri-template"
  3027. ],
  3028. "support": {
  3029. "issues": "https://github.com/guzzle/uri-template/issues",
  3030. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  3031. },
  3032. "funding": [
  3033. {
  3034. "url": "https://github.com/GrahamCampbell",
  3035. "type": "github"
  3036. },
  3037. {
  3038. "url": "https://github.com/Nyholm",
  3039. "type": "github"
  3040. },
  3041. {
  3042. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  3043. "type": "tidelift"
  3044. }
  3045. ],
  3046. "time": "2025-02-03T10:55:03+00:00"
  3047. },
  3048. {
  3049. "name": "intervention/image",
  3050. "version": "2.7.2",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://github.com/Intervention/image.git",
  3054. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  3059. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "ext-fileinfo": "*",
  3064. "guzzlehttp/psr7": "~1.1 || ^2.0",
  3065. "php": ">=5.4.0"
  3066. },
  3067. "require-dev": {
  3068. "mockery/mockery": "~0.9.2",
  3069. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  3070. },
  3071. "suggest": {
  3072. "ext-gd": "to use GD library based image processing.",
  3073. "ext-imagick": "to use Imagick based image processing.",
  3074. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3075. },
  3076. "type": "library",
  3077. "extra": {
  3078. "laravel": {
  3079. "aliases": {
  3080. "Image": "Intervention\\Image\\Facades\\Image"
  3081. },
  3082. "providers": [
  3083. "Intervention\\Image\\ImageServiceProvider"
  3084. ]
  3085. },
  3086. "branch-alias": {
  3087. "dev-master": "2.4-dev"
  3088. }
  3089. },
  3090. "autoload": {
  3091. "psr-4": {
  3092. "Intervention\\Image\\": "src/Intervention/Image"
  3093. }
  3094. },
  3095. "notification-url": "https://packagist.org/downloads/",
  3096. "license": [
  3097. "MIT"
  3098. ],
  3099. "authors": [
  3100. {
  3101. "name": "Oliver Vogel",
  3102. "email": "oliver@intervention.io",
  3103. "homepage": "https://intervention.io/"
  3104. }
  3105. ],
  3106. "description": "Image handling and manipulation library with support for Laravel integration",
  3107. "homepage": "http://image.intervention.io/",
  3108. "keywords": [
  3109. "gd",
  3110. "image",
  3111. "imagick",
  3112. "laravel",
  3113. "thumbnail",
  3114. "watermark"
  3115. ],
  3116. "support": {
  3117. "issues": "https://github.com/Intervention/image/issues",
  3118. "source": "https://github.com/Intervention/image/tree/2.7.2"
  3119. },
  3120. "funding": [
  3121. {
  3122. "url": "https://paypal.me/interventionio",
  3123. "type": "custom"
  3124. },
  3125. {
  3126. "url": "https://github.com/Intervention",
  3127. "type": "github"
  3128. }
  3129. ],
  3130. "time": "2022-05-21T17:30:32+00:00"
  3131. },
  3132. {
  3133. "name": "jaybizzle/crawler-detect",
  3134. "version": "v1.3.4",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3138. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  3143. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "php": ">=7.1.0"
  3148. },
  3149. "require-dev": {
  3150. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3151. },
  3152. "type": "library",
  3153. "autoload": {
  3154. "psr-4": {
  3155. "Jaybizzle\\CrawlerDetect\\": "src/"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "Mark Beech",
  3165. "email": "m@rkbee.ch",
  3166. "role": "Developer"
  3167. }
  3168. ],
  3169. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3170. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3171. "keywords": [
  3172. "crawler",
  3173. "crawler detect",
  3174. "crawler detector",
  3175. "crawlerdetect",
  3176. "php crawler detect"
  3177. ],
  3178. "support": {
  3179. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  3180. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.4"
  3181. },
  3182. "time": "2025-03-05T23:12:10+00:00"
  3183. },
  3184. {
  3185. "name": "kalnoy/nestedset",
  3186. "version": "v6.0.5",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  3190. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  3195. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3200. "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3201. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3202. "php": "^7.2.5|^8.0"
  3203. },
  3204. "require-dev": {
  3205. "phpunit/phpunit": "7.*|8.*|9.*|^10.5"
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "laravel": {
  3210. "providers": [
  3211. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  3212. ]
  3213. },
  3214. "branch-alias": {
  3215. "dev-master": "v5.0.x-dev"
  3216. }
  3217. },
  3218. "autoload": {
  3219. "psr-4": {
  3220. "Kalnoy\\Nestedset\\": "src/"
  3221. }
  3222. },
  3223. "notification-url": "https://packagist.org/downloads/",
  3224. "license": [
  3225. "MIT"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Alexander Kalnoy",
  3230. "email": "lazychaser@gmail.com"
  3231. }
  3232. ],
  3233. "description": "Nested Set Model for Laravel 5.7 and up",
  3234. "keywords": [
  3235. "database",
  3236. "hierarchy",
  3237. "laravel",
  3238. "nested sets",
  3239. "nsm"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/lazychaser/laravel-nestedset/issues",
  3243. "source": "https://github.com/lazychaser/laravel-nestedset/tree/v6.0.5"
  3244. },
  3245. "time": "2025-02-25T11:09:07+00:00"
  3246. },
  3247. {
  3248. "name": "khaled.alshamaa/ar-php",
  3249. "version": "v6.3.4",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/khaled-alshamaa/ar-php.git",
  3253. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/khaled-alshamaa/ar-php/zipball/36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  3258. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  3259. "shasum": ""
  3260. },
  3261. "require": {
  3262. "ext-calendar": "*",
  3263. "ext-mbstring": "*",
  3264. "php": ">=5.6.0"
  3265. },
  3266. "require-dev": {
  3267. "phpunit/phpunit": "9.*"
  3268. },
  3269. "type": "library",
  3270. "autoload": {
  3271. "psr-4": {
  3272. "ArPHP\\I18N\\": "src"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "LGPL-3.0"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Khaled Al-Sham'aa",
  3282. "email": "khaled@ar-php.org",
  3283. "homepage": "http://www.ar-php.org",
  3284. "role": "Developer"
  3285. }
  3286. ],
  3287. "description": "Set of functionalities enable Arabic website developers to serve professional search, present and process Arabic content in PHP",
  3288. "homepage": "https://github.com/khaled-alshamaa/ar-php",
  3289. "keywords": [
  3290. "arabic",
  3291. "arabic-calendar",
  3292. "arabic-glyphs",
  3293. "arabic-numbers",
  3294. "arabic-segments-identifier",
  3295. "arabic-sentiment",
  3296. "arabic-sql-query"
  3297. ],
  3298. "support": {
  3299. "issues": "https://github.com/khaled-alshamaa/ar-php/issues",
  3300. "source": "https://github.com/khaled-alshamaa/ar-php/tree/v6.3.4"
  3301. },
  3302. "funding": [
  3303. {
  3304. "url": "https://github.com/khaled-alshamaa",
  3305. "type": "github"
  3306. }
  3307. ],
  3308. "time": "2023-04-04T22:05:31+00:00"
  3309. },
  3310. {
  3311. "name": "konekt/concord",
  3312. "version": "1.16.0",
  3313. "source": {
  3314. "type": "git",
  3315. "url": "https://github.com/artkonekt/concord.git",
  3316. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c"
  3317. },
  3318. "dist": {
  3319. "type": "zip",
  3320. "url": "https://api.github.com/repos/artkonekt/concord/zipball/56d337f6ffc8534175c98b82071556a2d74f659c",
  3321. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c",
  3322. "shasum": ""
  3323. },
  3324. "require": {
  3325. "illuminate/console": "^10.0|^11.0|^12.0",
  3326. "illuminate/support": "^10.0|^11.0|^12.0",
  3327. "konekt/enum": "^2.1|^3.0|^4.0",
  3328. "konekt/enum-eloquent": "^1.7",
  3329. "php": "^8.1"
  3330. },
  3331. "require-dev": {
  3332. "orchestra/testbench": "^8.0|^9.0|^10.0",
  3333. "phpunit/phpunit": "9 - 11"
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "laravel": {
  3338. "aliases": {
  3339. "Helper": "Konekt\\Concord\\Facades\\Helper",
  3340. "Concord": "Konekt\\Concord\\Facades\\Concord"
  3341. },
  3342. "providers": [
  3343. "Konekt\\Concord\\ConcordServiceProvider"
  3344. ]
  3345. }
  3346. },
  3347. "autoload": {
  3348. "files": [
  3349. "src/Support/functions.php"
  3350. ],
  3351. "psr-4": {
  3352. "Konekt\\Concord\\": "src"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Attila Fulop",
  3362. "homepage": "https://github.com/fulopattila122"
  3363. }
  3364. ],
  3365. "description": "Concord is a Laravel Extension for building modular Laravel Applications",
  3366. "support": {
  3367. "issues": "https://github.com/artkonekt/concord",
  3368. "source": "https://github.com/artkonekt/concord/tree/1.16.0"
  3369. },
  3370. "time": "2025-03-03T11:39:09+00:00"
  3371. },
  3372. {
  3373. "name": "konekt/enum",
  3374. "version": "4.2.0",
  3375. "source": {
  3376. "type": "git",
  3377. "url": "https://github.com/artkonekt/enum.git",
  3378. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb"
  3379. },
  3380. "dist": {
  3381. "type": "zip",
  3382. "url": "https://api.github.com/repos/artkonekt/enum/zipball/e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  3383. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  3384. "shasum": ""
  3385. },
  3386. "require": {
  3387. "php": "^8.0"
  3388. },
  3389. "require-dev": {
  3390. "phpunit/phpunit": "^9.0"
  3391. },
  3392. "type": "library",
  3393. "extra": {
  3394. "branch-alias": {
  3395. "dev-master": "4.x-dev"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "psr-4": {
  3400. "Konekt\\Enum\\": "src/"
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Attila Fulop",
  3410. "homepage": "https://github.com/fulopattila122"
  3411. }
  3412. ],
  3413. "description": "SPL inspired PHP enum class implementation",
  3414. "keywords": [
  3415. "artkonekt",
  3416. "enum",
  3417. "konekt"
  3418. ],
  3419. "support": {
  3420. "issues": "https://github.com/artkonekt/enum/issues",
  3421. "source": "https://github.com/artkonekt/enum"
  3422. },
  3423. "time": "2024-02-29T15:32:06+00:00"
  3424. },
  3425. {
  3426. "name": "konekt/enum-eloquent",
  3427. "version": "1.10.0",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/artkonekt/enum-eloquent.git",
  3431. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/artkonekt/enum-eloquent/zipball/ebfbc29706c407eb98fdabd90c38501315d99ec7",
  3436. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "illuminate/database": "^8.75|9.*|10.*|11.*|12.*",
  3441. "konekt/enum": "^2.0.2 || ^3.0 | ^4.0",
  3442. "php": "^8.0"
  3443. },
  3444. "require-dev": {
  3445. "illuminate/events": "^8.75|9.*|10.*|11.*|12.*",
  3446. "phpunit/phpunit": "9 - 11"
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "laravel": {
  3451. "providers": [
  3452. "Konekt\\Enum\\Eloquent\\EnumServiceProvider"
  3453. ]
  3454. }
  3455. },
  3456. "autoload": {
  3457. "psr-4": {
  3458. "Konekt\\Enum\\Eloquent\\": "src/"
  3459. }
  3460. },
  3461. "notification-url": "https://packagist.org/downloads/",
  3462. "license": [
  3463. "MIT"
  3464. ],
  3465. "authors": [
  3466. {
  3467. "name": "Attila Fulop",
  3468. "homepage": "https://github.com/fulopattila122"
  3469. },
  3470. {
  3471. "name": "Semyon Chetvertnyh",
  3472. "homepage": "https://github.com/semyonchetvertnyh"
  3473. },
  3474. {
  3475. "name": "Mark Boessenkool",
  3476. "homepage": "https://github.com/TheM1984"
  3477. }
  3478. ],
  3479. "description": "Enum attribute casting for Eloquent models",
  3480. "keywords": [
  3481. "artkonekt",
  3482. "eloquent",
  3483. "enum",
  3484. "konekt",
  3485. "laravel"
  3486. ],
  3487. "support": {
  3488. "issues": "https://github.com/artkonekt/enum-eloquent/issues",
  3489. "source": "https://github.com/artkonekt/enum-eloquent"
  3490. },
  3491. "time": "2025-03-03T11:34:47+00:00"
  3492. },
  3493. {
  3494. "name": "laminas/laminas-diactoros",
  3495. "version": "3.5.0",
  3496. "source": {
  3497. "type": "git",
  3498. "url": "https://github.com/laminas/laminas-diactoros.git",
  3499. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  3500. },
  3501. "dist": {
  3502. "type": "zip",
  3503. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  3504. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  3505. "shasum": ""
  3506. },
  3507. "require": {
  3508. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  3509. "psr/http-factory": "^1.1",
  3510. "psr/http-message": "^1.1 || ^2.0"
  3511. },
  3512. "conflict": {
  3513. "amphp/amp": "<2.6.4"
  3514. },
  3515. "provide": {
  3516. "psr/http-factory-implementation": "^1.0",
  3517. "psr/http-message-implementation": "^1.1 || ^2.0"
  3518. },
  3519. "require-dev": {
  3520. "ext-curl": "*",
  3521. "ext-dom": "*",
  3522. "ext-gd": "*",
  3523. "ext-libxml": "*",
  3524. "http-interop/http-factory-tests": "^2.2.0",
  3525. "laminas/laminas-coding-standard": "~2.5.0",
  3526. "php-http/psr7-integration-tests": "^1.4.0",
  3527. "phpunit/phpunit": "^10.5.36",
  3528. "psalm/plugin-phpunit": "^0.19.0",
  3529. "vimeo/psalm": "^5.26.1"
  3530. },
  3531. "type": "library",
  3532. "extra": {
  3533. "laminas": {
  3534. "module": "Laminas\\Diactoros",
  3535. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "files": [
  3540. "src/functions/create_uploaded_file.php",
  3541. "src/functions/marshal_headers_from_sapi.php",
  3542. "src/functions/marshal_method_from_sapi.php",
  3543. "src/functions/marshal_protocol_version_from_sapi.php",
  3544. "src/functions/normalize_server.php",
  3545. "src/functions/normalize_uploaded_files.php",
  3546. "src/functions/parse_cookie_header.php"
  3547. ],
  3548. "psr-4": {
  3549. "Laminas\\Diactoros\\": "src/"
  3550. }
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "BSD-3-Clause"
  3555. ],
  3556. "description": "PSR HTTP Message implementations",
  3557. "homepage": "https://laminas.dev",
  3558. "keywords": [
  3559. "http",
  3560. "laminas",
  3561. "psr",
  3562. "psr-17",
  3563. "psr-7"
  3564. ],
  3565. "support": {
  3566. "chat": "https://laminas.dev/chat",
  3567. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  3568. "forum": "https://discourse.laminas.dev",
  3569. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  3570. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  3571. "source": "https://github.com/laminas/laminas-diactoros"
  3572. },
  3573. "funding": [
  3574. {
  3575. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3576. "type": "community_bridge"
  3577. }
  3578. ],
  3579. "time": "2024-10-14T11:59:49+00:00"
  3580. },
  3581. {
  3582. "name": "laravel/framework",
  3583. "version": "v11.44.2",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/laravel/framework.git",
  3587. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/laravel/framework/zipball/f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3592. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3593. "shasum": ""
  3594. },
  3595. "require": {
  3596. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3597. "composer-runtime-api": "^2.2",
  3598. "doctrine/inflector": "^2.0.5",
  3599. "dragonmantank/cron-expression": "^3.4",
  3600. "egulias/email-validator": "^3.2.1|^4.0",
  3601. "ext-ctype": "*",
  3602. "ext-filter": "*",
  3603. "ext-hash": "*",
  3604. "ext-mbstring": "*",
  3605. "ext-openssl": "*",
  3606. "ext-session": "*",
  3607. "ext-tokenizer": "*",
  3608. "fruitcake/php-cors": "^1.3",
  3609. "guzzlehttp/guzzle": "^7.8.2",
  3610. "guzzlehttp/uri-template": "^1.0",
  3611. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3612. "laravel/serializable-closure": "^1.3|^2.0",
  3613. "league/commonmark": "^2.6",
  3614. "league/flysystem": "^3.25.1",
  3615. "league/flysystem-local": "^3.25.1",
  3616. "league/uri": "^7.5.1",
  3617. "monolog/monolog": "^3.0",
  3618. "nesbot/carbon": "^2.72.6|^3.8.4",
  3619. "nunomaduro/termwind": "^2.0",
  3620. "php": "^8.2",
  3621. "psr/container": "^1.1.1|^2.0.1",
  3622. "psr/log": "^1.0|^2.0|^3.0",
  3623. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3624. "ramsey/uuid": "^4.7",
  3625. "symfony/console": "^7.0.3",
  3626. "symfony/error-handler": "^7.0.3",
  3627. "symfony/finder": "^7.0.3",
  3628. "symfony/http-foundation": "^7.2.0",
  3629. "symfony/http-kernel": "^7.0.3",
  3630. "symfony/mailer": "^7.0.3",
  3631. "symfony/mime": "^7.0.3",
  3632. "symfony/polyfill-php83": "^1.31",
  3633. "symfony/process": "^7.0.3",
  3634. "symfony/routing": "^7.0.3",
  3635. "symfony/uid": "^7.0.3",
  3636. "symfony/var-dumper": "^7.0.3",
  3637. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3638. "vlucas/phpdotenv": "^5.6.1",
  3639. "voku/portable-ascii": "^2.0.2"
  3640. },
  3641. "conflict": {
  3642. "tightenco/collect": "<5.5.33"
  3643. },
  3644. "provide": {
  3645. "psr/container-implementation": "1.1|2.0",
  3646. "psr/log-implementation": "1.0|2.0|3.0",
  3647. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3648. },
  3649. "replace": {
  3650. "illuminate/auth": "self.version",
  3651. "illuminate/broadcasting": "self.version",
  3652. "illuminate/bus": "self.version",
  3653. "illuminate/cache": "self.version",
  3654. "illuminate/collections": "self.version",
  3655. "illuminate/concurrency": "self.version",
  3656. "illuminate/conditionable": "self.version",
  3657. "illuminate/config": "self.version",
  3658. "illuminate/console": "self.version",
  3659. "illuminate/container": "self.version",
  3660. "illuminate/contracts": "self.version",
  3661. "illuminate/cookie": "self.version",
  3662. "illuminate/database": "self.version",
  3663. "illuminate/encryption": "self.version",
  3664. "illuminate/events": "self.version",
  3665. "illuminate/filesystem": "self.version",
  3666. "illuminate/hashing": "self.version",
  3667. "illuminate/http": "self.version",
  3668. "illuminate/log": "self.version",
  3669. "illuminate/macroable": "self.version",
  3670. "illuminate/mail": "self.version",
  3671. "illuminate/notifications": "self.version",
  3672. "illuminate/pagination": "self.version",
  3673. "illuminate/pipeline": "self.version",
  3674. "illuminate/process": "self.version",
  3675. "illuminate/queue": "self.version",
  3676. "illuminate/redis": "self.version",
  3677. "illuminate/routing": "self.version",
  3678. "illuminate/session": "self.version",
  3679. "illuminate/support": "self.version",
  3680. "illuminate/testing": "self.version",
  3681. "illuminate/translation": "self.version",
  3682. "illuminate/validation": "self.version",
  3683. "illuminate/view": "self.version",
  3684. "spatie/once": "*"
  3685. },
  3686. "require-dev": {
  3687. "ably/ably-php": "^1.0",
  3688. "aws/aws-sdk-php": "^3.322.9",
  3689. "ext-gmp": "*",
  3690. "fakerphp/faker": "^1.24",
  3691. "guzzlehttp/promises": "^2.0.3",
  3692. "guzzlehttp/psr7": "^2.4",
  3693. "laravel/pint": "^1.18",
  3694. "league/flysystem-aws-s3-v3": "^3.25.1",
  3695. "league/flysystem-ftp": "^3.25.1",
  3696. "league/flysystem-path-prefixing": "^3.25.1",
  3697. "league/flysystem-read-only": "^3.25.1",
  3698. "league/flysystem-sftp-v3": "^3.25.1",
  3699. "mockery/mockery": "^1.6.10",
  3700. "orchestra/testbench-core": "^9.11.2",
  3701. "pda/pheanstalk": "^5.0.6",
  3702. "php-http/discovery": "^1.15",
  3703. "phpstan/phpstan": "^2.0",
  3704. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3705. "predis/predis": "^2.3",
  3706. "resend/resend-php": "^0.10.0",
  3707. "symfony/cache": "^7.0.3",
  3708. "symfony/http-client": "^7.0.3",
  3709. "symfony/psr-http-message-bridge": "^7.0.3",
  3710. "symfony/translation": "^7.0.3"
  3711. },
  3712. "suggest": {
  3713. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3714. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3715. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3716. "ext-apcu": "Required to use the APC cache driver.",
  3717. "ext-fileinfo": "Required to use the Filesystem class.",
  3718. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3719. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3720. "ext-memcached": "Required to use the memcache cache driver.",
  3721. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3722. "ext-pdo": "Required to use all database features.",
  3723. "ext-posix": "Required to use all features of the queue worker.",
  3724. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3725. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3726. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3727. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3728. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3729. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3730. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3731. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3732. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3733. "mockery/mockery": "Required to use mocking (^1.6).",
  3734. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3735. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3736. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  3737. "predis/predis": "Required to use the predis connector (^2.3).",
  3738. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3739. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3740. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3741. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3742. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3743. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3744. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3745. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3746. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3747. },
  3748. "type": "library",
  3749. "extra": {
  3750. "branch-alias": {
  3751. "dev-master": "11.x-dev"
  3752. }
  3753. },
  3754. "autoload": {
  3755. "files": [
  3756. "src/Illuminate/Collections/functions.php",
  3757. "src/Illuminate/Collections/helpers.php",
  3758. "src/Illuminate/Events/functions.php",
  3759. "src/Illuminate/Filesystem/functions.php",
  3760. "src/Illuminate/Foundation/helpers.php",
  3761. "src/Illuminate/Log/functions.php",
  3762. "src/Illuminate/Support/functions.php",
  3763. "src/Illuminate/Support/helpers.php"
  3764. ],
  3765. "psr-4": {
  3766. "Illuminate\\": "src/Illuminate/",
  3767. "Illuminate\\Support\\": [
  3768. "src/Illuminate/Macroable/",
  3769. "src/Illuminate/Collections/",
  3770. "src/Illuminate/Conditionable/"
  3771. ]
  3772. }
  3773. },
  3774. "notification-url": "https://packagist.org/downloads/",
  3775. "license": [
  3776. "MIT"
  3777. ],
  3778. "authors": [
  3779. {
  3780. "name": "Taylor Otwell",
  3781. "email": "taylor@laravel.com"
  3782. }
  3783. ],
  3784. "description": "The Laravel Framework.",
  3785. "homepage": "https://laravel.com",
  3786. "keywords": [
  3787. "framework",
  3788. "laravel"
  3789. ],
  3790. "support": {
  3791. "issues": "https://github.com/laravel/framework/issues",
  3792. "source": "https://github.com/laravel/framework"
  3793. },
  3794. "time": "2025-03-12T14:34:30+00:00"
  3795. },
  3796. {
  3797. "name": "laravel/octane",
  3798. "version": "v2.8.2",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/laravel/octane.git",
  3802. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/laravel/octane/zipball/74fef270e9f7d2dfbfd8f272de81aac839942c29",
  3807. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29",
  3808. "shasum": ""
  3809. },
  3810. "require": {
  3811. "laminas/laminas-diactoros": "^3.0",
  3812. "laravel/framework": "^10.10.1|^11.0|^12.0",
  3813. "laravel/prompts": "^0.1.24|^0.2.0|^0.3.0",
  3814. "laravel/serializable-closure": "^1.3|^2.0",
  3815. "nesbot/carbon": "^2.66.0|^3.0",
  3816. "php": "^8.1.0",
  3817. "symfony/console": "^6.0|^7.0",
  3818. "symfony/psr-http-message-bridge": "^2.2.0|^6.4|^7.0"
  3819. },
  3820. "conflict": {
  3821. "spiral/roadrunner": "<2023.1.0",
  3822. "spiral/roadrunner-cli": "<2.6.0",
  3823. "spiral/roadrunner-http": "<3.3.0"
  3824. },
  3825. "require-dev": {
  3826. "guzzlehttp/guzzle": "^7.6.1",
  3827. "inertiajs/inertia-laravel": "^1.3.2|^2.0",
  3828. "laravel/scout": "^10.2.1",
  3829. "laravel/socialite": "^5.6.1",
  3830. "livewire/livewire": "^2.12.3|^3.0",
  3831. "mockery/mockery": "^1.5.1",
  3832. "nunomaduro/collision": "^6.4.0|^7.5.2|^8.0",
  3833. "orchestra/testbench": "^8.21|^9.0|^10.0",
  3834. "phpstan/phpstan": "^2.1.7",
  3835. "phpunit/phpunit": "^10.4|^11.5",
  3836. "spiral/roadrunner-cli": "^2.6.0",
  3837. "spiral/roadrunner-http": "^3.3.0"
  3838. },
  3839. "bin": [
  3840. "bin/roadrunner-worker",
  3841. "bin/swoole-server"
  3842. ],
  3843. "type": "library",
  3844. "extra": {
  3845. "laravel": {
  3846. "aliases": {
  3847. "Octane": "Laravel\\Octane\\Facades\\Octane"
  3848. },
  3849. "providers": [
  3850. "Laravel\\Octane\\OctaneServiceProvider"
  3851. ]
  3852. },
  3853. "branch-alias": {
  3854. "dev-master": "2.x-dev"
  3855. }
  3856. },
  3857. "autoload": {
  3858. "psr-4": {
  3859. "Laravel\\Octane\\": "src"
  3860. }
  3861. },
  3862. "notification-url": "https://packagist.org/downloads/",
  3863. "license": [
  3864. "MIT"
  3865. ],
  3866. "authors": [
  3867. {
  3868. "name": "Taylor Otwell",
  3869. "email": "taylor@laravel.com"
  3870. }
  3871. ],
  3872. "description": "Supercharge your Laravel application's performance.",
  3873. "keywords": [
  3874. "frankenphp",
  3875. "laravel",
  3876. "octane",
  3877. "roadrunner",
  3878. "swoole"
  3879. ],
  3880. "support": {
  3881. "issues": "https://github.com/laravel/octane/issues",
  3882. "source": "https://github.com/laravel/octane"
  3883. },
  3884. "time": "2025-03-12T14:26:35+00:00"
  3885. },
  3886. {
  3887. "name": "laravel/prompts",
  3888. "version": "v0.3.5",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/laravel/prompts.git",
  3892. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  3897. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  3898. "shasum": ""
  3899. },
  3900. "require": {
  3901. "composer-runtime-api": "^2.2",
  3902. "ext-mbstring": "*",
  3903. "php": "^8.1",
  3904. "symfony/console": "^6.2|^7.0"
  3905. },
  3906. "conflict": {
  3907. "illuminate/console": ">=10.17.0 <10.25.0",
  3908. "laravel/framework": ">=10.17.0 <10.25.0"
  3909. },
  3910. "require-dev": {
  3911. "illuminate/collections": "^10.0|^11.0|^12.0",
  3912. "mockery/mockery": "^1.5",
  3913. "pestphp/pest": "^2.3|^3.4",
  3914. "phpstan/phpstan": "^1.11",
  3915. "phpstan/phpstan-mockery": "^1.1"
  3916. },
  3917. "suggest": {
  3918. "ext-pcntl": "Required for the spinner to be animated."
  3919. },
  3920. "type": "library",
  3921. "extra": {
  3922. "branch-alias": {
  3923. "dev-main": "0.3.x-dev"
  3924. }
  3925. },
  3926. "autoload": {
  3927. "files": [
  3928. "src/helpers.php"
  3929. ],
  3930. "psr-4": {
  3931. "Laravel\\Prompts\\": "src/"
  3932. }
  3933. },
  3934. "notification-url": "https://packagist.org/downloads/",
  3935. "license": [
  3936. "MIT"
  3937. ],
  3938. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3939. "support": {
  3940. "issues": "https://github.com/laravel/prompts/issues",
  3941. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  3942. },
  3943. "time": "2025-02-11T13:34:40+00:00"
  3944. },
  3945. {
  3946. "name": "laravel/sanctum",
  3947. "version": "v4.0.8",
  3948. "source": {
  3949. "type": "git",
  3950. "url": "https://github.com/laravel/sanctum.git",
  3951. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  3952. },
  3953. "dist": {
  3954. "type": "zip",
  3955. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3956. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3957. "shasum": ""
  3958. },
  3959. "require": {
  3960. "ext-json": "*",
  3961. "illuminate/console": "^11.0|^12.0",
  3962. "illuminate/contracts": "^11.0|^12.0",
  3963. "illuminate/database": "^11.0|^12.0",
  3964. "illuminate/support": "^11.0|^12.0",
  3965. "php": "^8.2",
  3966. "symfony/console": "^7.0"
  3967. },
  3968. "require-dev": {
  3969. "mockery/mockery": "^1.6",
  3970. "orchestra/testbench": "^9.0|^10.0",
  3971. "phpstan/phpstan": "^1.10",
  3972. "phpunit/phpunit": "^11.3"
  3973. },
  3974. "type": "library",
  3975. "extra": {
  3976. "laravel": {
  3977. "providers": [
  3978. "Laravel\\Sanctum\\SanctumServiceProvider"
  3979. ]
  3980. }
  3981. },
  3982. "autoload": {
  3983. "psr-4": {
  3984. "Laravel\\Sanctum\\": "src/"
  3985. }
  3986. },
  3987. "notification-url": "https://packagist.org/downloads/",
  3988. "license": [
  3989. "MIT"
  3990. ],
  3991. "authors": [
  3992. {
  3993. "name": "Taylor Otwell",
  3994. "email": "taylor@laravel.com"
  3995. }
  3996. ],
  3997. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3998. "keywords": [
  3999. "auth",
  4000. "laravel",
  4001. "sanctum"
  4002. ],
  4003. "support": {
  4004. "issues": "https://github.com/laravel/sanctum/issues",
  4005. "source": "https://github.com/laravel/sanctum"
  4006. },
  4007. "time": "2025-01-26T19:34:36+00:00"
  4008. },
  4009. {
  4010. "name": "laravel/serializable-closure",
  4011. "version": "v2.0.3",
  4012. "source": {
  4013. "type": "git",
  4014. "url": "https://github.com/laravel/serializable-closure.git",
  4015. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f"
  4016. },
  4017. "dist": {
  4018. "type": "zip",
  4019. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f",
  4020. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f",
  4021. "shasum": ""
  4022. },
  4023. "require": {
  4024. "php": "^8.1"
  4025. },
  4026. "require-dev": {
  4027. "illuminate/support": "^10.0|^11.0|^12.0",
  4028. "nesbot/carbon": "^2.67|^3.0",
  4029. "pestphp/pest": "^2.36|^3.0",
  4030. "phpstan/phpstan": "^2.0",
  4031. "symfony/var-dumper": "^6.2.0|^7.0.0"
  4032. },
  4033. "type": "library",
  4034. "extra": {
  4035. "branch-alias": {
  4036. "dev-master": "2.x-dev"
  4037. }
  4038. },
  4039. "autoload": {
  4040. "psr-4": {
  4041. "Laravel\\SerializableClosure\\": "src/"
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "Taylor Otwell",
  4051. "email": "taylor@laravel.com"
  4052. },
  4053. {
  4054. "name": "Nuno Maduro",
  4055. "email": "nuno@laravel.com"
  4056. }
  4057. ],
  4058. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  4059. "keywords": [
  4060. "closure",
  4061. "laravel",
  4062. "serializable"
  4063. ],
  4064. "support": {
  4065. "issues": "https://github.com/laravel/serializable-closure/issues",
  4066. "source": "https://github.com/laravel/serializable-closure"
  4067. },
  4068. "time": "2025-02-11T15:03:05+00:00"
  4069. },
  4070. {
  4071. "name": "laravel/socialite",
  4072. "version": "v5.18.0",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://github.com/laravel/socialite.git",
  4076. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://api.github.com/repos/laravel/socialite/zipball/7809dc71250e074cd42970f0f803f2cddc04c5de",
  4081. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de",
  4082. "shasum": ""
  4083. },
  4084. "require": {
  4085. "ext-json": "*",
  4086. "firebase/php-jwt": "^6.4",
  4087. "guzzlehttp/guzzle": "^6.0|^7.0",
  4088. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4089. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4090. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4091. "league/oauth1-client": "^1.11",
  4092. "php": "^7.2|^8.0",
  4093. "phpseclib/phpseclib": "^3.0"
  4094. },
  4095. "require-dev": {
  4096. "mockery/mockery": "^1.0",
  4097. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  4098. "phpstan/phpstan": "^1.10",
  4099. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "laravel": {
  4104. "aliases": {
  4105. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  4106. },
  4107. "providers": [
  4108. "Laravel\\Socialite\\SocialiteServiceProvider"
  4109. ]
  4110. },
  4111. "branch-alias": {
  4112. "dev-master": "5.x-dev"
  4113. }
  4114. },
  4115. "autoload": {
  4116. "psr-4": {
  4117. "Laravel\\Socialite\\": "src/"
  4118. }
  4119. },
  4120. "notification-url": "https://packagist.org/downloads/",
  4121. "license": [
  4122. "MIT"
  4123. ],
  4124. "authors": [
  4125. {
  4126. "name": "Taylor Otwell",
  4127. "email": "taylor@laravel.com"
  4128. }
  4129. ],
  4130. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  4131. "homepage": "https://laravel.com",
  4132. "keywords": [
  4133. "laravel",
  4134. "oauth"
  4135. ],
  4136. "support": {
  4137. "issues": "https://github.com/laravel/socialite/issues",
  4138. "source": "https://github.com/laravel/socialite"
  4139. },
  4140. "time": "2025-02-11T13:38:19+00:00"
  4141. },
  4142. {
  4143. "name": "laravel/tinker",
  4144. "version": "v2.10.1",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://github.com/laravel/tinker.git",
  4148. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  4153. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  4154. "shasum": ""
  4155. },
  4156. "require": {
  4157. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4158. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4159. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4160. "php": "^7.2.5|^8.0",
  4161. "psy/psysh": "^0.11.1|^0.12.0",
  4162. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  4163. },
  4164. "require-dev": {
  4165. "mockery/mockery": "~1.3.3|^1.4.2",
  4166. "phpstan/phpstan": "^1.10",
  4167. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  4168. },
  4169. "suggest": {
  4170. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  4171. },
  4172. "type": "library",
  4173. "extra": {
  4174. "laravel": {
  4175. "providers": [
  4176. "Laravel\\Tinker\\TinkerServiceProvider"
  4177. ]
  4178. }
  4179. },
  4180. "autoload": {
  4181. "psr-4": {
  4182. "Laravel\\Tinker\\": "src/"
  4183. }
  4184. },
  4185. "notification-url": "https://packagist.org/downloads/",
  4186. "license": [
  4187. "MIT"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Taylor Otwell",
  4192. "email": "taylor@laravel.com"
  4193. }
  4194. ],
  4195. "description": "Powerful REPL for the Laravel framework.",
  4196. "keywords": [
  4197. "REPL",
  4198. "Tinker",
  4199. "laravel",
  4200. "psysh"
  4201. ],
  4202. "support": {
  4203. "issues": "https://github.com/laravel/tinker/issues",
  4204. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  4205. },
  4206. "time": "2025-01-27T14:24:01+00:00"
  4207. },
  4208. {
  4209. "name": "laravel/ui",
  4210. "version": "v4.6.1",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/laravel/ui.git",
  4214. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  4219. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
  4224. "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
  4225. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  4226. "illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
  4227. "php": "^8.0",
  4228. "symfony/console": "^6.0|^7.0"
  4229. },
  4230. "require-dev": {
  4231. "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
  4232. "phpunit/phpunit": "^9.3|^10.4|^11.5"
  4233. },
  4234. "type": "library",
  4235. "extra": {
  4236. "laravel": {
  4237. "providers": [
  4238. "Laravel\\Ui\\UiServiceProvider"
  4239. ]
  4240. },
  4241. "branch-alias": {
  4242. "dev-master": "4.x-dev"
  4243. }
  4244. },
  4245. "autoload": {
  4246. "psr-4": {
  4247. "Laravel\\Ui\\": "src/",
  4248. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  4249. }
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "MIT"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "Taylor Otwell",
  4258. "email": "taylor@laravel.com"
  4259. }
  4260. ],
  4261. "description": "Laravel UI utilities and presets.",
  4262. "keywords": [
  4263. "laravel",
  4264. "ui"
  4265. ],
  4266. "support": {
  4267. "source": "https://github.com/laravel/ui/tree/v4.6.1"
  4268. },
  4269. "time": "2025-01-28T15:15:29+00:00"
  4270. },
  4271. {
  4272. "name": "league/commonmark",
  4273. "version": "2.7.0",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://github.com/thephpleague/commonmark.git",
  4277. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  4282. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  4283. "shasum": ""
  4284. },
  4285. "require": {
  4286. "ext-mbstring": "*",
  4287. "league/config": "^1.1.1",
  4288. "php": "^7.4 || ^8.0",
  4289. "psr/event-dispatcher": "^1.0",
  4290. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  4291. "symfony/polyfill-php80": "^1.16"
  4292. },
  4293. "require-dev": {
  4294. "cebe/markdown": "^1.0",
  4295. "commonmark/cmark": "0.31.1",
  4296. "commonmark/commonmark.js": "0.31.1",
  4297. "composer/package-versions-deprecated": "^1.8",
  4298. "embed/embed": "^4.4",
  4299. "erusev/parsedown": "^1.0",
  4300. "ext-json": "*",
  4301. "github/gfm": "0.29.0",
  4302. "michelf/php-markdown": "^1.4 || ^2.0",
  4303. "nyholm/psr7": "^1.5",
  4304. "phpstan/phpstan": "^1.8.2",
  4305. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  4306. "scrutinizer/ocular": "^1.8.1",
  4307. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  4308. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  4309. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  4310. "unleashedtech/php-coding-standard": "^3.1.1",
  4311. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  4312. },
  4313. "suggest": {
  4314. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-main": "2.8-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "psr-4": {
  4324. "League\\CommonMark\\": "src"
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "BSD-3-Clause"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Colin O'Dell",
  4334. "email": "colinodell@gmail.com",
  4335. "homepage": "https://www.colinodell.com",
  4336. "role": "Lead Developer"
  4337. }
  4338. ],
  4339. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  4340. "homepage": "https://commonmark.thephpleague.com",
  4341. "keywords": [
  4342. "commonmark",
  4343. "flavored",
  4344. "gfm",
  4345. "github",
  4346. "github-flavored",
  4347. "markdown",
  4348. "md",
  4349. "parser"
  4350. ],
  4351. "support": {
  4352. "docs": "https://commonmark.thephpleague.com/",
  4353. "forum": "https://github.com/thephpleague/commonmark/discussions",
  4354. "issues": "https://github.com/thephpleague/commonmark/issues",
  4355. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  4356. "source": "https://github.com/thephpleague/commonmark"
  4357. },
  4358. "funding": [
  4359. {
  4360. "url": "https://www.colinodell.com/sponsor",
  4361. "type": "custom"
  4362. },
  4363. {
  4364. "url": "https://www.paypal.me/colinpodell/10.00",
  4365. "type": "custom"
  4366. },
  4367. {
  4368. "url": "https://github.com/colinodell",
  4369. "type": "github"
  4370. },
  4371. {
  4372. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  4373. "type": "tidelift"
  4374. }
  4375. ],
  4376. "time": "2025-05-05T12:20:28+00:00"
  4377. },
  4378. {
  4379. "name": "league/config",
  4380. "version": "v1.2.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/thephpleague/config.git",
  4384. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  4389. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  4390. "shasum": ""
  4391. },
  4392. "require": {
  4393. "dflydev/dot-access-data": "^3.0.1",
  4394. "nette/schema": "^1.2",
  4395. "php": "^7.4 || ^8.0"
  4396. },
  4397. "require-dev": {
  4398. "phpstan/phpstan": "^1.8.2",
  4399. "phpunit/phpunit": "^9.5.5",
  4400. "scrutinizer/ocular": "^1.8.1",
  4401. "unleashedtech/php-coding-standard": "^3.1",
  4402. "vimeo/psalm": "^4.7.3"
  4403. },
  4404. "type": "library",
  4405. "extra": {
  4406. "branch-alias": {
  4407. "dev-main": "1.2-dev"
  4408. }
  4409. },
  4410. "autoload": {
  4411. "psr-4": {
  4412. "League\\Config\\": "src"
  4413. }
  4414. },
  4415. "notification-url": "https://packagist.org/downloads/",
  4416. "license": [
  4417. "BSD-3-Clause"
  4418. ],
  4419. "authors": [
  4420. {
  4421. "name": "Colin O'Dell",
  4422. "email": "colinodell@gmail.com",
  4423. "homepage": "https://www.colinodell.com",
  4424. "role": "Lead Developer"
  4425. }
  4426. ],
  4427. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  4428. "homepage": "https://config.thephpleague.com",
  4429. "keywords": [
  4430. "array",
  4431. "config",
  4432. "configuration",
  4433. "dot",
  4434. "dot-access",
  4435. "nested",
  4436. "schema"
  4437. ],
  4438. "support": {
  4439. "docs": "https://config.thephpleague.com/",
  4440. "issues": "https://github.com/thephpleague/config/issues",
  4441. "rss": "https://github.com/thephpleague/config/releases.atom",
  4442. "source": "https://github.com/thephpleague/config"
  4443. },
  4444. "funding": [
  4445. {
  4446. "url": "https://www.colinodell.com/sponsor",
  4447. "type": "custom"
  4448. },
  4449. {
  4450. "url": "https://www.paypal.me/colinpodell/10.00",
  4451. "type": "custom"
  4452. },
  4453. {
  4454. "url": "https://github.com/colinodell",
  4455. "type": "github"
  4456. }
  4457. ],
  4458. "time": "2022-12-11T20:36:23+00:00"
  4459. },
  4460. {
  4461. "name": "league/flysystem",
  4462. "version": "3.29.1",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://github.com/thephpleague/flysystem.git",
  4466. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  4471. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  4472. "shasum": ""
  4473. },
  4474. "require": {
  4475. "league/flysystem-local": "^3.0.0",
  4476. "league/mime-type-detection": "^1.0.0",
  4477. "php": "^8.0.2"
  4478. },
  4479. "conflict": {
  4480. "async-aws/core": "<1.19.0",
  4481. "async-aws/s3": "<1.14.0",
  4482. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  4483. "guzzlehttp/guzzle": "<7.0",
  4484. "guzzlehttp/ringphp": "<1.1.1",
  4485. "phpseclib/phpseclib": "3.0.15",
  4486. "symfony/http-client": "<5.2"
  4487. },
  4488. "require-dev": {
  4489. "async-aws/s3": "^1.5 || ^2.0",
  4490. "async-aws/simple-s3": "^1.1 || ^2.0",
  4491. "aws/aws-sdk-php": "^3.295.10",
  4492. "composer/semver": "^3.0",
  4493. "ext-fileinfo": "*",
  4494. "ext-ftp": "*",
  4495. "ext-mongodb": "^1.3",
  4496. "ext-zip": "*",
  4497. "friendsofphp/php-cs-fixer": "^3.5",
  4498. "google/cloud-storage": "^1.23",
  4499. "guzzlehttp/psr7": "^2.6",
  4500. "microsoft/azure-storage-blob": "^1.1",
  4501. "mongodb/mongodb": "^1.2",
  4502. "phpseclib/phpseclib": "^3.0.36",
  4503. "phpstan/phpstan": "^1.10",
  4504. "phpunit/phpunit": "^9.5.11|^10.0",
  4505. "sabre/dav": "^4.6.0"
  4506. },
  4507. "type": "library",
  4508. "autoload": {
  4509. "psr-4": {
  4510. "League\\Flysystem\\": "src"
  4511. }
  4512. },
  4513. "notification-url": "https://packagist.org/downloads/",
  4514. "license": [
  4515. "MIT"
  4516. ],
  4517. "authors": [
  4518. {
  4519. "name": "Frank de Jonge",
  4520. "email": "info@frankdejonge.nl"
  4521. }
  4522. ],
  4523. "description": "File storage abstraction for PHP",
  4524. "keywords": [
  4525. "WebDAV",
  4526. "aws",
  4527. "cloud",
  4528. "file",
  4529. "files",
  4530. "filesystem",
  4531. "filesystems",
  4532. "ftp",
  4533. "s3",
  4534. "sftp",
  4535. "storage"
  4536. ],
  4537. "support": {
  4538. "issues": "https://github.com/thephpleague/flysystem/issues",
  4539. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  4540. },
  4541. "time": "2024-10-08T08:58:34+00:00"
  4542. },
  4543. {
  4544. "name": "league/flysystem-local",
  4545. "version": "3.29.0",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://github.com/thephpleague/flysystem-local.git",
  4549. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4554. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4555. "shasum": ""
  4556. },
  4557. "require": {
  4558. "ext-fileinfo": "*",
  4559. "league/flysystem": "^3.0.0",
  4560. "league/mime-type-detection": "^1.0.0",
  4561. "php": "^8.0.2"
  4562. },
  4563. "type": "library",
  4564. "autoload": {
  4565. "psr-4": {
  4566. "League\\Flysystem\\Local\\": ""
  4567. }
  4568. },
  4569. "notification-url": "https://packagist.org/downloads/",
  4570. "license": [
  4571. "MIT"
  4572. ],
  4573. "authors": [
  4574. {
  4575. "name": "Frank de Jonge",
  4576. "email": "info@frankdejonge.nl"
  4577. }
  4578. ],
  4579. "description": "Local filesystem adapter for Flysystem.",
  4580. "keywords": [
  4581. "Flysystem",
  4582. "file",
  4583. "files",
  4584. "filesystem",
  4585. "local"
  4586. ],
  4587. "support": {
  4588. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  4589. },
  4590. "time": "2024-08-09T21:24:39+00:00"
  4591. },
  4592. {
  4593. "name": "league/mime-type-detection",
  4594. "version": "1.16.0",
  4595. "source": {
  4596. "type": "git",
  4597. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4598. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4599. },
  4600. "dist": {
  4601. "type": "zip",
  4602. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4603. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4604. "shasum": ""
  4605. },
  4606. "require": {
  4607. "ext-fileinfo": "*",
  4608. "php": "^7.4 || ^8.0"
  4609. },
  4610. "require-dev": {
  4611. "friendsofphp/php-cs-fixer": "^3.2",
  4612. "phpstan/phpstan": "^0.12.68",
  4613. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4614. },
  4615. "type": "library",
  4616. "autoload": {
  4617. "psr-4": {
  4618. "League\\MimeTypeDetection\\": "src"
  4619. }
  4620. },
  4621. "notification-url": "https://packagist.org/downloads/",
  4622. "license": [
  4623. "MIT"
  4624. ],
  4625. "authors": [
  4626. {
  4627. "name": "Frank de Jonge",
  4628. "email": "info@frankdejonge.nl"
  4629. }
  4630. ],
  4631. "description": "Mime-type detection for Flysystem",
  4632. "support": {
  4633. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4634. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4635. },
  4636. "funding": [
  4637. {
  4638. "url": "https://github.com/frankdejonge",
  4639. "type": "github"
  4640. },
  4641. {
  4642. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4643. "type": "tidelift"
  4644. }
  4645. ],
  4646. "time": "2024-09-21T08:32:55+00:00"
  4647. },
  4648. {
  4649. "name": "league/oauth1-client",
  4650. "version": "v1.11.0",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/thephpleague/oauth1-client.git",
  4654. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4659. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4660. "shasum": ""
  4661. },
  4662. "require": {
  4663. "ext-json": "*",
  4664. "ext-openssl": "*",
  4665. "guzzlehttp/guzzle": "^6.0|^7.0",
  4666. "guzzlehttp/psr7": "^1.7|^2.0",
  4667. "php": ">=7.1||>=8.0"
  4668. },
  4669. "require-dev": {
  4670. "ext-simplexml": "*",
  4671. "friendsofphp/php-cs-fixer": "^2.17",
  4672. "mockery/mockery": "^1.3.3",
  4673. "phpstan/phpstan": "^0.12.42",
  4674. "phpunit/phpunit": "^7.5||9.5"
  4675. },
  4676. "suggest": {
  4677. "ext-simplexml": "For decoding XML-based responses."
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "1.0-dev",
  4683. "dev-develop": "2.0-dev"
  4684. }
  4685. },
  4686. "autoload": {
  4687. "psr-4": {
  4688. "League\\OAuth1\\Client\\": "src/"
  4689. }
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Ben Corlett",
  4698. "email": "bencorlett@me.com",
  4699. "homepage": "http://www.webcomm.com.au",
  4700. "role": "Developer"
  4701. }
  4702. ],
  4703. "description": "OAuth 1.0 Client Library",
  4704. "keywords": [
  4705. "Authentication",
  4706. "SSO",
  4707. "authorization",
  4708. "bitbucket",
  4709. "identity",
  4710. "idp",
  4711. "oauth",
  4712. "oauth1",
  4713. "single sign on",
  4714. "trello",
  4715. "tumblr",
  4716. "twitter"
  4717. ],
  4718. "support": {
  4719. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4720. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4721. },
  4722. "time": "2024-12-10T19:59:05+00:00"
  4723. },
  4724. {
  4725. "name": "league/uri",
  4726. "version": "7.5.1",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/thephpleague/uri.git",
  4730. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4735. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "league/uri-interfaces": "^7.5",
  4740. "php": "^8.1"
  4741. },
  4742. "conflict": {
  4743. "league/uri-schemes": "^1.0"
  4744. },
  4745. "suggest": {
  4746. "ext-bcmath": "to improve IPV4 host parsing",
  4747. "ext-fileinfo": "to create Data URI from file contennts",
  4748. "ext-gmp": "to improve IPV4 host parsing",
  4749. "ext-intl": "to handle IDN host with the best performance",
  4750. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4751. "league/uri-components": "Needed to easily manipulate URI objects components",
  4752. "php-64bit": "to improve IPV4 host parsing",
  4753. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4754. },
  4755. "type": "library",
  4756. "extra": {
  4757. "branch-alias": {
  4758. "dev-master": "7.x-dev"
  4759. }
  4760. },
  4761. "autoload": {
  4762. "psr-4": {
  4763. "League\\Uri\\": ""
  4764. }
  4765. },
  4766. "notification-url": "https://packagist.org/downloads/",
  4767. "license": [
  4768. "MIT"
  4769. ],
  4770. "authors": [
  4771. {
  4772. "name": "Ignace Nyamagana Butera",
  4773. "email": "nyamsprod@gmail.com",
  4774. "homepage": "https://nyamsprod.com"
  4775. }
  4776. ],
  4777. "description": "URI manipulation library",
  4778. "homepage": "https://uri.thephpleague.com",
  4779. "keywords": [
  4780. "data-uri",
  4781. "file-uri",
  4782. "ftp",
  4783. "hostname",
  4784. "http",
  4785. "https",
  4786. "middleware",
  4787. "parse_str",
  4788. "parse_url",
  4789. "psr-7",
  4790. "query-string",
  4791. "querystring",
  4792. "rfc3986",
  4793. "rfc3987",
  4794. "rfc6570",
  4795. "uri",
  4796. "uri-template",
  4797. "url",
  4798. "ws"
  4799. ],
  4800. "support": {
  4801. "docs": "https://uri.thephpleague.com",
  4802. "forum": "https://thephpleague.slack.com",
  4803. "issues": "https://github.com/thephpleague/uri-src/issues",
  4804. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://github.com/sponsors/nyamsprod",
  4809. "type": "github"
  4810. }
  4811. ],
  4812. "time": "2024-12-08T08:40:02+00:00"
  4813. },
  4814. {
  4815. "name": "league/uri-interfaces",
  4816. "version": "7.5.0",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4820. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4825. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4826. "shasum": ""
  4827. },
  4828. "require": {
  4829. "ext-filter": "*",
  4830. "php": "^8.1",
  4831. "psr/http-factory": "^1",
  4832. "psr/http-message": "^1.1 || ^2.0"
  4833. },
  4834. "suggest": {
  4835. "ext-bcmath": "to improve IPV4 host parsing",
  4836. "ext-gmp": "to improve IPV4 host parsing",
  4837. "ext-intl": "to handle IDN host with the best performance",
  4838. "php-64bit": "to improve IPV4 host parsing",
  4839. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4840. },
  4841. "type": "library",
  4842. "extra": {
  4843. "branch-alias": {
  4844. "dev-master": "7.x-dev"
  4845. }
  4846. },
  4847. "autoload": {
  4848. "psr-4": {
  4849. "League\\Uri\\": ""
  4850. }
  4851. },
  4852. "notification-url": "https://packagist.org/downloads/",
  4853. "license": [
  4854. "MIT"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Ignace Nyamagana Butera",
  4859. "email": "nyamsprod@gmail.com",
  4860. "homepage": "https://nyamsprod.com"
  4861. }
  4862. ],
  4863. "description": "Common interfaces and classes for URI representation and interaction",
  4864. "homepage": "https://uri.thephpleague.com",
  4865. "keywords": [
  4866. "data-uri",
  4867. "file-uri",
  4868. "ftp",
  4869. "hostname",
  4870. "http",
  4871. "https",
  4872. "parse_str",
  4873. "parse_url",
  4874. "psr-7",
  4875. "query-string",
  4876. "querystring",
  4877. "rfc3986",
  4878. "rfc3987",
  4879. "rfc6570",
  4880. "uri",
  4881. "url",
  4882. "ws"
  4883. ],
  4884. "support": {
  4885. "docs": "https://uri.thephpleague.com",
  4886. "forum": "https://thephpleague.slack.com",
  4887. "issues": "https://github.com/thephpleague/uri-src/issues",
  4888. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4889. },
  4890. "funding": [
  4891. {
  4892. "url": "https://github.com/sponsors/nyamsprod",
  4893. "type": "github"
  4894. }
  4895. ],
  4896. "time": "2024-12-08T08:18:47+00:00"
  4897. },
  4898. {
  4899. "name": "maatwebsite/excel",
  4900. "version": "3.1.64",
  4901. "source": {
  4902. "type": "git",
  4903. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  4904. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79"
  4905. },
  4906. "dist": {
  4907. "type": "zip",
  4908. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79",
  4909. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79",
  4910. "shasum": ""
  4911. },
  4912. "require": {
  4913. "composer/semver": "^3.3",
  4914. "ext-json": "*",
  4915. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
  4916. "php": "^7.0||^8.0",
  4917. "phpoffice/phpspreadsheet": "^1.29.9",
  4918. "psr/simple-cache": "^1.0||^2.0||^3.0"
  4919. },
  4920. "require-dev": {
  4921. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  4922. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
  4923. "predis/predis": "^1.1"
  4924. },
  4925. "type": "library",
  4926. "extra": {
  4927. "laravel": {
  4928. "aliases": {
  4929. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  4930. },
  4931. "providers": [
  4932. "Maatwebsite\\Excel\\ExcelServiceProvider"
  4933. ]
  4934. }
  4935. },
  4936. "autoload": {
  4937. "psr-4": {
  4938. "Maatwebsite\\Excel\\": "src/"
  4939. }
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Patrick Brouwers",
  4948. "email": "patrick@spartner.nl"
  4949. }
  4950. ],
  4951. "description": "Supercharged Excel exports and imports in Laravel",
  4952. "keywords": [
  4953. "PHPExcel",
  4954. "batch",
  4955. "csv",
  4956. "excel",
  4957. "export",
  4958. "import",
  4959. "laravel",
  4960. "php",
  4961. "phpspreadsheet"
  4962. ],
  4963. "support": {
  4964. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  4965. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64"
  4966. },
  4967. "funding": [
  4968. {
  4969. "url": "https://laravel-excel.com/commercial-support",
  4970. "type": "custom"
  4971. },
  4972. {
  4973. "url": "https://github.com/patrickbrouwers",
  4974. "type": "github"
  4975. }
  4976. ],
  4977. "time": "2025-02-24T11:12:50+00:00"
  4978. },
  4979. {
  4980. "name": "maennchen/zipstream-php",
  4981. "version": "3.1.2",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  4985. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  4990. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  4991. "shasum": ""
  4992. },
  4993. "require": {
  4994. "ext-mbstring": "*",
  4995. "ext-zlib": "*",
  4996. "php-64bit": "^8.2"
  4997. },
  4998. "require-dev": {
  4999. "brianium/paratest": "^7.7",
  5000. "ext-zip": "*",
  5001. "friendsofphp/php-cs-fixer": "^3.16",
  5002. "guzzlehttp/guzzle": "^7.5",
  5003. "mikey179/vfsstream": "^1.6",
  5004. "php-coveralls/php-coveralls": "^2.5",
  5005. "phpunit/phpunit": "^11.0",
  5006. "vimeo/psalm": "^6.0"
  5007. },
  5008. "suggest": {
  5009. "guzzlehttp/psr7": "^2.4",
  5010. "psr/http-message": "^2.0"
  5011. },
  5012. "type": "library",
  5013. "autoload": {
  5014. "psr-4": {
  5015. "ZipStream\\": "src/"
  5016. }
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "MIT"
  5021. ],
  5022. "authors": [
  5023. {
  5024. "name": "Paul Duncan",
  5025. "email": "pabs@pablotron.org"
  5026. },
  5027. {
  5028. "name": "Jonatan Männchen",
  5029. "email": "jonatan@maennchen.ch"
  5030. },
  5031. {
  5032. "name": "Jesse Donat",
  5033. "email": "donatj@gmail.com"
  5034. },
  5035. {
  5036. "name": "András Kolesár",
  5037. "email": "kolesar@kolesar.hu"
  5038. }
  5039. ],
  5040. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  5041. "keywords": [
  5042. "stream",
  5043. "zip"
  5044. ],
  5045. "support": {
  5046. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  5047. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  5048. },
  5049. "funding": [
  5050. {
  5051. "url": "https://github.com/maennchen",
  5052. "type": "github"
  5053. }
  5054. ],
  5055. "time": "2025-01-27T12:07:53+00:00"
  5056. },
  5057. {
  5058. "name": "markbaker/complex",
  5059. "version": "3.0.2",
  5060. "source": {
  5061. "type": "git",
  5062. "url": "https://github.com/MarkBaker/PHPComplex.git",
  5063. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  5064. },
  5065. "dist": {
  5066. "type": "zip",
  5067. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  5068. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  5069. "shasum": ""
  5070. },
  5071. "require": {
  5072. "php": "^7.2 || ^8.0"
  5073. },
  5074. "require-dev": {
  5075. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5076. "phpcompatibility/php-compatibility": "^9.3",
  5077. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  5078. "squizlabs/php_codesniffer": "^3.7"
  5079. },
  5080. "type": "library",
  5081. "autoload": {
  5082. "psr-4": {
  5083. "Complex\\": "classes/src/"
  5084. }
  5085. },
  5086. "notification-url": "https://packagist.org/downloads/",
  5087. "license": [
  5088. "MIT"
  5089. ],
  5090. "authors": [
  5091. {
  5092. "name": "Mark Baker",
  5093. "email": "mark@lange.demon.co.uk"
  5094. }
  5095. ],
  5096. "description": "PHP Class for working with complex numbers",
  5097. "homepage": "https://github.com/MarkBaker/PHPComplex",
  5098. "keywords": [
  5099. "complex",
  5100. "mathematics"
  5101. ],
  5102. "support": {
  5103. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  5104. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  5105. },
  5106. "time": "2022-12-06T16:21:08+00:00"
  5107. },
  5108. {
  5109. "name": "markbaker/matrix",
  5110. "version": "3.0.1",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  5114. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  5119. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "php": "^7.1 || ^8.0"
  5124. },
  5125. "require-dev": {
  5126. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5127. "phpcompatibility/php-compatibility": "^9.3",
  5128. "phpdocumentor/phpdocumentor": "2.*",
  5129. "phploc/phploc": "^4.0",
  5130. "phpmd/phpmd": "2.*",
  5131. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  5132. "sebastian/phpcpd": "^4.0",
  5133. "squizlabs/php_codesniffer": "^3.7"
  5134. },
  5135. "type": "library",
  5136. "autoload": {
  5137. "psr-4": {
  5138. "Matrix\\": "classes/src/"
  5139. }
  5140. },
  5141. "notification-url": "https://packagist.org/downloads/",
  5142. "license": [
  5143. "MIT"
  5144. ],
  5145. "authors": [
  5146. {
  5147. "name": "Mark Baker",
  5148. "email": "mark@demon-angel.eu"
  5149. }
  5150. ],
  5151. "description": "PHP Class for working with matrices",
  5152. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  5153. "keywords": [
  5154. "mathematics",
  5155. "matrix",
  5156. "vector"
  5157. ],
  5158. "support": {
  5159. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  5160. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  5161. },
  5162. "time": "2022-12-02T22:17:43+00:00"
  5163. },
  5164. {
  5165. "name": "masterminds/html5",
  5166. "version": "2.9.0",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://github.com/Masterminds/html5-php.git",
  5170. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  5175. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  5176. "shasum": ""
  5177. },
  5178. "require": {
  5179. "ext-dom": "*",
  5180. "php": ">=5.3.0"
  5181. },
  5182. "require-dev": {
  5183. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  5184. },
  5185. "type": "library",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-master": "2.7-dev"
  5189. }
  5190. },
  5191. "autoload": {
  5192. "psr-4": {
  5193. "Masterminds\\": "src"
  5194. }
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "MIT"
  5199. ],
  5200. "authors": [
  5201. {
  5202. "name": "Matt Butcher",
  5203. "email": "technosophos@gmail.com"
  5204. },
  5205. {
  5206. "name": "Matt Farina",
  5207. "email": "matt@mattfarina.com"
  5208. },
  5209. {
  5210. "name": "Asmir Mustafic",
  5211. "email": "goetas@gmail.com"
  5212. }
  5213. ],
  5214. "description": "An HTML5 parser and serializer.",
  5215. "homepage": "http://masterminds.github.io/html5-php",
  5216. "keywords": [
  5217. "HTML5",
  5218. "dom",
  5219. "html",
  5220. "parser",
  5221. "querypath",
  5222. "serializer",
  5223. "xml"
  5224. ],
  5225. "support": {
  5226. "issues": "https://github.com/Masterminds/html5-php/issues",
  5227. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  5228. },
  5229. "time": "2024-03-31T07:05:07+00:00"
  5230. },
  5231. {
  5232. "name": "mobiledetect/mobiledetectlib",
  5233. "version": "4.8.09",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  5237. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  5242. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  5243. "shasum": ""
  5244. },
  5245. "require": {
  5246. "php": ">=8.0",
  5247. "psr/cache": "^3.0",
  5248. "psr/simple-cache": "^3"
  5249. },
  5250. "require-dev": {
  5251. "friendsofphp/php-cs-fixer": "^v3.65.0",
  5252. "phpbench/phpbench": "^1.2",
  5253. "phpstan/phpstan": "^1.12.x-dev",
  5254. "phpunit/phpunit": "^9.6.18",
  5255. "squizlabs/php_codesniffer": "^3.11.1"
  5256. },
  5257. "type": "library",
  5258. "autoload": {
  5259. "psr-4": {
  5260. "Detection\\": "src/"
  5261. }
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "MIT"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "Serban Ghita",
  5270. "email": "serbanghita@gmail.com",
  5271. "homepage": "http://mobiledetect.net",
  5272. "role": "Developer"
  5273. }
  5274. ],
  5275. "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.",
  5276. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  5277. "keywords": [
  5278. "detect mobile devices",
  5279. "mobile",
  5280. "mobile detect",
  5281. "mobile detector",
  5282. "php mobile detect"
  5283. ],
  5284. "support": {
  5285. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  5286. "source": "https://github.com/serbanghita/Mobile-Detect/tree/4.8.09"
  5287. },
  5288. "funding": [
  5289. {
  5290. "url": "https://github.com/serbanghita",
  5291. "type": "github"
  5292. }
  5293. ],
  5294. "time": "2024-12-10T15:32:06+00:00"
  5295. },
  5296. {
  5297. "name": "monolog/monolog",
  5298. "version": "3.8.1",
  5299. "source": {
  5300. "type": "git",
  5301. "url": "https://github.com/Seldaek/monolog.git",
  5302. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5303. },
  5304. "dist": {
  5305. "type": "zip",
  5306. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5307. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5308. "shasum": ""
  5309. },
  5310. "require": {
  5311. "php": ">=8.1",
  5312. "psr/log": "^2.0 || ^3.0"
  5313. },
  5314. "provide": {
  5315. "psr/log-implementation": "3.0.0"
  5316. },
  5317. "require-dev": {
  5318. "aws/aws-sdk-php": "^3.0",
  5319. "doctrine/couchdb": "~1.0@dev",
  5320. "elasticsearch/elasticsearch": "^7 || ^8",
  5321. "ext-json": "*",
  5322. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5323. "guzzlehttp/guzzle": "^7.4.5",
  5324. "guzzlehttp/psr7": "^2.2",
  5325. "mongodb/mongodb": "^1.8",
  5326. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5327. "php-console/php-console": "^3.1.8",
  5328. "phpstan/phpstan": "^2",
  5329. "phpstan/phpstan-deprecation-rules": "^2",
  5330. "phpstan/phpstan-strict-rules": "^2",
  5331. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5332. "predis/predis": "^1.1 || ^2",
  5333. "rollbar/rollbar": "^4.0",
  5334. "ruflin/elastica": "^7 || ^8",
  5335. "symfony/mailer": "^5.4 || ^6",
  5336. "symfony/mime": "^5.4 || ^6"
  5337. },
  5338. "suggest": {
  5339. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5340. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5341. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5342. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5343. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5344. "ext-mbstring": "Allow to work properly with unicode symbols",
  5345. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5346. "ext-openssl": "Required to send log messages using SSL",
  5347. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5348. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5349. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5350. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5351. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5352. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5353. },
  5354. "type": "library",
  5355. "extra": {
  5356. "branch-alias": {
  5357. "dev-main": "3.x-dev"
  5358. }
  5359. },
  5360. "autoload": {
  5361. "psr-4": {
  5362. "Monolog\\": "src/Monolog"
  5363. }
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "MIT"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Jordi Boggiano",
  5372. "email": "j.boggiano@seld.be",
  5373. "homepage": "https://seld.be"
  5374. }
  5375. ],
  5376. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5377. "homepage": "https://github.com/Seldaek/monolog",
  5378. "keywords": [
  5379. "log",
  5380. "logging",
  5381. "psr-3"
  5382. ],
  5383. "support": {
  5384. "issues": "https://github.com/Seldaek/monolog/issues",
  5385. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5386. },
  5387. "funding": [
  5388. {
  5389. "url": "https://github.com/Seldaek",
  5390. "type": "github"
  5391. },
  5392. {
  5393. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5394. "type": "tidelift"
  5395. }
  5396. ],
  5397. "time": "2024-12-05T17:15:07+00:00"
  5398. },
  5399. {
  5400. "name": "mpdf/mpdf",
  5401. "version": "v8.2.5",
  5402. "source": {
  5403. "type": "git",
  5404. "url": "https://github.com/mpdf/mpdf.git",
  5405. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f"
  5406. },
  5407. "dist": {
  5408. "type": "zip",
  5409. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f",
  5410. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f",
  5411. "shasum": ""
  5412. },
  5413. "require": {
  5414. "ext-gd": "*",
  5415. "ext-mbstring": "*",
  5416. "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
  5417. "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
  5418. "myclabs/deep-copy": "^1.7",
  5419. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5420. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  5421. "psr/http-message": "^1.0 || ^2.0",
  5422. "psr/log": "^1.0 || ^2.0 || ^3.0",
  5423. "setasign/fpdi": "^2.1"
  5424. },
  5425. "require-dev": {
  5426. "mockery/mockery": "^1.3.0",
  5427. "mpdf/qrcode": "^1.1.0",
  5428. "squizlabs/php_codesniffer": "^3.5.0",
  5429. "tracy/tracy": "~2.5",
  5430. "yoast/phpunit-polyfills": "^1.0"
  5431. },
  5432. "suggest": {
  5433. "ext-bcmath": "Needed for generation of some types of barcodes",
  5434. "ext-xml": "Needed mainly for SVG manipulation",
  5435. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  5436. },
  5437. "type": "library",
  5438. "autoload": {
  5439. "files": [
  5440. "src/functions.php"
  5441. ],
  5442. "psr-4": {
  5443. "Mpdf\\": "src/"
  5444. }
  5445. },
  5446. "notification-url": "https://packagist.org/downloads/",
  5447. "license": [
  5448. "GPL-2.0-only"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Matěj Humpál",
  5453. "role": "Developer, maintainer"
  5454. },
  5455. {
  5456. "name": "Ian Back",
  5457. "role": "Developer (retired)"
  5458. }
  5459. ],
  5460. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  5461. "homepage": "https://mpdf.github.io",
  5462. "keywords": [
  5463. "pdf",
  5464. "php",
  5465. "utf-8"
  5466. ],
  5467. "support": {
  5468. "docs": "https://mpdf.github.io",
  5469. "issues": "https://github.com/mpdf/mpdf/issues",
  5470. "source": "https://github.com/mpdf/mpdf"
  5471. },
  5472. "funding": [
  5473. {
  5474. "url": "https://www.paypal.me/mpdf",
  5475. "type": "custom"
  5476. }
  5477. ],
  5478. "time": "2024-11-18T15:30:42+00:00"
  5479. },
  5480. {
  5481. "name": "mpdf/psr-http-message-shim",
  5482. "version": "v2.0.1",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/mpdf/psr-http-message-shim.git",
  5486. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
  5491. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
  5492. "shasum": ""
  5493. },
  5494. "require": {
  5495. "psr/http-message": "^2.0"
  5496. },
  5497. "type": "library",
  5498. "autoload": {
  5499. "psr-4": {
  5500. "Mpdf\\PsrHttpMessageShim\\": "src/"
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Mark Dorison",
  5510. "email": "mark@chromatichq.com"
  5511. },
  5512. {
  5513. "name": "Kristofer Widholm",
  5514. "email": "kristofer@chromatichq.com"
  5515. },
  5516. {
  5517. "name": "Nigel Cunningham",
  5518. "email": "nigel.cunningham@technocrat.com.au"
  5519. }
  5520. ],
  5521. "description": "Shim to allow support of different psr/message versions.",
  5522. "support": {
  5523. "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
  5524. "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
  5525. },
  5526. "time": "2023-10-02T14:34:03+00:00"
  5527. },
  5528. {
  5529. "name": "mpdf/psr-log-aware-trait",
  5530. "version": "v3.0.0",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/mpdf/psr-log-aware-trait.git",
  5534. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
  5539. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "psr/log": "^3.0"
  5544. },
  5545. "type": "library",
  5546. "autoload": {
  5547. "psr-4": {
  5548. "Mpdf\\PsrLogAwareTrait\\": "src/"
  5549. }
  5550. },
  5551. "notification-url": "https://packagist.org/downloads/",
  5552. "license": [
  5553. "MIT"
  5554. ],
  5555. "authors": [
  5556. {
  5557. "name": "Mark Dorison",
  5558. "email": "mark@chromatichq.com"
  5559. },
  5560. {
  5561. "name": "Kristofer Widholm",
  5562. "email": "kristofer@chromatichq.com"
  5563. }
  5564. ],
  5565. "description": "Trait to allow support of different psr/log versions.",
  5566. "support": {
  5567. "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
  5568. "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
  5569. },
  5570. "time": "2023-05-03T06:19:36+00:00"
  5571. },
  5572. {
  5573. "name": "myclabs/deep-copy",
  5574. "version": "1.13.0",
  5575. "source": {
  5576. "type": "git",
  5577. "url": "https://github.com/myclabs/DeepCopy.git",
  5578. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  5579. },
  5580. "dist": {
  5581. "type": "zip",
  5582. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  5583. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  5584. "shasum": ""
  5585. },
  5586. "require": {
  5587. "php": "^7.1 || ^8.0"
  5588. },
  5589. "conflict": {
  5590. "doctrine/collections": "<1.6.8",
  5591. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  5592. },
  5593. "require-dev": {
  5594. "doctrine/collections": "^1.6.8",
  5595. "doctrine/common": "^2.13.3 || ^3.2.2",
  5596. "phpspec/prophecy": "^1.10",
  5597. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5598. },
  5599. "type": "library",
  5600. "autoload": {
  5601. "files": [
  5602. "src/DeepCopy/deep_copy.php"
  5603. ],
  5604. "psr-4": {
  5605. "DeepCopy\\": "src/DeepCopy/"
  5606. }
  5607. },
  5608. "notification-url": "https://packagist.org/downloads/",
  5609. "license": [
  5610. "MIT"
  5611. ],
  5612. "description": "Create deep copies (clones) of your objects",
  5613. "keywords": [
  5614. "clone",
  5615. "copy",
  5616. "duplicate",
  5617. "object",
  5618. "object graph"
  5619. ],
  5620. "support": {
  5621. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5622. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  5623. },
  5624. "funding": [
  5625. {
  5626. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5627. "type": "tidelift"
  5628. }
  5629. ],
  5630. "time": "2025-02-12T12:17:51+00:00"
  5631. },
  5632. {
  5633. "name": "nesbot/carbon",
  5634. "version": "2.73.0",
  5635. "source": {
  5636. "type": "git",
  5637. "url": "https://github.com/CarbonPHP/carbon.git",
  5638. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5639. },
  5640. "dist": {
  5641. "type": "zip",
  5642. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5643. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5644. "shasum": ""
  5645. },
  5646. "require": {
  5647. "carbonphp/carbon-doctrine-types": "*",
  5648. "ext-json": "*",
  5649. "php": "^7.1.8 || ^8.0",
  5650. "psr/clock": "^1.0",
  5651. "symfony/polyfill-mbstring": "^1.0",
  5652. "symfony/polyfill-php80": "^1.16",
  5653. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5654. },
  5655. "provide": {
  5656. "psr/clock-implementation": "1.0"
  5657. },
  5658. "require-dev": {
  5659. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5660. "doctrine/orm": "^2.7 || ^3.0",
  5661. "friendsofphp/php-cs-fixer": "^3.0",
  5662. "kylekatarnls/multi-tester": "^2.0",
  5663. "ondrejmirtes/better-reflection": "<6",
  5664. "phpmd/phpmd": "^2.9",
  5665. "phpstan/extension-installer": "^1.0",
  5666. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5667. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5668. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5669. "squizlabs/php_codesniffer": "^3.4"
  5670. },
  5671. "bin": [
  5672. "bin/carbon"
  5673. ],
  5674. "type": "library",
  5675. "extra": {
  5676. "laravel": {
  5677. "providers": [
  5678. "Carbon\\Laravel\\ServiceProvider"
  5679. ]
  5680. },
  5681. "phpstan": {
  5682. "includes": [
  5683. "extension.neon"
  5684. ]
  5685. },
  5686. "branch-alias": {
  5687. "dev-2.x": "2.x-dev",
  5688. "dev-master": "3.x-dev"
  5689. }
  5690. },
  5691. "autoload": {
  5692. "psr-4": {
  5693. "Carbon\\": "src/Carbon/"
  5694. }
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "MIT"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Brian Nesbitt",
  5703. "email": "brian@nesbot.com",
  5704. "homepage": "https://markido.com"
  5705. },
  5706. {
  5707. "name": "kylekatarnls",
  5708. "homepage": "https://github.com/kylekatarnls"
  5709. }
  5710. ],
  5711. "description": "An API extension for DateTime that supports 281 different languages.",
  5712. "homepage": "https://carbon.nesbot.com",
  5713. "keywords": [
  5714. "date",
  5715. "datetime",
  5716. "time"
  5717. ],
  5718. "support": {
  5719. "docs": "https://carbon.nesbot.com/docs",
  5720. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5721. "source": "https://github.com/briannesbitt/Carbon"
  5722. },
  5723. "funding": [
  5724. {
  5725. "url": "https://github.com/sponsors/kylekatarnls",
  5726. "type": "github"
  5727. },
  5728. {
  5729. "url": "https://opencollective.com/Carbon#sponsor",
  5730. "type": "opencollective"
  5731. },
  5732. {
  5733. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5734. "type": "tidelift"
  5735. }
  5736. ],
  5737. "time": "2025-01-08T20:10:23+00:00"
  5738. },
  5739. {
  5740. "name": "nette/schema",
  5741. "version": "v1.3.2",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://github.com/nette/schema.git",
  5745. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  5746. },
  5747. "dist": {
  5748. "type": "zip",
  5749. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  5750. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  5751. "shasum": ""
  5752. },
  5753. "require": {
  5754. "nette/utils": "^4.0",
  5755. "php": "8.1 - 8.4"
  5756. },
  5757. "require-dev": {
  5758. "nette/tester": "^2.5.2",
  5759. "phpstan/phpstan-nette": "^1.0",
  5760. "tracy/tracy": "^2.8"
  5761. },
  5762. "type": "library",
  5763. "extra": {
  5764. "branch-alias": {
  5765. "dev-master": "1.3-dev"
  5766. }
  5767. },
  5768. "autoload": {
  5769. "classmap": [
  5770. "src/"
  5771. ]
  5772. },
  5773. "notification-url": "https://packagist.org/downloads/",
  5774. "license": [
  5775. "BSD-3-Clause",
  5776. "GPL-2.0-only",
  5777. "GPL-3.0-only"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "David Grudl",
  5782. "homepage": "https://davidgrudl.com"
  5783. },
  5784. {
  5785. "name": "Nette Community",
  5786. "homepage": "https://nette.org/contributors"
  5787. }
  5788. ],
  5789. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5790. "homepage": "https://nette.org",
  5791. "keywords": [
  5792. "config",
  5793. "nette"
  5794. ],
  5795. "support": {
  5796. "issues": "https://github.com/nette/schema/issues",
  5797. "source": "https://github.com/nette/schema/tree/v1.3.2"
  5798. },
  5799. "time": "2024-10-06T23:10:23+00:00"
  5800. },
  5801. {
  5802. "name": "nette/utils",
  5803. "version": "v4.0.6",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/nette/utils.git",
  5807. "reference": "ce708655043c7050eb050df361c5e313cf708309"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309",
  5812. "reference": "ce708655043c7050eb050df361c5e313cf708309",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": "8.0 - 8.4"
  5817. },
  5818. "conflict": {
  5819. "nette/finder": "<3",
  5820. "nette/schema": "<1.2.2"
  5821. },
  5822. "require-dev": {
  5823. "jetbrains/phpstorm-attributes": "dev-master",
  5824. "nette/tester": "^2.5",
  5825. "phpstan/phpstan": "^1.0",
  5826. "tracy/tracy": "^2.9"
  5827. },
  5828. "suggest": {
  5829. "ext-gd": "to use Image",
  5830. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5831. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5832. "ext-json": "to use Nette\\Utils\\Json",
  5833. "ext-mbstring": "to use Strings::lower() etc...",
  5834. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5835. },
  5836. "type": "library",
  5837. "extra": {
  5838. "branch-alias": {
  5839. "dev-master": "4.0-dev"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "classmap": [
  5844. "src/"
  5845. ]
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "BSD-3-Clause",
  5850. "GPL-2.0-only",
  5851. "GPL-3.0-only"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "David Grudl",
  5856. "homepage": "https://davidgrudl.com"
  5857. },
  5858. {
  5859. "name": "Nette Community",
  5860. "homepage": "https://nette.org/contributors"
  5861. }
  5862. ],
  5863. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5864. "homepage": "https://nette.org",
  5865. "keywords": [
  5866. "array",
  5867. "core",
  5868. "datetime",
  5869. "images",
  5870. "json",
  5871. "nette",
  5872. "paginator",
  5873. "password",
  5874. "slugify",
  5875. "string",
  5876. "unicode",
  5877. "utf-8",
  5878. "utility",
  5879. "validation"
  5880. ],
  5881. "support": {
  5882. "issues": "https://github.com/nette/utils/issues",
  5883. "source": "https://github.com/nette/utils/tree/v4.0.6"
  5884. },
  5885. "time": "2025-03-30T21:06:30+00:00"
  5886. },
  5887. {
  5888. "name": "nicmart/tree",
  5889. "version": "0.9.0",
  5890. "source": {
  5891. "type": "git",
  5892. "url": "https://github.com/nicmart/Tree.git",
  5893. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d"
  5894. },
  5895. "dist": {
  5896. "type": "zip",
  5897. "url": "https://api.github.com/repos/nicmart/Tree/zipball/f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  5898. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  5899. "shasum": ""
  5900. },
  5901. "require": {
  5902. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5903. },
  5904. "require-dev": {
  5905. "ergebnis/composer-normalize": "^2.44.0",
  5906. "ergebnis/license": "^2.6.0",
  5907. "ergebnis/php-cs-fixer-config": "^6.28.1",
  5908. "fakerphp/faker": "^1.24.1",
  5909. "infection/infection": "~0.26.19",
  5910. "phpunit/phpunit": "^9.6.19",
  5911. "psalm/plugin-phpunit": "~0.19.0",
  5912. "vimeo/psalm": "^5.26.1"
  5913. },
  5914. "type": "library",
  5915. "autoload": {
  5916. "psr-4": {
  5917. "Tree\\": "src/"
  5918. }
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "Nicolò Martini",
  5927. "email": "nicmartnic@gmail.com"
  5928. },
  5929. {
  5930. "name": "Andreas Möller",
  5931. "email": "am@localheinz.com"
  5932. }
  5933. ],
  5934. "description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
  5935. "support": {
  5936. "issues": "https://github.com/nicmart/Tree/issues",
  5937. "source": "https://github.com/nicmart/Tree/tree/0.9.0"
  5938. },
  5939. "time": "2024-11-22T15:36:01+00:00"
  5940. },
  5941. {
  5942. "name": "nikic/php-parser",
  5943. "version": "v5.6.1",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/nikic/PHP-Parser.git",
  5947. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  5952. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "ext-ctype": "*",
  5957. "ext-json": "*",
  5958. "ext-tokenizer": "*",
  5959. "php": ">=7.4"
  5960. },
  5961. "require-dev": {
  5962. "ircmaxell/php-yacc": "^0.0.7",
  5963. "phpunit/phpunit": "^9.0"
  5964. },
  5965. "bin": [
  5966. "bin/php-parse"
  5967. ],
  5968. "type": "library",
  5969. "extra": {
  5970. "branch-alias": {
  5971. "dev-master": "5.x-dev"
  5972. }
  5973. },
  5974. "autoload": {
  5975. "psr-4": {
  5976. "PhpParser\\": "lib/PhpParser"
  5977. }
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "BSD-3-Clause"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Nikita Popov"
  5986. }
  5987. ],
  5988. "description": "A PHP parser written in PHP",
  5989. "keywords": [
  5990. "parser",
  5991. "php"
  5992. ],
  5993. "support": {
  5994. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5995. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  5996. },
  5997. "time": "2025-08-13T20:13:15+00:00"
  5998. },
  5999. {
  6000. "name": "nunomaduro/termwind",
  6001. "version": "v2.3.0",
  6002. "source": {
  6003. "type": "git",
  6004. "url": "https://github.com/nunomaduro/termwind.git",
  6005. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  6006. },
  6007. "dist": {
  6008. "type": "zip",
  6009. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  6010. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  6011. "shasum": ""
  6012. },
  6013. "require": {
  6014. "ext-mbstring": "*",
  6015. "php": "^8.2",
  6016. "symfony/console": "^7.1.8"
  6017. },
  6018. "require-dev": {
  6019. "illuminate/console": "^11.33.2",
  6020. "laravel/pint": "^1.18.2",
  6021. "mockery/mockery": "^1.6.12",
  6022. "pestphp/pest": "^2.36.0",
  6023. "phpstan/phpstan": "^1.12.11",
  6024. "phpstan/phpstan-strict-rules": "^1.6.1",
  6025. "symfony/var-dumper": "^7.1.8",
  6026. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  6027. },
  6028. "type": "library",
  6029. "extra": {
  6030. "laravel": {
  6031. "providers": [
  6032. "Termwind\\Laravel\\TermwindServiceProvider"
  6033. ]
  6034. },
  6035. "branch-alias": {
  6036. "dev-2.x": "2.x-dev"
  6037. }
  6038. },
  6039. "autoload": {
  6040. "files": [
  6041. "src/Functions.php"
  6042. ],
  6043. "psr-4": {
  6044. "Termwind\\": "src/"
  6045. }
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "MIT"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Nuno Maduro",
  6054. "email": "enunomaduro@gmail.com"
  6055. }
  6056. ],
  6057. "description": "Its like Tailwind CSS, but for the console.",
  6058. "keywords": [
  6059. "cli",
  6060. "console",
  6061. "css",
  6062. "package",
  6063. "php",
  6064. "style"
  6065. ],
  6066. "support": {
  6067. "issues": "https://github.com/nunomaduro/termwind/issues",
  6068. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  6069. },
  6070. "funding": [
  6071. {
  6072. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6073. "type": "custom"
  6074. },
  6075. {
  6076. "url": "https://github.com/nunomaduro",
  6077. "type": "github"
  6078. },
  6079. {
  6080. "url": "https://github.com/xiCO2k",
  6081. "type": "github"
  6082. }
  6083. ],
  6084. "time": "2024-11-21T10:39:51+00:00"
  6085. },
  6086. {
  6087. "name": "open-telemetry/api",
  6088. "version": "1.2.3",
  6089. "source": {
  6090. "type": "git",
  6091. "url": "https://github.com/opentelemetry-php/api.git",
  6092. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1"
  6093. },
  6094. "dist": {
  6095. "type": "zip",
  6096. "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  6097. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  6098. "shasum": ""
  6099. },
  6100. "require": {
  6101. "open-telemetry/context": "^1.0",
  6102. "php": "^8.1",
  6103. "psr/log": "^1.1|^2.0|^3.0",
  6104. "symfony/polyfill-php82": "^1.26"
  6105. },
  6106. "conflict": {
  6107. "open-telemetry/sdk": "<=1.0.8"
  6108. },
  6109. "type": "library",
  6110. "extra": {
  6111. "spi": {
  6112. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [
  6113. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager"
  6114. ]
  6115. },
  6116. "branch-alias": {
  6117. "dev-main": "1.1.x-dev"
  6118. }
  6119. },
  6120. "autoload": {
  6121. "files": [
  6122. "Trace/functions.php"
  6123. ],
  6124. "psr-4": {
  6125. "OpenTelemetry\\API\\": "."
  6126. }
  6127. },
  6128. "notification-url": "https://packagist.org/downloads/",
  6129. "license": [
  6130. "Apache-2.0"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "opentelemetry-php contributors",
  6135. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  6136. }
  6137. ],
  6138. "description": "API for OpenTelemetry PHP.",
  6139. "keywords": [
  6140. "Metrics",
  6141. "api",
  6142. "apm",
  6143. "logging",
  6144. "opentelemetry",
  6145. "otel",
  6146. "tracing"
  6147. ],
  6148. "support": {
  6149. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  6150. "docs": "https://opentelemetry.io/docs/php",
  6151. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  6152. "source": "https://github.com/open-telemetry/opentelemetry-php"
  6153. },
  6154. "time": "2025-03-05T21:42:54+00:00"
  6155. },
  6156. {
  6157. "name": "open-telemetry/context",
  6158. "version": "1.1.0",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://github.com/opentelemetry-php/context.git",
  6162. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3"
  6163. },
  6164. "dist": {
  6165. "type": "zip",
  6166. "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  6167. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  6168. "shasum": ""
  6169. },
  6170. "require": {
  6171. "php": "^8.1",
  6172. "symfony/polyfill-php82": "^1.26"
  6173. },
  6174. "suggest": {
  6175. "ext-ffi": "To allow context switching in Fibers"
  6176. },
  6177. "type": "library",
  6178. "extra": {
  6179. "branch-alias": {
  6180. "dev-main": "1.0.x-dev"
  6181. }
  6182. },
  6183. "autoload": {
  6184. "files": [
  6185. "fiber/initialize_fiber_handler.php"
  6186. ],
  6187. "psr-4": {
  6188. "OpenTelemetry\\Context\\": "."
  6189. }
  6190. },
  6191. "notification-url": "https://packagist.org/downloads/",
  6192. "license": [
  6193. "Apache-2.0"
  6194. ],
  6195. "authors": [
  6196. {
  6197. "name": "opentelemetry-php contributors",
  6198. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  6199. }
  6200. ],
  6201. "description": "Context implementation for OpenTelemetry PHP.",
  6202. "keywords": [
  6203. "Context",
  6204. "opentelemetry",
  6205. "otel"
  6206. ],
  6207. "support": {
  6208. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  6209. "docs": "https://opentelemetry.io/docs/php",
  6210. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  6211. "source": "https://github.com/open-telemetry/opentelemetry-php"
  6212. },
  6213. "time": "2024-08-21T00:29:20+00:00"
  6214. },
  6215. {
  6216. "name": "openai-php/client",
  6217. "version": "v0.10.3",
  6218. "source": {
  6219. "type": "git",
  6220. "url": "https://github.com/openai-php/client.git",
  6221. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  6222. },
  6223. "dist": {
  6224. "type": "zip",
  6225. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6226. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6227. "shasum": ""
  6228. },
  6229. "require": {
  6230. "php": "^8.1.0",
  6231. "php-http/discovery": "^1.20.0",
  6232. "php-http/multipart-stream-builder": "^1.4.2",
  6233. "psr/http-client": "^1.0.3",
  6234. "psr/http-client-implementation": "^1.0.1",
  6235. "psr/http-factory-implementation": "*",
  6236. "psr/http-message": "^1.1.0|^2.0.0"
  6237. },
  6238. "require-dev": {
  6239. "guzzlehttp/guzzle": "^7.9.2",
  6240. "guzzlehttp/psr7": "^2.7.0",
  6241. "laravel/pint": "^1.18.1",
  6242. "mockery/mockery": "^1.6.12",
  6243. "nunomaduro/collision": "^7.11.0|^8.5.0",
  6244. "pestphp/pest": "^2.36.0|^3.5.0",
  6245. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  6246. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  6247. "phpstan/phpstan": "^1.12.7",
  6248. "symfony/var-dumper": "^6.4.11|^7.1.5"
  6249. },
  6250. "type": "library",
  6251. "autoload": {
  6252. "files": [
  6253. "src/OpenAI.php"
  6254. ],
  6255. "psr-4": {
  6256. "OpenAI\\": "src/"
  6257. }
  6258. },
  6259. "notification-url": "https://packagist.org/downloads/",
  6260. "license": [
  6261. "MIT"
  6262. ],
  6263. "authors": [
  6264. {
  6265. "name": "Nuno Maduro",
  6266. "email": "enunomaduro@gmail.com"
  6267. },
  6268. {
  6269. "name": "Sandro Gehri"
  6270. }
  6271. ],
  6272. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  6273. "keywords": [
  6274. "GPT-3",
  6275. "api",
  6276. "client",
  6277. "codex",
  6278. "dall-e",
  6279. "language",
  6280. "natural",
  6281. "openai",
  6282. "php",
  6283. "processing",
  6284. "sdk"
  6285. ],
  6286. "support": {
  6287. "issues": "https://github.com/openai-php/client/issues",
  6288. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  6289. },
  6290. "funding": [
  6291. {
  6292. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6293. "type": "custom"
  6294. },
  6295. {
  6296. "url": "https://github.com/gehrisandro",
  6297. "type": "github"
  6298. },
  6299. {
  6300. "url": "https://github.com/nunomaduro",
  6301. "type": "github"
  6302. }
  6303. ],
  6304. "time": "2024-11-12T20:51:16+00:00"
  6305. },
  6306. {
  6307. "name": "openai-php/laravel",
  6308. "version": "v0.10.2",
  6309. "source": {
  6310. "type": "git",
  6311. "url": "https://github.com/openai-php/laravel.git",
  6312. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f"
  6313. },
  6314. "dist": {
  6315. "type": "zip",
  6316. "url": "https://api.github.com/repos/openai-php/laravel/zipball/24815ef1bda71cc0715f7aefe4506e77329e560f",
  6317. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f",
  6318. "shasum": ""
  6319. },
  6320. "require": {
  6321. "guzzlehttp/guzzle": "^7.9.2",
  6322. "laravel/framework": "^9.46.0|^10.34.2|^11.23.5",
  6323. "openai-php/client": "^0.10.2",
  6324. "php": "^8.1.0"
  6325. },
  6326. "require-dev": {
  6327. "laravel/pint": "^1.17.3",
  6328. "pestphp/pest": "^2.35.1|^3.0.0",
  6329. "pestphp/pest-plugin-arch": "^2.7.0|^3.0.0",
  6330. "phpstan/phpstan": "^1.12.4",
  6331. "symfony/var-dumper": "^6.4.0|^7.1.4"
  6332. },
  6333. "type": "library",
  6334. "extra": {
  6335. "laravel": {
  6336. "providers": [
  6337. "OpenAI\\Laravel\\ServiceProvider"
  6338. ]
  6339. }
  6340. },
  6341. "autoload": {
  6342. "psr-4": {
  6343. "OpenAI\\Laravel\\": "src/"
  6344. }
  6345. },
  6346. "notification-url": "https://packagist.org/downloads/",
  6347. "license": [
  6348. "MIT"
  6349. ],
  6350. "authors": [
  6351. {
  6352. "name": "Nuno Maduro",
  6353. "email": "enunomaduro@gmail.com"
  6354. }
  6355. ],
  6356. "description": "OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API",
  6357. "keywords": [
  6358. "GPT-3",
  6359. "api",
  6360. "client",
  6361. "codex",
  6362. "dall-e",
  6363. "language",
  6364. "laravel",
  6365. "natural",
  6366. "openai",
  6367. "php",
  6368. "processing",
  6369. "sdk"
  6370. ],
  6371. "support": {
  6372. "issues": "https://github.com/openai-php/laravel/issues",
  6373. "source": "https://github.com/openai-php/laravel/tree/v0.10.2"
  6374. },
  6375. "funding": [
  6376. {
  6377. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6378. "type": "custom"
  6379. },
  6380. {
  6381. "url": "https://github.com/gehrisandro",
  6382. "type": "github"
  6383. },
  6384. {
  6385. "url": "https://github.com/nunomaduro",
  6386. "type": "github"
  6387. },
  6388. {
  6389. "url": "https://www.patreon.com/nunomaduro",
  6390. "type": "patreon"
  6391. }
  6392. ],
  6393. "time": "2024-10-17T20:34:07+00:00"
  6394. },
  6395. {
  6396. "name": "opis/closure",
  6397. "version": "3.6.3",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://github.com/opis/closure.git",
  6401. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  6406. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  6407. "shasum": ""
  6408. },
  6409. "require": {
  6410. "php": "^5.4 || ^7.0 || ^8.0"
  6411. },
  6412. "require-dev": {
  6413. "jeremeamia/superclosure": "^2.0",
  6414. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6415. },
  6416. "type": "library",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-master": "3.6.x-dev"
  6420. }
  6421. },
  6422. "autoload": {
  6423. "files": [
  6424. "functions.php"
  6425. ],
  6426. "psr-4": {
  6427. "Opis\\Closure\\": "src/"
  6428. }
  6429. },
  6430. "notification-url": "https://packagist.org/downloads/",
  6431. "license": [
  6432. "MIT"
  6433. ],
  6434. "authors": [
  6435. {
  6436. "name": "Marius Sarca",
  6437. "email": "marius.sarca@gmail.com"
  6438. },
  6439. {
  6440. "name": "Sorin Sarca",
  6441. "email": "sarca_sorin@hotmail.com"
  6442. }
  6443. ],
  6444. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  6445. "homepage": "https://opis.io/closure",
  6446. "keywords": [
  6447. "anonymous functions",
  6448. "closure",
  6449. "function",
  6450. "serializable",
  6451. "serialization",
  6452. "serialize"
  6453. ],
  6454. "support": {
  6455. "issues": "https://github.com/opis/closure/issues",
  6456. "source": "https://github.com/opis/closure/tree/3.6.3"
  6457. },
  6458. "time": "2022-01-27T09:35:39+00:00"
  6459. },
  6460. {
  6461. "name": "paragonie/constant_time_encoding",
  6462. "version": "v3.0.0",
  6463. "source": {
  6464. "type": "git",
  6465. "url": "https://github.com/paragonie/constant_time_encoding.git",
  6466. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  6467. },
  6468. "dist": {
  6469. "type": "zip",
  6470. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  6471. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  6472. "shasum": ""
  6473. },
  6474. "require": {
  6475. "php": "^8"
  6476. },
  6477. "require-dev": {
  6478. "phpunit/phpunit": "^9",
  6479. "vimeo/psalm": "^4|^5"
  6480. },
  6481. "type": "library",
  6482. "autoload": {
  6483. "psr-4": {
  6484. "ParagonIE\\ConstantTime\\": "src/"
  6485. }
  6486. },
  6487. "notification-url": "https://packagist.org/downloads/",
  6488. "license": [
  6489. "MIT"
  6490. ],
  6491. "authors": [
  6492. {
  6493. "name": "Paragon Initiative Enterprises",
  6494. "email": "security@paragonie.com",
  6495. "homepage": "https://paragonie.com",
  6496. "role": "Maintainer"
  6497. },
  6498. {
  6499. "name": "Steve 'Sc00bz' Thomas",
  6500. "email": "steve@tobtu.com",
  6501. "homepage": "https://www.tobtu.com",
  6502. "role": "Original Developer"
  6503. }
  6504. ],
  6505. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  6506. "keywords": [
  6507. "base16",
  6508. "base32",
  6509. "base32_decode",
  6510. "base32_encode",
  6511. "base64",
  6512. "base64_decode",
  6513. "base64_encode",
  6514. "bin2hex",
  6515. "encoding",
  6516. "hex",
  6517. "hex2bin",
  6518. "rfc4648"
  6519. ],
  6520. "support": {
  6521. "email": "info@paragonie.com",
  6522. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  6523. "source": "https://github.com/paragonie/constant_time_encoding"
  6524. },
  6525. "time": "2024-05-08T12:36:18+00:00"
  6526. },
  6527. {
  6528. "name": "paragonie/random_compat",
  6529. "version": "v9.99.100",
  6530. "source": {
  6531. "type": "git",
  6532. "url": "https://github.com/paragonie/random_compat.git",
  6533. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  6534. },
  6535. "dist": {
  6536. "type": "zip",
  6537. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6538. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6539. "shasum": ""
  6540. },
  6541. "require": {
  6542. "php": ">= 7"
  6543. },
  6544. "require-dev": {
  6545. "phpunit/phpunit": "4.*|5.*",
  6546. "vimeo/psalm": "^1"
  6547. },
  6548. "suggest": {
  6549. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6550. },
  6551. "type": "library",
  6552. "notification-url": "https://packagist.org/downloads/",
  6553. "license": [
  6554. "MIT"
  6555. ],
  6556. "authors": [
  6557. {
  6558. "name": "Paragon Initiative Enterprises",
  6559. "email": "security@paragonie.com",
  6560. "homepage": "https://paragonie.com"
  6561. }
  6562. ],
  6563. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6564. "keywords": [
  6565. "csprng",
  6566. "polyfill",
  6567. "pseudorandom",
  6568. "random"
  6569. ],
  6570. "support": {
  6571. "email": "info@paragonie.com",
  6572. "issues": "https://github.com/paragonie/random_compat/issues",
  6573. "source": "https://github.com/paragonie/random_compat"
  6574. },
  6575. "time": "2020-10-15T08:29:30+00:00"
  6576. },
  6577. {
  6578. "name": "paragonie/sodium_compat",
  6579. "version": "v2.5.0",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/paragonie/sodium_compat.git",
  6583. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/4714da6efdc782c06690bc72ce34fae7941c2d9f",
  6588. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": "^8.1",
  6593. "php-64bit": "*"
  6594. },
  6595. "require-dev": {
  6596. "infection/infection": "^0",
  6597. "nikic/php-fuzzer": "^0",
  6598. "phpunit/phpunit": "^7|^8|^9|^10|^11",
  6599. "vimeo/psalm": "^4|^5|^6"
  6600. },
  6601. "suggest": {
  6602. "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  6603. },
  6604. "type": "library",
  6605. "extra": {
  6606. "branch-alias": {
  6607. "dev-master": "2.0.x-dev"
  6608. }
  6609. },
  6610. "autoload": {
  6611. "files": [
  6612. "autoload.php"
  6613. ],
  6614. "psr-4": {
  6615. "ParagonIE\\Sodium\\": "namespaced/"
  6616. }
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "ISC"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Paragon Initiative Enterprises",
  6625. "email": "security@paragonie.com"
  6626. },
  6627. {
  6628. "name": "Frank Denis",
  6629. "email": "jedisct1@pureftpd.org"
  6630. }
  6631. ],
  6632. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  6633. "keywords": [
  6634. "Authentication",
  6635. "BLAKE2b",
  6636. "ChaCha20",
  6637. "ChaCha20-Poly1305",
  6638. "Chapoly",
  6639. "Curve25519",
  6640. "Ed25519",
  6641. "EdDSA",
  6642. "Edwards-curve Digital Signature Algorithm",
  6643. "Elliptic Curve Diffie-Hellman",
  6644. "Poly1305",
  6645. "Pure-PHP cryptography",
  6646. "RFC 7748",
  6647. "RFC 8032",
  6648. "Salpoly",
  6649. "Salsa20",
  6650. "X25519",
  6651. "XChaCha20-Poly1305",
  6652. "XSalsa20-Poly1305",
  6653. "Xchacha20",
  6654. "Xsalsa20",
  6655. "aead",
  6656. "cryptography",
  6657. "ecdh",
  6658. "elliptic curve",
  6659. "elliptic curve cryptography",
  6660. "encryption",
  6661. "libsodium",
  6662. "php",
  6663. "public-key cryptography",
  6664. "secret-key cryptography",
  6665. "side-channel resistant"
  6666. ],
  6667. "support": {
  6668. "issues": "https://github.com/paragonie/sodium_compat/issues",
  6669. "source": "https://github.com/paragonie/sodium_compat/tree/v2.5.0"
  6670. },
  6671. "time": "2025-12-30T16:12:18+00:00"
  6672. },
  6673. {
  6674. "name": "paypal/paypal-checkout-sdk",
  6675. "version": "1.0.1",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  6679. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  6684. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  6685. "shasum": ""
  6686. },
  6687. "require": {
  6688. "paypal/paypalhttp": "1.0.0"
  6689. },
  6690. "require-dev": {
  6691. "phpunit/phpunit": "^5.7"
  6692. },
  6693. "type": "library",
  6694. "autoload": {
  6695. "psr-4": {
  6696. "Sample\\": "samples/",
  6697. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  6698. }
  6699. },
  6700. "notification-url": "https://packagist.org/downloads/",
  6701. "license": [
  6702. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  6703. ],
  6704. "authors": [
  6705. {
  6706. "name": "PayPal",
  6707. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  6708. }
  6709. ],
  6710. "description": "PayPal's PHP SDK for Checkout REST APIs",
  6711. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  6712. "keywords": [
  6713. "checkout",
  6714. "orders",
  6715. "payments",
  6716. "paypal",
  6717. "rest",
  6718. "sdk"
  6719. ],
  6720. "support": {
  6721. "issues": "https://github.com/paypal/Checkout-PHP-SDK/issues",
  6722. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.1"
  6723. },
  6724. "abandoned": "paypal/paypal-server-sdk",
  6725. "time": "2019-11-07T23:16:44+00:00"
  6726. },
  6727. {
  6728. "name": "paypal/paypalhttp",
  6729. "version": "1.0.0",
  6730. "source": {
  6731. "type": "git",
  6732. "url": "https://github.com/paypal/paypalhttp_php.git",
  6733. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3"
  6734. },
  6735. "dist": {
  6736. "type": "zip",
  6737. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  6738. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  6739. "shasum": ""
  6740. },
  6741. "require": {
  6742. "ext-curl": "*"
  6743. },
  6744. "require-dev": {
  6745. "phpunit/phpunit": "^5.7",
  6746. "wiremock-php/wiremock-php": "1.43.2"
  6747. },
  6748. "type": "library",
  6749. "autoload": {
  6750. "psr-4": {
  6751. "PayPalHttp\\": "lib/PayPalHttp"
  6752. }
  6753. },
  6754. "notification-url": "https://packagist.org/downloads/",
  6755. "license": [
  6756. "MIT"
  6757. ],
  6758. "authors": [
  6759. {
  6760. "name": "PayPal",
  6761. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  6762. }
  6763. ],
  6764. "support": {
  6765. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  6766. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.0"
  6767. },
  6768. "time": "2019-11-06T21:27:12+00:00"
  6769. },
  6770. {
  6771. "name": "phenx/php-font-lib",
  6772. "version": "0.5.6",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/dompdf/php-font-lib.git",
  6776. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  6781. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  6782. "shasum": ""
  6783. },
  6784. "require": {
  6785. "ext-mbstring": "*"
  6786. },
  6787. "require-dev": {
  6788. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  6789. },
  6790. "type": "library",
  6791. "autoload": {
  6792. "psr-4": {
  6793. "FontLib\\": "src/FontLib"
  6794. }
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "LGPL-2.1-or-later"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Fabien Ménager",
  6803. "email": "fabien.menager@gmail.com"
  6804. }
  6805. ],
  6806. "description": "A library to read, parse, export and make subsets of different types of font files.",
  6807. "homepage": "https://github.com/PhenX/php-font-lib",
  6808. "support": {
  6809. "issues": "https://github.com/dompdf/php-font-lib/issues",
  6810. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  6811. },
  6812. "time": "2024-01-29T14:45:26+00:00"
  6813. },
  6814. {
  6815. "name": "phenx/php-svg-lib",
  6816. "version": "0.5.4",
  6817. "source": {
  6818. "type": "git",
  6819. "url": "https://github.com/dompdf/php-svg-lib.git",
  6820. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691"
  6821. },
  6822. "dist": {
  6823. "type": "zip",
  6824. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  6825. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  6826. "shasum": ""
  6827. },
  6828. "require": {
  6829. "ext-mbstring": "*",
  6830. "php": "^7.1 || ^8.0",
  6831. "sabberworm/php-css-parser": "^8.4"
  6832. },
  6833. "require-dev": {
  6834. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  6835. },
  6836. "type": "library",
  6837. "autoload": {
  6838. "psr-4": {
  6839. "Svg\\": "src/Svg"
  6840. }
  6841. },
  6842. "notification-url": "https://packagist.org/downloads/",
  6843. "license": [
  6844. "LGPL-3.0-or-later"
  6845. ],
  6846. "authors": [
  6847. {
  6848. "name": "Fabien Ménager",
  6849. "email": "fabien.menager@gmail.com"
  6850. }
  6851. ],
  6852. "description": "A library to read, parse and export to PDF SVG files.",
  6853. "homepage": "https://github.com/PhenX/php-svg-lib",
  6854. "support": {
  6855. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  6856. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4"
  6857. },
  6858. "time": "2024-04-08T12:52:34+00:00"
  6859. },
  6860. {
  6861. "name": "php-http/discovery",
  6862. "version": "1.20.0",
  6863. "source": {
  6864. "type": "git",
  6865. "url": "https://github.com/php-http/discovery.git",
  6866. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6867. },
  6868. "dist": {
  6869. "type": "zip",
  6870. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6871. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6872. "shasum": ""
  6873. },
  6874. "require": {
  6875. "composer-plugin-api": "^1.0|^2.0",
  6876. "php": "^7.1 || ^8.0"
  6877. },
  6878. "conflict": {
  6879. "nyholm/psr7": "<1.0",
  6880. "zendframework/zend-diactoros": "*"
  6881. },
  6882. "provide": {
  6883. "php-http/async-client-implementation": "*",
  6884. "php-http/client-implementation": "*",
  6885. "psr/http-client-implementation": "*",
  6886. "psr/http-factory-implementation": "*",
  6887. "psr/http-message-implementation": "*"
  6888. },
  6889. "require-dev": {
  6890. "composer/composer": "^1.0.2|^2.0",
  6891. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6892. "php-http/httplug": "^1.0 || ^2.0",
  6893. "php-http/message-factory": "^1.0",
  6894. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6895. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6896. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6897. },
  6898. "type": "composer-plugin",
  6899. "extra": {
  6900. "class": "Http\\Discovery\\Composer\\Plugin",
  6901. "plugin-optional": true
  6902. },
  6903. "autoload": {
  6904. "psr-4": {
  6905. "Http\\Discovery\\": "src/"
  6906. },
  6907. "exclude-from-classmap": [
  6908. "src/Composer/Plugin.php"
  6909. ]
  6910. },
  6911. "notification-url": "https://packagist.org/downloads/",
  6912. "license": [
  6913. "MIT"
  6914. ],
  6915. "authors": [
  6916. {
  6917. "name": "Márk Sági-Kazár",
  6918. "email": "mark.sagikazar@gmail.com"
  6919. }
  6920. ],
  6921. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6922. "homepage": "http://php-http.org",
  6923. "keywords": [
  6924. "adapter",
  6925. "client",
  6926. "discovery",
  6927. "factory",
  6928. "http",
  6929. "message",
  6930. "psr17",
  6931. "psr7"
  6932. ],
  6933. "support": {
  6934. "issues": "https://github.com/php-http/discovery/issues",
  6935. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6936. },
  6937. "time": "2024-10-02T11:20:13+00:00"
  6938. },
  6939. {
  6940. "name": "php-http/httplug",
  6941. "version": "2.4.1",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/php-http/httplug.git",
  6945. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  6950. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": "^7.1 || ^8.0",
  6955. "php-http/promise": "^1.1",
  6956. "psr/http-client": "^1.0",
  6957. "psr/http-message": "^1.0 || ^2.0"
  6958. },
  6959. "require-dev": {
  6960. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  6961. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  6962. },
  6963. "type": "library",
  6964. "autoload": {
  6965. "psr-4": {
  6966. "Http\\Client\\": "src/"
  6967. }
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Eric GELOEN",
  6976. "email": "geloen.eric@gmail.com"
  6977. },
  6978. {
  6979. "name": "Márk Sági-Kazár",
  6980. "email": "mark.sagikazar@gmail.com",
  6981. "homepage": "https://sagikazarmark.hu"
  6982. }
  6983. ],
  6984. "description": "HTTPlug, the HTTP client abstraction for PHP",
  6985. "homepage": "http://httplug.io",
  6986. "keywords": [
  6987. "client",
  6988. "http"
  6989. ],
  6990. "support": {
  6991. "issues": "https://github.com/php-http/httplug/issues",
  6992. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  6993. },
  6994. "time": "2024-09-23T11:39:58+00:00"
  6995. },
  6996. {
  6997. "name": "php-http/multipart-stream-builder",
  6998. "version": "1.4.2",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/php-http/multipart-stream-builder.git",
  7002. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  7007. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  7008. "shasum": ""
  7009. },
  7010. "require": {
  7011. "php": "^7.1 || ^8.0",
  7012. "php-http/discovery": "^1.15",
  7013. "psr/http-factory-implementation": "^1.0"
  7014. },
  7015. "require-dev": {
  7016. "nyholm/psr7": "^1.0",
  7017. "php-http/message": "^1.5",
  7018. "php-http/message-factory": "^1.0.2",
  7019. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  7020. },
  7021. "type": "library",
  7022. "autoload": {
  7023. "psr-4": {
  7024. "Http\\Message\\MultipartStream\\": "src/"
  7025. }
  7026. },
  7027. "notification-url": "https://packagist.org/downloads/",
  7028. "license": [
  7029. "MIT"
  7030. ],
  7031. "authors": [
  7032. {
  7033. "name": "Tobias Nyholm",
  7034. "email": "tobias.nyholm@gmail.com"
  7035. }
  7036. ],
  7037. "description": "A builder class that help you create a multipart stream",
  7038. "homepage": "http://php-http.org",
  7039. "keywords": [
  7040. "factory",
  7041. "http",
  7042. "message",
  7043. "multipart stream",
  7044. "stream"
  7045. ],
  7046. "support": {
  7047. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  7048. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  7049. },
  7050. "time": "2024-09-04T13:22:54+00:00"
  7051. },
  7052. {
  7053. "name": "php-http/promise",
  7054. "version": "1.3.1",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/php-http/promise.git",
  7058. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  7063. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  7064. "shasum": ""
  7065. },
  7066. "require": {
  7067. "php": "^7.1 || ^8.0"
  7068. },
  7069. "require-dev": {
  7070. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  7071. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  7072. },
  7073. "type": "library",
  7074. "autoload": {
  7075. "psr-4": {
  7076. "Http\\Promise\\": "src/"
  7077. }
  7078. },
  7079. "notification-url": "https://packagist.org/downloads/",
  7080. "license": [
  7081. "MIT"
  7082. ],
  7083. "authors": [
  7084. {
  7085. "name": "Joel Wurtz",
  7086. "email": "joel.wurtz@gmail.com"
  7087. },
  7088. {
  7089. "name": "Márk Sági-Kazár",
  7090. "email": "mark.sagikazar@gmail.com"
  7091. }
  7092. ],
  7093. "description": "Promise used for asynchronous HTTP requests",
  7094. "homepage": "http://httplug.io",
  7095. "keywords": [
  7096. "promise"
  7097. ],
  7098. "support": {
  7099. "issues": "https://github.com/php-http/promise/issues",
  7100. "source": "https://github.com/php-http/promise/tree/1.3.1"
  7101. },
  7102. "time": "2024-03-15T13:55:21+00:00"
  7103. },
  7104. {
  7105. "name": "phpoffice/phpspreadsheet",
  7106. "version": "1.30.0",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  7110. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  7115. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "composer/pcre": "^1||^2||^3",
  7120. "ext-ctype": "*",
  7121. "ext-dom": "*",
  7122. "ext-fileinfo": "*",
  7123. "ext-gd": "*",
  7124. "ext-iconv": "*",
  7125. "ext-libxml": "*",
  7126. "ext-mbstring": "*",
  7127. "ext-simplexml": "*",
  7128. "ext-xml": "*",
  7129. "ext-xmlreader": "*",
  7130. "ext-xmlwriter": "*",
  7131. "ext-zip": "*",
  7132. "ext-zlib": "*",
  7133. "ezyang/htmlpurifier": "^4.15",
  7134. "maennchen/zipstream-php": "^2.1 || ^3.0",
  7135. "markbaker/complex": "^3.0",
  7136. "markbaker/matrix": "^3.0",
  7137. "php": "^7.4 || ^8.0",
  7138. "psr/http-client": "^1.0",
  7139. "psr/http-factory": "^1.0",
  7140. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  7141. },
  7142. "require-dev": {
  7143. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  7144. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  7145. "friendsofphp/php-cs-fixer": "^3.2",
  7146. "mitoteam/jpgraph": "^10.3",
  7147. "mpdf/mpdf": "^8.1.1",
  7148. "phpcompatibility/php-compatibility": "^9.3",
  7149. "phpstan/phpstan": "^1.1",
  7150. "phpstan/phpstan-phpunit": "^1.0",
  7151. "phpunit/phpunit": "^8.5 || ^9.0",
  7152. "squizlabs/php_codesniffer": "^3.7",
  7153. "tecnickcom/tcpdf": "^6.5"
  7154. },
  7155. "suggest": {
  7156. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  7157. "ext-intl": "PHP Internationalization Functions",
  7158. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  7159. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  7160. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  7161. },
  7162. "type": "library",
  7163. "autoload": {
  7164. "psr-4": {
  7165. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  7166. }
  7167. },
  7168. "notification-url": "https://packagist.org/downloads/",
  7169. "license": [
  7170. "MIT"
  7171. ],
  7172. "authors": [
  7173. {
  7174. "name": "Maarten Balliauw",
  7175. "homepage": "https://blog.maartenballiauw.be"
  7176. },
  7177. {
  7178. "name": "Mark Baker",
  7179. "homepage": "https://markbakeruk.net"
  7180. },
  7181. {
  7182. "name": "Franck Lefevre",
  7183. "homepage": "https://rootslabs.net"
  7184. },
  7185. {
  7186. "name": "Erik Tilt"
  7187. },
  7188. {
  7189. "name": "Adrien Crivelli"
  7190. }
  7191. ],
  7192. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  7193. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  7194. "keywords": [
  7195. "OpenXML",
  7196. "excel",
  7197. "gnumeric",
  7198. "ods",
  7199. "php",
  7200. "spreadsheet",
  7201. "xls",
  7202. "xlsx"
  7203. ],
  7204. "support": {
  7205. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  7206. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  7207. },
  7208. "time": "2025-08-10T06:28:02+00:00"
  7209. },
  7210. {
  7211. "name": "phpoption/phpoption",
  7212. "version": "1.9.3",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/schmittjoh/php-option.git",
  7216. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7221. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "php": "^7.2.5 || ^8.0"
  7226. },
  7227. "require-dev": {
  7228. "bamarni/composer-bin-plugin": "^1.8.2",
  7229. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  7230. },
  7231. "type": "library",
  7232. "extra": {
  7233. "bamarni-bin": {
  7234. "bin-links": true,
  7235. "forward-command": false
  7236. },
  7237. "branch-alias": {
  7238. "dev-master": "1.9-dev"
  7239. }
  7240. },
  7241. "autoload": {
  7242. "psr-4": {
  7243. "PhpOption\\": "src/PhpOption/"
  7244. }
  7245. },
  7246. "notification-url": "https://packagist.org/downloads/",
  7247. "license": [
  7248. "Apache-2.0"
  7249. ],
  7250. "authors": [
  7251. {
  7252. "name": "Johannes M. Schmitt",
  7253. "email": "schmittjoh@gmail.com",
  7254. "homepage": "https://github.com/schmittjoh"
  7255. },
  7256. {
  7257. "name": "Graham Campbell",
  7258. "email": "hello@gjcampbell.co.uk",
  7259. "homepage": "https://github.com/GrahamCampbell"
  7260. }
  7261. ],
  7262. "description": "Option Type for PHP",
  7263. "keywords": [
  7264. "language",
  7265. "option",
  7266. "php",
  7267. "type"
  7268. ],
  7269. "support": {
  7270. "issues": "https://github.com/schmittjoh/php-option/issues",
  7271. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  7272. },
  7273. "funding": [
  7274. {
  7275. "url": "https://github.com/GrahamCampbell",
  7276. "type": "github"
  7277. },
  7278. {
  7279. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  7280. "type": "tidelift"
  7281. }
  7282. ],
  7283. "time": "2024-07-20T21:41:07+00:00"
  7284. },
  7285. {
  7286. "name": "phpseclib/phpseclib",
  7287. "version": "3.0.43",
  7288. "source": {
  7289. "type": "git",
  7290. "url": "https://github.com/phpseclib/phpseclib.git",
  7291. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  7292. },
  7293. "dist": {
  7294. "type": "zip",
  7295. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  7296. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  7297. "shasum": ""
  7298. },
  7299. "require": {
  7300. "paragonie/constant_time_encoding": "^1|^2|^3",
  7301. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  7302. "php": ">=5.6.1"
  7303. },
  7304. "require-dev": {
  7305. "phpunit/phpunit": "*"
  7306. },
  7307. "suggest": {
  7308. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  7309. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  7310. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  7311. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  7312. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  7313. },
  7314. "type": "library",
  7315. "autoload": {
  7316. "files": [
  7317. "phpseclib/bootstrap.php"
  7318. ],
  7319. "psr-4": {
  7320. "phpseclib3\\": "phpseclib/"
  7321. }
  7322. },
  7323. "notification-url": "https://packagist.org/downloads/",
  7324. "license": [
  7325. "MIT"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "Jim Wigginton",
  7330. "email": "terrafrost@php.net",
  7331. "role": "Lead Developer"
  7332. },
  7333. {
  7334. "name": "Patrick Monnerat",
  7335. "email": "pm@datasphere.ch",
  7336. "role": "Developer"
  7337. },
  7338. {
  7339. "name": "Andreas Fischer",
  7340. "email": "bantu@phpbb.com",
  7341. "role": "Developer"
  7342. },
  7343. {
  7344. "name": "Hans-Jürgen Petrich",
  7345. "email": "petrich@tronic-media.com",
  7346. "role": "Developer"
  7347. },
  7348. {
  7349. "name": "Graham Campbell",
  7350. "email": "graham@alt-three.com",
  7351. "role": "Developer"
  7352. }
  7353. ],
  7354. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  7355. "homepage": "http://phpseclib.sourceforge.net",
  7356. "keywords": [
  7357. "BigInteger",
  7358. "aes",
  7359. "asn.1",
  7360. "asn1",
  7361. "blowfish",
  7362. "crypto",
  7363. "cryptography",
  7364. "encryption",
  7365. "rsa",
  7366. "security",
  7367. "sftp",
  7368. "signature",
  7369. "signing",
  7370. "ssh",
  7371. "twofish",
  7372. "x.509",
  7373. "x509"
  7374. ],
  7375. "support": {
  7376. "issues": "https://github.com/phpseclib/phpseclib/issues",
  7377. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  7378. },
  7379. "funding": [
  7380. {
  7381. "url": "https://github.com/terrafrost",
  7382. "type": "github"
  7383. },
  7384. {
  7385. "url": "https://www.patreon.com/phpseclib",
  7386. "type": "patreon"
  7387. },
  7388. {
  7389. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  7390. "type": "tidelift"
  7391. }
  7392. ],
  7393. "time": "2024-12-14T21:12:59+00:00"
  7394. },
  7395. {
  7396. "name": "predis/predis",
  7397. "version": "v2.3.0",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/predis/predis.git",
  7401. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/predis/predis/zipball/bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  7406. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  7407. "shasum": ""
  7408. },
  7409. "require": {
  7410. "php": "^7.2 || ^8.0"
  7411. },
  7412. "require-dev": {
  7413. "friendsofphp/php-cs-fixer": "^3.3",
  7414. "phpstan/phpstan": "^1.9",
  7415. "phpunit/phpunit": "^8.0 || ^9.4"
  7416. },
  7417. "suggest": {
  7418. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  7419. },
  7420. "type": "library",
  7421. "autoload": {
  7422. "psr-4": {
  7423. "Predis\\": "src/"
  7424. }
  7425. },
  7426. "notification-url": "https://packagist.org/downloads/",
  7427. "license": [
  7428. "MIT"
  7429. ],
  7430. "authors": [
  7431. {
  7432. "name": "Till Krüss",
  7433. "homepage": "https://till.im",
  7434. "role": "Maintainer"
  7435. }
  7436. ],
  7437. "description": "A flexible and feature-complete Redis client for PHP.",
  7438. "homepage": "http://github.com/predis/predis",
  7439. "keywords": [
  7440. "nosql",
  7441. "predis",
  7442. "redis"
  7443. ],
  7444. "support": {
  7445. "issues": "https://github.com/predis/predis/issues",
  7446. "source": "https://github.com/predis/predis/tree/v2.3.0"
  7447. },
  7448. "funding": [
  7449. {
  7450. "url": "https://github.com/sponsors/tillkruss",
  7451. "type": "github"
  7452. }
  7453. ],
  7454. "time": "2024-11-21T20:00:02+00:00"
  7455. },
  7456. {
  7457. "name": "prettus/l5-repository",
  7458. "version": "2.10.1",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/andersao/l5-repository.git",
  7462. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/27835088f92f42d73cc7f4f98b9386ddba709dcf",
  7467. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf",
  7468. "shasum": ""
  7469. },
  7470. "require": {
  7471. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7472. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7473. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7474. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7475. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7476. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7477. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7478. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7479. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4|~1.5|~1.6|~1.7"
  7480. },
  7481. "suggest": {
  7482. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  7483. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  7484. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  7485. },
  7486. "type": "library",
  7487. "extra": {
  7488. "laravel": {
  7489. "providers": [
  7490. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  7491. ]
  7492. }
  7493. },
  7494. "autoload": {
  7495. "psr-4": {
  7496. "Prettus\\Repository\\": "src/Prettus/Repository/"
  7497. }
  7498. },
  7499. "notification-url": "https://packagist.org/downloads/",
  7500. "license": [
  7501. "MIT"
  7502. ],
  7503. "authors": [
  7504. {
  7505. "name": "Anderson Andrade",
  7506. "email": "contato@andersonandra.de",
  7507. "homepage": "http://andersonandra.de",
  7508. "role": "Developer"
  7509. }
  7510. ],
  7511. "description": "Laravel 5|6|7|8|9|10|11|12 - Repositories to the database layer",
  7512. "homepage": "http://andersao.github.io/l5-repository",
  7513. "keywords": [
  7514. "cache",
  7515. "eloquent",
  7516. "laravel",
  7517. "model",
  7518. "repository"
  7519. ],
  7520. "support": {
  7521. "docs": "http://andersao.github.io/l5-repository",
  7522. "email": "contato@andersonandra.de",
  7523. "issues": "https://github.com/andersao/l5-repository/issues",
  7524. "source": "https://github.com/andersao/l5-repository",
  7525. "wiki": "https://github.com/andersao/l5-repository"
  7526. },
  7527. "time": "2025-03-10T11:13:50+00:00"
  7528. },
  7529. {
  7530. "name": "prettus/laravel-validation",
  7531. "version": "1.7.0",
  7532. "source": {
  7533. "type": "git",
  7534. "url": "https://github.com/andersao/laravel-validator.git",
  7535. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda"
  7536. },
  7537. "dist": {
  7538. "type": "zip",
  7539. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/fc6ecaaedb482767592eba2a4178792437c86bda",
  7540. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda",
  7541. "shasum": ""
  7542. },
  7543. "require": {
  7544. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7545. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7546. "php": ">=5.4.0"
  7547. },
  7548. "type": "library",
  7549. "autoload": {
  7550. "psr-4": {
  7551. "Prettus\\Validator\\": "src/Prettus/Validator/"
  7552. }
  7553. },
  7554. "notification-url": "https://packagist.org/downloads/",
  7555. "authors": [
  7556. {
  7557. "name": "Anderson Andrade",
  7558. "email": "contato@andersonandra.de",
  7559. "homepage": "http://andersonandra.de",
  7560. "role": "Developer"
  7561. }
  7562. ],
  7563. "description": "Laravel Validation Service",
  7564. "homepage": "http://andersao.github.io/laravel-validation",
  7565. "keywords": [
  7566. "laravel",
  7567. "service",
  7568. "validation"
  7569. ],
  7570. "support": {
  7571. "docs": "http://andersao.github.io/laravel-validation",
  7572. "email": "contato@andersonandra.de",
  7573. "issues": "https://github.com/andersao/laravel-validation/issues",
  7574. "source": "https://github.com/andersao/laravel-validation",
  7575. "wiki": "https://github.com/andersao/laravel-validation"
  7576. },
  7577. "time": "2025-03-07T18:33:05+00:00"
  7578. },
  7579. {
  7580. "name": "psr/cache",
  7581. "version": "3.0.0",
  7582. "source": {
  7583. "type": "git",
  7584. "url": "https://github.com/php-fig/cache.git",
  7585. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7586. },
  7587. "dist": {
  7588. "type": "zip",
  7589. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7590. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7591. "shasum": ""
  7592. },
  7593. "require": {
  7594. "php": ">=8.0.0"
  7595. },
  7596. "type": "library",
  7597. "extra": {
  7598. "branch-alias": {
  7599. "dev-master": "1.0.x-dev"
  7600. }
  7601. },
  7602. "autoload": {
  7603. "psr-4": {
  7604. "Psr\\Cache\\": "src/"
  7605. }
  7606. },
  7607. "notification-url": "https://packagist.org/downloads/",
  7608. "license": [
  7609. "MIT"
  7610. ],
  7611. "authors": [
  7612. {
  7613. "name": "PHP-FIG",
  7614. "homepage": "https://www.php-fig.org/"
  7615. }
  7616. ],
  7617. "description": "Common interface for caching libraries",
  7618. "keywords": [
  7619. "cache",
  7620. "psr",
  7621. "psr-6"
  7622. ],
  7623. "support": {
  7624. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7625. },
  7626. "time": "2021-02-03T23:26:27+00:00"
  7627. },
  7628. {
  7629. "name": "psr/clock",
  7630. "version": "1.0.0",
  7631. "source": {
  7632. "type": "git",
  7633. "url": "https://github.com/php-fig/clock.git",
  7634. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  7635. },
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7639. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "php": "^7.0 || ^8.0"
  7644. },
  7645. "type": "library",
  7646. "autoload": {
  7647. "psr-4": {
  7648. "Psr\\Clock\\": "src/"
  7649. }
  7650. },
  7651. "notification-url": "https://packagist.org/downloads/",
  7652. "license": [
  7653. "MIT"
  7654. ],
  7655. "authors": [
  7656. {
  7657. "name": "PHP-FIG",
  7658. "homepage": "https://www.php-fig.org/"
  7659. }
  7660. ],
  7661. "description": "Common interface for reading the clock.",
  7662. "homepage": "https://github.com/php-fig/clock",
  7663. "keywords": [
  7664. "clock",
  7665. "now",
  7666. "psr",
  7667. "psr-20",
  7668. "time"
  7669. ],
  7670. "support": {
  7671. "issues": "https://github.com/php-fig/clock/issues",
  7672. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  7673. },
  7674. "time": "2022-11-25T14:36:26+00:00"
  7675. },
  7676. {
  7677. "name": "psr/container",
  7678. "version": "2.0.2",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/php-fig/container.git",
  7682. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7687. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "php": ">=7.4.0"
  7692. },
  7693. "type": "library",
  7694. "extra": {
  7695. "branch-alias": {
  7696. "dev-master": "2.0.x-dev"
  7697. }
  7698. },
  7699. "autoload": {
  7700. "psr-4": {
  7701. "Psr\\Container\\": "src/"
  7702. }
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "MIT"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "PHP-FIG",
  7711. "homepage": "https://www.php-fig.org/"
  7712. }
  7713. ],
  7714. "description": "Common Container Interface (PHP FIG PSR-11)",
  7715. "homepage": "https://github.com/php-fig/container",
  7716. "keywords": [
  7717. "PSR-11",
  7718. "container",
  7719. "container-interface",
  7720. "container-interop",
  7721. "psr"
  7722. ],
  7723. "support": {
  7724. "issues": "https://github.com/php-fig/container/issues",
  7725. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7726. },
  7727. "time": "2021-11-05T16:47:00+00:00"
  7728. },
  7729. {
  7730. "name": "psr/event-dispatcher",
  7731. "version": "1.0.0",
  7732. "source": {
  7733. "type": "git",
  7734. "url": "https://github.com/php-fig/event-dispatcher.git",
  7735. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7736. },
  7737. "dist": {
  7738. "type": "zip",
  7739. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7740. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7741. "shasum": ""
  7742. },
  7743. "require": {
  7744. "php": ">=7.2.0"
  7745. },
  7746. "type": "library",
  7747. "extra": {
  7748. "branch-alias": {
  7749. "dev-master": "1.0.x-dev"
  7750. }
  7751. },
  7752. "autoload": {
  7753. "psr-4": {
  7754. "Psr\\EventDispatcher\\": "src/"
  7755. }
  7756. },
  7757. "notification-url": "https://packagist.org/downloads/",
  7758. "license": [
  7759. "MIT"
  7760. ],
  7761. "authors": [
  7762. {
  7763. "name": "PHP-FIG",
  7764. "homepage": "http://www.php-fig.org/"
  7765. }
  7766. ],
  7767. "description": "Standard interfaces for event handling.",
  7768. "keywords": [
  7769. "events",
  7770. "psr",
  7771. "psr-14"
  7772. ],
  7773. "support": {
  7774. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7775. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7776. },
  7777. "time": "2019-01-08T18:20:26+00:00"
  7778. },
  7779. {
  7780. "name": "psr/http-client",
  7781. "version": "1.0.3",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/php-fig/http-client.git",
  7785. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7790. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": "^7.0 || ^8.0",
  7795. "psr/http-message": "^1.0 || ^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\\Http\\Client\\": "src/"
  7806. }
  7807. },
  7808. "notification-url": "https://packagist.org/downloads/",
  7809. "license": [
  7810. "MIT"
  7811. ],
  7812. "authors": [
  7813. {
  7814. "name": "PHP-FIG",
  7815. "homepage": "https://www.php-fig.org/"
  7816. }
  7817. ],
  7818. "description": "Common interface for HTTP clients",
  7819. "homepage": "https://github.com/php-fig/http-client",
  7820. "keywords": [
  7821. "http",
  7822. "http-client",
  7823. "psr",
  7824. "psr-18"
  7825. ],
  7826. "support": {
  7827. "source": "https://github.com/php-fig/http-client"
  7828. },
  7829. "time": "2023-09-23T14:17:50+00:00"
  7830. },
  7831. {
  7832. "name": "psr/http-factory",
  7833. "version": "1.1.0",
  7834. "source": {
  7835. "type": "git",
  7836. "url": "https://github.com/php-fig/http-factory.git",
  7837. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7838. },
  7839. "dist": {
  7840. "type": "zip",
  7841. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7842. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7843. "shasum": ""
  7844. },
  7845. "require": {
  7846. "php": ">=7.1",
  7847. "psr/http-message": "^1.0 || ^2.0"
  7848. },
  7849. "type": "library",
  7850. "extra": {
  7851. "branch-alias": {
  7852. "dev-master": "1.0.x-dev"
  7853. }
  7854. },
  7855. "autoload": {
  7856. "psr-4": {
  7857. "Psr\\Http\\Message\\": "src/"
  7858. }
  7859. },
  7860. "notification-url": "https://packagist.org/downloads/",
  7861. "license": [
  7862. "MIT"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "PHP-FIG",
  7867. "homepage": "https://www.php-fig.org/"
  7868. }
  7869. ],
  7870. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7871. "keywords": [
  7872. "factory",
  7873. "http",
  7874. "message",
  7875. "psr",
  7876. "psr-17",
  7877. "psr-7",
  7878. "request",
  7879. "response"
  7880. ],
  7881. "support": {
  7882. "source": "https://github.com/php-fig/http-factory"
  7883. },
  7884. "time": "2024-04-15T12:06:14+00:00"
  7885. },
  7886. {
  7887. "name": "psr/http-message",
  7888. "version": "2.0",
  7889. "source": {
  7890. "type": "git",
  7891. "url": "https://github.com/php-fig/http-message.git",
  7892. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7893. },
  7894. "dist": {
  7895. "type": "zip",
  7896. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7897. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7898. "shasum": ""
  7899. },
  7900. "require": {
  7901. "php": "^7.2 || ^8.0"
  7902. },
  7903. "type": "library",
  7904. "extra": {
  7905. "branch-alias": {
  7906. "dev-master": "2.0.x-dev"
  7907. }
  7908. },
  7909. "autoload": {
  7910. "psr-4": {
  7911. "Psr\\Http\\Message\\": "src/"
  7912. }
  7913. },
  7914. "notification-url": "https://packagist.org/downloads/",
  7915. "license": [
  7916. "MIT"
  7917. ],
  7918. "authors": [
  7919. {
  7920. "name": "PHP-FIG",
  7921. "homepage": "https://www.php-fig.org/"
  7922. }
  7923. ],
  7924. "description": "Common interface for HTTP messages",
  7925. "homepage": "https://github.com/php-fig/http-message",
  7926. "keywords": [
  7927. "http",
  7928. "http-message",
  7929. "psr",
  7930. "psr-7",
  7931. "request",
  7932. "response"
  7933. ],
  7934. "support": {
  7935. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7936. },
  7937. "time": "2023-04-04T09:54:51+00:00"
  7938. },
  7939. {
  7940. "name": "psr/link",
  7941. "version": "2.0.1",
  7942. "source": {
  7943. "type": "git",
  7944. "url": "https://github.com/php-fig/link.git",
  7945. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  7946. },
  7947. "dist": {
  7948. "type": "zip",
  7949. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  7950. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  7951. "shasum": ""
  7952. },
  7953. "require": {
  7954. "php": ">=8.0.0"
  7955. },
  7956. "suggest": {
  7957. "fig/link-util": "Provides some useful PSR-13 utilities"
  7958. },
  7959. "type": "library",
  7960. "extra": {
  7961. "branch-alias": {
  7962. "dev-master": "2.0.x-dev"
  7963. }
  7964. },
  7965. "autoload": {
  7966. "psr-4": {
  7967. "Psr\\Link\\": "src/"
  7968. }
  7969. },
  7970. "notification-url": "https://packagist.org/downloads/",
  7971. "license": [
  7972. "MIT"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "PHP-FIG",
  7977. "homepage": "http://www.php-fig.org/"
  7978. }
  7979. ],
  7980. "description": "Common interfaces for HTTP links",
  7981. "homepage": "https://github.com/php-fig/link",
  7982. "keywords": [
  7983. "http",
  7984. "http-link",
  7985. "link",
  7986. "psr",
  7987. "psr-13",
  7988. "rest"
  7989. ],
  7990. "support": {
  7991. "source": "https://github.com/php-fig/link/tree/2.0.1"
  7992. },
  7993. "time": "2021-03-11T23:00:27+00:00"
  7994. },
  7995. {
  7996. "name": "psr/log",
  7997. "version": "3.0.2",
  7998. "source": {
  7999. "type": "git",
  8000. "url": "https://github.com/php-fig/log.git",
  8001. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  8002. },
  8003. "dist": {
  8004. "type": "zip",
  8005. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  8006. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  8007. "shasum": ""
  8008. },
  8009. "require": {
  8010. "php": ">=8.0.0"
  8011. },
  8012. "type": "library",
  8013. "extra": {
  8014. "branch-alias": {
  8015. "dev-master": "3.x-dev"
  8016. }
  8017. },
  8018. "autoload": {
  8019. "psr-4": {
  8020. "Psr\\Log\\": "src"
  8021. }
  8022. },
  8023. "notification-url": "https://packagist.org/downloads/",
  8024. "license": [
  8025. "MIT"
  8026. ],
  8027. "authors": [
  8028. {
  8029. "name": "PHP-FIG",
  8030. "homepage": "https://www.php-fig.org/"
  8031. }
  8032. ],
  8033. "description": "Common interface for logging libraries",
  8034. "homepage": "https://github.com/php-fig/log",
  8035. "keywords": [
  8036. "log",
  8037. "psr",
  8038. "psr-3"
  8039. ],
  8040. "support": {
  8041. "source": "https://github.com/php-fig/log/tree/3.0.2"
  8042. },
  8043. "time": "2024-09-11T13:17:53+00:00"
  8044. },
  8045. {
  8046. "name": "psr/simple-cache",
  8047. "version": "3.0.0",
  8048. "source": {
  8049. "type": "git",
  8050. "url": "https://github.com/php-fig/simple-cache.git",
  8051. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  8052. },
  8053. "dist": {
  8054. "type": "zip",
  8055. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  8056. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  8057. "shasum": ""
  8058. },
  8059. "require": {
  8060. "php": ">=8.0.0"
  8061. },
  8062. "type": "library",
  8063. "extra": {
  8064. "branch-alias": {
  8065. "dev-master": "3.0.x-dev"
  8066. }
  8067. },
  8068. "autoload": {
  8069. "psr-4": {
  8070. "Psr\\SimpleCache\\": "src/"
  8071. }
  8072. },
  8073. "notification-url": "https://packagist.org/downloads/",
  8074. "license": [
  8075. "MIT"
  8076. ],
  8077. "authors": [
  8078. {
  8079. "name": "PHP-FIG",
  8080. "homepage": "https://www.php-fig.org/"
  8081. }
  8082. ],
  8083. "description": "Common interfaces for simple caching",
  8084. "keywords": [
  8085. "cache",
  8086. "caching",
  8087. "psr",
  8088. "psr-16",
  8089. "simple-cache"
  8090. ],
  8091. "support": {
  8092. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  8093. },
  8094. "time": "2021-10-29T13:26:27+00:00"
  8095. },
  8096. {
  8097. "name": "psy/psysh",
  8098. "version": "v0.12.8",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/bobthecow/psysh.git",
  8102. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  8107. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "ext-json": "*",
  8112. "ext-tokenizer": "*",
  8113. "nikic/php-parser": "^5.0 || ^4.0",
  8114. "php": "^8.0 || ^7.4",
  8115. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  8116. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  8117. },
  8118. "conflict": {
  8119. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  8120. },
  8121. "require-dev": {
  8122. "bamarni/composer-bin-plugin": "^1.2"
  8123. },
  8124. "suggest": {
  8125. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8126. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8127. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  8128. },
  8129. "bin": [
  8130. "bin/psysh"
  8131. ],
  8132. "type": "library",
  8133. "extra": {
  8134. "bamarni-bin": {
  8135. "bin-links": false,
  8136. "forward-command": false
  8137. },
  8138. "branch-alias": {
  8139. "dev-main": "0.12.x-dev"
  8140. }
  8141. },
  8142. "autoload": {
  8143. "files": [
  8144. "src/functions.php"
  8145. ],
  8146. "psr-4": {
  8147. "Psy\\": "src/"
  8148. }
  8149. },
  8150. "notification-url": "https://packagist.org/downloads/",
  8151. "license": [
  8152. "MIT"
  8153. ],
  8154. "authors": [
  8155. {
  8156. "name": "Justin Hileman",
  8157. "email": "justin@justinhileman.info",
  8158. "homepage": "http://justinhileman.com"
  8159. }
  8160. ],
  8161. "description": "An interactive shell for modern PHP.",
  8162. "homepage": "http://psysh.org",
  8163. "keywords": [
  8164. "REPL",
  8165. "console",
  8166. "interactive",
  8167. "shell"
  8168. ],
  8169. "support": {
  8170. "issues": "https://github.com/bobthecow/psysh/issues",
  8171. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  8172. },
  8173. "time": "2025-03-16T03:05:19+00:00"
  8174. },
  8175. {
  8176. "name": "pusher/pusher-php-server",
  8177. "version": "7.2.7",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/pusher/pusher-http-php.git",
  8181. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  8186. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  8187. "shasum": ""
  8188. },
  8189. "require": {
  8190. "ext-curl": "*",
  8191. "ext-json": "*",
  8192. "guzzlehttp/guzzle": "^7.2",
  8193. "paragonie/sodium_compat": "^1.6|^2.0",
  8194. "php": "^7.3|^8.0",
  8195. "psr/log": "^1.0|^2.0|^3.0"
  8196. },
  8197. "require-dev": {
  8198. "overtrue/phplint": "^2.3",
  8199. "phpunit/phpunit": "^9.3"
  8200. },
  8201. "type": "library",
  8202. "extra": {
  8203. "branch-alias": {
  8204. "dev-master": "5.0-dev"
  8205. }
  8206. },
  8207. "autoload": {
  8208. "psr-4": {
  8209. "Pusher\\": "src/"
  8210. }
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "description": "Library for interacting with the Pusher REST API",
  8217. "keywords": [
  8218. "events",
  8219. "messaging",
  8220. "php-pusher-server",
  8221. "publish",
  8222. "push",
  8223. "pusher",
  8224. "real time",
  8225. "real-time",
  8226. "realtime",
  8227. "rest",
  8228. "trigger"
  8229. ],
  8230. "support": {
  8231. "issues": "https://github.com/pusher/pusher-http-php/issues",
  8232. "source": "https://github.com/pusher/pusher-http-php/tree/7.2.7"
  8233. },
  8234. "time": "2025-01-06T10:56:20+00:00"
  8235. },
  8236. {
  8237. "name": "ralouphie/getallheaders",
  8238. "version": "3.0.3",
  8239. "source": {
  8240. "type": "git",
  8241. "url": "https://github.com/ralouphie/getallheaders.git",
  8242. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8243. },
  8244. "dist": {
  8245. "type": "zip",
  8246. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8247. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8248. "shasum": ""
  8249. },
  8250. "require": {
  8251. "php": ">=5.6"
  8252. },
  8253. "require-dev": {
  8254. "php-coveralls/php-coveralls": "^2.1",
  8255. "phpunit/phpunit": "^5 || ^6.5"
  8256. },
  8257. "type": "library",
  8258. "autoload": {
  8259. "files": [
  8260. "src/getallheaders.php"
  8261. ]
  8262. },
  8263. "notification-url": "https://packagist.org/downloads/",
  8264. "license": [
  8265. "MIT"
  8266. ],
  8267. "authors": [
  8268. {
  8269. "name": "Ralph Khattar",
  8270. "email": "ralph.khattar@gmail.com"
  8271. }
  8272. ],
  8273. "description": "A polyfill for getallheaders.",
  8274. "support": {
  8275. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8276. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8277. },
  8278. "time": "2019-03-08T08:55:37+00:00"
  8279. },
  8280. {
  8281. "name": "ramsey/collection",
  8282. "version": "2.1.0",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/ramsey/collection.git",
  8286. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  8291. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  8292. "shasum": ""
  8293. },
  8294. "require": {
  8295. "php": "^8.1"
  8296. },
  8297. "require-dev": {
  8298. "captainhook/plugin-composer": "^5.3",
  8299. "ergebnis/composer-normalize": "^2.45",
  8300. "fakerphp/faker": "^1.24",
  8301. "hamcrest/hamcrest-php": "^2.0",
  8302. "jangregor/phpstan-prophecy": "^2.1",
  8303. "mockery/mockery": "^1.6",
  8304. "php-parallel-lint/php-console-highlighter": "^1.0",
  8305. "php-parallel-lint/php-parallel-lint": "^1.4",
  8306. "phpspec/prophecy-phpunit": "^2.3",
  8307. "phpstan/extension-installer": "^1.4",
  8308. "phpstan/phpstan": "^2.1",
  8309. "phpstan/phpstan-mockery": "^2.0",
  8310. "phpstan/phpstan-phpunit": "^2.0",
  8311. "phpunit/phpunit": "^10.5",
  8312. "ramsey/coding-standard": "^2.3",
  8313. "ramsey/conventional-commits": "^1.6",
  8314. "roave/security-advisories": "dev-latest"
  8315. },
  8316. "type": "library",
  8317. "extra": {
  8318. "captainhook": {
  8319. "force-install": true
  8320. },
  8321. "ramsey/conventional-commits": {
  8322. "configFile": "conventional-commits.json"
  8323. }
  8324. },
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Ramsey\\Collection\\": "src/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Ben Ramsey",
  8337. "email": "ben@benramsey.com",
  8338. "homepage": "https://benramsey.com"
  8339. }
  8340. ],
  8341. "description": "A PHP library for representing and manipulating collections.",
  8342. "keywords": [
  8343. "array",
  8344. "collection",
  8345. "hash",
  8346. "map",
  8347. "queue",
  8348. "set"
  8349. ],
  8350. "support": {
  8351. "issues": "https://github.com/ramsey/collection/issues",
  8352. "source": "https://github.com/ramsey/collection/tree/2.1.0"
  8353. },
  8354. "time": "2025-03-02T04:48:29+00:00"
  8355. },
  8356. {
  8357. "name": "ramsey/uuid",
  8358. "version": "4.7.6",
  8359. "source": {
  8360. "type": "git",
  8361. "url": "https://github.com/ramsey/uuid.git",
  8362. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  8363. },
  8364. "dist": {
  8365. "type": "zip",
  8366. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  8367. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  8368. "shasum": ""
  8369. },
  8370. "require": {
  8371. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  8372. "ext-json": "*",
  8373. "php": "^8.0",
  8374. "ramsey/collection": "^1.2 || ^2.0"
  8375. },
  8376. "replace": {
  8377. "rhumsaa/uuid": "self.version"
  8378. },
  8379. "require-dev": {
  8380. "captainhook/captainhook": "^5.10",
  8381. "captainhook/plugin-composer": "^5.3",
  8382. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  8383. "doctrine/annotations": "^1.8",
  8384. "ergebnis/composer-normalize": "^2.15",
  8385. "mockery/mockery": "^1.3",
  8386. "paragonie/random-lib": "^2",
  8387. "php-mock/php-mock": "^2.2",
  8388. "php-mock/php-mock-mockery": "^1.3",
  8389. "php-parallel-lint/php-parallel-lint": "^1.1",
  8390. "phpbench/phpbench": "^1.0",
  8391. "phpstan/extension-installer": "^1.1",
  8392. "phpstan/phpstan": "^1.8",
  8393. "phpstan/phpstan-mockery": "^1.1",
  8394. "phpstan/phpstan-phpunit": "^1.1",
  8395. "phpunit/phpunit": "^8.5 || ^9",
  8396. "ramsey/composer-repl": "^1.4",
  8397. "slevomat/coding-standard": "^8.4",
  8398. "squizlabs/php_codesniffer": "^3.5",
  8399. "vimeo/psalm": "^4.9"
  8400. },
  8401. "suggest": {
  8402. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  8403. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  8404. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  8405. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  8406. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  8407. },
  8408. "type": "library",
  8409. "extra": {
  8410. "captainhook": {
  8411. "force-install": true
  8412. }
  8413. },
  8414. "autoload": {
  8415. "files": [
  8416. "src/functions.php"
  8417. ],
  8418. "psr-4": {
  8419. "Ramsey\\Uuid\\": "src/"
  8420. }
  8421. },
  8422. "notification-url": "https://packagist.org/downloads/",
  8423. "license": [
  8424. "MIT"
  8425. ],
  8426. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  8427. "keywords": [
  8428. "guid",
  8429. "identifier",
  8430. "uuid"
  8431. ],
  8432. "support": {
  8433. "issues": "https://github.com/ramsey/uuid/issues",
  8434. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  8435. },
  8436. "funding": [
  8437. {
  8438. "url": "https://github.com/ramsey",
  8439. "type": "github"
  8440. },
  8441. {
  8442. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  8443. "type": "tidelift"
  8444. }
  8445. ],
  8446. "time": "2024-04-27T21:32:50+00:00"
  8447. },
  8448. {
  8449. "name": "sabberworm/php-css-parser",
  8450. "version": "v8.7.0",
  8451. "source": {
  8452. "type": "git",
  8453. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  8454. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf"
  8455. },
  8456. "dist": {
  8457. "type": "zip",
  8458. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/f414ff953002a9b18e3a116f5e462c56f21237cf",
  8459. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf",
  8460. "shasum": ""
  8461. },
  8462. "require": {
  8463. "ext-iconv": "*",
  8464. "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  8465. },
  8466. "require-dev": {
  8467. "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.40"
  8468. },
  8469. "suggest": {
  8470. "ext-mbstring": "for parsing UTF-8 CSS"
  8471. },
  8472. "type": "library",
  8473. "extra": {
  8474. "branch-alias": {
  8475. "dev-main": "9.0.x-dev"
  8476. }
  8477. },
  8478. "autoload": {
  8479. "psr-4": {
  8480. "Sabberworm\\CSS\\": "src/"
  8481. }
  8482. },
  8483. "notification-url": "https://packagist.org/downloads/",
  8484. "license": [
  8485. "MIT"
  8486. ],
  8487. "authors": [
  8488. {
  8489. "name": "Raphael Schweikert"
  8490. },
  8491. {
  8492. "name": "Oliver Klee",
  8493. "email": "github@oliverklee.de"
  8494. },
  8495. {
  8496. "name": "Jake Hotson",
  8497. "email": "jake.github@qzdesign.co.uk"
  8498. }
  8499. ],
  8500. "description": "Parser for CSS Files written in PHP",
  8501. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  8502. "keywords": [
  8503. "css",
  8504. "parser",
  8505. "stylesheet"
  8506. ],
  8507. "support": {
  8508. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  8509. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.7.0"
  8510. },
  8511. "time": "2024-10-27T17:38:32+00:00"
  8512. },
  8513. {
  8514. "name": "setasign/fpdi",
  8515. "version": "v2.6.4",
  8516. "source": {
  8517. "type": "git",
  8518. "url": "https://github.com/Setasign/FPDI.git",
  8519. "reference": "4b53852fde2734ec6a07e458a085db627c60eada"
  8520. },
  8521. "dist": {
  8522. "type": "zip",
  8523. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada",
  8524. "reference": "4b53852fde2734ec6a07e458a085db627c60eada",
  8525. "shasum": ""
  8526. },
  8527. "require": {
  8528. "ext-zlib": "*",
  8529. "php": "^7.1 || ^8.0"
  8530. },
  8531. "conflict": {
  8532. "setasign/tfpdf": "<1.31"
  8533. },
  8534. "require-dev": {
  8535. "phpunit/phpunit": "^7",
  8536. "setasign/fpdf": "~1.8.6",
  8537. "setasign/tfpdf": "~1.33",
  8538. "squizlabs/php_codesniffer": "^3.5",
  8539. "tecnickcom/tcpdf": "^6.8"
  8540. },
  8541. "suggest": {
  8542. "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."
  8543. },
  8544. "type": "library",
  8545. "autoload": {
  8546. "psr-4": {
  8547. "setasign\\Fpdi\\": "src/"
  8548. }
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "MIT"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Jan Slabon",
  8557. "email": "jan.slabon@setasign.com",
  8558. "homepage": "https://www.setasign.com"
  8559. },
  8560. {
  8561. "name": "Maximilian Kresse",
  8562. "email": "maximilian.kresse@setasign.com",
  8563. "homepage": "https://www.setasign.com"
  8564. }
  8565. ],
  8566. "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.",
  8567. "homepage": "https://www.setasign.com/fpdi",
  8568. "keywords": [
  8569. "fpdf",
  8570. "fpdi",
  8571. "pdf"
  8572. ],
  8573. "support": {
  8574. "issues": "https://github.com/Setasign/FPDI/issues",
  8575. "source": "https://github.com/Setasign/FPDI/tree/v2.6.4"
  8576. },
  8577. "funding": [
  8578. {
  8579. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  8580. "type": "tidelift"
  8581. }
  8582. ],
  8583. "time": "2025-08-05T09:57:14+00:00"
  8584. },
  8585. {
  8586. "name": "shetabit/visitor",
  8587. "version": "v4.4.1",
  8588. "source": {
  8589. "type": "git",
  8590. "url": "https://github.com/shetabit/visitor.git",
  8591. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96"
  8592. },
  8593. "dist": {
  8594. "type": "zip",
  8595. "url": "https://api.github.com/repos/shetabit/visitor/zipball/4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  8596. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  8597. "shasum": ""
  8598. },
  8599. "require": {
  8600. "illuminate/support": "9.*|10.*|11.*|12.*",
  8601. "jaybizzle/crawler-detect": "^1.2",
  8602. "mobiledetect/mobiledetectlib": "^4.8",
  8603. "php": ">=8.0",
  8604. "ua-parser/uap-php": "^3.9"
  8605. },
  8606. "require-dev": {
  8607. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  8608. "phpunit/phpunit": ">=7.5",
  8609. "squizlabs/php_codesniffer": "^3.4"
  8610. },
  8611. "type": "library",
  8612. "extra": {
  8613. "laravel": {
  8614. "aliases": {
  8615. "Visitor": "Shetabit\\Visitor\\Facade\\Visitor"
  8616. },
  8617. "providers": [
  8618. "Shetabit\\Visitor\\Provider\\VisitorServiceProvider"
  8619. ]
  8620. }
  8621. },
  8622. "autoload": {
  8623. "files": [
  8624. "src/helpers.php"
  8625. ],
  8626. "psr-4": {
  8627. "Shetabit\\Visitor\\": "src"
  8628. }
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "MIT"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Mahdi Khanzadi",
  8637. "email": "khanzadimahdi@gmail.com",
  8638. "homepage": "https://github.com/khanzadimahdi",
  8639. "role": "Developer"
  8640. }
  8641. ],
  8642. "description": "Laravel visitor",
  8643. "homepage": "https://github.com/shetabit/visitor",
  8644. "keywords": [
  8645. "parse laravel user agents",
  8646. "shetabit",
  8647. "trace laravel visitors",
  8648. "track laravel visitors",
  8649. "visitor"
  8650. ],
  8651. "support": {
  8652. "issues": "https://github.com/shetabit/visitor/issues",
  8653. "source": "https://github.com/shetabit/visitor/tree/v4.4.1"
  8654. },
  8655. "time": "2025-03-18T14:58:13+00:00"
  8656. },
  8657. {
  8658. "name": "spatie/browsershot",
  8659. "version": "5.0.8",
  8660. "source": {
  8661. "type": "git",
  8662. "url": "https://github.com/spatie/browsershot.git",
  8663. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3"
  8664. },
  8665. "dist": {
  8666. "type": "zip",
  8667. "url": "https://api.github.com/repos/spatie/browsershot/zipball/0102971ae974022ec4a7a149e8924ea355b52cc3",
  8668. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3",
  8669. "shasum": ""
  8670. },
  8671. "require": {
  8672. "ext-fileinfo": "*",
  8673. "ext-json": "*",
  8674. "php": "^8.2",
  8675. "spatie/temporary-directory": "^2.0",
  8676. "symfony/process": "^6.0|^7.0"
  8677. },
  8678. "require-dev": {
  8679. "pestphp/pest": "^3.0",
  8680. "spatie/image": "^3.6",
  8681. "spatie/pdf-to-text": "^1.52",
  8682. "spatie/phpunit-snapshot-assertions": "^4.2.3|^5.0"
  8683. },
  8684. "type": "library",
  8685. "autoload": {
  8686. "psr-4": {
  8687. "Spatie\\Browsershot\\": "src"
  8688. }
  8689. },
  8690. "notification-url": "https://packagist.org/downloads/",
  8691. "license": [
  8692. "MIT"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Freek Van der Herten",
  8697. "email": "freek@spatie.be",
  8698. "homepage": "https://github.com/freekmurze",
  8699. "role": "Developer"
  8700. }
  8701. ],
  8702. "description": "Convert a webpage to an image or pdf using headless Chrome",
  8703. "homepage": "https://github.com/spatie/browsershot",
  8704. "keywords": [
  8705. "chrome",
  8706. "convert",
  8707. "headless",
  8708. "image",
  8709. "pdf",
  8710. "puppeteer",
  8711. "screenshot",
  8712. "webpage"
  8713. ],
  8714. "support": {
  8715. "source": "https://github.com/spatie/browsershot/tree/5.0.8"
  8716. },
  8717. "funding": [
  8718. {
  8719. "url": "https://github.com/spatie",
  8720. "type": "github"
  8721. }
  8722. ],
  8723. "time": "2025-02-17T09:56:12+00:00"
  8724. },
  8725. {
  8726. "name": "spatie/crawler",
  8727. "version": "8.4.2",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/spatie/crawler.git",
  8731. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/spatie/crawler/zipball/4dc593040018885229dfc8df7cc4bf12cd470cf3",
  8736. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3",
  8737. "shasum": ""
  8738. },
  8739. "require": {
  8740. "guzzlehttp/guzzle": "^7.3",
  8741. "guzzlehttp/psr7": "^2.0",
  8742. "illuminate/collections": "^10.0|^11.0|^12.0",
  8743. "nicmart/tree": "^0.9",
  8744. "php": "^8.2",
  8745. "spatie/browsershot": "^5.0.5",
  8746. "spatie/robots-txt": "^2.0",
  8747. "symfony/dom-crawler": "^6.0|^7.0"
  8748. },
  8749. "require-dev": {
  8750. "pestphp/pest": "^2.0",
  8751. "spatie/ray": "^1.37"
  8752. },
  8753. "type": "library",
  8754. "autoload": {
  8755. "psr-4": {
  8756. "Spatie\\Crawler\\": "src"
  8757. }
  8758. },
  8759. "notification-url": "https://packagist.org/downloads/",
  8760. "license": [
  8761. "MIT"
  8762. ],
  8763. "authors": [
  8764. {
  8765. "name": "Freek Van der Herten",
  8766. "email": "freek@spatie.be"
  8767. }
  8768. ],
  8769. "description": "Crawl all internal links found on a website",
  8770. "homepage": "https://github.com/spatie/crawler",
  8771. "keywords": [
  8772. "crawler",
  8773. "link",
  8774. "spatie",
  8775. "website"
  8776. ],
  8777. "support": {
  8778. "issues": "https://github.com/spatie/crawler/issues",
  8779. "source": "https://github.com/spatie/crawler/tree/8.4.2"
  8780. },
  8781. "funding": [
  8782. {
  8783. "url": "https://spatie.be/open-source/support-us",
  8784. "type": "custom"
  8785. },
  8786. {
  8787. "url": "https://github.com/spatie",
  8788. "type": "github"
  8789. }
  8790. ],
  8791. "time": "2025-02-24T09:20:47+00:00"
  8792. },
  8793. {
  8794. "name": "spatie/laravel-package-tools",
  8795. "version": "1.19.0",
  8796. "source": {
  8797. "type": "git",
  8798. "url": "https://github.com/spatie/laravel-package-tools.git",
  8799. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa"
  8800. },
  8801. "dist": {
  8802. "type": "zip",
  8803. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  8804. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  8805. "shasum": ""
  8806. },
  8807. "require": {
  8808. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  8809. "php": "^8.0"
  8810. },
  8811. "require-dev": {
  8812. "mockery/mockery": "^1.5",
  8813. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  8814. "pestphp/pest": "^1.23|^2.1|^3.1",
  8815. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  8816. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  8817. },
  8818. "type": "library",
  8819. "autoload": {
  8820. "psr-4": {
  8821. "Spatie\\LaravelPackageTools\\": "src"
  8822. }
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "MIT"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Freek Van der Herten",
  8831. "email": "freek@spatie.be",
  8832. "role": "Developer"
  8833. }
  8834. ],
  8835. "description": "Tools for creating Laravel packages",
  8836. "homepage": "https://github.com/spatie/laravel-package-tools",
  8837. "keywords": [
  8838. "laravel-package-tools",
  8839. "spatie"
  8840. ],
  8841. "support": {
  8842. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  8843. "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0"
  8844. },
  8845. "funding": [
  8846. {
  8847. "url": "https://github.com/spatie",
  8848. "type": "github"
  8849. }
  8850. ],
  8851. "time": "2025-02-06T14:58:20+00:00"
  8852. },
  8853. {
  8854. "name": "spatie/laravel-responsecache",
  8855. "version": "7.6.4",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/spatie/laravel-responsecache.git",
  8859. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/spatie/laravel-responsecache/zipball/fbac90e8df40bc6c877302934e3e971c2da409db",
  8864. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db",
  8865. "shasum": ""
  8866. },
  8867. "require": {
  8868. "illuminate/cache": "^10.0|^11.0|^12.0",
  8869. "illuminate/console": "^10.0|^11.0|^12.0",
  8870. "illuminate/container": "^10.0|^11.0|^12.0",
  8871. "illuminate/http": "^10.0|^11.0|^12.0",
  8872. "illuminate/support": "^10.0|^11.0|^12.0",
  8873. "nesbot/carbon": "^2.63|^3.0",
  8874. "php": "^8.2",
  8875. "spatie/laravel-package-tools": "^1.9"
  8876. },
  8877. "require-dev": {
  8878. "laravel/framework": "^10.0|^11.0|^12.0",
  8879. "mockery/mockery": "^1.4",
  8880. "orchestra/testbench": "^8.0|^9.0|^10.0",
  8881. "pestphp/pest": "^2.22|^3.0"
  8882. },
  8883. "type": "library",
  8884. "extra": {
  8885. "laravel": {
  8886. "aliases": {
  8887. "ResponseCache": "Spatie\\ResponseCache\\Facades\\ResponseCache"
  8888. },
  8889. "providers": [
  8890. "Spatie\\ResponseCache\\ResponseCacheServiceProvider"
  8891. ]
  8892. }
  8893. },
  8894. "autoload": {
  8895. "psr-4": {
  8896. "Spatie\\ResponseCache\\": "src"
  8897. }
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "MIT"
  8902. ],
  8903. "authors": [
  8904. {
  8905. "name": "Freek Van der Herten",
  8906. "email": "freek@spatie.be",
  8907. "homepage": "https://spatie.be",
  8908. "role": "Developer"
  8909. }
  8910. ],
  8911. "description": "Speed up a Laravel application by caching the entire response",
  8912. "homepage": "https://github.com/spatie/laravel-responsecache",
  8913. "keywords": [
  8914. "cache",
  8915. "laravel",
  8916. "laravel-responsecache",
  8917. "performance",
  8918. "response",
  8919. "spatie"
  8920. ],
  8921. "support": {
  8922. "source": "https://github.com/spatie/laravel-responsecache/tree/7.6.4"
  8923. },
  8924. "funding": [
  8925. {
  8926. "url": "https://spatie.be/open-source/support-us",
  8927. "type": "custom"
  8928. },
  8929. {
  8930. "url": "https://github.com/spatie",
  8931. "type": "github"
  8932. }
  8933. ],
  8934. "time": "2025-02-25T15:05:05+00:00"
  8935. },
  8936. {
  8937. "name": "spatie/laravel-sitemap",
  8938. "version": "7.3.5",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/spatie/laravel-sitemap.git",
  8942. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/329b23c8bc6396de2d47d0633ce2cd3f04921399",
  8947. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "guzzlehttp/guzzle": "^7.8",
  8952. "illuminate/support": "^11.0|^12.0",
  8953. "nesbot/carbon": "^2.71|^3.0",
  8954. "php": "^8.2||^8.3||^8.4",
  8955. "spatie/crawler": "^8.0.1",
  8956. "spatie/laravel-package-tools": "^1.16.1",
  8957. "symfony/dom-crawler": "^6.3.4|^7.0"
  8958. },
  8959. "require-dev": {
  8960. "mockery/mockery": "^1.6.6",
  8961. "orchestra/testbench": "^9.0|^10.0",
  8962. "pestphp/pest": "^3.7.4",
  8963. "spatie/pest-plugin-snapshots": "^2.1",
  8964. "spatie/phpunit-snapshot-assertions": "^5.1.2",
  8965. "spatie/temporary-directory": "^2.2"
  8966. },
  8967. "type": "library",
  8968. "extra": {
  8969. "laravel": {
  8970. "providers": [
  8971. "Spatie\\Sitemap\\SitemapServiceProvider"
  8972. ]
  8973. }
  8974. },
  8975. "autoload": {
  8976. "psr-4": {
  8977. "Spatie\\Sitemap\\": "src"
  8978. }
  8979. },
  8980. "notification-url": "https://packagist.org/downloads/",
  8981. "license": [
  8982. "MIT"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Freek Van der Herten",
  8987. "email": "freek@spatie.be",
  8988. "homepage": "https://spatie.be",
  8989. "role": "Developer"
  8990. }
  8991. ],
  8992. "description": "Create and generate sitemaps with ease",
  8993. "homepage": "https://github.com/spatie/laravel-sitemap",
  8994. "keywords": [
  8995. "laravel-sitemap",
  8996. "spatie"
  8997. ],
  8998. "support": {
  8999. "source": "https://github.com/spatie/laravel-sitemap/tree/7.3.5"
  9000. },
  9001. "funding": [
  9002. {
  9003. "url": "https://spatie.be/open-source/support-us",
  9004. "type": "custom"
  9005. }
  9006. ],
  9007. "time": "2025-02-21T09:20:51+00:00"
  9008. },
  9009. {
  9010. "name": "spatie/robots-txt",
  9011. "version": "2.3.1",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/spatie/robots-txt.git",
  9015. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/spatie/robots-txt/zipball/58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  9020. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "php": "^8.1"
  9025. },
  9026. "require-dev": {
  9027. "phpunit/phpunit": "^11.5.2"
  9028. },
  9029. "type": "library",
  9030. "autoload": {
  9031. "psr-4": {
  9032. "Spatie\\Robots\\": "src"
  9033. }
  9034. },
  9035. "notification-url": "https://packagist.org/downloads/",
  9036. "license": [
  9037. "MIT"
  9038. ],
  9039. "authors": [
  9040. {
  9041. "name": "Brent Roose",
  9042. "email": "brent@spatie.be",
  9043. "homepage": "https://spatie.be",
  9044. "role": "Developer"
  9045. }
  9046. ],
  9047. "description": "Determine if a page may be crawled from robots.txt and robots meta tags",
  9048. "homepage": "https://github.com/spatie/robots-txt",
  9049. "keywords": [
  9050. "robots-txt",
  9051. "spatie"
  9052. ],
  9053. "support": {
  9054. "issues": "https://github.com/spatie/robots-txt/issues",
  9055. "source": "https://github.com/spatie/robots-txt/tree/2.3.1"
  9056. },
  9057. "funding": [
  9058. {
  9059. "url": "https://spatie.be/open-source/support-us",
  9060. "type": "custom"
  9061. },
  9062. {
  9063. "url": "https://github.com/spatie",
  9064. "type": "github"
  9065. }
  9066. ],
  9067. "time": "2025-01-31T09:33:25+00:00"
  9068. },
  9069. {
  9070. "name": "spatie/temporary-directory",
  9071. "version": "2.3.0",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/spatie/temporary-directory.git",
  9075. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  9080. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  9081. "shasum": ""
  9082. },
  9083. "require": {
  9084. "php": "^8.0"
  9085. },
  9086. "require-dev": {
  9087. "phpunit/phpunit": "^9.5"
  9088. },
  9089. "type": "library",
  9090. "autoload": {
  9091. "psr-4": {
  9092. "Spatie\\TemporaryDirectory\\": "src"
  9093. }
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "MIT"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Alex Vanderbist",
  9102. "email": "alex@spatie.be",
  9103. "homepage": "https://spatie.be",
  9104. "role": "Developer"
  9105. }
  9106. ],
  9107. "description": "Easily create, use and destroy temporary directories",
  9108. "homepage": "https://github.com/spatie/temporary-directory",
  9109. "keywords": [
  9110. "php",
  9111. "spatie",
  9112. "temporary-directory"
  9113. ],
  9114. "support": {
  9115. "issues": "https://github.com/spatie/temporary-directory/issues",
  9116. "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
  9117. },
  9118. "funding": [
  9119. {
  9120. "url": "https://spatie.be/open-source/support-us",
  9121. "type": "custom"
  9122. },
  9123. {
  9124. "url": "https://github.com/spatie",
  9125. "type": "github"
  9126. }
  9127. ],
  9128. "time": "2025-01-13T13:04:43+00:00"
  9129. },
  9130. {
  9131. "name": "stevebauman/purify",
  9132. "version": "v6.3.1",
  9133. "source": {
  9134. "type": "git",
  9135. "url": "https://github.com/stevebauman/purify.git",
  9136. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500"
  9137. },
  9138. "dist": {
  9139. "type": "zip",
  9140. "url": "https://api.github.com/repos/stevebauman/purify/zipball/3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  9141. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  9142. "shasum": ""
  9143. },
  9144. "require": {
  9145. "ezyang/htmlpurifier": "^4.17",
  9146. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  9147. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  9148. "php": ">=7.4"
  9149. },
  9150. "require-dev": {
  9151. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  9152. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.5.3"
  9153. },
  9154. "type": "library",
  9155. "extra": {
  9156. "laravel": {
  9157. "aliases": {
  9158. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  9159. },
  9160. "providers": [
  9161. "Stevebauman\\Purify\\PurifyServiceProvider"
  9162. ]
  9163. }
  9164. },
  9165. "autoload": {
  9166. "psr-4": {
  9167. "Stevebauman\\Purify\\": "src/"
  9168. }
  9169. },
  9170. "notification-url": "https://packagist.org/downloads/",
  9171. "license": [
  9172. "MIT"
  9173. ],
  9174. "authors": [
  9175. {
  9176. "name": "Steve Bauman",
  9177. "email": "steven_bauman@outlook.com"
  9178. }
  9179. ],
  9180. "description": "An HTML Purifier / Sanitizer for Laravel",
  9181. "keywords": [
  9182. "Purifier",
  9183. "clean",
  9184. "cleaner",
  9185. "html",
  9186. "laravel",
  9187. "purification",
  9188. "purify"
  9189. ],
  9190. "support": {
  9191. "issues": "https://github.com/stevebauman/purify/issues",
  9192. "source": "https://github.com/stevebauman/purify/tree/v6.3.1"
  9193. },
  9194. "time": "2025-05-21T16:53:09+00:00"
  9195. },
  9196. {
  9197. "name": "symfony/console",
  9198. "version": "v7.3.3",
  9199. "source": {
  9200. "type": "git",
  9201. "url": "https://github.com/symfony/console.git",
  9202. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7"
  9203. },
  9204. "dist": {
  9205. "type": "zip",
  9206. "url": "https://api.github.com/repos/symfony/console/zipball/cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  9207. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  9208. "shasum": ""
  9209. },
  9210. "require": {
  9211. "php": ">=8.2",
  9212. "symfony/deprecation-contracts": "^2.5|^3",
  9213. "symfony/polyfill-mbstring": "~1.0",
  9214. "symfony/service-contracts": "^2.5|^3",
  9215. "symfony/string": "^7.2"
  9216. },
  9217. "conflict": {
  9218. "symfony/dependency-injection": "<6.4",
  9219. "symfony/dotenv": "<6.4",
  9220. "symfony/event-dispatcher": "<6.4",
  9221. "symfony/lock": "<6.4",
  9222. "symfony/process": "<6.4"
  9223. },
  9224. "provide": {
  9225. "psr/log-implementation": "1.0|2.0|3.0"
  9226. },
  9227. "require-dev": {
  9228. "psr/log": "^1|^2|^3",
  9229. "symfony/config": "^6.4|^7.0",
  9230. "symfony/dependency-injection": "^6.4|^7.0",
  9231. "symfony/event-dispatcher": "^6.4|^7.0",
  9232. "symfony/http-foundation": "^6.4|^7.0",
  9233. "symfony/http-kernel": "^6.4|^7.0",
  9234. "symfony/lock": "^6.4|^7.0",
  9235. "symfony/messenger": "^6.4|^7.0",
  9236. "symfony/process": "^6.4|^7.0",
  9237. "symfony/stopwatch": "^6.4|^7.0",
  9238. "symfony/var-dumper": "^6.4|^7.0"
  9239. },
  9240. "type": "library",
  9241. "autoload": {
  9242. "psr-4": {
  9243. "Symfony\\Component\\Console\\": ""
  9244. },
  9245. "exclude-from-classmap": [
  9246. "/Tests/"
  9247. ]
  9248. },
  9249. "notification-url": "https://packagist.org/downloads/",
  9250. "license": [
  9251. "MIT"
  9252. ],
  9253. "authors": [
  9254. {
  9255. "name": "Fabien Potencier",
  9256. "email": "fabien@symfony.com"
  9257. },
  9258. {
  9259. "name": "Symfony Community",
  9260. "homepage": "https://symfony.com/contributors"
  9261. }
  9262. ],
  9263. "description": "Eases the creation of beautiful and testable command line interfaces",
  9264. "homepage": "https://symfony.com",
  9265. "keywords": [
  9266. "cli",
  9267. "command-line",
  9268. "console",
  9269. "terminal"
  9270. ],
  9271. "support": {
  9272. "source": "https://github.com/symfony/console/tree/v7.3.3"
  9273. },
  9274. "funding": [
  9275. {
  9276. "url": "https://symfony.com/sponsor",
  9277. "type": "custom"
  9278. },
  9279. {
  9280. "url": "https://github.com/fabpot",
  9281. "type": "github"
  9282. },
  9283. {
  9284. "url": "https://github.com/nicolas-grekas",
  9285. "type": "github"
  9286. },
  9287. {
  9288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9289. "type": "tidelift"
  9290. }
  9291. ],
  9292. "time": "2025-08-25T06:35:40+00:00"
  9293. },
  9294. {
  9295. "name": "symfony/css-selector",
  9296. "version": "v7.2.0",
  9297. "source": {
  9298. "type": "git",
  9299. "url": "https://github.com/symfony/css-selector.git",
  9300. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  9301. },
  9302. "dist": {
  9303. "type": "zip",
  9304. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9305. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9306. "shasum": ""
  9307. },
  9308. "require": {
  9309. "php": ">=8.2"
  9310. },
  9311. "type": "library",
  9312. "autoload": {
  9313. "psr-4": {
  9314. "Symfony\\Component\\CssSelector\\": ""
  9315. },
  9316. "exclude-from-classmap": [
  9317. "/Tests/"
  9318. ]
  9319. },
  9320. "notification-url": "https://packagist.org/downloads/",
  9321. "license": [
  9322. "MIT"
  9323. ],
  9324. "authors": [
  9325. {
  9326. "name": "Fabien Potencier",
  9327. "email": "fabien@symfony.com"
  9328. },
  9329. {
  9330. "name": "Jean-François Simon",
  9331. "email": "jeanfrancois.simon@sensiolabs.com"
  9332. },
  9333. {
  9334. "name": "Symfony Community",
  9335. "homepage": "https://symfony.com/contributors"
  9336. }
  9337. ],
  9338. "description": "Converts CSS selectors to XPath expressions",
  9339. "homepage": "https://symfony.com",
  9340. "support": {
  9341. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  9342. },
  9343. "funding": [
  9344. {
  9345. "url": "https://symfony.com/sponsor",
  9346. "type": "custom"
  9347. },
  9348. {
  9349. "url": "https://github.com/fabpot",
  9350. "type": "github"
  9351. },
  9352. {
  9353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9354. "type": "tidelift"
  9355. }
  9356. ],
  9357. "time": "2024-09-25T14:21:43+00:00"
  9358. },
  9359. {
  9360. "name": "symfony/deprecation-contracts",
  9361. "version": "v3.6.0",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/symfony/deprecation-contracts.git",
  9365. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  9370. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "php": ">=8.1"
  9375. },
  9376. "type": "library",
  9377. "extra": {
  9378. "thanks": {
  9379. "url": "https://github.com/symfony/contracts",
  9380. "name": "symfony/contracts"
  9381. },
  9382. "branch-alias": {
  9383. "dev-main": "3.6-dev"
  9384. }
  9385. },
  9386. "autoload": {
  9387. "files": [
  9388. "function.php"
  9389. ]
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "license": [
  9393. "MIT"
  9394. ],
  9395. "authors": [
  9396. {
  9397. "name": "Nicolas Grekas",
  9398. "email": "p@tchwork.com"
  9399. },
  9400. {
  9401. "name": "Symfony Community",
  9402. "homepage": "https://symfony.com/contributors"
  9403. }
  9404. ],
  9405. "description": "A generic function and convention to trigger deprecation notices",
  9406. "homepage": "https://symfony.com",
  9407. "support": {
  9408. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://symfony.com/sponsor",
  9413. "type": "custom"
  9414. },
  9415. {
  9416. "url": "https://github.com/fabpot",
  9417. "type": "github"
  9418. },
  9419. {
  9420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9421. "type": "tidelift"
  9422. }
  9423. ],
  9424. "time": "2024-09-25T14:21:43+00:00"
  9425. },
  9426. {
  9427. "name": "symfony/dom-crawler",
  9428. "version": "v7.2.4",
  9429. "source": {
  9430. "type": "git",
  9431. "url": "https://github.com/symfony/dom-crawler.git",
  9432. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7"
  9433. },
  9434. "dist": {
  9435. "type": "zip",
  9436. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  9437. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  9438. "shasum": ""
  9439. },
  9440. "require": {
  9441. "masterminds/html5": "^2.6",
  9442. "php": ">=8.2",
  9443. "symfony/polyfill-ctype": "~1.8",
  9444. "symfony/polyfill-mbstring": "~1.0"
  9445. },
  9446. "require-dev": {
  9447. "symfony/css-selector": "^6.4|^7.0"
  9448. },
  9449. "type": "library",
  9450. "autoload": {
  9451. "psr-4": {
  9452. "Symfony\\Component\\DomCrawler\\": ""
  9453. },
  9454. "exclude-from-classmap": [
  9455. "/Tests/"
  9456. ]
  9457. },
  9458. "notification-url": "https://packagist.org/downloads/",
  9459. "license": [
  9460. "MIT"
  9461. ],
  9462. "authors": [
  9463. {
  9464. "name": "Fabien Potencier",
  9465. "email": "fabien@symfony.com"
  9466. },
  9467. {
  9468. "name": "Symfony Community",
  9469. "homepage": "https://symfony.com/contributors"
  9470. }
  9471. ],
  9472. "description": "Eases DOM navigation for HTML and XML documents",
  9473. "homepage": "https://symfony.com",
  9474. "support": {
  9475. "source": "https://github.com/symfony/dom-crawler/tree/v7.2.4"
  9476. },
  9477. "funding": [
  9478. {
  9479. "url": "https://symfony.com/sponsor",
  9480. "type": "custom"
  9481. },
  9482. {
  9483. "url": "https://github.com/fabpot",
  9484. "type": "github"
  9485. },
  9486. {
  9487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9488. "type": "tidelift"
  9489. }
  9490. ],
  9491. "time": "2025-02-17T15:53:07+00:00"
  9492. },
  9493. {
  9494. "name": "symfony/error-handler",
  9495. "version": "v7.2.4",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/symfony/error-handler.git",
  9499. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/symfony/error-handler/zipball/aabf79938aa795350c07ce6464dd1985607d95d5",
  9504. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5",
  9505. "shasum": ""
  9506. },
  9507. "require": {
  9508. "php": ">=8.2",
  9509. "psr/log": "^1|^2|^3",
  9510. "symfony/var-dumper": "^6.4|^7.0"
  9511. },
  9512. "conflict": {
  9513. "symfony/deprecation-contracts": "<2.5",
  9514. "symfony/http-kernel": "<6.4"
  9515. },
  9516. "require-dev": {
  9517. "symfony/deprecation-contracts": "^2.5|^3",
  9518. "symfony/http-kernel": "^6.4|^7.0",
  9519. "symfony/serializer": "^6.4|^7.0"
  9520. },
  9521. "bin": [
  9522. "Resources/bin/patch-type-declarations"
  9523. ],
  9524. "type": "library",
  9525. "autoload": {
  9526. "psr-4": {
  9527. "Symfony\\Component\\ErrorHandler\\": ""
  9528. },
  9529. "exclude-from-classmap": [
  9530. "/Tests/"
  9531. ]
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "MIT"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Fabien Potencier",
  9540. "email": "fabien@symfony.com"
  9541. },
  9542. {
  9543. "name": "Symfony Community",
  9544. "homepage": "https://symfony.com/contributors"
  9545. }
  9546. ],
  9547. "description": "Provides tools to manage errors and ease debugging PHP code",
  9548. "homepage": "https://symfony.com",
  9549. "support": {
  9550. "source": "https://github.com/symfony/error-handler/tree/v7.2.4"
  9551. },
  9552. "funding": [
  9553. {
  9554. "url": "https://symfony.com/sponsor",
  9555. "type": "custom"
  9556. },
  9557. {
  9558. "url": "https://github.com/fabpot",
  9559. "type": "github"
  9560. },
  9561. {
  9562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9563. "type": "tidelift"
  9564. }
  9565. ],
  9566. "time": "2025-02-02T20:27:07+00:00"
  9567. },
  9568. {
  9569. "name": "symfony/event-dispatcher",
  9570. "version": "v7.2.0",
  9571. "source": {
  9572. "type": "git",
  9573. "url": "https://github.com/symfony/event-dispatcher.git",
  9574. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  9575. },
  9576. "dist": {
  9577. "type": "zip",
  9578. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  9579. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  9580. "shasum": ""
  9581. },
  9582. "require": {
  9583. "php": ">=8.2",
  9584. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9585. },
  9586. "conflict": {
  9587. "symfony/dependency-injection": "<6.4",
  9588. "symfony/service-contracts": "<2.5"
  9589. },
  9590. "provide": {
  9591. "psr/event-dispatcher-implementation": "1.0",
  9592. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9593. },
  9594. "require-dev": {
  9595. "psr/log": "^1|^2|^3",
  9596. "symfony/config": "^6.4|^7.0",
  9597. "symfony/dependency-injection": "^6.4|^7.0",
  9598. "symfony/error-handler": "^6.4|^7.0",
  9599. "symfony/expression-language": "^6.4|^7.0",
  9600. "symfony/http-foundation": "^6.4|^7.0",
  9601. "symfony/service-contracts": "^2.5|^3",
  9602. "symfony/stopwatch": "^6.4|^7.0"
  9603. },
  9604. "type": "library",
  9605. "autoload": {
  9606. "psr-4": {
  9607. "Symfony\\Component\\EventDispatcher\\": ""
  9608. },
  9609. "exclude-from-classmap": [
  9610. "/Tests/"
  9611. ]
  9612. },
  9613. "notification-url": "https://packagist.org/downloads/",
  9614. "license": [
  9615. "MIT"
  9616. ],
  9617. "authors": [
  9618. {
  9619. "name": "Fabien Potencier",
  9620. "email": "fabien@symfony.com"
  9621. },
  9622. {
  9623. "name": "Symfony Community",
  9624. "homepage": "https://symfony.com/contributors"
  9625. }
  9626. ],
  9627. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9628. "homepage": "https://symfony.com",
  9629. "support": {
  9630. "source": "https://github.com/symfony/event-dispatcher/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/event-dispatcher-contracts",
  9650. "version": "v3.6.0",
  9651. "source": {
  9652. "type": "git",
  9653. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9654. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  9655. },
  9656. "dist": {
  9657. "type": "zip",
  9658. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  9659. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  9660. "shasum": ""
  9661. },
  9662. "require": {
  9663. "php": ">=8.1",
  9664. "psr/event-dispatcher": "^1"
  9665. },
  9666. "type": "library",
  9667. "extra": {
  9668. "thanks": {
  9669. "url": "https://github.com/symfony/contracts",
  9670. "name": "symfony/contracts"
  9671. },
  9672. "branch-alias": {
  9673. "dev-main": "3.6-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "psr-4": {
  9678. "Symfony\\Contracts\\EventDispatcher\\": ""
  9679. }
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "MIT"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Nicolas Grekas",
  9688. "email": "p@tchwork.com"
  9689. },
  9690. {
  9691. "name": "Symfony Community",
  9692. "homepage": "https://symfony.com/contributors"
  9693. }
  9694. ],
  9695. "description": "Generic abstractions related to dispatching event",
  9696. "homepage": "https://symfony.com",
  9697. "keywords": [
  9698. "abstractions",
  9699. "contracts",
  9700. "decoupling",
  9701. "interfaces",
  9702. "interoperability",
  9703. "standards"
  9704. ],
  9705. "support": {
  9706. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  9707. },
  9708. "funding": [
  9709. {
  9710. "url": "https://symfony.com/sponsor",
  9711. "type": "custom"
  9712. },
  9713. {
  9714. "url": "https://github.com/fabpot",
  9715. "type": "github"
  9716. },
  9717. {
  9718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9719. "type": "tidelift"
  9720. }
  9721. ],
  9722. "time": "2024-09-25T14:21:43+00:00"
  9723. },
  9724. {
  9725. "name": "symfony/filesystem",
  9726. "version": "v7.4.8",
  9727. "source": {
  9728. "type": "git",
  9729. "url": "https://github.com/symfony/filesystem.git",
  9730. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5"
  9731. },
  9732. "dist": {
  9733. "type": "zip",
  9734. "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5",
  9735. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5",
  9736. "shasum": ""
  9737. },
  9738. "require": {
  9739. "php": ">=8.2",
  9740. "symfony/polyfill-ctype": "~1.8",
  9741. "symfony/polyfill-mbstring": "~1.8"
  9742. },
  9743. "require-dev": {
  9744. "symfony/process": "^6.4|^7.0|^8.0"
  9745. },
  9746. "type": "library",
  9747. "autoload": {
  9748. "psr-4": {
  9749. "Symfony\\Component\\Filesystem\\": ""
  9750. },
  9751. "exclude-from-classmap": [
  9752. "/Tests/"
  9753. ]
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "MIT"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Fabien Potencier",
  9762. "email": "fabien@symfony.com"
  9763. },
  9764. {
  9765. "name": "Symfony Community",
  9766. "homepage": "https://symfony.com/contributors"
  9767. }
  9768. ],
  9769. "description": "Provides basic utilities for the filesystem",
  9770. "homepage": "https://symfony.com",
  9771. "support": {
  9772. "source": "https://github.com/symfony/filesystem/tree/v7.4.8"
  9773. },
  9774. "funding": [
  9775. {
  9776. "url": "https://symfony.com/sponsor",
  9777. "type": "custom"
  9778. },
  9779. {
  9780. "url": "https://github.com/fabpot",
  9781. "type": "github"
  9782. },
  9783. {
  9784. "url": "https://github.com/nicolas-grekas",
  9785. "type": "github"
  9786. },
  9787. {
  9788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9789. "type": "tidelift"
  9790. }
  9791. ],
  9792. "time": "2026-03-24T13:12:05+00:00"
  9793. },
  9794. {
  9795. "name": "symfony/finder",
  9796. "version": "v7.2.2",
  9797. "source": {
  9798. "type": "git",
  9799. "url": "https://github.com/symfony/finder.git",
  9800. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  9801. },
  9802. "dist": {
  9803. "type": "zip",
  9804. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  9805. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  9806. "shasum": ""
  9807. },
  9808. "require": {
  9809. "php": ">=8.2"
  9810. },
  9811. "require-dev": {
  9812. "symfony/filesystem": "^6.4|^7.0"
  9813. },
  9814. "type": "library",
  9815. "autoload": {
  9816. "psr-4": {
  9817. "Symfony\\Component\\Finder\\": ""
  9818. },
  9819. "exclude-from-classmap": [
  9820. "/Tests/"
  9821. ]
  9822. },
  9823. "notification-url": "https://packagist.org/downloads/",
  9824. "license": [
  9825. "MIT"
  9826. ],
  9827. "authors": [
  9828. {
  9829. "name": "Fabien Potencier",
  9830. "email": "fabien@symfony.com"
  9831. },
  9832. {
  9833. "name": "Symfony Community",
  9834. "homepage": "https://symfony.com/contributors"
  9835. }
  9836. ],
  9837. "description": "Finds files and directories via an intuitive fluent interface",
  9838. "homepage": "https://symfony.com",
  9839. "support": {
  9840. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  9841. },
  9842. "funding": [
  9843. {
  9844. "url": "https://symfony.com/sponsor",
  9845. "type": "custom"
  9846. },
  9847. {
  9848. "url": "https://github.com/fabpot",
  9849. "type": "github"
  9850. },
  9851. {
  9852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9853. "type": "tidelift"
  9854. }
  9855. ],
  9856. "time": "2024-12-30T19:00:17+00:00"
  9857. },
  9858. {
  9859. "name": "symfony/http-foundation",
  9860. "version": "v7.3.7",
  9861. "source": {
  9862. "type": "git",
  9863. "url": "https://github.com/symfony/http-foundation.git",
  9864. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4"
  9865. },
  9866. "dist": {
  9867. "type": "zip",
  9868. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  9869. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  9870. "shasum": ""
  9871. },
  9872. "require": {
  9873. "php": ">=8.2",
  9874. "symfony/deprecation-contracts": "^2.5|^3.0",
  9875. "symfony/polyfill-mbstring": "~1.1",
  9876. "symfony/polyfill-php83": "^1.27"
  9877. },
  9878. "conflict": {
  9879. "doctrine/dbal": "<3.6",
  9880. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  9881. },
  9882. "require-dev": {
  9883. "doctrine/dbal": "^3.6|^4",
  9884. "predis/predis": "^1.1|^2.0",
  9885. "symfony/cache": "^6.4.12|^7.1.5",
  9886. "symfony/clock": "^6.4|^7.0",
  9887. "symfony/dependency-injection": "^6.4|^7.0",
  9888. "symfony/expression-language": "^6.4|^7.0",
  9889. "symfony/http-kernel": "^6.4|^7.0",
  9890. "symfony/mime": "^6.4|^7.0",
  9891. "symfony/rate-limiter": "^6.4|^7.0"
  9892. },
  9893. "type": "library",
  9894. "autoload": {
  9895. "psr-4": {
  9896. "Symfony\\Component\\HttpFoundation\\": ""
  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": "Defines an object-oriented layer for the HTTP specification",
  9917. "homepage": "https://symfony.com",
  9918. "support": {
  9919. "source": "https://github.com/symfony/http-foundation/tree/v7.3.7"
  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://github.com/nicolas-grekas",
  9932. "type": "github"
  9933. },
  9934. {
  9935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9936. "type": "tidelift"
  9937. }
  9938. ],
  9939. "time": "2025-11-08T16:41:12+00:00"
  9940. },
  9941. {
  9942. "name": "symfony/http-kernel",
  9943. "version": "v7.2.4",
  9944. "source": {
  9945. "type": "git",
  9946. "url": "https://github.com/symfony/http-kernel.git",
  9947. "reference": "9f1103734c5789798fefb90e91de4586039003ed"
  9948. },
  9949. "dist": {
  9950. "type": "zip",
  9951. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f1103734c5789798fefb90e91de4586039003ed",
  9952. "reference": "9f1103734c5789798fefb90e91de4586039003ed",
  9953. "shasum": ""
  9954. },
  9955. "require": {
  9956. "php": ">=8.2",
  9957. "psr/log": "^1|^2|^3",
  9958. "symfony/deprecation-contracts": "^2.5|^3",
  9959. "symfony/error-handler": "^6.4|^7.0",
  9960. "symfony/event-dispatcher": "^6.4|^7.0",
  9961. "symfony/http-foundation": "^6.4|^7.0",
  9962. "symfony/polyfill-ctype": "^1.8"
  9963. },
  9964. "conflict": {
  9965. "symfony/browser-kit": "<6.4",
  9966. "symfony/cache": "<6.4",
  9967. "symfony/config": "<6.4",
  9968. "symfony/console": "<6.4",
  9969. "symfony/dependency-injection": "<6.4",
  9970. "symfony/doctrine-bridge": "<6.4",
  9971. "symfony/form": "<6.4",
  9972. "symfony/http-client": "<6.4",
  9973. "symfony/http-client-contracts": "<2.5",
  9974. "symfony/mailer": "<6.4",
  9975. "symfony/messenger": "<6.4",
  9976. "symfony/translation": "<6.4",
  9977. "symfony/translation-contracts": "<2.5",
  9978. "symfony/twig-bridge": "<6.4",
  9979. "symfony/validator": "<6.4",
  9980. "symfony/var-dumper": "<6.4",
  9981. "twig/twig": "<3.12"
  9982. },
  9983. "provide": {
  9984. "psr/log-implementation": "1.0|2.0|3.0"
  9985. },
  9986. "require-dev": {
  9987. "psr/cache": "^1.0|^2.0|^3.0",
  9988. "symfony/browser-kit": "^6.4|^7.0",
  9989. "symfony/clock": "^6.4|^7.0",
  9990. "symfony/config": "^6.4|^7.0",
  9991. "symfony/console": "^6.4|^7.0",
  9992. "symfony/css-selector": "^6.4|^7.0",
  9993. "symfony/dependency-injection": "^6.4|^7.0",
  9994. "symfony/dom-crawler": "^6.4|^7.0",
  9995. "symfony/expression-language": "^6.4|^7.0",
  9996. "symfony/finder": "^6.4|^7.0",
  9997. "symfony/http-client-contracts": "^2.5|^3",
  9998. "symfony/process": "^6.4|^7.0",
  9999. "symfony/property-access": "^7.1",
  10000. "symfony/routing": "^6.4|^7.0",
  10001. "symfony/serializer": "^7.1",
  10002. "symfony/stopwatch": "^6.4|^7.0",
  10003. "symfony/translation": "^6.4|^7.0",
  10004. "symfony/translation-contracts": "^2.5|^3",
  10005. "symfony/uid": "^6.4|^7.0",
  10006. "symfony/validator": "^6.4|^7.0",
  10007. "symfony/var-dumper": "^6.4|^7.0",
  10008. "symfony/var-exporter": "^6.4|^7.0",
  10009. "twig/twig": "^3.12"
  10010. },
  10011. "type": "library",
  10012. "autoload": {
  10013. "psr-4": {
  10014. "Symfony\\Component\\HttpKernel\\": ""
  10015. },
  10016. "exclude-from-classmap": [
  10017. "/Tests/"
  10018. ]
  10019. },
  10020. "notification-url": "https://packagist.org/downloads/",
  10021. "license": [
  10022. "MIT"
  10023. ],
  10024. "authors": [
  10025. {
  10026. "name": "Fabien Potencier",
  10027. "email": "fabien@symfony.com"
  10028. },
  10029. {
  10030. "name": "Symfony Community",
  10031. "homepage": "https://symfony.com/contributors"
  10032. }
  10033. ],
  10034. "description": "Provides a structured process for converting a Request into a Response",
  10035. "homepage": "https://symfony.com",
  10036. "support": {
  10037. "source": "https://github.com/symfony/http-kernel/tree/v7.2.4"
  10038. },
  10039. "funding": [
  10040. {
  10041. "url": "https://symfony.com/sponsor",
  10042. "type": "custom"
  10043. },
  10044. {
  10045. "url": "https://github.com/fabpot",
  10046. "type": "github"
  10047. },
  10048. {
  10049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10050. "type": "tidelift"
  10051. }
  10052. ],
  10053. "time": "2025-02-26T11:01:22+00:00"
  10054. },
  10055. {
  10056. "name": "symfony/mailer",
  10057. "version": "v7.2.3",
  10058. "source": {
  10059. "type": "git",
  10060. "url": "https://github.com/symfony/mailer.git",
  10061. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  10062. },
  10063. "dist": {
  10064. "type": "zip",
  10065. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  10066. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  10067. "shasum": ""
  10068. },
  10069. "require": {
  10070. "egulias/email-validator": "^2.1.10|^3|^4",
  10071. "php": ">=8.2",
  10072. "psr/event-dispatcher": "^1",
  10073. "psr/log": "^1|^2|^3",
  10074. "symfony/event-dispatcher": "^6.4|^7.0",
  10075. "symfony/mime": "^7.2",
  10076. "symfony/service-contracts": "^2.5|^3"
  10077. },
  10078. "conflict": {
  10079. "symfony/http-client-contracts": "<2.5",
  10080. "symfony/http-kernel": "<6.4",
  10081. "symfony/messenger": "<6.4",
  10082. "symfony/mime": "<6.4",
  10083. "symfony/twig-bridge": "<6.4"
  10084. },
  10085. "require-dev": {
  10086. "symfony/console": "^6.4|^7.0",
  10087. "symfony/http-client": "^6.4|^7.0",
  10088. "symfony/messenger": "^6.4|^7.0",
  10089. "symfony/twig-bridge": "^6.4|^7.0"
  10090. },
  10091. "type": "library",
  10092. "autoload": {
  10093. "psr-4": {
  10094. "Symfony\\Component\\Mailer\\": ""
  10095. },
  10096. "exclude-from-classmap": [
  10097. "/Tests/"
  10098. ]
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "MIT"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Fabien Potencier",
  10107. "email": "fabien@symfony.com"
  10108. },
  10109. {
  10110. "name": "Symfony Community",
  10111. "homepage": "https://symfony.com/contributors"
  10112. }
  10113. ],
  10114. "description": "Helps sending emails",
  10115. "homepage": "https://symfony.com",
  10116. "support": {
  10117. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  10118. },
  10119. "funding": [
  10120. {
  10121. "url": "https://symfony.com/sponsor",
  10122. "type": "custom"
  10123. },
  10124. {
  10125. "url": "https://github.com/fabpot",
  10126. "type": "github"
  10127. },
  10128. {
  10129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10130. "type": "tidelift"
  10131. }
  10132. ],
  10133. "time": "2025-01-27T11:08:17+00:00"
  10134. },
  10135. {
  10136. "name": "symfony/mime",
  10137. "version": "v7.3.4",
  10138. "source": {
  10139. "type": "git",
  10140. "url": "https://github.com/symfony/mime.git",
  10141. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35"
  10142. },
  10143. "dist": {
  10144. "type": "zip",
  10145. "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35",
  10146. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35",
  10147. "shasum": ""
  10148. },
  10149. "require": {
  10150. "php": ">=8.2",
  10151. "symfony/polyfill-intl-idn": "^1.10",
  10152. "symfony/polyfill-mbstring": "^1.0"
  10153. },
  10154. "conflict": {
  10155. "egulias/email-validator": "~3.0.0",
  10156. "phpdocumentor/reflection-docblock": "<3.2.2",
  10157. "phpdocumentor/type-resolver": "<1.4.0",
  10158. "symfony/mailer": "<6.4",
  10159. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  10160. },
  10161. "require-dev": {
  10162. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10163. "league/html-to-markdown": "^5.0",
  10164. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10165. "symfony/dependency-injection": "^6.4|^7.0",
  10166. "symfony/process": "^6.4|^7.0",
  10167. "symfony/property-access": "^6.4|^7.0",
  10168. "symfony/property-info": "^6.4|^7.0",
  10169. "symfony/serializer": "^6.4.3|^7.0.3"
  10170. },
  10171. "type": "library",
  10172. "autoload": {
  10173. "psr-4": {
  10174. "Symfony\\Component\\Mime\\": ""
  10175. },
  10176. "exclude-from-classmap": [
  10177. "/Tests/"
  10178. ]
  10179. },
  10180. "notification-url": "https://packagist.org/downloads/",
  10181. "license": [
  10182. "MIT"
  10183. ],
  10184. "authors": [
  10185. {
  10186. "name": "Fabien Potencier",
  10187. "email": "fabien@symfony.com"
  10188. },
  10189. {
  10190. "name": "Symfony Community",
  10191. "homepage": "https://symfony.com/contributors"
  10192. }
  10193. ],
  10194. "description": "Allows manipulating MIME messages",
  10195. "homepage": "https://symfony.com",
  10196. "keywords": [
  10197. "mime",
  10198. "mime-type"
  10199. ],
  10200. "support": {
  10201. "source": "https://github.com/symfony/mime/tree/v7.3.4"
  10202. },
  10203. "funding": [
  10204. {
  10205. "url": "https://symfony.com/sponsor",
  10206. "type": "custom"
  10207. },
  10208. {
  10209. "url": "https://github.com/fabpot",
  10210. "type": "github"
  10211. },
  10212. {
  10213. "url": "https://github.com/nicolas-grekas",
  10214. "type": "github"
  10215. },
  10216. {
  10217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10218. "type": "tidelift"
  10219. }
  10220. ],
  10221. "time": "2025-09-16T08:38:17+00:00"
  10222. },
  10223. {
  10224. "name": "symfony/polyfill-ctype",
  10225. "version": "v1.33.0",
  10226. "source": {
  10227. "type": "git",
  10228. "url": "https://github.com/symfony/polyfill-ctype.git",
  10229. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  10230. },
  10231. "dist": {
  10232. "type": "zip",
  10233. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  10234. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  10235. "shasum": ""
  10236. },
  10237. "require": {
  10238. "php": ">=7.2"
  10239. },
  10240. "provide": {
  10241. "ext-ctype": "*"
  10242. },
  10243. "suggest": {
  10244. "ext-ctype": "For best performance"
  10245. },
  10246. "type": "library",
  10247. "extra": {
  10248. "thanks": {
  10249. "url": "https://github.com/symfony/polyfill",
  10250. "name": "symfony/polyfill"
  10251. }
  10252. },
  10253. "autoload": {
  10254. "files": [
  10255. "bootstrap.php"
  10256. ],
  10257. "psr-4": {
  10258. "Symfony\\Polyfill\\Ctype\\": ""
  10259. }
  10260. },
  10261. "notification-url": "https://packagist.org/downloads/",
  10262. "license": [
  10263. "MIT"
  10264. ],
  10265. "authors": [
  10266. {
  10267. "name": "Gert de Pagter",
  10268. "email": "BackEndTea@gmail.com"
  10269. },
  10270. {
  10271. "name": "Symfony Community",
  10272. "homepage": "https://symfony.com/contributors"
  10273. }
  10274. ],
  10275. "description": "Symfony polyfill for ctype functions",
  10276. "homepage": "https://symfony.com",
  10277. "keywords": [
  10278. "compatibility",
  10279. "ctype",
  10280. "polyfill",
  10281. "portable"
  10282. ],
  10283. "support": {
  10284. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  10285. },
  10286. "funding": [
  10287. {
  10288. "url": "https://symfony.com/sponsor",
  10289. "type": "custom"
  10290. },
  10291. {
  10292. "url": "https://github.com/fabpot",
  10293. "type": "github"
  10294. },
  10295. {
  10296. "url": "https://github.com/nicolas-grekas",
  10297. "type": "github"
  10298. },
  10299. {
  10300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10301. "type": "tidelift"
  10302. }
  10303. ],
  10304. "time": "2024-09-09T11:45:10+00:00"
  10305. },
  10306. {
  10307. "name": "symfony/polyfill-intl-grapheme",
  10308. "version": "v1.33.0",
  10309. "source": {
  10310. "type": "git",
  10311. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10312. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  10313. },
  10314. "dist": {
  10315. "type": "zip",
  10316. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  10317. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  10318. "shasum": ""
  10319. },
  10320. "require": {
  10321. "php": ">=7.2"
  10322. },
  10323. "suggest": {
  10324. "ext-intl": "For best performance"
  10325. },
  10326. "type": "library",
  10327. "extra": {
  10328. "thanks": {
  10329. "url": "https://github.com/symfony/polyfill",
  10330. "name": "symfony/polyfill"
  10331. }
  10332. },
  10333. "autoload": {
  10334. "files": [
  10335. "bootstrap.php"
  10336. ],
  10337. "psr-4": {
  10338. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10339. }
  10340. },
  10341. "notification-url": "https://packagist.org/downloads/",
  10342. "license": [
  10343. "MIT"
  10344. ],
  10345. "authors": [
  10346. {
  10347. "name": "Nicolas Grekas",
  10348. "email": "p@tchwork.com"
  10349. },
  10350. {
  10351. "name": "Symfony Community",
  10352. "homepage": "https://symfony.com/contributors"
  10353. }
  10354. ],
  10355. "description": "Symfony polyfill for intl's grapheme_* functions",
  10356. "homepage": "https://symfony.com",
  10357. "keywords": [
  10358. "compatibility",
  10359. "grapheme",
  10360. "intl",
  10361. "polyfill",
  10362. "portable",
  10363. "shim"
  10364. ],
  10365. "support": {
  10366. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  10367. },
  10368. "funding": [
  10369. {
  10370. "url": "https://symfony.com/sponsor",
  10371. "type": "custom"
  10372. },
  10373. {
  10374. "url": "https://github.com/fabpot",
  10375. "type": "github"
  10376. },
  10377. {
  10378. "url": "https://github.com/nicolas-grekas",
  10379. "type": "github"
  10380. },
  10381. {
  10382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10383. "type": "tidelift"
  10384. }
  10385. ],
  10386. "time": "2025-06-27T09:58:17+00:00"
  10387. },
  10388. {
  10389. "name": "symfony/polyfill-intl-idn",
  10390. "version": "v1.33.0",
  10391. "source": {
  10392. "type": "git",
  10393. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10394. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  10395. },
  10396. "dist": {
  10397. "type": "zip",
  10398. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  10399. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  10400. "shasum": ""
  10401. },
  10402. "require": {
  10403. "php": ">=7.2",
  10404. "symfony/polyfill-intl-normalizer": "^1.10"
  10405. },
  10406. "suggest": {
  10407. "ext-intl": "For best performance"
  10408. },
  10409. "type": "library",
  10410. "extra": {
  10411. "thanks": {
  10412. "url": "https://github.com/symfony/polyfill",
  10413. "name": "symfony/polyfill"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "files": [
  10418. "bootstrap.php"
  10419. ],
  10420. "psr-4": {
  10421. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10422. }
  10423. },
  10424. "notification-url": "https://packagist.org/downloads/",
  10425. "license": [
  10426. "MIT"
  10427. ],
  10428. "authors": [
  10429. {
  10430. "name": "Laurent Bassin",
  10431. "email": "laurent@bassin.info"
  10432. },
  10433. {
  10434. "name": "Trevor Rowbotham",
  10435. "email": "trevor.rowbotham@pm.me"
  10436. },
  10437. {
  10438. "name": "Symfony Community",
  10439. "homepage": "https://symfony.com/contributors"
  10440. }
  10441. ],
  10442. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10443. "homepage": "https://symfony.com",
  10444. "keywords": [
  10445. "compatibility",
  10446. "idn",
  10447. "intl",
  10448. "polyfill",
  10449. "portable",
  10450. "shim"
  10451. ],
  10452. "support": {
  10453. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  10454. },
  10455. "funding": [
  10456. {
  10457. "url": "https://symfony.com/sponsor",
  10458. "type": "custom"
  10459. },
  10460. {
  10461. "url": "https://github.com/fabpot",
  10462. "type": "github"
  10463. },
  10464. {
  10465. "url": "https://github.com/nicolas-grekas",
  10466. "type": "github"
  10467. },
  10468. {
  10469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10470. "type": "tidelift"
  10471. }
  10472. ],
  10473. "time": "2024-09-10T14:38:51+00:00"
  10474. },
  10475. {
  10476. "name": "symfony/polyfill-intl-normalizer",
  10477. "version": "v1.33.0",
  10478. "source": {
  10479. "type": "git",
  10480. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10481. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  10482. },
  10483. "dist": {
  10484. "type": "zip",
  10485. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  10486. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  10487. "shasum": ""
  10488. },
  10489. "require": {
  10490. "php": ">=7.2"
  10491. },
  10492. "suggest": {
  10493. "ext-intl": "For best performance"
  10494. },
  10495. "type": "library",
  10496. "extra": {
  10497. "thanks": {
  10498. "url": "https://github.com/symfony/polyfill",
  10499. "name": "symfony/polyfill"
  10500. }
  10501. },
  10502. "autoload": {
  10503. "files": [
  10504. "bootstrap.php"
  10505. ],
  10506. "psr-4": {
  10507. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10508. },
  10509. "classmap": [
  10510. "Resources/stubs"
  10511. ]
  10512. },
  10513. "notification-url": "https://packagist.org/downloads/",
  10514. "license": [
  10515. "MIT"
  10516. ],
  10517. "authors": [
  10518. {
  10519. "name": "Nicolas Grekas",
  10520. "email": "p@tchwork.com"
  10521. },
  10522. {
  10523. "name": "Symfony Community",
  10524. "homepage": "https://symfony.com/contributors"
  10525. }
  10526. ],
  10527. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10528. "homepage": "https://symfony.com",
  10529. "keywords": [
  10530. "compatibility",
  10531. "intl",
  10532. "normalizer",
  10533. "polyfill",
  10534. "portable",
  10535. "shim"
  10536. ],
  10537. "support": {
  10538. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  10539. },
  10540. "funding": [
  10541. {
  10542. "url": "https://symfony.com/sponsor",
  10543. "type": "custom"
  10544. },
  10545. {
  10546. "url": "https://github.com/fabpot",
  10547. "type": "github"
  10548. },
  10549. {
  10550. "url": "https://github.com/nicolas-grekas",
  10551. "type": "github"
  10552. },
  10553. {
  10554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10555. "type": "tidelift"
  10556. }
  10557. ],
  10558. "time": "2024-09-09T11:45:10+00:00"
  10559. },
  10560. {
  10561. "name": "symfony/polyfill-mbstring",
  10562. "version": "v1.33.0",
  10563. "source": {
  10564. "type": "git",
  10565. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10566. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  10567. },
  10568. "dist": {
  10569. "type": "zip",
  10570. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  10571. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  10572. "shasum": ""
  10573. },
  10574. "require": {
  10575. "ext-iconv": "*",
  10576. "php": ">=7.2"
  10577. },
  10578. "provide": {
  10579. "ext-mbstring": "*"
  10580. },
  10581. "suggest": {
  10582. "ext-mbstring": "For best performance"
  10583. },
  10584. "type": "library",
  10585. "extra": {
  10586. "thanks": {
  10587. "url": "https://github.com/symfony/polyfill",
  10588. "name": "symfony/polyfill"
  10589. }
  10590. },
  10591. "autoload": {
  10592. "files": [
  10593. "bootstrap.php"
  10594. ],
  10595. "psr-4": {
  10596. "Symfony\\Polyfill\\Mbstring\\": ""
  10597. }
  10598. },
  10599. "notification-url": "https://packagist.org/downloads/",
  10600. "license": [
  10601. "MIT"
  10602. ],
  10603. "authors": [
  10604. {
  10605. "name": "Nicolas Grekas",
  10606. "email": "p@tchwork.com"
  10607. },
  10608. {
  10609. "name": "Symfony Community",
  10610. "homepage": "https://symfony.com/contributors"
  10611. }
  10612. ],
  10613. "description": "Symfony polyfill for the Mbstring extension",
  10614. "homepage": "https://symfony.com",
  10615. "keywords": [
  10616. "compatibility",
  10617. "mbstring",
  10618. "polyfill",
  10619. "portable",
  10620. "shim"
  10621. ],
  10622. "support": {
  10623. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  10624. },
  10625. "funding": [
  10626. {
  10627. "url": "https://symfony.com/sponsor",
  10628. "type": "custom"
  10629. },
  10630. {
  10631. "url": "https://github.com/fabpot",
  10632. "type": "github"
  10633. },
  10634. {
  10635. "url": "https://github.com/nicolas-grekas",
  10636. "type": "github"
  10637. },
  10638. {
  10639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10640. "type": "tidelift"
  10641. }
  10642. ],
  10643. "time": "2024-12-23T08:48:59+00:00"
  10644. },
  10645. {
  10646. "name": "symfony/polyfill-php80",
  10647. "version": "v1.33.0",
  10648. "source": {
  10649. "type": "git",
  10650. "url": "https://github.com/symfony/polyfill-php80.git",
  10651. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  10652. },
  10653. "dist": {
  10654. "type": "zip",
  10655. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  10656. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  10657. "shasum": ""
  10658. },
  10659. "require": {
  10660. "php": ">=7.2"
  10661. },
  10662. "type": "library",
  10663. "extra": {
  10664. "thanks": {
  10665. "url": "https://github.com/symfony/polyfill",
  10666. "name": "symfony/polyfill"
  10667. }
  10668. },
  10669. "autoload": {
  10670. "files": [
  10671. "bootstrap.php"
  10672. ],
  10673. "psr-4": {
  10674. "Symfony\\Polyfill\\Php80\\": ""
  10675. },
  10676. "classmap": [
  10677. "Resources/stubs"
  10678. ]
  10679. },
  10680. "notification-url": "https://packagist.org/downloads/",
  10681. "license": [
  10682. "MIT"
  10683. ],
  10684. "authors": [
  10685. {
  10686. "name": "Ion Bazan",
  10687. "email": "ion.bazan@gmail.com"
  10688. },
  10689. {
  10690. "name": "Nicolas Grekas",
  10691. "email": "p@tchwork.com"
  10692. },
  10693. {
  10694. "name": "Symfony Community",
  10695. "homepage": "https://symfony.com/contributors"
  10696. }
  10697. ],
  10698. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  10699. "homepage": "https://symfony.com",
  10700. "keywords": [
  10701. "compatibility",
  10702. "polyfill",
  10703. "portable",
  10704. "shim"
  10705. ],
  10706. "support": {
  10707. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  10708. },
  10709. "funding": [
  10710. {
  10711. "url": "https://symfony.com/sponsor",
  10712. "type": "custom"
  10713. },
  10714. {
  10715. "url": "https://github.com/fabpot",
  10716. "type": "github"
  10717. },
  10718. {
  10719. "url": "https://github.com/nicolas-grekas",
  10720. "type": "github"
  10721. },
  10722. {
  10723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10724. "type": "tidelift"
  10725. }
  10726. ],
  10727. "time": "2025-01-02T08:10:11+00:00"
  10728. },
  10729. {
  10730. "name": "symfony/polyfill-php82",
  10731. "version": "v1.31.0",
  10732. "source": {
  10733. "type": "git",
  10734. "url": "https://github.com/symfony/polyfill-php82.git",
  10735. "reference": "5d2ed36f7734637dacc025f179698031951b1692"
  10736. },
  10737. "dist": {
  10738. "type": "zip",
  10739. "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/5d2ed36f7734637dacc025f179698031951b1692",
  10740. "reference": "5d2ed36f7734637dacc025f179698031951b1692",
  10741. "shasum": ""
  10742. },
  10743. "require": {
  10744. "php": ">=7.2"
  10745. },
  10746. "type": "library",
  10747. "extra": {
  10748. "thanks": {
  10749. "url": "https://github.com/symfony/polyfill",
  10750. "name": "symfony/polyfill"
  10751. }
  10752. },
  10753. "autoload": {
  10754. "files": [
  10755. "bootstrap.php"
  10756. ],
  10757. "psr-4": {
  10758. "Symfony\\Polyfill\\Php82\\": ""
  10759. },
  10760. "classmap": [
  10761. "Resources/stubs"
  10762. ]
  10763. },
  10764. "notification-url": "https://packagist.org/downloads/",
  10765. "license": [
  10766. "MIT"
  10767. ],
  10768. "authors": [
  10769. {
  10770. "name": "Nicolas Grekas",
  10771. "email": "p@tchwork.com"
  10772. },
  10773. {
  10774. "name": "Symfony Community",
  10775. "homepage": "https://symfony.com/contributors"
  10776. }
  10777. ],
  10778. "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions",
  10779. "homepage": "https://symfony.com",
  10780. "keywords": [
  10781. "compatibility",
  10782. "polyfill",
  10783. "portable",
  10784. "shim"
  10785. ],
  10786. "support": {
  10787. "source": "https://github.com/symfony/polyfill-php82/tree/v1.31.0"
  10788. },
  10789. "funding": [
  10790. {
  10791. "url": "https://symfony.com/sponsor",
  10792. "type": "custom"
  10793. },
  10794. {
  10795. "url": "https://github.com/fabpot",
  10796. "type": "github"
  10797. },
  10798. {
  10799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10800. "type": "tidelift"
  10801. }
  10802. ],
  10803. "time": "2024-09-09T11:45:10+00:00"
  10804. },
  10805. {
  10806. "name": "symfony/polyfill-php83",
  10807. "version": "v1.33.0",
  10808. "source": {
  10809. "type": "git",
  10810. "url": "https://github.com/symfony/polyfill-php83.git",
  10811. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  10812. },
  10813. "dist": {
  10814. "type": "zip",
  10815. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  10816. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  10817. "shasum": ""
  10818. },
  10819. "require": {
  10820. "php": ">=7.2"
  10821. },
  10822. "type": "library",
  10823. "extra": {
  10824. "thanks": {
  10825. "url": "https://github.com/symfony/polyfill",
  10826. "name": "symfony/polyfill"
  10827. }
  10828. },
  10829. "autoload": {
  10830. "files": [
  10831. "bootstrap.php"
  10832. ],
  10833. "psr-4": {
  10834. "Symfony\\Polyfill\\Php83\\": ""
  10835. },
  10836. "classmap": [
  10837. "Resources/stubs"
  10838. ]
  10839. },
  10840. "notification-url": "https://packagist.org/downloads/",
  10841. "license": [
  10842. "MIT"
  10843. ],
  10844. "authors": [
  10845. {
  10846. "name": "Nicolas Grekas",
  10847. "email": "p@tchwork.com"
  10848. },
  10849. {
  10850. "name": "Symfony Community",
  10851. "homepage": "https://symfony.com/contributors"
  10852. }
  10853. ],
  10854. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10855. "homepage": "https://symfony.com",
  10856. "keywords": [
  10857. "compatibility",
  10858. "polyfill",
  10859. "portable",
  10860. "shim"
  10861. ],
  10862. "support": {
  10863. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  10864. },
  10865. "funding": [
  10866. {
  10867. "url": "https://symfony.com/sponsor",
  10868. "type": "custom"
  10869. },
  10870. {
  10871. "url": "https://github.com/fabpot",
  10872. "type": "github"
  10873. },
  10874. {
  10875. "url": "https://github.com/nicolas-grekas",
  10876. "type": "github"
  10877. },
  10878. {
  10879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10880. "type": "tidelift"
  10881. }
  10882. ],
  10883. "time": "2025-07-08T02:45:35+00:00"
  10884. },
  10885. {
  10886. "name": "symfony/polyfill-php84",
  10887. "version": "v1.33.0",
  10888. "source": {
  10889. "type": "git",
  10890. "url": "https://github.com/symfony/polyfill-php84.git",
  10891. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  10892. },
  10893. "dist": {
  10894. "type": "zip",
  10895. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  10896. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  10897. "shasum": ""
  10898. },
  10899. "require": {
  10900. "php": ">=7.2"
  10901. },
  10902. "type": "library",
  10903. "extra": {
  10904. "thanks": {
  10905. "url": "https://github.com/symfony/polyfill",
  10906. "name": "symfony/polyfill"
  10907. }
  10908. },
  10909. "autoload": {
  10910. "files": [
  10911. "bootstrap.php"
  10912. ],
  10913. "psr-4": {
  10914. "Symfony\\Polyfill\\Php84\\": ""
  10915. },
  10916. "classmap": [
  10917. "Resources/stubs"
  10918. ]
  10919. },
  10920. "notification-url": "https://packagist.org/downloads/",
  10921. "license": [
  10922. "MIT"
  10923. ],
  10924. "authors": [
  10925. {
  10926. "name": "Nicolas Grekas",
  10927. "email": "p@tchwork.com"
  10928. },
  10929. {
  10930. "name": "Symfony Community",
  10931. "homepage": "https://symfony.com/contributors"
  10932. }
  10933. ],
  10934. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  10935. "homepage": "https://symfony.com",
  10936. "keywords": [
  10937. "compatibility",
  10938. "polyfill",
  10939. "portable",
  10940. "shim"
  10941. ],
  10942. "support": {
  10943. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  10944. },
  10945. "funding": [
  10946. {
  10947. "url": "https://symfony.com/sponsor",
  10948. "type": "custom"
  10949. },
  10950. {
  10951. "url": "https://github.com/fabpot",
  10952. "type": "github"
  10953. },
  10954. {
  10955. "url": "https://github.com/nicolas-grekas",
  10956. "type": "github"
  10957. },
  10958. {
  10959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10960. "type": "tidelift"
  10961. }
  10962. ],
  10963. "time": "2025-06-24T13:30:11+00:00"
  10964. },
  10965. {
  10966. "name": "symfony/polyfill-uuid",
  10967. "version": "v1.31.0",
  10968. "source": {
  10969. "type": "git",
  10970. "url": "https://github.com/symfony/polyfill-uuid.git",
  10971. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  10972. },
  10973. "dist": {
  10974. "type": "zip",
  10975. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  10976. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  10977. "shasum": ""
  10978. },
  10979. "require": {
  10980. "php": ">=7.2"
  10981. },
  10982. "provide": {
  10983. "ext-uuid": "*"
  10984. },
  10985. "suggest": {
  10986. "ext-uuid": "For best performance"
  10987. },
  10988. "type": "library",
  10989. "extra": {
  10990. "thanks": {
  10991. "url": "https://github.com/symfony/polyfill",
  10992. "name": "symfony/polyfill"
  10993. }
  10994. },
  10995. "autoload": {
  10996. "files": [
  10997. "bootstrap.php"
  10998. ],
  10999. "psr-4": {
  11000. "Symfony\\Polyfill\\Uuid\\": ""
  11001. }
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "MIT"
  11006. ],
  11007. "authors": [
  11008. {
  11009. "name": "Grégoire Pineau",
  11010. "email": "lyrixx@lyrixx.info"
  11011. },
  11012. {
  11013. "name": "Symfony Community",
  11014. "homepage": "https://symfony.com/contributors"
  11015. }
  11016. ],
  11017. "description": "Symfony polyfill for uuid functions",
  11018. "homepage": "https://symfony.com",
  11019. "keywords": [
  11020. "compatibility",
  11021. "polyfill",
  11022. "portable",
  11023. "uuid"
  11024. ],
  11025. "support": {
  11026. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  11027. },
  11028. "funding": [
  11029. {
  11030. "url": "https://symfony.com/sponsor",
  11031. "type": "custom"
  11032. },
  11033. {
  11034. "url": "https://github.com/fabpot",
  11035. "type": "github"
  11036. },
  11037. {
  11038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11039. "type": "tidelift"
  11040. }
  11041. ],
  11042. "time": "2024-09-09T11:45:10+00:00"
  11043. },
  11044. {
  11045. "name": "symfony/process",
  11046. "version": "v7.2.4",
  11047. "source": {
  11048. "type": "git",
  11049. "url": "https://github.com/symfony/process.git",
  11050. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf"
  11051. },
  11052. "dist": {
  11053. "type": "zip",
  11054. "url": "https://api.github.com/repos/symfony/process/zipball/d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  11055. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  11056. "shasum": ""
  11057. },
  11058. "require": {
  11059. "php": ">=8.2"
  11060. },
  11061. "type": "library",
  11062. "autoload": {
  11063. "psr-4": {
  11064. "Symfony\\Component\\Process\\": ""
  11065. },
  11066. "exclude-from-classmap": [
  11067. "/Tests/"
  11068. ]
  11069. },
  11070. "notification-url": "https://packagist.org/downloads/",
  11071. "license": [
  11072. "MIT"
  11073. ],
  11074. "authors": [
  11075. {
  11076. "name": "Fabien Potencier",
  11077. "email": "fabien@symfony.com"
  11078. },
  11079. {
  11080. "name": "Symfony Community",
  11081. "homepage": "https://symfony.com/contributors"
  11082. }
  11083. ],
  11084. "description": "Executes commands in sub-processes",
  11085. "homepage": "https://symfony.com",
  11086. "support": {
  11087. "source": "https://github.com/symfony/process/tree/v7.2.4"
  11088. },
  11089. "funding": [
  11090. {
  11091. "url": "https://symfony.com/sponsor",
  11092. "type": "custom"
  11093. },
  11094. {
  11095. "url": "https://github.com/fabpot",
  11096. "type": "github"
  11097. },
  11098. {
  11099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11100. "type": "tidelift"
  11101. }
  11102. ],
  11103. "time": "2025-02-05T08:33:46+00:00"
  11104. },
  11105. {
  11106. "name": "symfony/property-access",
  11107. "version": "v7.4.8",
  11108. "source": {
  11109. "type": "git",
  11110. "url": "https://github.com/symfony/property-access.git",
  11111. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc"
  11112. },
  11113. "dist": {
  11114. "type": "zip",
  11115. "url": "https://api.github.com/repos/symfony/property-access/zipball/b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  11116. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  11117. "shasum": ""
  11118. },
  11119. "require": {
  11120. "php": ">=8.2",
  11121. "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4"
  11122. },
  11123. "require-dev": {
  11124. "symfony/cache": "^6.4|^7.0|^8.0",
  11125. "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0"
  11126. },
  11127. "type": "library",
  11128. "autoload": {
  11129. "psr-4": {
  11130. "Symfony\\Component\\PropertyAccess\\": ""
  11131. },
  11132. "exclude-from-classmap": [
  11133. "/Tests/"
  11134. ]
  11135. },
  11136. "notification-url": "https://packagist.org/downloads/",
  11137. "license": [
  11138. "MIT"
  11139. ],
  11140. "authors": [
  11141. {
  11142. "name": "Fabien Potencier",
  11143. "email": "fabien@symfony.com"
  11144. },
  11145. {
  11146. "name": "Symfony Community",
  11147. "homepage": "https://symfony.com/contributors"
  11148. }
  11149. ],
  11150. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  11151. "homepage": "https://symfony.com",
  11152. "keywords": [
  11153. "access",
  11154. "array",
  11155. "extraction",
  11156. "index",
  11157. "injection",
  11158. "object",
  11159. "property",
  11160. "property-path",
  11161. "reflection"
  11162. ],
  11163. "support": {
  11164. "source": "https://github.com/symfony/property-access/tree/v7.4.8"
  11165. },
  11166. "funding": [
  11167. {
  11168. "url": "https://symfony.com/sponsor",
  11169. "type": "custom"
  11170. },
  11171. {
  11172. "url": "https://github.com/fabpot",
  11173. "type": "github"
  11174. },
  11175. {
  11176. "url": "https://github.com/nicolas-grekas",
  11177. "type": "github"
  11178. },
  11179. {
  11180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11181. "type": "tidelift"
  11182. }
  11183. ],
  11184. "time": "2026-03-24T13:12:05+00:00"
  11185. },
  11186. {
  11187. "name": "symfony/property-info",
  11188. "version": "v7.4.8",
  11189. "source": {
  11190. "type": "git",
  11191. "url": "https://github.com/symfony/property-info.git",
  11192. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175"
  11193. },
  11194. "dist": {
  11195. "type": "zip",
  11196. "url": "https://api.github.com/repos/symfony/property-info/zipball/ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  11197. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  11198. "shasum": ""
  11199. },
  11200. "require": {
  11201. "php": ">=8.2",
  11202. "symfony/deprecation-contracts": "^2.5|^3",
  11203. "symfony/string": "^6.4|^7.0|^8.0",
  11204. "symfony/type-info": "^7.4.7|^8.0.7"
  11205. },
  11206. "conflict": {
  11207. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  11208. "phpdocumentor/type-resolver": "<1.5.1",
  11209. "symfony/cache": "<6.4",
  11210. "symfony/dependency-injection": "<6.4",
  11211. "symfony/serializer": "<6.4"
  11212. },
  11213. "require-dev": {
  11214. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  11215. "phpstan/phpdoc-parser": "^1.0|^2.0",
  11216. "symfony/cache": "^6.4|^7.0|^8.0",
  11217. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  11218. "symfony/serializer": "^6.4|^7.0|^8.0"
  11219. },
  11220. "type": "library",
  11221. "autoload": {
  11222. "psr-4": {
  11223. "Symfony\\Component\\PropertyInfo\\": ""
  11224. },
  11225. "exclude-from-classmap": [
  11226. "/Tests/"
  11227. ]
  11228. },
  11229. "notification-url": "https://packagist.org/downloads/",
  11230. "license": [
  11231. "MIT"
  11232. ],
  11233. "authors": [
  11234. {
  11235. "name": "Kévin Dunglas",
  11236. "email": "dunglas@gmail.com"
  11237. },
  11238. {
  11239. "name": "Symfony Community",
  11240. "homepage": "https://symfony.com/contributors"
  11241. }
  11242. ],
  11243. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  11244. "homepage": "https://symfony.com",
  11245. "keywords": [
  11246. "doctrine",
  11247. "phpdoc",
  11248. "property",
  11249. "symfony",
  11250. "type",
  11251. "validator"
  11252. ],
  11253. "support": {
  11254. "source": "https://github.com/symfony/property-info/tree/v7.4.8"
  11255. },
  11256. "funding": [
  11257. {
  11258. "url": "https://symfony.com/sponsor",
  11259. "type": "custom"
  11260. },
  11261. {
  11262. "url": "https://github.com/fabpot",
  11263. "type": "github"
  11264. },
  11265. {
  11266. "url": "https://github.com/nicolas-grekas",
  11267. "type": "github"
  11268. },
  11269. {
  11270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11271. "type": "tidelift"
  11272. }
  11273. ],
  11274. "time": "2026-03-24T13:12:05+00:00"
  11275. },
  11276. {
  11277. "name": "symfony/psr-http-message-bridge",
  11278. "version": "v7.2.0",
  11279. "source": {
  11280. "type": "git",
  11281. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11282. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f"
  11283. },
  11284. "dist": {
  11285. "type": "zip",
  11286. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  11287. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  11288. "shasum": ""
  11289. },
  11290. "require": {
  11291. "php": ">=8.2",
  11292. "psr/http-message": "^1.0|^2.0",
  11293. "symfony/http-foundation": "^6.4|^7.0"
  11294. },
  11295. "conflict": {
  11296. "php-http/discovery": "<1.15",
  11297. "symfony/http-kernel": "<6.4"
  11298. },
  11299. "require-dev": {
  11300. "nyholm/psr7": "^1.1",
  11301. "php-http/discovery": "^1.15",
  11302. "psr/log": "^1.1.4|^2|^3",
  11303. "symfony/browser-kit": "^6.4|^7.0",
  11304. "symfony/config": "^6.4|^7.0",
  11305. "symfony/event-dispatcher": "^6.4|^7.0",
  11306. "symfony/framework-bundle": "^6.4|^7.0",
  11307. "symfony/http-kernel": "^6.4|^7.0"
  11308. },
  11309. "type": "symfony-bridge",
  11310. "autoload": {
  11311. "psr-4": {
  11312. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11313. },
  11314. "exclude-from-classmap": [
  11315. "/Tests/"
  11316. ]
  11317. },
  11318. "notification-url": "https://packagist.org/downloads/",
  11319. "license": [
  11320. "MIT"
  11321. ],
  11322. "authors": [
  11323. {
  11324. "name": "Fabien Potencier",
  11325. "email": "fabien@symfony.com"
  11326. },
  11327. {
  11328. "name": "Symfony Community",
  11329. "homepage": "https://symfony.com/contributors"
  11330. }
  11331. ],
  11332. "description": "PSR HTTP message bridge",
  11333. "homepage": "https://symfony.com",
  11334. "keywords": [
  11335. "http",
  11336. "http-message",
  11337. "psr-17",
  11338. "psr-7"
  11339. ],
  11340. "support": {
  11341. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.2.0"
  11342. },
  11343. "funding": [
  11344. {
  11345. "url": "https://symfony.com/sponsor",
  11346. "type": "custom"
  11347. },
  11348. {
  11349. "url": "https://github.com/fabpot",
  11350. "type": "github"
  11351. },
  11352. {
  11353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11354. "type": "tidelift"
  11355. }
  11356. ],
  11357. "time": "2024-09-26T08:57:56+00:00"
  11358. },
  11359. {
  11360. "name": "symfony/routing",
  11361. "version": "v7.2.3",
  11362. "source": {
  11363. "type": "git",
  11364. "url": "https://github.com/symfony/routing.git",
  11365. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  11366. },
  11367. "dist": {
  11368. "type": "zip",
  11369. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  11370. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  11371. "shasum": ""
  11372. },
  11373. "require": {
  11374. "php": ">=8.2",
  11375. "symfony/deprecation-contracts": "^2.5|^3"
  11376. },
  11377. "conflict": {
  11378. "symfony/config": "<6.4",
  11379. "symfony/dependency-injection": "<6.4",
  11380. "symfony/yaml": "<6.4"
  11381. },
  11382. "require-dev": {
  11383. "psr/log": "^1|^2|^3",
  11384. "symfony/config": "^6.4|^7.0",
  11385. "symfony/dependency-injection": "^6.4|^7.0",
  11386. "symfony/expression-language": "^6.4|^7.0",
  11387. "symfony/http-foundation": "^6.4|^7.0",
  11388. "symfony/yaml": "^6.4|^7.0"
  11389. },
  11390. "type": "library",
  11391. "autoload": {
  11392. "psr-4": {
  11393. "Symfony\\Component\\Routing\\": ""
  11394. },
  11395. "exclude-from-classmap": [
  11396. "/Tests/"
  11397. ]
  11398. },
  11399. "notification-url": "https://packagist.org/downloads/",
  11400. "license": [
  11401. "MIT"
  11402. ],
  11403. "authors": [
  11404. {
  11405. "name": "Fabien Potencier",
  11406. "email": "fabien@symfony.com"
  11407. },
  11408. {
  11409. "name": "Symfony Community",
  11410. "homepage": "https://symfony.com/contributors"
  11411. }
  11412. ],
  11413. "description": "Maps an HTTP request to a set of configuration variables",
  11414. "homepage": "https://symfony.com",
  11415. "keywords": [
  11416. "router",
  11417. "routing",
  11418. "uri",
  11419. "url"
  11420. ],
  11421. "support": {
  11422. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  11423. },
  11424. "funding": [
  11425. {
  11426. "url": "https://symfony.com/sponsor",
  11427. "type": "custom"
  11428. },
  11429. {
  11430. "url": "https://github.com/fabpot",
  11431. "type": "github"
  11432. },
  11433. {
  11434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11435. "type": "tidelift"
  11436. }
  11437. ],
  11438. "time": "2025-01-17T10:56:55+00:00"
  11439. },
  11440. {
  11441. "name": "symfony/serializer",
  11442. "version": "v7.4.8",
  11443. "source": {
  11444. "type": "git",
  11445. "url": "https://github.com/symfony/serializer.git",
  11446. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455"
  11447. },
  11448. "dist": {
  11449. "type": "zip",
  11450. "url": "https://api.github.com/repos/symfony/serializer/zipball/006fd51717addf2df2bd1a64dafef6b7fab6b455",
  11451. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455",
  11452. "shasum": ""
  11453. },
  11454. "require": {
  11455. "php": ">=8.2",
  11456. "symfony/deprecation-contracts": "^2.5|^3",
  11457. "symfony/polyfill-ctype": "~1.8",
  11458. "symfony/polyfill-php84": "^1.30"
  11459. },
  11460. "conflict": {
  11461. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  11462. "phpdocumentor/type-resolver": "<1.5.1",
  11463. "symfony/dependency-injection": "<6.4",
  11464. "symfony/property-access": "<6.4",
  11465. "symfony/property-info": "<6.4",
  11466. "symfony/type-info": "<7.2.5",
  11467. "symfony/uid": "<6.4",
  11468. "symfony/validator": "<6.4",
  11469. "symfony/yaml": "<6.4"
  11470. },
  11471. "require-dev": {
  11472. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  11473. "phpstan/phpdoc-parser": "^1.0|^2.0",
  11474. "seld/jsonlint": "^1.10",
  11475. "symfony/cache": "^6.4|^7.0|^8.0",
  11476. "symfony/config": "^6.4|^7.0|^8.0",
  11477. "symfony/console": "^6.4|^7.0|^8.0",
  11478. "symfony/dependency-injection": "^7.2|^8.0",
  11479. "symfony/error-handler": "^6.4|^7.0|^8.0",
  11480. "symfony/filesystem": "^6.4|^7.0|^8.0",
  11481. "symfony/form": "^6.4|^7.0|^8.0",
  11482. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  11483. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  11484. "symfony/messenger": "^6.4|^7.0|^8.0",
  11485. "symfony/mime": "^6.4|^7.0|^8.0",
  11486. "symfony/property-access": "^6.4|^7.0|^8.0",
  11487. "symfony/property-info": "^6.4|^7.0|^8.0",
  11488. "symfony/translation-contracts": "^2.5|^3",
  11489. "symfony/type-info": "^7.2.5|^8.0",
  11490. "symfony/uid": "^6.4|^7.0|^8.0",
  11491. "symfony/validator": "^6.4|^7.0|^8.0",
  11492. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  11493. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  11494. "symfony/yaml": "^6.4|^7.0|^8.0"
  11495. },
  11496. "type": "library",
  11497. "autoload": {
  11498. "psr-4": {
  11499. "Symfony\\Component\\Serializer\\": ""
  11500. },
  11501. "exclude-from-classmap": [
  11502. "/Tests/"
  11503. ]
  11504. },
  11505. "notification-url": "https://packagist.org/downloads/",
  11506. "license": [
  11507. "MIT"
  11508. ],
  11509. "authors": [
  11510. {
  11511. "name": "Fabien Potencier",
  11512. "email": "fabien@symfony.com"
  11513. },
  11514. {
  11515. "name": "Symfony Community",
  11516. "homepage": "https://symfony.com/contributors"
  11517. }
  11518. ],
  11519. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11520. "homepage": "https://symfony.com",
  11521. "support": {
  11522. "source": "https://github.com/symfony/serializer/tree/v7.4.8"
  11523. },
  11524. "funding": [
  11525. {
  11526. "url": "https://symfony.com/sponsor",
  11527. "type": "custom"
  11528. },
  11529. {
  11530. "url": "https://github.com/fabpot",
  11531. "type": "github"
  11532. },
  11533. {
  11534. "url": "https://github.com/nicolas-grekas",
  11535. "type": "github"
  11536. },
  11537. {
  11538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11539. "type": "tidelift"
  11540. }
  11541. ],
  11542. "time": "2026-03-30T21:34:42+00:00"
  11543. },
  11544. {
  11545. "name": "symfony/service-contracts",
  11546. "version": "v3.6.0",
  11547. "source": {
  11548. "type": "git",
  11549. "url": "https://github.com/symfony/service-contracts.git",
  11550. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  11551. },
  11552. "dist": {
  11553. "type": "zip",
  11554. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  11555. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  11556. "shasum": ""
  11557. },
  11558. "require": {
  11559. "php": ">=8.1",
  11560. "psr/container": "^1.1|^2.0",
  11561. "symfony/deprecation-contracts": "^2.5|^3"
  11562. },
  11563. "conflict": {
  11564. "ext-psr": "<1.1|>=2"
  11565. },
  11566. "type": "library",
  11567. "extra": {
  11568. "thanks": {
  11569. "url": "https://github.com/symfony/contracts",
  11570. "name": "symfony/contracts"
  11571. },
  11572. "branch-alias": {
  11573. "dev-main": "3.6-dev"
  11574. }
  11575. },
  11576. "autoload": {
  11577. "psr-4": {
  11578. "Symfony\\Contracts\\Service\\": ""
  11579. },
  11580. "exclude-from-classmap": [
  11581. "/Test/"
  11582. ]
  11583. },
  11584. "notification-url": "https://packagist.org/downloads/",
  11585. "license": [
  11586. "MIT"
  11587. ],
  11588. "authors": [
  11589. {
  11590. "name": "Nicolas Grekas",
  11591. "email": "p@tchwork.com"
  11592. },
  11593. {
  11594. "name": "Symfony Community",
  11595. "homepage": "https://symfony.com/contributors"
  11596. }
  11597. ],
  11598. "description": "Generic abstractions related to writing services",
  11599. "homepage": "https://symfony.com",
  11600. "keywords": [
  11601. "abstractions",
  11602. "contracts",
  11603. "decoupling",
  11604. "interfaces",
  11605. "interoperability",
  11606. "standards"
  11607. ],
  11608. "support": {
  11609. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  11610. },
  11611. "funding": [
  11612. {
  11613. "url": "https://symfony.com/sponsor",
  11614. "type": "custom"
  11615. },
  11616. {
  11617. "url": "https://github.com/fabpot",
  11618. "type": "github"
  11619. },
  11620. {
  11621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11622. "type": "tidelift"
  11623. }
  11624. ],
  11625. "time": "2025-04-25T09:37:31+00:00"
  11626. },
  11627. {
  11628. "name": "symfony/string",
  11629. "version": "v7.3.3",
  11630. "source": {
  11631. "type": "git",
  11632. "url": "https://github.com/symfony/string.git",
  11633. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c"
  11634. },
  11635. "dist": {
  11636. "type": "zip",
  11637. "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  11638. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  11639. "shasum": ""
  11640. },
  11641. "require": {
  11642. "php": ">=8.2",
  11643. "symfony/polyfill-ctype": "~1.8",
  11644. "symfony/polyfill-intl-grapheme": "~1.0",
  11645. "symfony/polyfill-intl-normalizer": "~1.0",
  11646. "symfony/polyfill-mbstring": "~1.0"
  11647. },
  11648. "conflict": {
  11649. "symfony/translation-contracts": "<2.5"
  11650. },
  11651. "require-dev": {
  11652. "symfony/emoji": "^7.1",
  11653. "symfony/error-handler": "^6.4|^7.0",
  11654. "symfony/http-client": "^6.4|^7.0",
  11655. "symfony/intl": "^6.4|^7.0",
  11656. "symfony/translation-contracts": "^2.5|^3.0",
  11657. "symfony/var-exporter": "^6.4|^7.0"
  11658. },
  11659. "type": "library",
  11660. "autoload": {
  11661. "files": [
  11662. "Resources/functions.php"
  11663. ],
  11664. "psr-4": {
  11665. "Symfony\\Component\\String\\": ""
  11666. },
  11667. "exclude-from-classmap": [
  11668. "/Tests/"
  11669. ]
  11670. },
  11671. "notification-url": "https://packagist.org/downloads/",
  11672. "license": [
  11673. "MIT"
  11674. ],
  11675. "authors": [
  11676. {
  11677. "name": "Nicolas Grekas",
  11678. "email": "p@tchwork.com"
  11679. },
  11680. {
  11681. "name": "Symfony Community",
  11682. "homepage": "https://symfony.com/contributors"
  11683. }
  11684. ],
  11685. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11686. "homepage": "https://symfony.com",
  11687. "keywords": [
  11688. "grapheme",
  11689. "i18n",
  11690. "string",
  11691. "unicode",
  11692. "utf-8",
  11693. "utf8"
  11694. ],
  11695. "support": {
  11696. "source": "https://github.com/symfony/string/tree/v7.3.3"
  11697. },
  11698. "funding": [
  11699. {
  11700. "url": "https://symfony.com/sponsor",
  11701. "type": "custom"
  11702. },
  11703. {
  11704. "url": "https://github.com/fabpot",
  11705. "type": "github"
  11706. },
  11707. {
  11708. "url": "https://github.com/nicolas-grekas",
  11709. "type": "github"
  11710. },
  11711. {
  11712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11713. "type": "tidelift"
  11714. }
  11715. ],
  11716. "time": "2025-08-25T06:35:40+00:00"
  11717. },
  11718. {
  11719. "name": "symfony/translation",
  11720. "version": "v6.4.19",
  11721. "source": {
  11722. "type": "git",
  11723. "url": "https://github.com/symfony/translation.git",
  11724. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e"
  11725. },
  11726. "dist": {
  11727. "type": "zip",
  11728. "url": "https://api.github.com/repos/symfony/translation/zipball/3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  11729. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  11730. "shasum": ""
  11731. },
  11732. "require": {
  11733. "php": ">=8.1",
  11734. "symfony/deprecation-contracts": "^2.5|^3",
  11735. "symfony/polyfill-mbstring": "~1.0",
  11736. "symfony/translation-contracts": "^2.5|^3.0"
  11737. },
  11738. "conflict": {
  11739. "symfony/config": "<5.4",
  11740. "symfony/console": "<5.4",
  11741. "symfony/dependency-injection": "<5.4",
  11742. "symfony/http-client-contracts": "<2.5",
  11743. "symfony/http-kernel": "<5.4",
  11744. "symfony/service-contracts": "<2.5",
  11745. "symfony/twig-bundle": "<5.4",
  11746. "symfony/yaml": "<5.4"
  11747. },
  11748. "provide": {
  11749. "symfony/translation-implementation": "2.3|3.0"
  11750. },
  11751. "require-dev": {
  11752. "nikic/php-parser": "^4.18|^5.0",
  11753. "psr/log": "^1|^2|^3",
  11754. "symfony/config": "^5.4|^6.0|^7.0",
  11755. "symfony/console": "^5.4|^6.0|^7.0",
  11756. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11757. "symfony/finder": "^5.4|^6.0|^7.0",
  11758. "symfony/http-client-contracts": "^2.5|^3.0",
  11759. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  11760. "symfony/intl": "^5.4|^6.0|^7.0",
  11761. "symfony/polyfill-intl-icu": "^1.21",
  11762. "symfony/routing": "^5.4|^6.0|^7.0",
  11763. "symfony/service-contracts": "^2.5|^3",
  11764. "symfony/yaml": "^5.4|^6.0|^7.0"
  11765. },
  11766. "type": "library",
  11767. "autoload": {
  11768. "files": [
  11769. "Resources/functions.php"
  11770. ],
  11771. "psr-4": {
  11772. "Symfony\\Component\\Translation\\": ""
  11773. },
  11774. "exclude-from-classmap": [
  11775. "/Tests/"
  11776. ]
  11777. },
  11778. "notification-url": "https://packagist.org/downloads/",
  11779. "license": [
  11780. "MIT"
  11781. ],
  11782. "authors": [
  11783. {
  11784. "name": "Fabien Potencier",
  11785. "email": "fabien@symfony.com"
  11786. },
  11787. {
  11788. "name": "Symfony Community",
  11789. "homepage": "https://symfony.com/contributors"
  11790. }
  11791. ],
  11792. "description": "Provides tools to internationalize your application",
  11793. "homepage": "https://symfony.com",
  11794. "support": {
  11795. "source": "https://github.com/symfony/translation/tree/v6.4.19"
  11796. },
  11797. "funding": [
  11798. {
  11799. "url": "https://symfony.com/sponsor",
  11800. "type": "custom"
  11801. },
  11802. {
  11803. "url": "https://github.com/fabpot",
  11804. "type": "github"
  11805. },
  11806. {
  11807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11808. "type": "tidelift"
  11809. }
  11810. ],
  11811. "time": "2025-02-13T10:18:43+00:00"
  11812. },
  11813. {
  11814. "name": "symfony/translation-contracts",
  11815. "version": "v3.6.0",
  11816. "source": {
  11817. "type": "git",
  11818. "url": "https://github.com/symfony/translation-contracts.git",
  11819. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  11820. },
  11821. "dist": {
  11822. "type": "zip",
  11823. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  11824. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  11825. "shasum": ""
  11826. },
  11827. "require": {
  11828. "php": ">=8.1"
  11829. },
  11830. "type": "library",
  11831. "extra": {
  11832. "thanks": {
  11833. "url": "https://github.com/symfony/contracts",
  11834. "name": "symfony/contracts"
  11835. },
  11836. "branch-alias": {
  11837. "dev-main": "3.6-dev"
  11838. }
  11839. },
  11840. "autoload": {
  11841. "psr-4": {
  11842. "Symfony\\Contracts\\Translation\\": ""
  11843. },
  11844. "exclude-from-classmap": [
  11845. "/Test/"
  11846. ]
  11847. },
  11848. "notification-url": "https://packagist.org/downloads/",
  11849. "license": [
  11850. "MIT"
  11851. ],
  11852. "authors": [
  11853. {
  11854. "name": "Nicolas Grekas",
  11855. "email": "p@tchwork.com"
  11856. },
  11857. {
  11858. "name": "Symfony Community",
  11859. "homepage": "https://symfony.com/contributors"
  11860. }
  11861. ],
  11862. "description": "Generic abstractions related to translation",
  11863. "homepage": "https://symfony.com",
  11864. "keywords": [
  11865. "abstractions",
  11866. "contracts",
  11867. "decoupling",
  11868. "interfaces",
  11869. "interoperability",
  11870. "standards"
  11871. ],
  11872. "support": {
  11873. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  11874. },
  11875. "funding": [
  11876. {
  11877. "url": "https://symfony.com/sponsor",
  11878. "type": "custom"
  11879. },
  11880. {
  11881. "url": "https://github.com/fabpot",
  11882. "type": "github"
  11883. },
  11884. {
  11885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11886. "type": "tidelift"
  11887. }
  11888. ],
  11889. "time": "2024-09-27T08:32:26+00:00"
  11890. },
  11891. {
  11892. "name": "symfony/type-info",
  11893. "version": "v7.4.8",
  11894. "source": {
  11895. "type": "git",
  11896. "url": "https://github.com/symfony/type-info.git",
  11897. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd"
  11898. },
  11899. "dist": {
  11900. "type": "zip",
  11901. "url": "https://api.github.com/repos/symfony/type-info/zipball/6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  11902. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  11903. "shasum": ""
  11904. },
  11905. "require": {
  11906. "php": ">=8.2",
  11907. "psr/container": "^1.1|^2.0",
  11908. "symfony/deprecation-contracts": "^2.5|^3"
  11909. },
  11910. "conflict": {
  11911. "phpstan/phpdoc-parser": "<1.30"
  11912. },
  11913. "require-dev": {
  11914. "phpstan/phpdoc-parser": "^1.30|^2.0"
  11915. },
  11916. "type": "library",
  11917. "autoload": {
  11918. "psr-4": {
  11919. "Symfony\\Component\\TypeInfo\\": ""
  11920. },
  11921. "exclude-from-classmap": [
  11922. "/Tests/"
  11923. ]
  11924. },
  11925. "notification-url": "https://packagist.org/downloads/",
  11926. "license": [
  11927. "MIT"
  11928. ],
  11929. "authors": [
  11930. {
  11931. "name": "Mathias Arlaud",
  11932. "email": "mathias.arlaud@gmail.com"
  11933. },
  11934. {
  11935. "name": "Baptiste LEDUC",
  11936. "email": "baptiste.leduc@gmail.com"
  11937. },
  11938. {
  11939. "name": "Symfony Community",
  11940. "homepage": "https://symfony.com/contributors"
  11941. }
  11942. ],
  11943. "description": "Extracts PHP types information.",
  11944. "homepage": "https://symfony.com",
  11945. "keywords": [
  11946. "PHPStan",
  11947. "phpdoc",
  11948. "symfony",
  11949. "type"
  11950. ],
  11951. "support": {
  11952. "source": "https://github.com/symfony/type-info/tree/v7.4.8"
  11953. },
  11954. "funding": [
  11955. {
  11956. "url": "https://symfony.com/sponsor",
  11957. "type": "custom"
  11958. },
  11959. {
  11960. "url": "https://github.com/fabpot",
  11961. "type": "github"
  11962. },
  11963. {
  11964. "url": "https://github.com/nicolas-grekas",
  11965. "type": "github"
  11966. },
  11967. {
  11968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11969. "type": "tidelift"
  11970. }
  11971. ],
  11972. "time": "2026-03-24T13:12:05+00:00"
  11973. },
  11974. {
  11975. "name": "symfony/uid",
  11976. "version": "v7.2.0",
  11977. "source": {
  11978. "type": "git",
  11979. "url": "https://github.com/symfony/uid.git",
  11980. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  11981. },
  11982. "dist": {
  11983. "type": "zip",
  11984. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  11985. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  11986. "shasum": ""
  11987. },
  11988. "require": {
  11989. "php": ">=8.2",
  11990. "symfony/polyfill-uuid": "^1.15"
  11991. },
  11992. "require-dev": {
  11993. "symfony/console": "^6.4|^7.0"
  11994. },
  11995. "type": "library",
  11996. "autoload": {
  11997. "psr-4": {
  11998. "Symfony\\Component\\Uid\\": ""
  11999. },
  12000. "exclude-from-classmap": [
  12001. "/Tests/"
  12002. ]
  12003. },
  12004. "notification-url": "https://packagist.org/downloads/",
  12005. "license": [
  12006. "MIT"
  12007. ],
  12008. "authors": [
  12009. {
  12010. "name": "Grégoire Pineau",
  12011. "email": "lyrixx@lyrixx.info"
  12012. },
  12013. {
  12014. "name": "Nicolas Grekas",
  12015. "email": "p@tchwork.com"
  12016. },
  12017. {
  12018. "name": "Symfony Community",
  12019. "homepage": "https://symfony.com/contributors"
  12020. }
  12021. ],
  12022. "description": "Provides an object-oriented API to generate and represent UIDs",
  12023. "homepage": "https://symfony.com",
  12024. "keywords": [
  12025. "UID",
  12026. "ulid",
  12027. "uuid"
  12028. ],
  12029. "support": {
  12030. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  12031. },
  12032. "funding": [
  12033. {
  12034. "url": "https://symfony.com/sponsor",
  12035. "type": "custom"
  12036. },
  12037. {
  12038. "url": "https://github.com/fabpot",
  12039. "type": "github"
  12040. },
  12041. {
  12042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12043. "type": "tidelift"
  12044. }
  12045. ],
  12046. "time": "2024-09-25T14:21:43+00:00"
  12047. },
  12048. {
  12049. "name": "symfony/validator",
  12050. "version": "v7.4.8",
  12051. "source": {
  12052. "type": "git",
  12053. "url": "https://github.com/symfony/validator.git",
  12054. "reference": "8f73cbddae916756f319b3e195088da216f0f12f"
  12055. },
  12056. "dist": {
  12057. "type": "zip",
  12058. "url": "https://api.github.com/repos/symfony/validator/zipball/8f73cbddae916756f319b3e195088da216f0f12f",
  12059. "reference": "8f73cbddae916756f319b3e195088da216f0f12f",
  12060. "shasum": ""
  12061. },
  12062. "require": {
  12063. "php": ">=8.2",
  12064. "symfony/deprecation-contracts": "^2.5|^3",
  12065. "symfony/polyfill-ctype": "~1.8",
  12066. "symfony/polyfill-mbstring": "~1.0",
  12067. "symfony/polyfill-php83": "^1.27",
  12068. "symfony/translation-contracts": "^2.5|^3"
  12069. },
  12070. "conflict": {
  12071. "doctrine/lexer": "<1.1",
  12072. "symfony/dependency-injection": "<6.4",
  12073. "symfony/doctrine-bridge": "<7.0",
  12074. "symfony/expression-language": "<6.4",
  12075. "symfony/http-kernel": "<6.4",
  12076. "symfony/intl": "<6.4",
  12077. "symfony/property-info": "<6.4",
  12078. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  12079. "symfony/var-exporter": "<6.4.25|>=7.0,<7.3.3",
  12080. "symfony/yaml": "<6.4"
  12081. },
  12082. "require-dev": {
  12083. "egulias/email-validator": "^2.1.10|^3|^4",
  12084. "symfony/cache": "^6.4|^7.0|^8.0",
  12085. "symfony/config": "^6.4|^7.0|^8.0",
  12086. "symfony/console": "^6.4|^7.0|^8.0",
  12087. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  12088. "symfony/expression-language": "^6.4|^7.0|^8.0",
  12089. "symfony/finder": "^6.4|^7.0|^8.0",
  12090. "symfony/http-client": "^6.4|^7.0|^8.0",
  12091. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  12092. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  12093. "symfony/intl": "^6.4|^7.0|^8.0",
  12094. "symfony/mime": "^6.4|^7.0|^8.0",
  12095. "symfony/process": "^6.4|^7.0|^8.0",
  12096. "symfony/property-access": "^6.4|^7.0|^8.0",
  12097. "symfony/property-info": "^6.4|^7.0|^8.0",
  12098. "symfony/string": "^6.4|^7.0|^8.0",
  12099. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  12100. "symfony/type-info": "^7.1.8",
  12101. "symfony/yaml": "^6.4|^7.0|^8.0"
  12102. },
  12103. "type": "library",
  12104. "autoload": {
  12105. "psr-4": {
  12106. "Symfony\\Component\\Validator\\": ""
  12107. },
  12108. "exclude-from-classmap": [
  12109. "/Tests/",
  12110. "/Resources/bin/"
  12111. ]
  12112. },
  12113. "notification-url": "https://packagist.org/downloads/",
  12114. "license": [
  12115. "MIT"
  12116. ],
  12117. "authors": [
  12118. {
  12119. "name": "Fabien Potencier",
  12120. "email": "fabien@symfony.com"
  12121. },
  12122. {
  12123. "name": "Symfony Community",
  12124. "homepage": "https://symfony.com/contributors"
  12125. }
  12126. ],
  12127. "description": "Provides tools to validate values",
  12128. "homepage": "https://symfony.com",
  12129. "support": {
  12130. "source": "https://github.com/symfony/validator/tree/v7.4.8"
  12131. },
  12132. "funding": [
  12133. {
  12134. "url": "https://symfony.com/sponsor",
  12135. "type": "custom"
  12136. },
  12137. {
  12138. "url": "https://github.com/fabpot",
  12139. "type": "github"
  12140. },
  12141. {
  12142. "url": "https://github.com/nicolas-grekas",
  12143. "type": "github"
  12144. },
  12145. {
  12146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12147. "type": "tidelift"
  12148. }
  12149. ],
  12150. "time": "2026-03-30T12:55:43+00:00"
  12151. },
  12152. {
  12153. "name": "symfony/var-dumper",
  12154. "version": "v7.2.3",
  12155. "source": {
  12156. "type": "git",
  12157. "url": "https://github.com/symfony/var-dumper.git",
  12158. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  12159. },
  12160. "dist": {
  12161. "type": "zip",
  12162. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  12163. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  12164. "shasum": ""
  12165. },
  12166. "require": {
  12167. "php": ">=8.2",
  12168. "symfony/polyfill-mbstring": "~1.0"
  12169. },
  12170. "conflict": {
  12171. "symfony/console": "<6.4"
  12172. },
  12173. "require-dev": {
  12174. "ext-iconv": "*",
  12175. "symfony/console": "^6.4|^7.0",
  12176. "symfony/http-kernel": "^6.4|^7.0",
  12177. "symfony/process": "^6.4|^7.0",
  12178. "symfony/uid": "^6.4|^7.0",
  12179. "twig/twig": "^3.12"
  12180. },
  12181. "bin": [
  12182. "Resources/bin/var-dump-server"
  12183. ],
  12184. "type": "library",
  12185. "autoload": {
  12186. "files": [
  12187. "Resources/functions/dump.php"
  12188. ],
  12189. "psr-4": {
  12190. "Symfony\\Component\\VarDumper\\": ""
  12191. },
  12192. "exclude-from-classmap": [
  12193. "/Tests/"
  12194. ]
  12195. },
  12196. "notification-url": "https://packagist.org/downloads/",
  12197. "license": [
  12198. "MIT"
  12199. ],
  12200. "authors": [
  12201. {
  12202. "name": "Nicolas Grekas",
  12203. "email": "p@tchwork.com"
  12204. },
  12205. {
  12206. "name": "Symfony Community",
  12207. "homepage": "https://symfony.com/contributors"
  12208. }
  12209. ],
  12210. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12211. "homepage": "https://symfony.com",
  12212. "keywords": [
  12213. "debug",
  12214. "dump"
  12215. ],
  12216. "support": {
  12217. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  12218. },
  12219. "funding": [
  12220. {
  12221. "url": "https://symfony.com/sponsor",
  12222. "type": "custom"
  12223. },
  12224. {
  12225. "url": "https://github.com/fabpot",
  12226. "type": "github"
  12227. },
  12228. {
  12229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12230. "type": "tidelift"
  12231. }
  12232. ],
  12233. "time": "2025-01-17T11:39:41+00:00"
  12234. },
  12235. {
  12236. "name": "symfony/web-link",
  12237. "version": "v7.4.8",
  12238. "source": {
  12239. "type": "git",
  12240. "url": "https://github.com/symfony/web-link.git",
  12241. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25"
  12242. },
  12243. "dist": {
  12244. "type": "zip",
  12245. "url": "https://api.github.com/repos/symfony/web-link/zipball/0711009963009e7d6d59149327f3ad633ee3fe25",
  12246. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25",
  12247. "shasum": ""
  12248. },
  12249. "require": {
  12250. "php": ">=8.2",
  12251. "psr/link": "^1.1|^2.0"
  12252. },
  12253. "conflict": {
  12254. "symfony/http-kernel": "<6.4"
  12255. },
  12256. "provide": {
  12257. "psr/link-implementation": "1.0|2.0"
  12258. },
  12259. "require-dev": {
  12260. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  12261. },
  12262. "type": "library",
  12263. "autoload": {
  12264. "psr-4": {
  12265. "Symfony\\Component\\WebLink\\": ""
  12266. },
  12267. "exclude-from-classmap": [
  12268. "/Tests/"
  12269. ]
  12270. },
  12271. "notification-url": "https://packagist.org/downloads/",
  12272. "license": [
  12273. "MIT"
  12274. ],
  12275. "authors": [
  12276. {
  12277. "name": "Kévin Dunglas",
  12278. "email": "dunglas@gmail.com"
  12279. },
  12280. {
  12281. "name": "Symfony Community",
  12282. "homepage": "https://symfony.com/contributors"
  12283. }
  12284. ],
  12285. "description": "Manages links between resources",
  12286. "homepage": "https://symfony.com",
  12287. "keywords": [
  12288. "dns-prefetch",
  12289. "http",
  12290. "http2",
  12291. "link",
  12292. "performance",
  12293. "prefetch",
  12294. "preload",
  12295. "prerender",
  12296. "psr13",
  12297. "push"
  12298. ],
  12299. "support": {
  12300. "source": "https://github.com/symfony/web-link/tree/v7.4.8"
  12301. },
  12302. "funding": [
  12303. {
  12304. "url": "https://symfony.com/sponsor",
  12305. "type": "custom"
  12306. },
  12307. {
  12308. "url": "https://github.com/fabpot",
  12309. "type": "github"
  12310. },
  12311. {
  12312. "url": "https://github.com/nicolas-grekas",
  12313. "type": "github"
  12314. },
  12315. {
  12316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12317. "type": "tidelift"
  12318. }
  12319. ],
  12320. "time": "2026-03-24T13:12:05+00:00"
  12321. },
  12322. {
  12323. "name": "tijsverkoyen/css-to-inline-styles",
  12324. "version": "v2.3.0",
  12325. "source": {
  12326. "type": "git",
  12327. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  12328. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  12329. },
  12330. "dist": {
  12331. "type": "zip",
  12332. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  12333. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  12334. "shasum": ""
  12335. },
  12336. "require": {
  12337. "ext-dom": "*",
  12338. "ext-libxml": "*",
  12339. "php": "^7.4 || ^8.0",
  12340. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  12341. },
  12342. "require-dev": {
  12343. "phpstan/phpstan": "^2.0",
  12344. "phpstan/phpstan-phpunit": "^2.0",
  12345. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  12346. },
  12347. "type": "library",
  12348. "extra": {
  12349. "branch-alias": {
  12350. "dev-master": "2.x-dev"
  12351. }
  12352. },
  12353. "autoload": {
  12354. "psr-4": {
  12355. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  12356. }
  12357. },
  12358. "notification-url": "https://packagist.org/downloads/",
  12359. "license": [
  12360. "BSD-3-Clause"
  12361. ],
  12362. "authors": [
  12363. {
  12364. "name": "Tijs Verkoyen",
  12365. "email": "css_to_inline_styles@verkoyen.eu",
  12366. "role": "Developer"
  12367. }
  12368. ],
  12369. "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.",
  12370. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  12371. "support": {
  12372. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  12373. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  12374. },
  12375. "time": "2024-12-21T16:25:41+00:00"
  12376. },
  12377. {
  12378. "name": "ua-parser/uap-php",
  12379. "version": "v3.9.14",
  12380. "source": {
  12381. "type": "git",
  12382. "url": "https://github.com/ua-parser/uap-php.git",
  12383. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6"
  12384. },
  12385. "dist": {
  12386. "type": "zip",
  12387. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  12388. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  12389. "shasum": ""
  12390. },
  12391. "require": {
  12392. "composer/ca-bundle": "^1.1",
  12393. "php": "^7.2 || ^8.0"
  12394. },
  12395. "require-dev": {
  12396. "phpstan/phpstan": "^0.12.33",
  12397. "phpunit/phpunit": "^8 || ^9",
  12398. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12399. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12400. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12401. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12402. "vimeo/psalm": "^3.12"
  12403. },
  12404. "suggest": {
  12405. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12406. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12407. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12408. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  12409. },
  12410. "bin": [
  12411. "bin/uaparser"
  12412. ],
  12413. "type": "library",
  12414. "autoload": {
  12415. "psr-4": {
  12416. "UAParser\\": "src"
  12417. }
  12418. },
  12419. "notification-url": "https://packagist.org/downloads/",
  12420. "license": [
  12421. "MIT"
  12422. ],
  12423. "authors": [
  12424. {
  12425. "name": "Dave Olsen",
  12426. "email": "dmolsen@gmail.com"
  12427. },
  12428. {
  12429. "name": "Lars Strojny",
  12430. "email": "lars@strojny.net"
  12431. }
  12432. ],
  12433. "description": "A multi-language port of Browserscope's user agent parser.",
  12434. "support": {
  12435. "issues": "https://github.com/ua-parser/uap-php/issues",
  12436. "source": "https://github.com/ua-parser/uap-php/tree/v3.9.14"
  12437. },
  12438. "time": "2020-10-02T23:36:20+00:00"
  12439. },
  12440. {
  12441. "name": "vlucas/phpdotenv",
  12442. "version": "v5.6.1",
  12443. "source": {
  12444. "type": "git",
  12445. "url": "https://github.com/vlucas/phpdotenv.git",
  12446. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  12447. },
  12448. "dist": {
  12449. "type": "zip",
  12450. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  12451. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  12452. "shasum": ""
  12453. },
  12454. "require": {
  12455. "ext-pcre": "*",
  12456. "graham-campbell/result-type": "^1.1.3",
  12457. "php": "^7.2.5 || ^8.0",
  12458. "phpoption/phpoption": "^1.9.3",
  12459. "symfony/polyfill-ctype": "^1.24",
  12460. "symfony/polyfill-mbstring": "^1.24",
  12461. "symfony/polyfill-php80": "^1.24"
  12462. },
  12463. "require-dev": {
  12464. "bamarni/composer-bin-plugin": "^1.8.2",
  12465. "ext-filter": "*",
  12466. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  12467. },
  12468. "suggest": {
  12469. "ext-filter": "Required to use the boolean validator."
  12470. },
  12471. "type": "library",
  12472. "extra": {
  12473. "bamarni-bin": {
  12474. "bin-links": true,
  12475. "forward-command": false
  12476. },
  12477. "branch-alias": {
  12478. "dev-master": "5.6-dev"
  12479. }
  12480. },
  12481. "autoload": {
  12482. "psr-4": {
  12483. "Dotenv\\": "src/"
  12484. }
  12485. },
  12486. "notification-url": "https://packagist.org/downloads/",
  12487. "license": [
  12488. "BSD-3-Clause"
  12489. ],
  12490. "authors": [
  12491. {
  12492. "name": "Graham Campbell",
  12493. "email": "hello@gjcampbell.co.uk",
  12494. "homepage": "https://github.com/GrahamCampbell"
  12495. },
  12496. {
  12497. "name": "Vance Lucas",
  12498. "email": "vance@vancelucas.com",
  12499. "homepage": "https://github.com/vlucas"
  12500. }
  12501. ],
  12502. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  12503. "keywords": [
  12504. "dotenv",
  12505. "env",
  12506. "environment"
  12507. ],
  12508. "support": {
  12509. "issues": "https://github.com/vlucas/phpdotenv/issues",
  12510. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  12511. },
  12512. "funding": [
  12513. {
  12514. "url": "https://github.com/GrahamCampbell",
  12515. "type": "github"
  12516. },
  12517. {
  12518. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  12519. "type": "tidelift"
  12520. }
  12521. ],
  12522. "time": "2024-07-20T21:52:34+00:00"
  12523. },
  12524. {
  12525. "name": "voku/portable-ascii",
  12526. "version": "2.0.3",
  12527. "source": {
  12528. "type": "git",
  12529. "url": "https://github.com/voku/portable-ascii.git",
  12530. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  12531. },
  12532. "dist": {
  12533. "type": "zip",
  12534. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  12535. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  12536. "shasum": ""
  12537. },
  12538. "require": {
  12539. "php": ">=7.0.0"
  12540. },
  12541. "require-dev": {
  12542. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  12543. },
  12544. "suggest": {
  12545. "ext-intl": "Use Intl for transliterator_transliterate() support"
  12546. },
  12547. "type": "library",
  12548. "autoload": {
  12549. "psr-4": {
  12550. "voku\\": "src/voku/"
  12551. }
  12552. },
  12553. "notification-url": "https://packagist.org/downloads/",
  12554. "license": [
  12555. "MIT"
  12556. ],
  12557. "authors": [
  12558. {
  12559. "name": "Lars Moelleken",
  12560. "homepage": "https://www.moelleken.org/"
  12561. }
  12562. ],
  12563. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  12564. "homepage": "https://github.com/voku/portable-ascii",
  12565. "keywords": [
  12566. "ascii",
  12567. "clean",
  12568. "php"
  12569. ],
  12570. "support": {
  12571. "issues": "https://github.com/voku/portable-ascii/issues",
  12572. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  12573. },
  12574. "funding": [
  12575. {
  12576. "url": "https://www.paypal.me/moelleken",
  12577. "type": "custom"
  12578. },
  12579. {
  12580. "url": "https://github.com/voku",
  12581. "type": "github"
  12582. },
  12583. {
  12584. "url": "https://opencollective.com/portable-ascii",
  12585. "type": "open_collective"
  12586. },
  12587. {
  12588. "url": "https://www.patreon.com/voku",
  12589. "type": "patreon"
  12590. },
  12591. {
  12592. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  12593. "type": "tidelift"
  12594. }
  12595. ],
  12596. "time": "2024-11-21T01:49:47+00:00"
  12597. },
  12598. {
  12599. "name": "webmozart/assert",
  12600. "version": "1.11.0",
  12601. "source": {
  12602. "type": "git",
  12603. "url": "https://github.com/webmozarts/assert.git",
  12604. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  12605. },
  12606. "dist": {
  12607. "type": "zip",
  12608. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  12609. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  12610. "shasum": ""
  12611. },
  12612. "require": {
  12613. "ext-ctype": "*",
  12614. "php": "^7.2 || ^8.0"
  12615. },
  12616. "conflict": {
  12617. "phpstan/phpstan": "<0.12.20",
  12618. "vimeo/psalm": "<4.6.1 || 4.6.2"
  12619. },
  12620. "require-dev": {
  12621. "phpunit/phpunit": "^8.5.13"
  12622. },
  12623. "type": "library",
  12624. "extra": {
  12625. "branch-alias": {
  12626. "dev-master": "1.10-dev"
  12627. }
  12628. },
  12629. "autoload": {
  12630. "psr-4": {
  12631. "Webmozart\\Assert\\": "src/"
  12632. }
  12633. },
  12634. "notification-url": "https://packagist.org/downloads/",
  12635. "license": [
  12636. "MIT"
  12637. ],
  12638. "authors": [
  12639. {
  12640. "name": "Bernhard Schussek",
  12641. "email": "bschussek@gmail.com"
  12642. }
  12643. ],
  12644. "description": "Assertions to validate method input/output with nice error messages.",
  12645. "keywords": [
  12646. "assert",
  12647. "check",
  12648. "validate"
  12649. ],
  12650. "support": {
  12651. "issues": "https://github.com/webmozarts/assert/issues",
  12652. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  12653. },
  12654. "time": "2022-06-03T18:03:27+00:00"
  12655. },
  12656. {
  12657. "name": "webonyx/graphql-php",
  12658. "version": "v15.31.3",
  12659. "source": {
  12660. "type": "git",
  12661. "url": "https://github.com/webonyx/graphql-php.git",
  12662. "reference": "c20acbef1cb4af427ef6797512bfb2e651a85db9"
  12663. },
  12664. "dist": {
  12665. "type": "zip",
  12666. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/c20acbef1cb4af427ef6797512bfb2e651a85db9",
  12667. "reference": "c20acbef1cb4af427ef6797512bfb2e651a85db9",
  12668. "shasum": ""
  12669. },
  12670. "require": {
  12671. "ext-json": "*",
  12672. "ext-mbstring": "*",
  12673. "php": "^7.4 || ^8"
  12674. },
  12675. "require-dev": {
  12676. "amphp/amp": "^2.6",
  12677. "amphp/http-server": "^2.1",
  12678. "dms/phpunit-arraysubset-asserts": "dev-master",
  12679. "ergebnis/composer-normalize": "^2.28",
  12680. "friendsofphp/php-cs-fixer": "3.94.2",
  12681. "mll-lab/php-cs-fixer-config": "5.13.0",
  12682. "nyholm/psr7": "^1.5",
  12683. "phpbench/phpbench": "^1.2",
  12684. "phpstan/extension-installer": "^1.1",
  12685. "phpstan/phpstan": "2.1.43",
  12686. "phpstan/phpstan-phpunit": "2.0.16",
  12687. "phpstan/phpstan-strict-rules": "2.0.10",
  12688. "phpunit/phpunit": "^9.5 || ^10.5.21 || ^11",
  12689. "psr/http-message": "^1 || ^2",
  12690. "react/http": "^1.6",
  12691. "react/promise": "^2.0 || ^3.0",
  12692. "rector/rector": "^2.0",
  12693. "symfony/polyfill-php81": "^1.23",
  12694. "symfony/var-exporter": "^5 || ^6 || ^7 || ^8",
  12695. "thecodingmachine/safe": "^1.3 || ^2 || ^3",
  12696. "ticketswap/phpstan-error-formatter": "1.2.6"
  12697. },
  12698. "suggest": {
  12699. "amphp/http-server": "To leverage async resolving with webserver on AMPHP platform",
  12700. "psr/http-message": "To use standard GraphQL server",
  12701. "react/promise": "To leverage async resolving on React PHP platform"
  12702. },
  12703. "type": "library",
  12704. "autoload": {
  12705. "psr-4": {
  12706. "GraphQL\\": "src/"
  12707. }
  12708. },
  12709. "notification-url": "https://packagist.org/downloads/",
  12710. "license": [
  12711. "MIT"
  12712. ],
  12713. "description": "A PHP port of GraphQL reference implementation",
  12714. "homepage": "https://github.com/webonyx/graphql-php",
  12715. "keywords": [
  12716. "api",
  12717. "graphql"
  12718. ],
  12719. "support": {
  12720. "issues": "https://github.com/webonyx/graphql-php/issues",
  12721. "source": "https://github.com/webonyx/graphql-php/tree/v15.31.3"
  12722. },
  12723. "funding": [
  12724. {
  12725. "url": "https://github.com/spawnia",
  12726. "type": "github"
  12727. },
  12728. {
  12729. "url": "https://opencollective.com/webonyx-graphql-php",
  12730. "type": "open_collective"
  12731. }
  12732. ],
  12733. "time": "2026-03-29T18:22:41+00:00"
  12734. },
  12735. {
  12736. "name": "willdurand/negotiation",
  12737. "version": "3.1.0",
  12738. "source": {
  12739. "type": "git",
  12740. "url": "https://github.com/willdurand/Negotiation.git",
  12741. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  12742. },
  12743. "dist": {
  12744. "type": "zip",
  12745. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  12746. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  12747. "shasum": ""
  12748. },
  12749. "require": {
  12750. "php": ">=7.1.0"
  12751. },
  12752. "require-dev": {
  12753. "symfony/phpunit-bridge": "^5.0"
  12754. },
  12755. "type": "library",
  12756. "extra": {
  12757. "branch-alias": {
  12758. "dev-master": "3.0-dev"
  12759. }
  12760. },
  12761. "autoload": {
  12762. "psr-4": {
  12763. "Negotiation\\": "src/Negotiation"
  12764. }
  12765. },
  12766. "notification-url": "https://packagist.org/downloads/",
  12767. "license": [
  12768. "MIT"
  12769. ],
  12770. "authors": [
  12771. {
  12772. "name": "William Durand",
  12773. "email": "will+git@drnd.me"
  12774. }
  12775. ],
  12776. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  12777. "homepage": "http://williamdurand.fr/Negotiation/",
  12778. "keywords": [
  12779. "accept",
  12780. "content",
  12781. "format",
  12782. "header",
  12783. "negotiation"
  12784. ],
  12785. "support": {
  12786. "issues": "https://github.com/willdurand/Negotiation/issues",
  12787. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  12788. },
  12789. "time": "2022-01-30T20:08:53+00:00"
  12790. }
  12791. ],
  12792. "packages-dev": [
  12793. {
  12794. "name": "bagisto/laravel-datafaker",
  12795. "version": "v2.3.0",
  12796. "source": {
  12797. "type": "git",
  12798. "url": "https://github.com/bagisto/laravel-data-faker.git",
  12799. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289"
  12800. },
  12801. "dist": {
  12802. "type": "zip",
  12803. "url": "https://api.github.com/repos/bagisto/laravel-data-faker/zipball/b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  12804. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  12805. "shasum": ""
  12806. },
  12807. "type": "library",
  12808. "extra": {
  12809. "laravel": {
  12810. "aliases": [],
  12811. "providers": [
  12812. "Webkul\\Faker\\Providers\\FakerServiceProvider"
  12813. ]
  12814. }
  12815. },
  12816. "autoload": {
  12817. "psr-4": {
  12818. "Webkul\\Faker\\": "src"
  12819. }
  12820. },
  12821. "notification-url": "https://packagist.org/downloads/",
  12822. "license": [
  12823. "MIT"
  12824. ],
  12825. "authors": [
  12826. {
  12827. "name": "Bagisto Data Faker",
  12828. "email": "support@bagisto.com"
  12829. }
  12830. ],
  12831. "description": "Create fake customers, categories and products in Bagisto.",
  12832. "homepage": "https://github.com/bagisto/laravel-data-faker",
  12833. "keywords": [
  12834. "bagisto",
  12835. "fake categories",
  12836. "fake customers",
  12837. "fake products"
  12838. ],
  12839. "support": {
  12840. "issues": "https://github.com/bagisto/laravel-data-faker/issues",
  12841. "source": "https://github.com/bagisto/laravel-data-faker/tree/v2.3.0"
  12842. },
  12843. "time": "2025-08-05T12:30:38+00:00"
  12844. },
  12845. {
  12846. "name": "barryvdh/laravel-debugbar",
  12847. "version": "v3.15.2",
  12848. "source": {
  12849. "type": "git",
  12850. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  12851. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729"
  12852. },
  12853. "dist": {
  12854. "type": "zip",
  12855. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  12856. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  12857. "shasum": ""
  12858. },
  12859. "require": {
  12860. "illuminate/routing": "^9|^10|^11|^12",
  12861. "illuminate/session": "^9|^10|^11|^12",
  12862. "illuminate/support": "^9|^10|^11|^12",
  12863. "php": "^8.1",
  12864. "php-debugbar/php-debugbar": "~2.1.1",
  12865. "symfony/finder": "^6|^7"
  12866. },
  12867. "conflict": {
  12868. "maximebf/debugbar": "*"
  12869. },
  12870. "require-dev": {
  12871. "mockery/mockery": "^1.3.3",
  12872. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  12873. "phpunit/phpunit": "^9.5.10|^10|^11",
  12874. "squizlabs/php_codesniffer": "^3.5"
  12875. },
  12876. "type": "library",
  12877. "extra": {
  12878. "laravel": {
  12879. "aliases": {
  12880. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  12881. },
  12882. "providers": [
  12883. "Barryvdh\\Debugbar\\ServiceProvider"
  12884. ]
  12885. },
  12886. "branch-alias": {
  12887. "dev-master": "3.15-dev"
  12888. }
  12889. },
  12890. "autoload": {
  12891. "files": [
  12892. "src/helpers.php"
  12893. ],
  12894. "psr-4": {
  12895. "Barryvdh\\Debugbar\\": "src/"
  12896. }
  12897. },
  12898. "notification-url": "https://packagist.org/downloads/",
  12899. "license": [
  12900. "MIT"
  12901. ],
  12902. "authors": [
  12903. {
  12904. "name": "Barry vd. Heuvel",
  12905. "email": "barryvdh@gmail.com"
  12906. }
  12907. ],
  12908. "description": "PHP Debugbar integration for Laravel",
  12909. "keywords": [
  12910. "debug",
  12911. "debugbar",
  12912. "dev",
  12913. "laravel",
  12914. "profiler",
  12915. "webprofiler"
  12916. ],
  12917. "support": {
  12918. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  12919. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.2"
  12920. },
  12921. "funding": [
  12922. {
  12923. "url": "https://fruitcake.nl",
  12924. "type": "custom"
  12925. },
  12926. {
  12927. "url": "https://github.com/barryvdh",
  12928. "type": "github"
  12929. }
  12930. ],
  12931. "time": "2025-02-25T15:25:22+00:00"
  12932. },
  12933. {
  12934. "name": "brianium/paratest",
  12935. "version": "v7.7.0",
  12936. "source": {
  12937. "type": "git",
  12938. "url": "https://github.com/paratestphp/paratest.git",
  12939. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  12940. },
  12941. "dist": {
  12942. "type": "zip",
  12943. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  12944. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  12945. "shasum": ""
  12946. },
  12947. "require": {
  12948. "ext-dom": "*",
  12949. "ext-pcre": "*",
  12950. "ext-reflection": "*",
  12951. "ext-simplexml": "*",
  12952. "fidry/cpu-core-counter": "^1.2.0",
  12953. "jean85/pretty-package-versions": "^2.1.0",
  12954. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  12955. "phpunit/php-code-coverage": "^11.0.8",
  12956. "phpunit/php-file-iterator": "^5.1.0",
  12957. "phpunit/php-timer": "^7.0.1",
  12958. "phpunit/phpunit": "^11.5.1",
  12959. "sebastian/environment": "^7.2.0",
  12960. "symfony/console": "^6.4.14 || ^7.2.1",
  12961. "symfony/process": "^6.4.14 || ^7.2.0"
  12962. },
  12963. "require-dev": {
  12964. "doctrine/coding-standard": "^12.0.0",
  12965. "ext-pcov": "*",
  12966. "ext-posix": "*",
  12967. "phpstan/phpstan": "^2.0.3",
  12968. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  12969. "phpstan/phpstan-phpunit": "^2.0.1",
  12970. "phpstan/phpstan-strict-rules": "^2",
  12971. "squizlabs/php_codesniffer": "^3.11.1",
  12972. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  12973. },
  12974. "bin": [
  12975. "bin/paratest",
  12976. "bin/paratest_for_phpstorm"
  12977. ],
  12978. "type": "library",
  12979. "autoload": {
  12980. "psr-4": {
  12981. "ParaTest\\": [
  12982. "src/"
  12983. ]
  12984. }
  12985. },
  12986. "notification-url": "https://packagist.org/downloads/",
  12987. "license": [
  12988. "MIT"
  12989. ],
  12990. "authors": [
  12991. {
  12992. "name": "Brian Scaturro",
  12993. "email": "scaturrob@gmail.com",
  12994. "role": "Developer"
  12995. },
  12996. {
  12997. "name": "Filippo Tessarotto",
  12998. "email": "zoeslam@gmail.com",
  12999. "role": "Developer"
  13000. }
  13001. ],
  13002. "description": "Parallel testing for PHP",
  13003. "homepage": "https://github.com/paratestphp/paratest",
  13004. "keywords": [
  13005. "concurrent",
  13006. "parallel",
  13007. "phpunit",
  13008. "testing"
  13009. ],
  13010. "support": {
  13011. "issues": "https://github.com/paratestphp/paratest/issues",
  13012. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  13013. },
  13014. "funding": [
  13015. {
  13016. "url": "https://github.com/sponsors/Slamdunk",
  13017. "type": "github"
  13018. },
  13019. {
  13020. "url": "https://paypal.me/filippotessarotto",
  13021. "type": "paypal"
  13022. }
  13023. ],
  13024. "time": "2024-12-11T14:50:44+00:00"
  13025. },
  13026. {
  13027. "name": "doctrine/deprecations",
  13028. "version": "1.1.5",
  13029. "source": {
  13030. "type": "git",
  13031. "url": "https://github.com/doctrine/deprecations.git",
  13032. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  13033. },
  13034. "dist": {
  13035. "type": "zip",
  13036. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  13037. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  13038. "shasum": ""
  13039. },
  13040. "require": {
  13041. "php": "^7.1 || ^8.0"
  13042. },
  13043. "conflict": {
  13044. "phpunit/phpunit": "<=7.5 || >=13"
  13045. },
  13046. "require-dev": {
  13047. "doctrine/coding-standard": "^9 || ^12 || ^13",
  13048. "phpstan/phpstan": "1.4.10 || 2.1.11",
  13049. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  13050. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  13051. "psr/log": "^1 || ^2 || ^3"
  13052. },
  13053. "suggest": {
  13054. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  13055. },
  13056. "type": "library",
  13057. "autoload": {
  13058. "psr-4": {
  13059. "Doctrine\\Deprecations\\": "src"
  13060. }
  13061. },
  13062. "notification-url": "https://packagist.org/downloads/",
  13063. "license": [
  13064. "MIT"
  13065. ],
  13066. "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.",
  13067. "homepage": "https://www.doctrine-project.org/",
  13068. "support": {
  13069. "issues": "https://github.com/doctrine/deprecations/issues",
  13070. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  13071. },
  13072. "time": "2025-04-07T20:06:18+00:00"
  13073. },
  13074. {
  13075. "name": "fakerphp/faker",
  13076. "version": "v1.24.1",
  13077. "source": {
  13078. "type": "git",
  13079. "url": "https://github.com/FakerPHP/Faker.git",
  13080. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  13081. },
  13082. "dist": {
  13083. "type": "zip",
  13084. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  13085. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  13086. "shasum": ""
  13087. },
  13088. "require": {
  13089. "php": "^7.4 || ^8.0",
  13090. "psr/container": "^1.0 || ^2.0",
  13091. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  13092. },
  13093. "conflict": {
  13094. "fzaninotto/faker": "*"
  13095. },
  13096. "require-dev": {
  13097. "bamarni/composer-bin-plugin": "^1.4.1",
  13098. "doctrine/persistence": "^1.3 || ^2.0",
  13099. "ext-intl": "*",
  13100. "phpunit/phpunit": "^9.5.26",
  13101. "symfony/phpunit-bridge": "^5.4.16"
  13102. },
  13103. "suggest": {
  13104. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  13105. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  13106. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  13107. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  13108. "ext-mbstring": "Required for multibyte Unicode string functionality."
  13109. },
  13110. "type": "library",
  13111. "autoload": {
  13112. "psr-4": {
  13113. "Faker\\": "src/Faker/"
  13114. }
  13115. },
  13116. "notification-url": "https://packagist.org/downloads/",
  13117. "license": [
  13118. "MIT"
  13119. ],
  13120. "authors": [
  13121. {
  13122. "name": "François Zaninotto"
  13123. }
  13124. ],
  13125. "description": "Faker is a PHP library that generates fake data for you.",
  13126. "keywords": [
  13127. "data",
  13128. "faker",
  13129. "fixtures"
  13130. ],
  13131. "support": {
  13132. "issues": "https://github.com/FakerPHP/Faker/issues",
  13133. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  13134. },
  13135. "time": "2024-11-21T13:46:39+00:00"
  13136. },
  13137. {
  13138. "name": "fidry/cpu-core-counter",
  13139. "version": "1.2.0",
  13140. "source": {
  13141. "type": "git",
  13142. "url": "https://github.com/theofidry/cpu-core-counter.git",
  13143. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  13144. },
  13145. "dist": {
  13146. "type": "zip",
  13147. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  13148. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  13149. "shasum": ""
  13150. },
  13151. "require": {
  13152. "php": "^7.2 || ^8.0"
  13153. },
  13154. "require-dev": {
  13155. "fidry/makefile": "^0.2.0",
  13156. "fidry/php-cs-fixer-config": "^1.1.2",
  13157. "phpstan/extension-installer": "^1.2.0",
  13158. "phpstan/phpstan": "^1.9.2",
  13159. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  13160. "phpstan/phpstan-phpunit": "^1.2.2",
  13161. "phpstan/phpstan-strict-rules": "^1.4.4",
  13162. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  13163. "webmozarts/strict-phpunit": "^7.5"
  13164. },
  13165. "type": "library",
  13166. "autoload": {
  13167. "psr-4": {
  13168. "Fidry\\CpuCoreCounter\\": "src/"
  13169. }
  13170. },
  13171. "notification-url": "https://packagist.org/downloads/",
  13172. "license": [
  13173. "MIT"
  13174. ],
  13175. "authors": [
  13176. {
  13177. "name": "Théo FIDRY",
  13178. "email": "theo.fidry@gmail.com"
  13179. }
  13180. ],
  13181. "description": "Tiny utility to get the number of CPU cores.",
  13182. "keywords": [
  13183. "CPU",
  13184. "core"
  13185. ],
  13186. "support": {
  13187. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  13188. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  13189. },
  13190. "funding": [
  13191. {
  13192. "url": "https://github.com/theofidry",
  13193. "type": "github"
  13194. }
  13195. ],
  13196. "time": "2024-08-06T10:04:20+00:00"
  13197. },
  13198. {
  13199. "name": "filp/whoops",
  13200. "version": "2.18.0",
  13201. "source": {
  13202. "type": "git",
  13203. "url": "https://github.com/filp/whoops.git",
  13204. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
  13205. },
  13206. "dist": {
  13207. "type": "zip",
  13208. "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  13209. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  13210. "shasum": ""
  13211. },
  13212. "require": {
  13213. "php": "^7.1 || ^8.0",
  13214. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  13215. },
  13216. "require-dev": {
  13217. "mockery/mockery": "^1.0",
  13218. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  13219. "symfony/var-dumper": "^4.0 || ^5.0"
  13220. },
  13221. "suggest": {
  13222. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  13223. "whoops/soap": "Formats errors as SOAP responses"
  13224. },
  13225. "type": "library",
  13226. "extra": {
  13227. "branch-alias": {
  13228. "dev-master": "2.7-dev"
  13229. }
  13230. },
  13231. "autoload": {
  13232. "psr-4": {
  13233. "Whoops\\": "src/Whoops/"
  13234. }
  13235. },
  13236. "notification-url": "https://packagist.org/downloads/",
  13237. "license": [
  13238. "MIT"
  13239. ],
  13240. "authors": [
  13241. {
  13242. "name": "Filipe Dobreira",
  13243. "homepage": "https://github.com/filp",
  13244. "role": "Developer"
  13245. }
  13246. ],
  13247. "description": "php error handling for cool kids",
  13248. "homepage": "https://filp.github.io/whoops/",
  13249. "keywords": [
  13250. "error",
  13251. "exception",
  13252. "handling",
  13253. "library",
  13254. "throwable",
  13255. "whoops"
  13256. ],
  13257. "support": {
  13258. "issues": "https://github.com/filp/whoops/issues",
  13259. "source": "https://github.com/filp/whoops/tree/2.18.0"
  13260. },
  13261. "funding": [
  13262. {
  13263. "url": "https://github.com/denis-sokolov",
  13264. "type": "github"
  13265. }
  13266. ],
  13267. "time": "2025-03-15T12:00:00+00:00"
  13268. },
  13269. {
  13270. "name": "hamcrest/hamcrest-php",
  13271. "version": "v2.0.1",
  13272. "source": {
  13273. "type": "git",
  13274. "url": "https://github.com/hamcrest/hamcrest-php.git",
  13275. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  13276. },
  13277. "dist": {
  13278. "type": "zip",
  13279. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  13280. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  13281. "shasum": ""
  13282. },
  13283. "require": {
  13284. "php": "^5.3|^7.0|^8.0"
  13285. },
  13286. "replace": {
  13287. "cordoval/hamcrest-php": "*",
  13288. "davedevelopment/hamcrest-php": "*",
  13289. "kodova/hamcrest-php": "*"
  13290. },
  13291. "require-dev": {
  13292. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  13293. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  13294. },
  13295. "type": "library",
  13296. "extra": {
  13297. "branch-alias": {
  13298. "dev-master": "2.1-dev"
  13299. }
  13300. },
  13301. "autoload": {
  13302. "classmap": [
  13303. "hamcrest"
  13304. ]
  13305. },
  13306. "notification-url": "https://packagist.org/downloads/",
  13307. "license": [
  13308. "BSD-3-Clause"
  13309. ],
  13310. "description": "This is the PHP port of Hamcrest Matchers",
  13311. "keywords": [
  13312. "test"
  13313. ],
  13314. "support": {
  13315. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  13316. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  13317. },
  13318. "time": "2020-07-09T08:09:16+00:00"
  13319. },
  13320. {
  13321. "name": "jean85/pretty-package-versions",
  13322. "version": "2.1.1",
  13323. "source": {
  13324. "type": "git",
  13325. "url": "https://github.com/Jean85/pretty-package-versions.git",
  13326. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  13327. },
  13328. "dist": {
  13329. "type": "zip",
  13330. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  13331. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  13332. "shasum": ""
  13333. },
  13334. "require": {
  13335. "composer-runtime-api": "^2.1.0",
  13336. "php": "^7.4|^8.0"
  13337. },
  13338. "require-dev": {
  13339. "friendsofphp/php-cs-fixer": "^3.2",
  13340. "jean85/composer-provided-replaced-stub-package": "^1.0",
  13341. "phpstan/phpstan": "^2.0",
  13342. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  13343. "rector/rector": "^2.0",
  13344. "vimeo/psalm": "^4.3 || ^5.0"
  13345. },
  13346. "type": "library",
  13347. "extra": {
  13348. "branch-alias": {
  13349. "dev-master": "1.x-dev"
  13350. }
  13351. },
  13352. "autoload": {
  13353. "psr-4": {
  13354. "Jean85\\": "src/"
  13355. }
  13356. },
  13357. "notification-url": "https://packagist.org/downloads/",
  13358. "license": [
  13359. "MIT"
  13360. ],
  13361. "authors": [
  13362. {
  13363. "name": "Alessandro Lai",
  13364. "email": "alessandro.lai85@gmail.com"
  13365. }
  13366. ],
  13367. "description": "A library to get pretty versions strings of installed dependencies",
  13368. "keywords": [
  13369. "composer",
  13370. "package",
  13371. "release",
  13372. "versions"
  13373. ],
  13374. "support": {
  13375. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  13376. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  13377. },
  13378. "time": "2025-03-19T14:43:43+00:00"
  13379. },
  13380. {
  13381. "name": "laravel/pint",
  13382. "version": "v1.21.2",
  13383. "source": {
  13384. "type": "git",
  13385. "url": "https://github.com/laravel/pint.git",
  13386. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558"
  13387. },
  13388. "dist": {
  13389. "type": "zip",
  13390. "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558",
  13391. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558",
  13392. "shasum": ""
  13393. },
  13394. "require": {
  13395. "ext-json": "*",
  13396. "ext-mbstring": "*",
  13397. "ext-tokenizer": "*",
  13398. "ext-xml": "*",
  13399. "php": "^8.2.0"
  13400. },
  13401. "require-dev": {
  13402. "friendsofphp/php-cs-fixer": "^3.72.0",
  13403. "illuminate/view": "^11.44.2",
  13404. "larastan/larastan": "^3.2.0",
  13405. "laravel-zero/framework": "^11.36.1",
  13406. "mockery/mockery": "^1.6.12",
  13407. "nunomaduro/termwind": "^2.3",
  13408. "pestphp/pest": "^2.36.0"
  13409. },
  13410. "bin": [
  13411. "builds/pint"
  13412. ],
  13413. "type": "project",
  13414. "autoload": {
  13415. "psr-4": {
  13416. "App\\": "app/",
  13417. "Database\\Seeders\\": "database/seeders/",
  13418. "Database\\Factories\\": "database/factories/"
  13419. }
  13420. },
  13421. "notification-url": "https://packagist.org/downloads/",
  13422. "license": [
  13423. "MIT"
  13424. ],
  13425. "authors": [
  13426. {
  13427. "name": "Nuno Maduro",
  13428. "email": "enunomaduro@gmail.com"
  13429. }
  13430. ],
  13431. "description": "An opinionated code formatter for PHP.",
  13432. "homepage": "https://laravel.com",
  13433. "keywords": [
  13434. "format",
  13435. "formatter",
  13436. "lint",
  13437. "linter",
  13438. "php"
  13439. ],
  13440. "support": {
  13441. "issues": "https://github.com/laravel/pint/issues",
  13442. "source": "https://github.com/laravel/pint"
  13443. },
  13444. "time": "2025-03-14T22:31:42+00:00"
  13445. },
  13446. {
  13447. "name": "mockery/mockery",
  13448. "version": "1.6.12",
  13449. "source": {
  13450. "type": "git",
  13451. "url": "https://github.com/mockery/mockery.git",
  13452. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  13453. },
  13454. "dist": {
  13455. "type": "zip",
  13456. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  13457. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  13458. "shasum": ""
  13459. },
  13460. "require": {
  13461. "hamcrest/hamcrest-php": "^2.0.1",
  13462. "lib-pcre": ">=7.0",
  13463. "php": ">=7.3"
  13464. },
  13465. "conflict": {
  13466. "phpunit/phpunit": "<8.0"
  13467. },
  13468. "require-dev": {
  13469. "phpunit/phpunit": "^8.5 || ^9.6.17",
  13470. "symplify/easy-coding-standard": "^12.1.14"
  13471. },
  13472. "type": "library",
  13473. "autoload": {
  13474. "files": [
  13475. "library/helpers.php",
  13476. "library/Mockery.php"
  13477. ],
  13478. "psr-4": {
  13479. "Mockery\\": "library/Mockery"
  13480. }
  13481. },
  13482. "notification-url": "https://packagist.org/downloads/",
  13483. "license": [
  13484. "BSD-3-Clause"
  13485. ],
  13486. "authors": [
  13487. {
  13488. "name": "Pádraic Brady",
  13489. "email": "padraic.brady@gmail.com",
  13490. "homepage": "https://github.com/padraic",
  13491. "role": "Author"
  13492. },
  13493. {
  13494. "name": "Dave Marshall",
  13495. "email": "dave.marshall@atstsolutions.co.uk",
  13496. "homepage": "https://davedevelopment.co.uk",
  13497. "role": "Developer"
  13498. },
  13499. {
  13500. "name": "Nathanael Esayeas",
  13501. "email": "nathanael.esayeas@protonmail.com",
  13502. "homepage": "https://github.com/ghostwriter",
  13503. "role": "Lead Developer"
  13504. }
  13505. ],
  13506. "description": "Mockery is a simple yet flexible PHP mock object framework",
  13507. "homepage": "https://github.com/mockery/mockery",
  13508. "keywords": [
  13509. "BDD",
  13510. "TDD",
  13511. "library",
  13512. "mock",
  13513. "mock objects",
  13514. "mockery",
  13515. "stub",
  13516. "test",
  13517. "test double",
  13518. "testing"
  13519. ],
  13520. "support": {
  13521. "docs": "https://docs.mockery.io/",
  13522. "issues": "https://github.com/mockery/mockery/issues",
  13523. "rss": "https://github.com/mockery/mockery/releases.atom",
  13524. "security": "https://github.com/mockery/mockery/security/advisories",
  13525. "source": "https://github.com/mockery/mockery"
  13526. },
  13527. "time": "2024-05-16T03:13:13+00:00"
  13528. },
  13529. {
  13530. "name": "nunomaduro/collision",
  13531. "version": "v8.7.0",
  13532. "source": {
  13533. "type": "git",
  13534. "url": "https://github.com/nunomaduro/collision.git",
  13535. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26"
  13536. },
  13537. "dist": {
  13538. "type": "zip",
  13539. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/586cb8181a257a2152b6a855ca8d9598878a1a26",
  13540. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26",
  13541. "shasum": ""
  13542. },
  13543. "require": {
  13544. "filp/whoops": "^2.17.0",
  13545. "nunomaduro/termwind": "^2.3.0",
  13546. "php": "^8.2.0",
  13547. "symfony/console": "^7.2.1"
  13548. },
  13549. "conflict": {
  13550. "laravel/framework": "<11.39.1 || >=13.0.0",
  13551. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  13552. },
  13553. "require-dev": {
  13554. "larastan/larastan": "^2.10.0",
  13555. "laravel/framework": "^11.44.2",
  13556. "laravel/pint": "^1.21.2",
  13557. "laravel/sail": "^1.41.0",
  13558. "laravel/sanctum": "^4.0.8",
  13559. "laravel/tinker": "^2.10.1",
  13560. "orchestra/testbench-core": "^9.12.0",
  13561. "pestphp/pest": "^3.7.4",
  13562. "sebastian/environment": "^6.1.0 || ^7.2.0"
  13563. },
  13564. "type": "library",
  13565. "extra": {
  13566. "laravel": {
  13567. "providers": [
  13568. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  13569. ]
  13570. },
  13571. "branch-alias": {
  13572. "dev-8.x": "8.x-dev"
  13573. }
  13574. },
  13575. "autoload": {
  13576. "files": [
  13577. "./src/Adapters/Phpunit/Autoload.php"
  13578. ],
  13579. "psr-4": {
  13580. "NunoMaduro\\Collision\\": "src/"
  13581. }
  13582. },
  13583. "notification-url": "https://packagist.org/downloads/",
  13584. "license": [
  13585. "MIT"
  13586. ],
  13587. "authors": [
  13588. {
  13589. "name": "Nuno Maduro",
  13590. "email": "enunomaduro@gmail.com"
  13591. }
  13592. ],
  13593. "description": "Cli error handling for console/command-line PHP applications.",
  13594. "keywords": [
  13595. "artisan",
  13596. "cli",
  13597. "command-line",
  13598. "console",
  13599. "dev",
  13600. "error",
  13601. "handling",
  13602. "laravel",
  13603. "laravel-zero",
  13604. "php",
  13605. "symfony"
  13606. ],
  13607. "support": {
  13608. "issues": "https://github.com/nunomaduro/collision/issues",
  13609. "source": "https://github.com/nunomaduro/collision"
  13610. },
  13611. "funding": [
  13612. {
  13613. "url": "https://www.paypal.com/paypalme/enunomaduro",
  13614. "type": "custom"
  13615. },
  13616. {
  13617. "url": "https://github.com/nunomaduro",
  13618. "type": "github"
  13619. },
  13620. {
  13621. "url": "https://www.patreon.com/nunomaduro",
  13622. "type": "patreon"
  13623. }
  13624. ],
  13625. "time": "2025-03-14T22:37:40+00:00"
  13626. },
  13627. {
  13628. "name": "pestphp/pest",
  13629. "version": "v3.7.4",
  13630. "source": {
  13631. "type": "git",
  13632. "url": "https://github.com/pestphp/pest.git",
  13633. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b"
  13634. },
  13635. "dist": {
  13636. "type": "zip",
  13637. "url": "https://api.github.com/repos/pestphp/pest/zipball/4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  13638. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  13639. "shasum": ""
  13640. },
  13641. "require": {
  13642. "brianium/paratest": "^7.7.0",
  13643. "nunomaduro/collision": "^8.6.1",
  13644. "nunomaduro/termwind": "^2.3.0",
  13645. "pestphp/pest-plugin": "^3.0.0",
  13646. "pestphp/pest-plugin-arch": "^3.0.0",
  13647. "pestphp/pest-plugin-mutate": "^3.0.5",
  13648. "php": "^8.2.0",
  13649. "phpunit/phpunit": "^11.5.3"
  13650. },
  13651. "conflict": {
  13652. "filp/whoops": "<2.16.0",
  13653. "phpunit/phpunit": ">11.5.3",
  13654. "sebastian/exporter": "<6.0.0",
  13655. "webmozart/assert": "<1.11.0"
  13656. },
  13657. "require-dev": {
  13658. "pestphp/pest-dev-tools": "^3.3.0",
  13659. "pestphp/pest-plugin-type-coverage": "^3.2.3",
  13660. "symfony/process": "^7.2.0"
  13661. },
  13662. "bin": [
  13663. "bin/pest"
  13664. ],
  13665. "type": "library",
  13666. "extra": {
  13667. "pest": {
  13668. "plugins": [
  13669. "Pest\\Mutate\\Plugins\\Mutate",
  13670. "Pest\\Plugins\\Configuration",
  13671. "Pest\\Plugins\\Bail",
  13672. "Pest\\Plugins\\Cache",
  13673. "Pest\\Plugins\\Coverage",
  13674. "Pest\\Plugins\\Init",
  13675. "Pest\\Plugins\\Environment",
  13676. "Pest\\Plugins\\Help",
  13677. "Pest\\Plugins\\Memory",
  13678. "Pest\\Plugins\\Only",
  13679. "Pest\\Plugins\\Printer",
  13680. "Pest\\Plugins\\ProcessIsolation",
  13681. "Pest\\Plugins\\Profile",
  13682. "Pest\\Plugins\\Retry",
  13683. "Pest\\Plugins\\Snapshot",
  13684. "Pest\\Plugins\\Verbose",
  13685. "Pest\\Plugins\\Version",
  13686. "Pest\\Plugins\\Parallel"
  13687. ]
  13688. },
  13689. "phpstan": {
  13690. "includes": [
  13691. "extension.neon"
  13692. ]
  13693. }
  13694. },
  13695. "autoload": {
  13696. "files": [
  13697. "src/Functions.php",
  13698. "src/Pest.php"
  13699. ],
  13700. "psr-4": {
  13701. "Pest\\": "src/"
  13702. }
  13703. },
  13704. "notification-url": "https://packagist.org/downloads/",
  13705. "license": [
  13706. "MIT"
  13707. ],
  13708. "authors": [
  13709. {
  13710. "name": "Nuno Maduro",
  13711. "email": "enunomaduro@gmail.com"
  13712. }
  13713. ],
  13714. "description": "The elegant PHP Testing Framework.",
  13715. "keywords": [
  13716. "framework",
  13717. "pest",
  13718. "php",
  13719. "test",
  13720. "testing",
  13721. "unit"
  13722. ],
  13723. "support": {
  13724. "issues": "https://github.com/pestphp/pest/issues",
  13725. "source": "https://github.com/pestphp/pest/tree/v3.7.4"
  13726. },
  13727. "funding": [
  13728. {
  13729. "url": "https://www.paypal.com/paypalme/enunomaduro",
  13730. "type": "custom"
  13731. },
  13732. {
  13733. "url": "https://github.com/nunomaduro",
  13734. "type": "github"
  13735. }
  13736. ],
  13737. "time": "2025-01-23T14:03:29+00:00"
  13738. },
  13739. {
  13740. "name": "pestphp/pest-plugin",
  13741. "version": "v3.0.0",
  13742. "source": {
  13743. "type": "git",
  13744. "url": "https://github.com/pestphp/pest-plugin.git",
  13745. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  13746. },
  13747. "dist": {
  13748. "type": "zip",
  13749. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  13750. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  13751. "shasum": ""
  13752. },
  13753. "require": {
  13754. "composer-plugin-api": "^2.0.0",
  13755. "composer-runtime-api": "^2.2.2",
  13756. "php": "^8.2"
  13757. },
  13758. "conflict": {
  13759. "pestphp/pest": "<3.0.0"
  13760. },
  13761. "require-dev": {
  13762. "composer/composer": "^2.7.9",
  13763. "pestphp/pest": "^3.0.0",
  13764. "pestphp/pest-dev-tools": "^3.0.0"
  13765. },
  13766. "type": "composer-plugin",
  13767. "extra": {
  13768. "class": "Pest\\Plugin\\Manager"
  13769. },
  13770. "autoload": {
  13771. "psr-4": {
  13772. "Pest\\Plugin\\": "src/"
  13773. }
  13774. },
  13775. "notification-url": "https://packagist.org/downloads/",
  13776. "license": [
  13777. "MIT"
  13778. ],
  13779. "description": "The Pest plugin manager",
  13780. "keywords": [
  13781. "framework",
  13782. "manager",
  13783. "pest",
  13784. "php",
  13785. "plugin",
  13786. "test",
  13787. "testing",
  13788. "unit"
  13789. ],
  13790. "support": {
  13791. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  13792. },
  13793. "funding": [
  13794. {
  13795. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  13796. "type": "custom"
  13797. },
  13798. {
  13799. "url": "https://github.com/nunomaduro",
  13800. "type": "github"
  13801. },
  13802. {
  13803. "url": "https://www.patreon.com/nunomaduro",
  13804. "type": "patreon"
  13805. }
  13806. ],
  13807. "time": "2024-09-08T23:21:41+00:00"
  13808. },
  13809. {
  13810. "name": "pestphp/pest-plugin-arch",
  13811. "version": "v3.0.0",
  13812. "source": {
  13813. "type": "git",
  13814. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  13815. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  13816. },
  13817. "dist": {
  13818. "type": "zip",
  13819. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  13820. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  13821. "shasum": ""
  13822. },
  13823. "require": {
  13824. "pestphp/pest-plugin": "^3.0.0",
  13825. "php": "^8.2",
  13826. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  13827. },
  13828. "require-dev": {
  13829. "pestphp/pest": "^3.0.0",
  13830. "pestphp/pest-dev-tools": "^3.0.0"
  13831. },
  13832. "type": "library",
  13833. "extra": {
  13834. "pest": {
  13835. "plugins": [
  13836. "Pest\\Arch\\Plugin"
  13837. ]
  13838. }
  13839. },
  13840. "autoload": {
  13841. "files": [
  13842. "src/Autoload.php"
  13843. ],
  13844. "psr-4": {
  13845. "Pest\\Arch\\": "src/"
  13846. }
  13847. },
  13848. "notification-url": "https://packagist.org/downloads/",
  13849. "license": [
  13850. "MIT"
  13851. ],
  13852. "description": "The Arch plugin for Pest PHP.",
  13853. "keywords": [
  13854. "arch",
  13855. "architecture",
  13856. "framework",
  13857. "pest",
  13858. "php",
  13859. "plugin",
  13860. "test",
  13861. "testing",
  13862. "unit"
  13863. ],
  13864. "support": {
  13865. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  13866. },
  13867. "funding": [
  13868. {
  13869. "url": "https://www.paypal.com/paypalme/enunomaduro",
  13870. "type": "custom"
  13871. },
  13872. {
  13873. "url": "https://github.com/nunomaduro",
  13874. "type": "github"
  13875. }
  13876. ],
  13877. "time": "2024-09-08T23:23:55+00:00"
  13878. },
  13879. {
  13880. "name": "pestphp/pest-plugin-laravel",
  13881. "version": "v3.1.0",
  13882. "source": {
  13883. "type": "git",
  13884. "url": "https://github.com/pestphp/pest-plugin-laravel.git",
  13885. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd"
  13886. },
  13887. "dist": {
  13888. "type": "zip",
  13889. "url": "https://api.github.com/repos/pestphp/pest-plugin-laravel/zipball/1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  13890. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  13891. "shasum": ""
  13892. },
  13893. "require": {
  13894. "laravel/framework": "^11.39.1|^12.0.0",
  13895. "pestphp/pest": "^3.7.4",
  13896. "php": "^8.2.0"
  13897. },
  13898. "require-dev": {
  13899. "laravel/dusk": "^8.2.13|dev-develop",
  13900. "orchestra/testbench": "^9.9.0|^10.0.0",
  13901. "pestphp/pest-dev-tools": "^3.3.0"
  13902. },
  13903. "type": "library",
  13904. "extra": {
  13905. "pest": {
  13906. "plugins": [
  13907. "Pest\\Laravel\\Plugin"
  13908. ]
  13909. },
  13910. "laravel": {
  13911. "providers": [
  13912. "Pest\\Laravel\\PestServiceProvider"
  13913. ]
  13914. }
  13915. },
  13916. "autoload": {
  13917. "files": [
  13918. "src/Autoload.php"
  13919. ],
  13920. "psr-4": {
  13921. "Pest\\Laravel\\": "src/"
  13922. }
  13923. },
  13924. "notification-url": "https://packagist.org/downloads/",
  13925. "license": [
  13926. "MIT"
  13927. ],
  13928. "description": "The Pest Laravel Plugin",
  13929. "keywords": [
  13930. "framework",
  13931. "laravel",
  13932. "pest",
  13933. "php",
  13934. "test",
  13935. "testing",
  13936. "unit"
  13937. ],
  13938. "support": {
  13939. "source": "https://github.com/pestphp/pest-plugin-laravel/tree/v3.1.0"
  13940. },
  13941. "funding": [
  13942. {
  13943. "url": "https://www.paypal.com/paypalme/enunomaduro",
  13944. "type": "custom"
  13945. },
  13946. {
  13947. "url": "https://github.com/nunomaduro",
  13948. "type": "github"
  13949. }
  13950. ],
  13951. "time": "2025-01-24T13:22:39+00:00"
  13952. },
  13953. {
  13954. "name": "pestphp/pest-plugin-mutate",
  13955. "version": "v3.0.5",
  13956. "source": {
  13957. "type": "git",
  13958. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  13959. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  13960. },
  13961. "dist": {
  13962. "type": "zip",
  13963. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  13964. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  13965. "shasum": ""
  13966. },
  13967. "require": {
  13968. "nikic/php-parser": "^5.2.0",
  13969. "pestphp/pest-plugin": "^3.0.0",
  13970. "php": "^8.2",
  13971. "psr/simple-cache": "^3.0.0"
  13972. },
  13973. "require-dev": {
  13974. "pestphp/pest": "^3.0.8",
  13975. "pestphp/pest-dev-tools": "^3.0.0",
  13976. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  13977. },
  13978. "type": "library",
  13979. "autoload": {
  13980. "psr-4": {
  13981. "Pest\\Mutate\\": "src/"
  13982. }
  13983. },
  13984. "notification-url": "https://packagist.org/downloads/",
  13985. "license": [
  13986. "MIT"
  13987. ],
  13988. "authors": [
  13989. {
  13990. "name": "Sandro Gehri",
  13991. "email": "sandrogehri@gmail.com"
  13992. }
  13993. ],
  13994. "description": "Mutates your code to find untested cases",
  13995. "keywords": [
  13996. "framework",
  13997. "mutate",
  13998. "mutation",
  13999. "pest",
  14000. "php",
  14001. "plugin",
  14002. "test",
  14003. "testing",
  14004. "unit"
  14005. ],
  14006. "support": {
  14007. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  14008. },
  14009. "funding": [
  14010. {
  14011. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14012. "type": "custom"
  14013. },
  14014. {
  14015. "url": "https://github.com/gehrisandro",
  14016. "type": "github"
  14017. },
  14018. {
  14019. "url": "https://github.com/nunomaduro",
  14020. "type": "github"
  14021. }
  14022. ],
  14023. "time": "2024-09-22T07:54:40+00:00"
  14024. },
  14025. {
  14026. "name": "phar-io/manifest",
  14027. "version": "2.0.4",
  14028. "source": {
  14029. "type": "git",
  14030. "url": "https://github.com/phar-io/manifest.git",
  14031. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  14032. },
  14033. "dist": {
  14034. "type": "zip",
  14035. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  14036. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  14037. "shasum": ""
  14038. },
  14039. "require": {
  14040. "ext-dom": "*",
  14041. "ext-libxml": "*",
  14042. "ext-phar": "*",
  14043. "ext-xmlwriter": "*",
  14044. "phar-io/version": "^3.0.1",
  14045. "php": "^7.2 || ^8.0"
  14046. },
  14047. "type": "library",
  14048. "extra": {
  14049. "branch-alias": {
  14050. "dev-master": "2.0.x-dev"
  14051. }
  14052. },
  14053. "autoload": {
  14054. "classmap": [
  14055. "src/"
  14056. ]
  14057. },
  14058. "notification-url": "https://packagist.org/downloads/",
  14059. "license": [
  14060. "BSD-3-Clause"
  14061. ],
  14062. "authors": [
  14063. {
  14064. "name": "Arne Blankerts",
  14065. "email": "arne@blankerts.de",
  14066. "role": "Developer"
  14067. },
  14068. {
  14069. "name": "Sebastian Heuer",
  14070. "email": "sebastian@phpeople.de",
  14071. "role": "Developer"
  14072. },
  14073. {
  14074. "name": "Sebastian Bergmann",
  14075. "email": "sebastian@phpunit.de",
  14076. "role": "Developer"
  14077. }
  14078. ],
  14079. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  14080. "support": {
  14081. "issues": "https://github.com/phar-io/manifest/issues",
  14082. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  14083. },
  14084. "funding": [
  14085. {
  14086. "url": "https://github.com/theseer",
  14087. "type": "github"
  14088. }
  14089. ],
  14090. "time": "2024-03-03T12:33:53+00:00"
  14091. },
  14092. {
  14093. "name": "phar-io/version",
  14094. "version": "3.2.1",
  14095. "source": {
  14096. "type": "git",
  14097. "url": "https://github.com/phar-io/version.git",
  14098. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  14099. },
  14100. "dist": {
  14101. "type": "zip",
  14102. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  14103. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  14104. "shasum": ""
  14105. },
  14106. "require": {
  14107. "php": "^7.2 || ^8.0"
  14108. },
  14109. "type": "library",
  14110. "autoload": {
  14111. "classmap": [
  14112. "src/"
  14113. ]
  14114. },
  14115. "notification-url": "https://packagist.org/downloads/",
  14116. "license": [
  14117. "BSD-3-Clause"
  14118. ],
  14119. "authors": [
  14120. {
  14121. "name": "Arne Blankerts",
  14122. "email": "arne@blankerts.de",
  14123. "role": "Developer"
  14124. },
  14125. {
  14126. "name": "Sebastian Heuer",
  14127. "email": "sebastian@phpeople.de",
  14128. "role": "Developer"
  14129. },
  14130. {
  14131. "name": "Sebastian Bergmann",
  14132. "email": "sebastian@phpunit.de",
  14133. "role": "Developer"
  14134. }
  14135. ],
  14136. "description": "Library for handling version information and constraints",
  14137. "support": {
  14138. "issues": "https://github.com/phar-io/version/issues",
  14139. "source": "https://github.com/phar-io/version/tree/3.2.1"
  14140. },
  14141. "time": "2022-02-21T01:04:05+00:00"
  14142. },
  14143. {
  14144. "name": "php-debugbar/php-debugbar",
  14145. "version": "v2.1.6",
  14146. "source": {
  14147. "type": "git",
  14148. "url": "https://github.com/php-debugbar/php-debugbar.git",
  14149. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  14150. },
  14151. "dist": {
  14152. "type": "zip",
  14153. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  14154. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  14155. "shasum": ""
  14156. },
  14157. "require": {
  14158. "php": "^8",
  14159. "psr/log": "^1|^2|^3",
  14160. "symfony/var-dumper": "^4|^5|^6|^7"
  14161. },
  14162. "require-dev": {
  14163. "dbrekelmans/bdi": "^1",
  14164. "phpunit/phpunit": "^8|^9",
  14165. "symfony/panther": "^1|^2.1",
  14166. "twig/twig": "^1.38|^2.7|^3.0"
  14167. },
  14168. "suggest": {
  14169. "kriswallsmith/assetic": "The best way to manage assets",
  14170. "monolog/monolog": "Log using Monolog",
  14171. "predis/predis": "Redis storage"
  14172. },
  14173. "type": "library",
  14174. "extra": {
  14175. "branch-alias": {
  14176. "dev-master": "2.0-dev"
  14177. }
  14178. },
  14179. "autoload": {
  14180. "psr-4": {
  14181. "DebugBar\\": "src/DebugBar/"
  14182. }
  14183. },
  14184. "notification-url": "https://packagist.org/downloads/",
  14185. "license": [
  14186. "MIT"
  14187. ],
  14188. "authors": [
  14189. {
  14190. "name": "Maxime Bouroumeau-Fuseau",
  14191. "email": "maxime.bouroumeau@gmail.com",
  14192. "homepage": "http://maximebf.com"
  14193. },
  14194. {
  14195. "name": "Barry vd. Heuvel",
  14196. "email": "barryvdh@gmail.com"
  14197. }
  14198. ],
  14199. "description": "Debug bar in the browser for php application",
  14200. "homepage": "https://github.com/php-debugbar/php-debugbar",
  14201. "keywords": [
  14202. "debug",
  14203. "debug bar",
  14204. "debugbar",
  14205. "dev"
  14206. ],
  14207. "support": {
  14208. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  14209. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  14210. },
  14211. "time": "2025-02-21T17:47:03+00:00"
  14212. },
  14213. {
  14214. "name": "phpdocumentor/reflection-common",
  14215. "version": "2.2.0",
  14216. "source": {
  14217. "type": "git",
  14218. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  14219. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  14220. },
  14221. "dist": {
  14222. "type": "zip",
  14223. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  14224. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  14225. "shasum": ""
  14226. },
  14227. "require": {
  14228. "php": "^7.2 || ^8.0"
  14229. },
  14230. "type": "library",
  14231. "extra": {
  14232. "branch-alias": {
  14233. "dev-2.x": "2.x-dev"
  14234. }
  14235. },
  14236. "autoload": {
  14237. "psr-4": {
  14238. "phpDocumentor\\Reflection\\": "src/"
  14239. }
  14240. },
  14241. "notification-url": "https://packagist.org/downloads/",
  14242. "license": [
  14243. "MIT"
  14244. ],
  14245. "authors": [
  14246. {
  14247. "name": "Jaap van Otterdijk",
  14248. "email": "opensource@ijaap.nl"
  14249. }
  14250. ],
  14251. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  14252. "homepage": "http://www.phpdoc.org",
  14253. "keywords": [
  14254. "FQSEN",
  14255. "phpDocumentor",
  14256. "phpdoc",
  14257. "reflection",
  14258. "static analysis"
  14259. ],
  14260. "support": {
  14261. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  14262. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  14263. },
  14264. "time": "2020-06-27T09:03:43+00:00"
  14265. },
  14266. {
  14267. "name": "phpdocumentor/reflection-docblock",
  14268. "version": "5.6.3",
  14269. "source": {
  14270. "type": "git",
  14271. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  14272. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
  14273. },
  14274. "dist": {
  14275. "type": "zip",
  14276. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
  14277. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
  14278. "shasum": ""
  14279. },
  14280. "require": {
  14281. "doctrine/deprecations": "^1.1",
  14282. "ext-filter": "*",
  14283. "php": "^7.4 || ^8.0",
  14284. "phpdocumentor/reflection-common": "^2.2",
  14285. "phpdocumentor/type-resolver": "^1.7",
  14286. "phpstan/phpdoc-parser": "^1.7|^2.0",
  14287. "webmozart/assert": "^1.9.1"
  14288. },
  14289. "require-dev": {
  14290. "mockery/mockery": "~1.3.5 || ~1.6.0",
  14291. "phpstan/extension-installer": "^1.1",
  14292. "phpstan/phpstan": "^1.8",
  14293. "phpstan/phpstan-mockery": "^1.1",
  14294. "phpstan/phpstan-webmozart-assert": "^1.2",
  14295. "phpunit/phpunit": "^9.5",
  14296. "psalm/phar": "^5.26"
  14297. },
  14298. "type": "library",
  14299. "extra": {
  14300. "branch-alias": {
  14301. "dev-master": "5.x-dev"
  14302. }
  14303. },
  14304. "autoload": {
  14305. "psr-4": {
  14306. "phpDocumentor\\Reflection\\": "src"
  14307. }
  14308. },
  14309. "notification-url": "https://packagist.org/downloads/",
  14310. "license": [
  14311. "MIT"
  14312. ],
  14313. "authors": [
  14314. {
  14315. "name": "Mike van Riel",
  14316. "email": "me@mikevanriel.com"
  14317. },
  14318. {
  14319. "name": "Jaap van Otterdijk",
  14320. "email": "opensource@ijaap.nl"
  14321. }
  14322. ],
  14323. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  14324. "support": {
  14325. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  14326. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
  14327. },
  14328. "time": "2025-08-01T19:43:32+00:00"
  14329. },
  14330. {
  14331. "name": "phpdocumentor/type-resolver",
  14332. "version": "1.10.0",
  14333. "source": {
  14334. "type": "git",
  14335. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  14336. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  14337. },
  14338. "dist": {
  14339. "type": "zip",
  14340. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  14341. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  14342. "shasum": ""
  14343. },
  14344. "require": {
  14345. "doctrine/deprecations": "^1.0",
  14346. "php": "^7.3 || ^8.0",
  14347. "phpdocumentor/reflection-common": "^2.0",
  14348. "phpstan/phpdoc-parser": "^1.18|^2.0"
  14349. },
  14350. "require-dev": {
  14351. "ext-tokenizer": "*",
  14352. "phpbench/phpbench": "^1.2",
  14353. "phpstan/extension-installer": "^1.1",
  14354. "phpstan/phpstan": "^1.8",
  14355. "phpstan/phpstan-phpunit": "^1.1",
  14356. "phpunit/phpunit": "^9.5",
  14357. "rector/rector": "^0.13.9",
  14358. "vimeo/psalm": "^4.25"
  14359. },
  14360. "type": "library",
  14361. "extra": {
  14362. "branch-alias": {
  14363. "dev-1.x": "1.x-dev"
  14364. }
  14365. },
  14366. "autoload": {
  14367. "psr-4": {
  14368. "phpDocumentor\\Reflection\\": "src"
  14369. }
  14370. },
  14371. "notification-url": "https://packagist.org/downloads/",
  14372. "license": [
  14373. "MIT"
  14374. ],
  14375. "authors": [
  14376. {
  14377. "name": "Mike van Riel",
  14378. "email": "me@mikevanriel.com"
  14379. }
  14380. ],
  14381. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  14382. "support": {
  14383. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  14384. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  14385. },
  14386. "time": "2024-11-09T15:12:26+00:00"
  14387. },
  14388. {
  14389. "name": "phpstan/phpdoc-parser",
  14390. "version": "2.3.0",
  14391. "source": {
  14392. "type": "git",
  14393. "url": "https://github.com/phpstan/phpdoc-parser.git",
  14394. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
  14395. },
  14396. "dist": {
  14397. "type": "zip",
  14398. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
  14399. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
  14400. "shasum": ""
  14401. },
  14402. "require": {
  14403. "php": "^7.4 || ^8.0"
  14404. },
  14405. "require-dev": {
  14406. "doctrine/annotations": "^2.0",
  14407. "nikic/php-parser": "^5.3.0",
  14408. "php-parallel-lint/php-parallel-lint": "^1.2",
  14409. "phpstan/extension-installer": "^1.0",
  14410. "phpstan/phpstan": "^2.0",
  14411. "phpstan/phpstan-phpunit": "^2.0",
  14412. "phpstan/phpstan-strict-rules": "^2.0",
  14413. "phpunit/phpunit": "^9.6",
  14414. "symfony/process": "^5.2"
  14415. },
  14416. "type": "library",
  14417. "autoload": {
  14418. "psr-4": {
  14419. "PHPStan\\PhpDocParser\\": [
  14420. "src/"
  14421. ]
  14422. }
  14423. },
  14424. "notification-url": "https://packagist.org/downloads/",
  14425. "license": [
  14426. "MIT"
  14427. ],
  14428. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  14429. "support": {
  14430. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  14431. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
  14432. },
  14433. "time": "2025-08-30T15:50:23+00:00"
  14434. },
  14435. {
  14436. "name": "phpunit/php-code-coverage",
  14437. "version": "11.0.9",
  14438. "source": {
  14439. "type": "git",
  14440. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  14441. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  14442. },
  14443. "dist": {
  14444. "type": "zip",
  14445. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  14446. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  14447. "shasum": ""
  14448. },
  14449. "require": {
  14450. "ext-dom": "*",
  14451. "ext-libxml": "*",
  14452. "ext-xmlwriter": "*",
  14453. "nikic/php-parser": "^5.4.0",
  14454. "php": ">=8.2",
  14455. "phpunit/php-file-iterator": "^5.1.0",
  14456. "phpunit/php-text-template": "^4.0.1",
  14457. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  14458. "sebastian/complexity": "^4.0.1",
  14459. "sebastian/environment": "^7.2.0",
  14460. "sebastian/lines-of-code": "^3.0.1",
  14461. "sebastian/version": "^5.0.2",
  14462. "theseer/tokenizer": "^1.2.3"
  14463. },
  14464. "require-dev": {
  14465. "phpunit/phpunit": "^11.5.2"
  14466. },
  14467. "suggest": {
  14468. "ext-pcov": "PHP extension that provides line coverage",
  14469. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  14470. },
  14471. "type": "library",
  14472. "extra": {
  14473. "branch-alias": {
  14474. "dev-main": "11.0.x-dev"
  14475. }
  14476. },
  14477. "autoload": {
  14478. "classmap": [
  14479. "src/"
  14480. ]
  14481. },
  14482. "notification-url": "https://packagist.org/downloads/",
  14483. "license": [
  14484. "BSD-3-Clause"
  14485. ],
  14486. "authors": [
  14487. {
  14488. "name": "Sebastian Bergmann",
  14489. "email": "sebastian@phpunit.de",
  14490. "role": "lead"
  14491. }
  14492. ],
  14493. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  14494. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  14495. "keywords": [
  14496. "coverage",
  14497. "testing",
  14498. "xunit"
  14499. ],
  14500. "support": {
  14501. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  14502. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  14503. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  14504. },
  14505. "funding": [
  14506. {
  14507. "url": "https://github.com/sebastianbergmann",
  14508. "type": "github"
  14509. }
  14510. ],
  14511. "time": "2025-02-25T13:26:39+00:00"
  14512. },
  14513. {
  14514. "name": "phpunit/php-file-iterator",
  14515. "version": "5.1.0",
  14516. "source": {
  14517. "type": "git",
  14518. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  14519. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  14520. },
  14521. "dist": {
  14522. "type": "zip",
  14523. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  14524. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  14525. "shasum": ""
  14526. },
  14527. "require": {
  14528. "php": ">=8.2"
  14529. },
  14530. "require-dev": {
  14531. "phpunit/phpunit": "^11.0"
  14532. },
  14533. "type": "library",
  14534. "extra": {
  14535. "branch-alias": {
  14536. "dev-main": "5.0-dev"
  14537. }
  14538. },
  14539. "autoload": {
  14540. "classmap": [
  14541. "src/"
  14542. ]
  14543. },
  14544. "notification-url": "https://packagist.org/downloads/",
  14545. "license": [
  14546. "BSD-3-Clause"
  14547. ],
  14548. "authors": [
  14549. {
  14550. "name": "Sebastian Bergmann",
  14551. "email": "sebastian@phpunit.de",
  14552. "role": "lead"
  14553. }
  14554. ],
  14555. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  14556. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  14557. "keywords": [
  14558. "filesystem",
  14559. "iterator"
  14560. ],
  14561. "support": {
  14562. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  14563. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  14564. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  14565. },
  14566. "funding": [
  14567. {
  14568. "url": "https://github.com/sebastianbergmann",
  14569. "type": "github"
  14570. }
  14571. ],
  14572. "time": "2024-08-27T05:02:59+00:00"
  14573. },
  14574. {
  14575. "name": "phpunit/php-invoker",
  14576. "version": "5.0.1",
  14577. "source": {
  14578. "type": "git",
  14579. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  14580. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  14581. },
  14582. "dist": {
  14583. "type": "zip",
  14584. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  14585. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  14586. "shasum": ""
  14587. },
  14588. "require": {
  14589. "php": ">=8.2"
  14590. },
  14591. "require-dev": {
  14592. "ext-pcntl": "*",
  14593. "phpunit/phpunit": "^11.0"
  14594. },
  14595. "suggest": {
  14596. "ext-pcntl": "*"
  14597. },
  14598. "type": "library",
  14599. "extra": {
  14600. "branch-alias": {
  14601. "dev-main": "5.0-dev"
  14602. }
  14603. },
  14604. "autoload": {
  14605. "classmap": [
  14606. "src/"
  14607. ]
  14608. },
  14609. "notification-url": "https://packagist.org/downloads/",
  14610. "license": [
  14611. "BSD-3-Clause"
  14612. ],
  14613. "authors": [
  14614. {
  14615. "name": "Sebastian Bergmann",
  14616. "email": "sebastian@phpunit.de",
  14617. "role": "lead"
  14618. }
  14619. ],
  14620. "description": "Invoke callables with a timeout",
  14621. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  14622. "keywords": [
  14623. "process"
  14624. ],
  14625. "support": {
  14626. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  14627. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  14628. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  14629. },
  14630. "funding": [
  14631. {
  14632. "url": "https://github.com/sebastianbergmann",
  14633. "type": "github"
  14634. }
  14635. ],
  14636. "time": "2024-07-03T05:07:44+00:00"
  14637. },
  14638. {
  14639. "name": "phpunit/php-text-template",
  14640. "version": "4.0.1",
  14641. "source": {
  14642. "type": "git",
  14643. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  14644. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  14645. },
  14646. "dist": {
  14647. "type": "zip",
  14648. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  14649. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  14650. "shasum": ""
  14651. },
  14652. "require": {
  14653. "php": ">=8.2"
  14654. },
  14655. "require-dev": {
  14656. "phpunit/phpunit": "^11.0"
  14657. },
  14658. "type": "library",
  14659. "extra": {
  14660. "branch-alias": {
  14661. "dev-main": "4.0-dev"
  14662. }
  14663. },
  14664. "autoload": {
  14665. "classmap": [
  14666. "src/"
  14667. ]
  14668. },
  14669. "notification-url": "https://packagist.org/downloads/",
  14670. "license": [
  14671. "BSD-3-Clause"
  14672. ],
  14673. "authors": [
  14674. {
  14675. "name": "Sebastian Bergmann",
  14676. "email": "sebastian@phpunit.de",
  14677. "role": "lead"
  14678. }
  14679. ],
  14680. "description": "Simple template engine.",
  14681. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  14682. "keywords": [
  14683. "template"
  14684. ],
  14685. "support": {
  14686. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  14687. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  14688. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  14689. },
  14690. "funding": [
  14691. {
  14692. "url": "https://github.com/sebastianbergmann",
  14693. "type": "github"
  14694. }
  14695. ],
  14696. "time": "2024-07-03T05:08:43+00:00"
  14697. },
  14698. {
  14699. "name": "phpunit/php-timer",
  14700. "version": "7.0.1",
  14701. "source": {
  14702. "type": "git",
  14703. "url": "https://github.com/sebastianbergmann/php-timer.git",
  14704. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  14705. },
  14706. "dist": {
  14707. "type": "zip",
  14708. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  14709. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  14710. "shasum": ""
  14711. },
  14712. "require": {
  14713. "php": ">=8.2"
  14714. },
  14715. "require-dev": {
  14716. "phpunit/phpunit": "^11.0"
  14717. },
  14718. "type": "library",
  14719. "extra": {
  14720. "branch-alias": {
  14721. "dev-main": "7.0-dev"
  14722. }
  14723. },
  14724. "autoload": {
  14725. "classmap": [
  14726. "src/"
  14727. ]
  14728. },
  14729. "notification-url": "https://packagist.org/downloads/",
  14730. "license": [
  14731. "BSD-3-Clause"
  14732. ],
  14733. "authors": [
  14734. {
  14735. "name": "Sebastian Bergmann",
  14736. "email": "sebastian@phpunit.de",
  14737. "role": "lead"
  14738. }
  14739. ],
  14740. "description": "Utility class for timing",
  14741. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  14742. "keywords": [
  14743. "timer"
  14744. ],
  14745. "support": {
  14746. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  14747. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  14748. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  14749. },
  14750. "funding": [
  14751. {
  14752. "url": "https://github.com/sebastianbergmann",
  14753. "type": "github"
  14754. }
  14755. ],
  14756. "time": "2024-07-03T05:09:35+00:00"
  14757. },
  14758. {
  14759. "name": "phpunit/phpunit",
  14760. "version": "11.5.3",
  14761. "source": {
  14762. "type": "git",
  14763. "url": "https://github.com/sebastianbergmann/phpunit.git",
  14764. "reference": "30e319e578a7b5da3543073e30002bf82042f701"
  14765. },
  14766. "dist": {
  14767. "type": "zip",
  14768. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701",
  14769. "reference": "30e319e578a7b5da3543073e30002bf82042f701",
  14770. "shasum": ""
  14771. },
  14772. "require": {
  14773. "ext-dom": "*",
  14774. "ext-json": "*",
  14775. "ext-libxml": "*",
  14776. "ext-mbstring": "*",
  14777. "ext-xml": "*",
  14778. "ext-xmlwriter": "*",
  14779. "myclabs/deep-copy": "^1.12.1",
  14780. "phar-io/manifest": "^2.0.4",
  14781. "phar-io/version": "^3.2.1",
  14782. "php": ">=8.2",
  14783. "phpunit/php-code-coverage": "^11.0.8",
  14784. "phpunit/php-file-iterator": "^5.1.0",
  14785. "phpunit/php-invoker": "^5.0.1",
  14786. "phpunit/php-text-template": "^4.0.1",
  14787. "phpunit/php-timer": "^7.0.1",
  14788. "sebastian/cli-parser": "^3.0.2",
  14789. "sebastian/code-unit": "^3.0.2",
  14790. "sebastian/comparator": "^6.3.0",
  14791. "sebastian/diff": "^6.0.2",
  14792. "sebastian/environment": "^7.2.0",
  14793. "sebastian/exporter": "^6.3.0",
  14794. "sebastian/global-state": "^7.0.2",
  14795. "sebastian/object-enumerator": "^6.0.1",
  14796. "sebastian/type": "^5.1.0",
  14797. "sebastian/version": "^5.0.2",
  14798. "staabm/side-effects-detector": "^1.0.5"
  14799. },
  14800. "suggest": {
  14801. "ext-soap": "To be able to generate mocks based on WSDL files"
  14802. },
  14803. "bin": [
  14804. "phpunit"
  14805. ],
  14806. "type": "library",
  14807. "extra": {
  14808. "branch-alias": {
  14809. "dev-main": "11.5-dev"
  14810. }
  14811. },
  14812. "autoload": {
  14813. "files": [
  14814. "src/Framework/Assert/Functions.php"
  14815. ],
  14816. "classmap": [
  14817. "src/"
  14818. ]
  14819. },
  14820. "notification-url": "https://packagist.org/downloads/",
  14821. "license": [
  14822. "BSD-3-Clause"
  14823. ],
  14824. "authors": [
  14825. {
  14826. "name": "Sebastian Bergmann",
  14827. "email": "sebastian@phpunit.de",
  14828. "role": "lead"
  14829. }
  14830. ],
  14831. "description": "The PHP Unit Testing framework.",
  14832. "homepage": "https://phpunit.de/",
  14833. "keywords": [
  14834. "phpunit",
  14835. "testing",
  14836. "xunit"
  14837. ],
  14838. "support": {
  14839. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  14840. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  14841. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3"
  14842. },
  14843. "funding": [
  14844. {
  14845. "url": "https://phpunit.de/sponsors.html",
  14846. "type": "custom"
  14847. },
  14848. {
  14849. "url": "https://github.com/sebastianbergmann",
  14850. "type": "github"
  14851. },
  14852. {
  14853. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  14854. "type": "tidelift"
  14855. }
  14856. ],
  14857. "time": "2025-01-13T09:36:00+00:00"
  14858. },
  14859. {
  14860. "name": "sebastian/cli-parser",
  14861. "version": "3.0.2",
  14862. "source": {
  14863. "type": "git",
  14864. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  14865. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  14866. },
  14867. "dist": {
  14868. "type": "zip",
  14869. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  14870. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  14871. "shasum": ""
  14872. },
  14873. "require": {
  14874. "php": ">=8.2"
  14875. },
  14876. "require-dev": {
  14877. "phpunit/phpunit": "^11.0"
  14878. },
  14879. "type": "library",
  14880. "extra": {
  14881. "branch-alias": {
  14882. "dev-main": "3.0-dev"
  14883. }
  14884. },
  14885. "autoload": {
  14886. "classmap": [
  14887. "src/"
  14888. ]
  14889. },
  14890. "notification-url": "https://packagist.org/downloads/",
  14891. "license": [
  14892. "BSD-3-Clause"
  14893. ],
  14894. "authors": [
  14895. {
  14896. "name": "Sebastian Bergmann",
  14897. "email": "sebastian@phpunit.de",
  14898. "role": "lead"
  14899. }
  14900. ],
  14901. "description": "Library for parsing CLI options",
  14902. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  14903. "support": {
  14904. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  14905. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  14906. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  14907. },
  14908. "funding": [
  14909. {
  14910. "url": "https://github.com/sebastianbergmann",
  14911. "type": "github"
  14912. }
  14913. ],
  14914. "time": "2024-07-03T04:41:36+00:00"
  14915. },
  14916. {
  14917. "name": "sebastian/code-unit",
  14918. "version": "3.0.3",
  14919. "source": {
  14920. "type": "git",
  14921. "url": "https://github.com/sebastianbergmann/code-unit.git",
  14922. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  14923. },
  14924. "dist": {
  14925. "type": "zip",
  14926. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  14927. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  14928. "shasum": ""
  14929. },
  14930. "require": {
  14931. "php": ">=8.2"
  14932. },
  14933. "require-dev": {
  14934. "phpunit/phpunit": "^11.5"
  14935. },
  14936. "type": "library",
  14937. "extra": {
  14938. "branch-alias": {
  14939. "dev-main": "3.0-dev"
  14940. }
  14941. },
  14942. "autoload": {
  14943. "classmap": [
  14944. "src/"
  14945. ]
  14946. },
  14947. "notification-url": "https://packagist.org/downloads/",
  14948. "license": [
  14949. "BSD-3-Clause"
  14950. ],
  14951. "authors": [
  14952. {
  14953. "name": "Sebastian Bergmann",
  14954. "email": "sebastian@phpunit.de",
  14955. "role": "lead"
  14956. }
  14957. ],
  14958. "description": "Collection of value objects that represent the PHP code units",
  14959. "homepage": "https://github.com/sebastianbergmann/code-unit",
  14960. "support": {
  14961. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  14962. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  14963. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  14964. },
  14965. "funding": [
  14966. {
  14967. "url": "https://github.com/sebastianbergmann",
  14968. "type": "github"
  14969. }
  14970. ],
  14971. "time": "2025-03-19T07:56:08+00:00"
  14972. },
  14973. {
  14974. "name": "sebastian/code-unit-reverse-lookup",
  14975. "version": "4.0.1",
  14976. "source": {
  14977. "type": "git",
  14978. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  14979. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  14980. },
  14981. "dist": {
  14982. "type": "zip",
  14983. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  14984. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  14985. "shasum": ""
  14986. },
  14987. "require": {
  14988. "php": ">=8.2"
  14989. },
  14990. "require-dev": {
  14991. "phpunit/phpunit": "^11.0"
  14992. },
  14993. "type": "library",
  14994. "extra": {
  14995. "branch-alias": {
  14996. "dev-main": "4.0-dev"
  14997. }
  14998. },
  14999. "autoload": {
  15000. "classmap": [
  15001. "src/"
  15002. ]
  15003. },
  15004. "notification-url": "https://packagist.org/downloads/",
  15005. "license": [
  15006. "BSD-3-Clause"
  15007. ],
  15008. "authors": [
  15009. {
  15010. "name": "Sebastian Bergmann",
  15011. "email": "sebastian@phpunit.de"
  15012. }
  15013. ],
  15014. "description": "Looks up which function or method a line of code belongs to",
  15015. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  15016. "support": {
  15017. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  15018. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  15019. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  15020. },
  15021. "funding": [
  15022. {
  15023. "url": "https://github.com/sebastianbergmann",
  15024. "type": "github"
  15025. }
  15026. ],
  15027. "time": "2024-07-03T04:45:54+00:00"
  15028. },
  15029. {
  15030. "name": "sebastian/comparator",
  15031. "version": "6.3.1",
  15032. "source": {
  15033. "type": "git",
  15034. "url": "https://github.com/sebastianbergmann/comparator.git",
  15035. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  15036. },
  15037. "dist": {
  15038. "type": "zip",
  15039. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  15040. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  15041. "shasum": ""
  15042. },
  15043. "require": {
  15044. "ext-dom": "*",
  15045. "ext-mbstring": "*",
  15046. "php": ">=8.2",
  15047. "sebastian/diff": "^6.0",
  15048. "sebastian/exporter": "^6.0"
  15049. },
  15050. "require-dev": {
  15051. "phpunit/phpunit": "^11.4"
  15052. },
  15053. "suggest": {
  15054. "ext-bcmath": "For comparing BcMath\\Number objects"
  15055. },
  15056. "type": "library",
  15057. "extra": {
  15058. "branch-alias": {
  15059. "dev-main": "6.3-dev"
  15060. }
  15061. },
  15062. "autoload": {
  15063. "classmap": [
  15064. "src/"
  15065. ]
  15066. },
  15067. "notification-url": "https://packagist.org/downloads/",
  15068. "license": [
  15069. "BSD-3-Clause"
  15070. ],
  15071. "authors": [
  15072. {
  15073. "name": "Sebastian Bergmann",
  15074. "email": "sebastian@phpunit.de"
  15075. },
  15076. {
  15077. "name": "Jeff Welch",
  15078. "email": "whatthejeff@gmail.com"
  15079. },
  15080. {
  15081. "name": "Volker Dusch",
  15082. "email": "github@wallbash.com"
  15083. },
  15084. {
  15085. "name": "Bernhard Schussek",
  15086. "email": "bschussek@2bepublished.at"
  15087. }
  15088. ],
  15089. "description": "Provides the functionality to compare PHP values for equality",
  15090. "homepage": "https://github.com/sebastianbergmann/comparator",
  15091. "keywords": [
  15092. "comparator",
  15093. "compare",
  15094. "equality"
  15095. ],
  15096. "support": {
  15097. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  15098. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  15099. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  15100. },
  15101. "funding": [
  15102. {
  15103. "url": "https://github.com/sebastianbergmann",
  15104. "type": "github"
  15105. }
  15106. ],
  15107. "time": "2025-03-07T06:57:01+00:00"
  15108. },
  15109. {
  15110. "name": "sebastian/complexity",
  15111. "version": "4.0.1",
  15112. "source": {
  15113. "type": "git",
  15114. "url": "https://github.com/sebastianbergmann/complexity.git",
  15115. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  15116. },
  15117. "dist": {
  15118. "type": "zip",
  15119. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  15120. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  15121. "shasum": ""
  15122. },
  15123. "require": {
  15124. "nikic/php-parser": "^5.0",
  15125. "php": ">=8.2"
  15126. },
  15127. "require-dev": {
  15128. "phpunit/phpunit": "^11.0"
  15129. },
  15130. "type": "library",
  15131. "extra": {
  15132. "branch-alias": {
  15133. "dev-main": "4.0-dev"
  15134. }
  15135. },
  15136. "autoload": {
  15137. "classmap": [
  15138. "src/"
  15139. ]
  15140. },
  15141. "notification-url": "https://packagist.org/downloads/",
  15142. "license": [
  15143. "BSD-3-Clause"
  15144. ],
  15145. "authors": [
  15146. {
  15147. "name": "Sebastian Bergmann",
  15148. "email": "sebastian@phpunit.de",
  15149. "role": "lead"
  15150. }
  15151. ],
  15152. "description": "Library for calculating the complexity of PHP code units",
  15153. "homepage": "https://github.com/sebastianbergmann/complexity",
  15154. "support": {
  15155. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  15156. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  15157. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  15158. },
  15159. "funding": [
  15160. {
  15161. "url": "https://github.com/sebastianbergmann",
  15162. "type": "github"
  15163. }
  15164. ],
  15165. "time": "2024-07-03T04:49:50+00:00"
  15166. },
  15167. {
  15168. "name": "sebastian/diff",
  15169. "version": "6.0.2",
  15170. "source": {
  15171. "type": "git",
  15172. "url": "https://github.com/sebastianbergmann/diff.git",
  15173. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  15174. },
  15175. "dist": {
  15176. "type": "zip",
  15177. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  15178. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  15179. "shasum": ""
  15180. },
  15181. "require": {
  15182. "php": ">=8.2"
  15183. },
  15184. "require-dev": {
  15185. "phpunit/phpunit": "^11.0",
  15186. "symfony/process": "^4.2 || ^5"
  15187. },
  15188. "type": "library",
  15189. "extra": {
  15190. "branch-alias": {
  15191. "dev-main": "6.0-dev"
  15192. }
  15193. },
  15194. "autoload": {
  15195. "classmap": [
  15196. "src/"
  15197. ]
  15198. },
  15199. "notification-url": "https://packagist.org/downloads/",
  15200. "license": [
  15201. "BSD-3-Clause"
  15202. ],
  15203. "authors": [
  15204. {
  15205. "name": "Sebastian Bergmann",
  15206. "email": "sebastian@phpunit.de"
  15207. },
  15208. {
  15209. "name": "Kore Nordmann",
  15210. "email": "mail@kore-nordmann.de"
  15211. }
  15212. ],
  15213. "description": "Diff implementation",
  15214. "homepage": "https://github.com/sebastianbergmann/diff",
  15215. "keywords": [
  15216. "diff",
  15217. "udiff",
  15218. "unidiff",
  15219. "unified diff"
  15220. ],
  15221. "support": {
  15222. "issues": "https://github.com/sebastianbergmann/diff/issues",
  15223. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  15224. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  15225. },
  15226. "funding": [
  15227. {
  15228. "url": "https://github.com/sebastianbergmann",
  15229. "type": "github"
  15230. }
  15231. ],
  15232. "time": "2024-07-03T04:53:05+00:00"
  15233. },
  15234. {
  15235. "name": "sebastian/environment",
  15236. "version": "7.2.0",
  15237. "source": {
  15238. "type": "git",
  15239. "url": "https://github.com/sebastianbergmann/environment.git",
  15240. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  15241. },
  15242. "dist": {
  15243. "type": "zip",
  15244. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  15245. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  15246. "shasum": ""
  15247. },
  15248. "require": {
  15249. "php": ">=8.2"
  15250. },
  15251. "require-dev": {
  15252. "phpunit/phpunit": "^11.0"
  15253. },
  15254. "suggest": {
  15255. "ext-posix": "*"
  15256. },
  15257. "type": "library",
  15258. "extra": {
  15259. "branch-alias": {
  15260. "dev-main": "7.2-dev"
  15261. }
  15262. },
  15263. "autoload": {
  15264. "classmap": [
  15265. "src/"
  15266. ]
  15267. },
  15268. "notification-url": "https://packagist.org/downloads/",
  15269. "license": [
  15270. "BSD-3-Clause"
  15271. ],
  15272. "authors": [
  15273. {
  15274. "name": "Sebastian Bergmann",
  15275. "email": "sebastian@phpunit.de"
  15276. }
  15277. ],
  15278. "description": "Provides functionality to handle HHVM/PHP environments",
  15279. "homepage": "https://github.com/sebastianbergmann/environment",
  15280. "keywords": [
  15281. "Xdebug",
  15282. "environment",
  15283. "hhvm"
  15284. ],
  15285. "support": {
  15286. "issues": "https://github.com/sebastianbergmann/environment/issues",
  15287. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  15288. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  15289. },
  15290. "funding": [
  15291. {
  15292. "url": "https://github.com/sebastianbergmann",
  15293. "type": "github"
  15294. }
  15295. ],
  15296. "time": "2024-07-03T04:54:44+00:00"
  15297. },
  15298. {
  15299. "name": "sebastian/exporter",
  15300. "version": "6.3.0",
  15301. "source": {
  15302. "type": "git",
  15303. "url": "https://github.com/sebastianbergmann/exporter.git",
  15304. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  15305. },
  15306. "dist": {
  15307. "type": "zip",
  15308. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  15309. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  15310. "shasum": ""
  15311. },
  15312. "require": {
  15313. "ext-mbstring": "*",
  15314. "php": ">=8.2",
  15315. "sebastian/recursion-context": "^6.0"
  15316. },
  15317. "require-dev": {
  15318. "phpunit/phpunit": "^11.3"
  15319. },
  15320. "type": "library",
  15321. "extra": {
  15322. "branch-alias": {
  15323. "dev-main": "6.1-dev"
  15324. }
  15325. },
  15326. "autoload": {
  15327. "classmap": [
  15328. "src/"
  15329. ]
  15330. },
  15331. "notification-url": "https://packagist.org/downloads/",
  15332. "license": [
  15333. "BSD-3-Clause"
  15334. ],
  15335. "authors": [
  15336. {
  15337. "name": "Sebastian Bergmann",
  15338. "email": "sebastian@phpunit.de"
  15339. },
  15340. {
  15341. "name": "Jeff Welch",
  15342. "email": "whatthejeff@gmail.com"
  15343. },
  15344. {
  15345. "name": "Volker Dusch",
  15346. "email": "github@wallbash.com"
  15347. },
  15348. {
  15349. "name": "Adam Harvey",
  15350. "email": "aharvey@php.net"
  15351. },
  15352. {
  15353. "name": "Bernhard Schussek",
  15354. "email": "bschussek@gmail.com"
  15355. }
  15356. ],
  15357. "description": "Provides the functionality to export PHP variables for visualization",
  15358. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  15359. "keywords": [
  15360. "export",
  15361. "exporter"
  15362. ],
  15363. "support": {
  15364. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  15365. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  15366. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  15367. },
  15368. "funding": [
  15369. {
  15370. "url": "https://github.com/sebastianbergmann",
  15371. "type": "github"
  15372. }
  15373. ],
  15374. "time": "2024-12-05T09:17:50+00:00"
  15375. },
  15376. {
  15377. "name": "sebastian/global-state",
  15378. "version": "7.0.2",
  15379. "source": {
  15380. "type": "git",
  15381. "url": "https://github.com/sebastianbergmann/global-state.git",
  15382. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  15383. },
  15384. "dist": {
  15385. "type": "zip",
  15386. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  15387. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  15388. "shasum": ""
  15389. },
  15390. "require": {
  15391. "php": ">=8.2",
  15392. "sebastian/object-reflector": "^4.0",
  15393. "sebastian/recursion-context": "^6.0"
  15394. },
  15395. "require-dev": {
  15396. "ext-dom": "*",
  15397. "phpunit/phpunit": "^11.0"
  15398. },
  15399. "type": "library",
  15400. "extra": {
  15401. "branch-alias": {
  15402. "dev-main": "7.0-dev"
  15403. }
  15404. },
  15405. "autoload": {
  15406. "classmap": [
  15407. "src/"
  15408. ]
  15409. },
  15410. "notification-url": "https://packagist.org/downloads/",
  15411. "license": [
  15412. "BSD-3-Clause"
  15413. ],
  15414. "authors": [
  15415. {
  15416. "name": "Sebastian Bergmann",
  15417. "email": "sebastian@phpunit.de"
  15418. }
  15419. ],
  15420. "description": "Snapshotting of global state",
  15421. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  15422. "keywords": [
  15423. "global state"
  15424. ],
  15425. "support": {
  15426. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  15427. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  15428. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  15429. },
  15430. "funding": [
  15431. {
  15432. "url": "https://github.com/sebastianbergmann",
  15433. "type": "github"
  15434. }
  15435. ],
  15436. "time": "2024-07-03T04:57:36+00:00"
  15437. },
  15438. {
  15439. "name": "sebastian/lines-of-code",
  15440. "version": "3.0.1",
  15441. "source": {
  15442. "type": "git",
  15443. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  15444. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  15445. },
  15446. "dist": {
  15447. "type": "zip",
  15448. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  15449. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  15450. "shasum": ""
  15451. },
  15452. "require": {
  15453. "nikic/php-parser": "^5.0",
  15454. "php": ">=8.2"
  15455. },
  15456. "require-dev": {
  15457. "phpunit/phpunit": "^11.0"
  15458. },
  15459. "type": "library",
  15460. "extra": {
  15461. "branch-alias": {
  15462. "dev-main": "3.0-dev"
  15463. }
  15464. },
  15465. "autoload": {
  15466. "classmap": [
  15467. "src/"
  15468. ]
  15469. },
  15470. "notification-url": "https://packagist.org/downloads/",
  15471. "license": [
  15472. "BSD-3-Clause"
  15473. ],
  15474. "authors": [
  15475. {
  15476. "name": "Sebastian Bergmann",
  15477. "email": "sebastian@phpunit.de",
  15478. "role": "lead"
  15479. }
  15480. ],
  15481. "description": "Library for counting the lines of code in PHP source code",
  15482. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  15483. "support": {
  15484. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  15485. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  15486. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  15487. },
  15488. "funding": [
  15489. {
  15490. "url": "https://github.com/sebastianbergmann",
  15491. "type": "github"
  15492. }
  15493. ],
  15494. "time": "2024-07-03T04:58:38+00:00"
  15495. },
  15496. {
  15497. "name": "sebastian/object-enumerator",
  15498. "version": "6.0.1",
  15499. "source": {
  15500. "type": "git",
  15501. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  15502. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  15503. },
  15504. "dist": {
  15505. "type": "zip",
  15506. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  15507. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  15508. "shasum": ""
  15509. },
  15510. "require": {
  15511. "php": ">=8.2",
  15512. "sebastian/object-reflector": "^4.0",
  15513. "sebastian/recursion-context": "^6.0"
  15514. },
  15515. "require-dev": {
  15516. "phpunit/phpunit": "^11.0"
  15517. },
  15518. "type": "library",
  15519. "extra": {
  15520. "branch-alias": {
  15521. "dev-main": "6.0-dev"
  15522. }
  15523. },
  15524. "autoload": {
  15525. "classmap": [
  15526. "src/"
  15527. ]
  15528. },
  15529. "notification-url": "https://packagist.org/downloads/",
  15530. "license": [
  15531. "BSD-3-Clause"
  15532. ],
  15533. "authors": [
  15534. {
  15535. "name": "Sebastian Bergmann",
  15536. "email": "sebastian@phpunit.de"
  15537. }
  15538. ],
  15539. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  15540. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  15541. "support": {
  15542. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  15543. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  15544. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  15545. },
  15546. "funding": [
  15547. {
  15548. "url": "https://github.com/sebastianbergmann",
  15549. "type": "github"
  15550. }
  15551. ],
  15552. "time": "2024-07-03T05:00:13+00:00"
  15553. },
  15554. {
  15555. "name": "sebastian/object-reflector",
  15556. "version": "4.0.1",
  15557. "source": {
  15558. "type": "git",
  15559. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  15560. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  15561. },
  15562. "dist": {
  15563. "type": "zip",
  15564. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  15565. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  15566. "shasum": ""
  15567. },
  15568. "require": {
  15569. "php": ">=8.2"
  15570. },
  15571. "require-dev": {
  15572. "phpunit/phpunit": "^11.0"
  15573. },
  15574. "type": "library",
  15575. "extra": {
  15576. "branch-alias": {
  15577. "dev-main": "4.0-dev"
  15578. }
  15579. },
  15580. "autoload": {
  15581. "classmap": [
  15582. "src/"
  15583. ]
  15584. },
  15585. "notification-url": "https://packagist.org/downloads/",
  15586. "license": [
  15587. "BSD-3-Clause"
  15588. ],
  15589. "authors": [
  15590. {
  15591. "name": "Sebastian Bergmann",
  15592. "email": "sebastian@phpunit.de"
  15593. }
  15594. ],
  15595. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  15596. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  15597. "support": {
  15598. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  15599. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  15600. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  15601. },
  15602. "funding": [
  15603. {
  15604. "url": "https://github.com/sebastianbergmann",
  15605. "type": "github"
  15606. }
  15607. ],
  15608. "time": "2024-07-03T05:01:32+00:00"
  15609. },
  15610. {
  15611. "name": "sebastian/recursion-context",
  15612. "version": "6.0.2",
  15613. "source": {
  15614. "type": "git",
  15615. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  15616. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  15617. },
  15618. "dist": {
  15619. "type": "zip",
  15620. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  15621. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  15622. "shasum": ""
  15623. },
  15624. "require": {
  15625. "php": ">=8.2"
  15626. },
  15627. "require-dev": {
  15628. "phpunit/phpunit": "^11.0"
  15629. },
  15630. "type": "library",
  15631. "extra": {
  15632. "branch-alias": {
  15633. "dev-main": "6.0-dev"
  15634. }
  15635. },
  15636. "autoload": {
  15637. "classmap": [
  15638. "src/"
  15639. ]
  15640. },
  15641. "notification-url": "https://packagist.org/downloads/",
  15642. "license": [
  15643. "BSD-3-Clause"
  15644. ],
  15645. "authors": [
  15646. {
  15647. "name": "Sebastian Bergmann",
  15648. "email": "sebastian@phpunit.de"
  15649. },
  15650. {
  15651. "name": "Jeff Welch",
  15652. "email": "whatthejeff@gmail.com"
  15653. },
  15654. {
  15655. "name": "Adam Harvey",
  15656. "email": "aharvey@php.net"
  15657. }
  15658. ],
  15659. "description": "Provides functionality to recursively process PHP variables",
  15660. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  15661. "support": {
  15662. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  15663. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  15664. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  15665. },
  15666. "funding": [
  15667. {
  15668. "url": "https://github.com/sebastianbergmann",
  15669. "type": "github"
  15670. }
  15671. ],
  15672. "time": "2024-07-03T05:10:34+00:00"
  15673. },
  15674. {
  15675. "name": "sebastian/type",
  15676. "version": "5.1.2",
  15677. "source": {
  15678. "type": "git",
  15679. "url": "https://github.com/sebastianbergmann/type.git",
  15680. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  15681. },
  15682. "dist": {
  15683. "type": "zip",
  15684. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  15685. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  15686. "shasum": ""
  15687. },
  15688. "require": {
  15689. "php": ">=8.2"
  15690. },
  15691. "require-dev": {
  15692. "phpunit/phpunit": "^11.3"
  15693. },
  15694. "type": "library",
  15695. "extra": {
  15696. "branch-alias": {
  15697. "dev-main": "5.1-dev"
  15698. }
  15699. },
  15700. "autoload": {
  15701. "classmap": [
  15702. "src/"
  15703. ]
  15704. },
  15705. "notification-url": "https://packagist.org/downloads/",
  15706. "license": [
  15707. "BSD-3-Clause"
  15708. ],
  15709. "authors": [
  15710. {
  15711. "name": "Sebastian Bergmann",
  15712. "email": "sebastian@phpunit.de",
  15713. "role": "lead"
  15714. }
  15715. ],
  15716. "description": "Collection of value objects that represent the types of the PHP type system",
  15717. "homepage": "https://github.com/sebastianbergmann/type",
  15718. "support": {
  15719. "issues": "https://github.com/sebastianbergmann/type/issues",
  15720. "security": "https://github.com/sebastianbergmann/type/security/policy",
  15721. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  15722. },
  15723. "funding": [
  15724. {
  15725. "url": "https://github.com/sebastianbergmann",
  15726. "type": "github"
  15727. }
  15728. ],
  15729. "time": "2025-03-18T13:35:50+00:00"
  15730. },
  15731. {
  15732. "name": "sebastian/version",
  15733. "version": "5.0.2",
  15734. "source": {
  15735. "type": "git",
  15736. "url": "https://github.com/sebastianbergmann/version.git",
  15737. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  15738. },
  15739. "dist": {
  15740. "type": "zip",
  15741. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  15742. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  15743. "shasum": ""
  15744. },
  15745. "require": {
  15746. "php": ">=8.2"
  15747. },
  15748. "type": "library",
  15749. "extra": {
  15750. "branch-alias": {
  15751. "dev-main": "5.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 that helps with managing the version number of Git-hosted PHP projects",
  15771. "homepage": "https://github.com/sebastianbergmann/version",
  15772. "support": {
  15773. "issues": "https://github.com/sebastianbergmann/version/issues",
  15774. "security": "https://github.com/sebastianbergmann/version/security/policy",
  15775. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  15776. },
  15777. "funding": [
  15778. {
  15779. "url": "https://github.com/sebastianbergmann",
  15780. "type": "github"
  15781. }
  15782. ],
  15783. "time": "2024-10-09T05:16:32+00:00"
  15784. },
  15785. {
  15786. "name": "staabm/side-effects-detector",
  15787. "version": "1.0.5",
  15788. "source": {
  15789. "type": "git",
  15790. "url": "https://github.com/staabm/side-effects-detector.git",
  15791. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  15792. },
  15793. "dist": {
  15794. "type": "zip",
  15795. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  15796. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  15797. "shasum": ""
  15798. },
  15799. "require": {
  15800. "ext-tokenizer": "*",
  15801. "php": "^7.4 || ^8.0"
  15802. },
  15803. "require-dev": {
  15804. "phpstan/extension-installer": "^1.4.3",
  15805. "phpstan/phpstan": "^1.12.6",
  15806. "phpunit/phpunit": "^9.6.21",
  15807. "symfony/var-dumper": "^5.4.43",
  15808. "tomasvotruba/type-coverage": "1.0.0",
  15809. "tomasvotruba/unused-public": "1.0.0"
  15810. },
  15811. "type": "library",
  15812. "autoload": {
  15813. "classmap": [
  15814. "lib/"
  15815. ]
  15816. },
  15817. "notification-url": "https://packagist.org/downloads/",
  15818. "license": [
  15819. "MIT"
  15820. ],
  15821. "description": "A static analysis tool to detect side effects in PHP code",
  15822. "keywords": [
  15823. "static analysis"
  15824. ],
  15825. "support": {
  15826. "issues": "https://github.com/staabm/side-effects-detector/issues",
  15827. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  15828. },
  15829. "funding": [
  15830. {
  15831. "url": "https://github.com/staabm",
  15832. "type": "github"
  15833. }
  15834. ],
  15835. "time": "2024-10-20T05:08:20+00:00"
  15836. },
  15837. {
  15838. "name": "ta-tikoma/phpunit-architecture-test",
  15839. "version": "0.8.4",
  15840. "source": {
  15841. "type": "git",
  15842. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  15843. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  15844. },
  15845. "dist": {
  15846. "type": "zip",
  15847. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  15848. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  15849. "shasum": ""
  15850. },
  15851. "require": {
  15852. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  15853. "php": "^8.1.0",
  15854. "phpdocumentor/reflection-docblock": "^5.3.0",
  15855. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  15856. "symfony/finder": "^6.4.0 || ^7.0.0"
  15857. },
  15858. "require-dev": {
  15859. "laravel/pint": "^1.13.7",
  15860. "phpstan/phpstan": "^1.10.52"
  15861. },
  15862. "type": "library",
  15863. "autoload": {
  15864. "psr-4": {
  15865. "PHPUnit\\Architecture\\": "src/"
  15866. }
  15867. },
  15868. "notification-url": "https://packagist.org/downloads/",
  15869. "license": [
  15870. "MIT"
  15871. ],
  15872. "authors": [
  15873. {
  15874. "name": "Ni Shi",
  15875. "email": "futik0ma011@gmail.com"
  15876. },
  15877. {
  15878. "name": "Nuno Maduro",
  15879. "email": "enunomaduro@gmail.com"
  15880. }
  15881. ],
  15882. "description": "Methods for testing application architecture",
  15883. "keywords": [
  15884. "architecture",
  15885. "phpunit",
  15886. "stucture",
  15887. "test",
  15888. "testing"
  15889. ],
  15890. "support": {
  15891. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  15892. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  15893. },
  15894. "time": "2024-01-05T14:10:56+00:00"
  15895. },
  15896. {
  15897. "name": "theseer/tokenizer",
  15898. "version": "1.2.3",
  15899. "source": {
  15900. "type": "git",
  15901. "url": "https://github.com/theseer/tokenizer.git",
  15902. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  15903. },
  15904. "dist": {
  15905. "type": "zip",
  15906. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  15907. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  15908. "shasum": ""
  15909. },
  15910. "require": {
  15911. "ext-dom": "*",
  15912. "ext-tokenizer": "*",
  15913. "ext-xmlwriter": "*",
  15914. "php": "^7.2 || ^8.0"
  15915. },
  15916. "type": "library",
  15917. "autoload": {
  15918. "classmap": [
  15919. "src/"
  15920. ]
  15921. },
  15922. "notification-url": "https://packagist.org/downloads/",
  15923. "license": [
  15924. "BSD-3-Clause"
  15925. ],
  15926. "authors": [
  15927. {
  15928. "name": "Arne Blankerts",
  15929. "email": "arne@blankerts.de",
  15930. "role": "Developer"
  15931. }
  15932. ],
  15933. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  15934. "support": {
  15935. "issues": "https://github.com/theseer/tokenizer/issues",
  15936. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  15937. },
  15938. "funding": [
  15939. {
  15940. "url": "https://github.com/theseer",
  15941. "type": "github"
  15942. }
  15943. ],
  15944. "time": "2024-03-03T12:36:25+00:00"
  15945. }
  15946. ],
  15947. "aliases": [],
  15948. "minimum-stability": "stable",
  15949. "stability-flags": {
  15950. "bagisto/image-cache": 20
  15951. },
  15952. "prefer-stable": true,
  15953. "prefer-lowest": false,
  15954. "platform": {
  15955. "php": "^8.2",
  15956. "ext-calendar": "*",
  15957. "ext-curl": "*",
  15958. "ext-intl": "*",
  15959. "ext-mbstring": "*",
  15960. "ext-openssl": "*",
  15961. "ext-pdo": "*",
  15962. "ext-pdo_mysql": "*",
  15963. "ext-tokenizer": "*"
  15964. },
  15965. "platform-dev": [],
  15966. "plugin-api-version": "2.3.0"
  15967. }