composer.lock 591 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270152711527215273152741527515276152771527815279152801528115282152831528415285152861528715288152891529015291152921529315294152951529615297152981529915300153011530215303153041530515306153071530815309153101531115312153131531415315153161531715318153191532015321153221532315324153251532615327153281532915330153311533215333153341533515336153371533815339153401534115342153431534415345153461534715348153491535015351153521535315354153551535615357153581535915360153611536215363153641536515366153671536815369153701537115372153731537415375153761537715378153791538015381153821538315384153851538615387153881538915390153911539215393153941539515396153971539815399154001540115402154031540415405154061540715408154091541015411154121541315414154151541615417154181541915420154211542215423154241542515426154271542815429154301543115432154331543415435154361543715438154391544015441154421544315444154451544615447154481544915450154511545215453154541545515456154571545815459154601546115462154631546415465154661546715468154691547015471154721547315474154751547615477154781547915480154811548215483154841548515486154871548815489154901549115492154931549415495154961549715498154991550015501155021550315504155051550615507155081550915510155111551215513155141551515516155171551815519155201552115522155231552415525155261552715528155291553015531155321553315534155351553615537155381553915540155411554215543155441554515546155471554815549155501555115552155531555415555155561555715558155591556015561155621556315564155651556615567155681556915570155711557215573155741557515576155771557815579155801558115582155831558415585155861558715588155891559015591155921559315594155951559615597155981559915600156011560215603156041560515606156071560815609156101561115612156131561415615156161561715618156191562015621156221562315624156251562615627156281562915630156311563215633156341563515636156371563815639156401564115642156431564415645156461564715648156491565015651156521565315654156551565615657156581565915660156611566215663156641566515666156671566815669156701567115672156731567415675156761567715678156791568015681156821568315684156851568615687156881568915690156911569215693156941569515696156971569815699157001570115702157031570415705157061570715708157091571015711157121571315714157151571615717157181571915720157211572215723157241572515726157271572815729157301573115732157331573415735157361573715738157391574015741157421574315744157451574615747157481574915750157511575215753157541575515756157571575815759157601576115762157631576415765157661576715768157691577015771157721577315774157751577615777157781577915780157811578215783157841578515786157871578815789157901579115792157931579415795157961579715798157991580015801158021580315804158051580615807158081580915810158111581215813158141581515816158171581815819158201582115822158231582415825158261582715828158291583015831158321583315834158351583615837158381583915840158411584215843158441584515846158471584815849158501585115852158531585415855158561585715858158591586015861158621586315864158651586615867158681586915870158711587215873158741587515876158771587815879158801588115882158831588415885158861588715888158891589015891158921589315894158951589615897158981589915900159011590215903159041590515906159071590815909159101591115912159131591415915159161591715918159191592015921159221592315924159251592615927159281592915930159311593215933159341593515936159371593815939159401594115942159431594415945159461594715948159491595015951159521595315954159551595615957159581595915960159611596215963159641596515966159671596815969159701597115972159731597415975159761597715978159791598015981159821598315984159851598615987159881598915990159911599215993159941599515996159971599815999160001600116002160031600416005160061600716008160091601016011160121601316014160151601616017160181601916020160211602216023160241602516026160271602816029160301603116032160331603416035160361603716038160391604016041160421604316044160451604616047160481604916050160511605216053160541605516056160571605816059160601606116062160631606416065160661606716068160691607016071160721607316074160751607616077160781607916080160811608216083160841608516086160871608816089160901609116092160931609416095160961609716098160991610016101161021610316104161051610616107161081610916110161111611216113161141611516116161171611816119161201612116122161231612416125161261612716128161291613016131161321613316134161351613616137161381613916140161411614216143161441614516146161471614816149161501615116152161531615416155161561615716158161591616016161161621616316164161651616616167161681616916170161711617216173161741617516176161771617816179161801618116182161831618416185161861618716188161891619016191161921619316194161951619616197161981619916200162011620216203162041620516206162071620816209162101621116212162131621416215162161621716218162191622016221162221622316224162251622616227162281622916230162311623216233162341623516236162371623816239162401624116242162431624416245162461624716248162491625016251162521625316254162551625616257162581625916260162611626216263162641626516266162671626816269162701627116272162731627416275162761627716278162791628016281162821628316284162851628616287162881628916290162911629216293162941629516296162971629816299163001630116302163031630416305163061630716308163091631016311163121631316314163151631616317163181631916320163211632216323163241632516326163271632816329163301633116332163331633416335163361633716338163391634016341163421634316344163451634616347163481634916350163511635216353163541635516356163571635816359163601636116362163631636416365163661636716368
  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": "d8c84f1ab224d9264bc558050dc253b8",
  8. "packages": [
  9. {
  10. "name": "api-platform/documentation",
  11. "version": "v4.3.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/api-platform/documentation.git",
  15. "reference": "a63a3a7f020b6a001b1228c5bd916e1a76887d1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/api-platform/documentation/zipball/a63a3a7f020b6a001b1228c5bd916e1a76887d1d",
  20. "reference": "a63a3a7f020b6a001b1228c5bd916e1a76887d1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "api-platform/metadata": "^4.3",
  25. "php": ">=8.2"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^12.2"
  29. },
  30. "type": "project",
  31. "extra": {
  32. "thanks": {
  33. "url": "https://github.com/api-platform/api-platform",
  34. "name": "api-platform/api-platform"
  35. },
  36. "symfony": {
  37. "require": "^6.4 || ^7.0 || ^8.0"
  38. },
  39. "branch-alias": {
  40. "dev-3.4": "3.4.x-dev",
  41. "dev-4.1": "4.1.x-dev",
  42. "dev-4.2": "4.2.x-dev",
  43. "dev-main": "4.4.x-dev"
  44. }
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "ApiPlatform\\Documentation\\": ""
  49. }
  50. },
  51. "notification-url": "https://packagist.org/downloads/",
  52. "license": [
  53. "MIT"
  54. ],
  55. "authors": [
  56. {
  57. "name": "Kévin Dunglas",
  58. "email": "kevin@dunglas.fr",
  59. "homepage": "https://dunglas.fr"
  60. },
  61. {
  62. "name": "API Platform Community",
  63. "homepage": "https://api-platform.com/community/contributors"
  64. }
  65. ],
  66. "description": "API Platform documentation controller.",
  67. "support": {
  68. "source": "https://github.com/api-platform/documentation/tree/v4.3.3"
  69. },
  70. "time": "2026-03-06T15:07:49+00:00"
  71. },
  72. {
  73. "name": "api-platform/graphql",
  74. "version": "v4.2.3",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/api-platform/graphql.git",
  78. "reference": "a50960a0ff297d7580e261bc3e18ee587c5de47c"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/api-platform/graphql/zipball/a50960a0ff297d7580e261bc3e18ee587c5de47c",
  83. "reference": "a50960a0ff297d7580e261bc3e18ee587c5de47c",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "api-platform/metadata": "^4.2.0@alpha",
  88. "api-platform/serializer": "^4.2.0@alpha",
  89. "api-platform/state": "^4.2.0@alpha",
  90. "php": ">=8.2",
  91. "symfony/property-info": "^7.1",
  92. "symfony/serializer": "^6.4 || ^7.1",
  93. "symfony/type-info": "^7.3",
  94. "webonyx/graphql-php": "^15.0",
  95. "willdurand/negotiation": "^3.1"
  96. },
  97. "conflict": {
  98. "doctrine/inflector": "<2.0",
  99. "symfony/http-client": "<6.4"
  100. },
  101. "require-dev": {
  102. "api-platform/validator": "^4.1",
  103. "phpspec/prophecy-phpunit": "^2.2",
  104. "phpunit/phpunit": "11.5.x-dev",
  105. "symfony/mercure-bundle": "*",
  106. "symfony/routing": "^6.4 || ^7.0",
  107. "twig/twig": "^1.42.3 || ^2.12 || ^3.0"
  108. },
  109. "suggest": {
  110. "api-platform/doctrine-odm": "To support doctrine ODM state options.",
  111. "api-platform/doctrine-orm": "To support doctrine ORM state options.",
  112. "api-platform/validator": "To support validation."
  113. },
  114. "type": "library",
  115. "extra": {
  116. "thanks": {
  117. "url": "https://github.com/api-platform/api-platform",
  118. "name": "api-platform/api-platform"
  119. },
  120. "symfony": {
  121. "require": "^6.4 || ^7.0"
  122. },
  123. "branch-alias": {
  124. "dev-3.4": "3.4.x-dev",
  125. "dev-4.1": "4.1.x-dev",
  126. "dev-4.2": "4.2.x-dev",
  127. "dev-main": "4.3.x-dev"
  128. }
  129. },
  130. "autoload": {
  131. "psr-4": {
  132. "ApiPlatform\\GraphQl\\": ""
  133. },
  134. "exclude-from-classmap": [
  135. "/Tests/"
  136. ]
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "MIT"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Kévin Dunglas",
  145. "email": "kevin@dunglas.fr",
  146. "homepage": "https://dunglas.fr"
  147. },
  148. {
  149. "name": "API Platform Community",
  150. "homepage": "https://api-platform.com/community/contributors"
  151. }
  152. ],
  153. "description": "Build GraphQL API endpoints",
  154. "homepage": "https://api-platform.com",
  155. "keywords": [
  156. "api",
  157. "graphql"
  158. ],
  159. "support": {
  160. "source": "https://github.com/api-platform/graphql/tree/v4.2.3"
  161. },
  162. "time": "2025-10-31T11:51:24+00:00"
  163. },
  164. {
  165. "name": "api-platform/hydra",
  166. "version": "v4.3.3",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/api-platform/hydra.git",
  170. "reference": "bb9f7107a0bbfbe6e7b93130bde9829f0cc71529"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/api-platform/hydra/zipball/bb9f7107a0bbfbe6e7b93130bde9829f0cc71529",
  175. "reference": "bb9f7107a0bbfbe6e7b93130bde9829f0cc71529",
  176. "shasum": ""
  177. },
  178. "require": {
  179. "api-platform/documentation": "^4.3",
  180. "api-platform/json-schema": "^4.3",
  181. "api-platform/jsonld": "^4.3",
  182. "api-platform/metadata": "^4.3",
  183. "api-platform/serializer": "^4.3",
  184. "api-platform/state": "^4.3",
  185. "php": ">=8.2",
  186. "symfony/type-info": "^7.3 || ^8.0",
  187. "symfony/web-link": "^6.4 || ^7.1 || ^8.0"
  188. },
  189. "require-dev": {
  190. "api-platform/doctrine-common": "^4.3",
  191. "api-platform/doctrine-odm": "^4.3",
  192. "api-platform/doctrine-orm": "^4.3",
  193. "phpspec/prophecy": "^1.19",
  194. "phpspec/prophecy-phpunit": "^2.2",
  195. "phpunit/phpunit": "^12.2"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "thanks": {
  200. "url": "https://github.com/api-platform/api-platform",
  201. "name": "api-platform/api-platform"
  202. },
  203. "symfony": {
  204. "require": "^6.4 || ^7.0 || ^8.0"
  205. },
  206. "branch-alias": {
  207. "dev-3.4": "3.4.x-dev",
  208. "dev-4.1": "4.1.x-dev",
  209. "dev-4.2": "4.2.x-dev",
  210. "dev-main": "4.4.x-dev"
  211. }
  212. },
  213. "autoload": {
  214. "psr-4": {
  215. "ApiPlatform\\Hydra\\": ""
  216. },
  217. "exclude-from-classmap": [
  218. "/Tests/"
  219. ]
  220. },
  221. "notification-url": "https://packagist.org/downloads/",
  222. "license": [
  223. "MIT"
  224. ],
  225. "authors": [
  226. {
  227. "name": "Kévin Dunglas",
  228. "email": "kevin@dunglas.fr",
  229. "homepage": "https://dunglas.fr"
  230. },
  231. {
  232. "name": "API Platform Community",
  233. "homepage": "https://api-platform.com/community/contributors"
  234. }
  235. ],
  236. "description": "API Hydra support",
  237. "homepage": "https://api-platform.com",
  238. "keywords": [
  239. "Hydra",
  240. "JSON-LD",
  241. "api",
  242. "graphql",
  243. "jsonapi",
  244. "rest"
  245. ],
  246. "support": {
  247. "source": "https://github.com/api-platform/hydra/tree/v4.3.3"
  248. },
  249. "time": "2026-03-20T09:00:10+00:00"
  250. },
  251. {
  252. "name": "api-platform/json-api",
  253. "version": "v4.3.3",
  254. "source": {
  255. "type": "git",
  256. "url": "https://github.com/api-platform/json-api.git",
  257. "reference": "64bf11cbcaaf5cba3f6fceb243ed57d1ed6e2827"
  258. },
  259. "dist": {
  260. "type": "zip",
  261. "url": "https://api.github.com/repos/api-platform/json-api/zipball/64bf11cbcaaf5cba3f6fceb243ed57d1ed6e2827",
  262. "reference": "64bf11cbcaaf5cba3f6fceb243ed57d1ed6e2827",
  263. "shasum": ""
  264. },
  265. "require": {
  266. "api-platform/documentation": "^4.3",
  267. "api-platform/json-schema": "^4.3",
  268. "api-platform/metadata": "^4.3",
  269. "api-platform/serializer": "^4.3",
  270. "api-platform/state": "^4.3",
  271. "php": ">=8.2",
  272. "symfony/error-handler": "^6.4 || ^7.0 || ^8.0",
  273. "symfony/http-foundation": "^6.4.14 || ^7.0 || ^8.0",
  274. "symfony/type-info": "^7.3 || ^8.0"
  275. },
  276. "require-dev": {
  277. "phpspec/prophecy": "^1.19",
  278. "phpspec/prophecy-phpunit": "^2.2",
  279. "phpunit/phpunit": "^12.2",
  280. "symfony/type-info": "^7.3 || ^8.0"
  281. },
  282. "type": "library",
  283. "extra": {
  284. "thanks": {
  285. "url": "https://github.com/api-platform/api-platform",
  286. "name": "api-platform/api-platform"
  287. },
  288. "symfony": {
  289. "require": "^6.4 || ^7.0 || ^8.0"
  290. },
  291. "branch-alias": {
  292. "dev-3.4": "3.4.x-dev",
  293. "dev-4.1": "4.1.x-dev",
  294. "dev-4.2": "4.2.x-dev",
  295. "dev-main": "4.4.x-dev"
  296. }
  297. },
  298. "autoload": {
  299. "psr-4": {
  300. "ApiPlatform\\JsonApi\\": ""
  301. },
  302. "exclude-from-classmap": [
  303. "/Tests/"
  304. ]
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Kévin Dunglas",
  313. "email": "kevin@dunglas.fr",
  314. "homepage": "https://dunglas.fr"
  315. },
  316. {
  317. "name": "API Platform Community",
  318. "homepage": "https://api-platform.com/community/contributors"
  319. }
  320. ],
  321. "description": "API JSON-API support",
  322. "homepage": "https://api-platform.com",
  323. "keywords": [
  324. "api",
  325. "jsonapi",
  326. "rest"
  327. ],
  328. "support": {
  329. "source": "https://github.com/api-platform/json-api/tree/v4.3.3"
  330. },
  331. "time": "2026-03-13T11:03:46+00:00"
  332. },
  333. {
  334. "name": "api-platform/json-hal",
  335. "version": "v4.1.28",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/api-platform/json-hal.git",
  339. "reference": "07f97ae8317df9161a718243a9d7515611614eb8"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/api-platform/json-hal/zipball/07f97ae8317df9161a718243a9d7515611614eb8",
  344. "reference": "07f97ae8317df9161a718243a9d7515611614eb8",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "api-platform/documentation": "^4.1.11",
  349. "api-platform/metadata": "^4.1.11",
  350. "api-platform/serializer": "^4.1.11",
  351. "api-platform/state": "^4.1.11",
  352. "php": ">=8.2"
  353. },
  354. "require-dev": {
  355. "api-platform/json-schema": "^4.1.11",
  356. "phpunit/phpunit": "11.5.x-dev"
  357. },
  358. "type": "library",
  359. "extra": {
  360. "thanks": {
  361. "url": "https://github.com/api-platform/api-platform",
  362. "name": "api-platform/api-platform"
  363. },
  364. "symfony": {
  365. "require": "^6.4 || ^7.0"
  366. },
  367. "branch-alias": {
  368. "dev-3.4": "3.4.x-dev",
  369. "dev-4.1": "4.1.x-dev",
  370. "dev-main": "4.2.x-dev"
  371. }
  372. },
  373. "autoload": {
  374. "psr-4": {
  375. "ApiPlatform\\Hal\\": ""
  376. },
  377. "exclude-from-classmap": [
  378. "/Tests/"
  379. ]
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Kévin Dunglas",
  388. "email": "kevin@dunglas.fr",
  389. "homepage": "https://dunglas.fr"
  390. },
  391. {
  392. "name": "API Platform Community",
  393. "homepage": "https://api-platform.com/community/contributors"
  394. }
  395. ],
  396. "description": "API Hal support",
  397. "homepage": "https://api-platform.com",
  398. "keywords": [
  399. "api",
  400. "hal",
  401. "rest"
  402. ],
  403. "support": {
  404. "source": "https://github.com/api-platform/json-hal/tree/v4.1.28"
  405. },
  406. "abandoned": "api-platform/hal",
  407. "time": "2025-09-15T09:57:10+00:00"
  408. },
  409. {
  410. "name": "api-platform/json-schema",
  411. "version": "v4.3.3",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/api-platform/json-schema.git",
  415. "reference": "0f66e93719fd65938528aeff900737471acb515a"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/api-platform/json-schema/zipball/0f66e93719fd65938528aeff900737471acb515a",
  420. "reference": "0f66e93719fd65938528aeff900737471acb515a",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "api-platform/metadata": "^4.3",
  425. "php": ">=8.2",
  426. "symfony/console": "^6.4 || ^7.0 || ^8.0",
  427. "symfony/property-info": "^6.4 || ^7.1 || ^8.0",
  428. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  429. "symfony/type-info": "^7.3 || ^8.0",
  430. "symfony/uid": "^6.4 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpspec/prophecy-phpunit": "^2.2",
  434. "phpunit/phpunit": "^12.2"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "thanks": {
  439. "url": "https://github.com/api-platform/api-platform",
  440. "name": "api-platform/api-platform"
  441. },
  442. "symfony": {
  443. "require": "^6.4 || ^7.0 || ^8.0"
  444. },
  445. "branch-alias": {
  446. "dev-3.4": "3.4.x-dev",
  447. "dev-4.1": "4.1.x-dev",
  448. "dev-4.2": "4.2.x-dev",
  449. "dev-main": "4.4.x-dev"
  450. }
  451. },
  452. "autoload": {
  453. "psr-4": {
  454. "ApiPlatform\\JsonSchema\\": ""
  455. },
  456. "exclude-from-classmap": [
  457. "/Tests/"
  458. ]
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Kévin Dunglas",
  467. "email": "kevin@dunglas.fr",
  468. "homepage": "https://dunglas.fr"
  469. },
  470. {
  471. "name": "API Platform Community",
  472. "homepage": "https://api-platform.com/community/contributors"
  473. }
  474. ],
  475. "description": "Generate a JSON Schema from a PHP class",
  476. "homepage": "https://api-platform.com",
  477. "keywords": [
  478. "JSON Schema",
  479. "api",
  480. "json",
  481. "openapi",
  482. "rest",
  483. "swagger"
  484. ],
  485. "support": {
  486. "source": "https://github.com/api-platform/json-schema/tree/v4.3.3"
  487. },
  488. "time": "2026-03-06T15:07:49+00:00"
  489. },
  490. {
  491. "name": "api-platform/jsonld",
  492. "version": "v4.3.3",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/api-platform/jsonld.git",
  496. "reference": "64bd84ac44d6c6c51142a26bfa7d4c6237d20593"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/api-platform/jsonld/zipball/64bd84ac44d6c6c51142a26bfa7d4c6237d20593",
  501. "reference": "64bd84ac44d6c6c51142a26bfa7d4c6237d20593",
  502. "shasum": ""
  503. },
  504. "require": {
  505. "api-platform/metadata": "^4.3",
  506. "api-platform/serializer": "^4.3",
  507. "api-platform/state": "^4.3",
  508. "php": ">=8.2"
  509. },
  510. "require-dev": {
  511. "phpunit/phpunit": "^12.2",
  512. "symfony/type-info": "^7.3 || ^8.0"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "thanks": {
  517. "url": "https://github.com/api-platform/api-platform",
  518. "name": "api-platform/api-platform"
  519. },
  520. "symfony": {
  521. "require": "^6.4 || ^7.0 || ^8.0"
  522. },
  523. "branch-alias": {
  524. "dev-3.4": "3.4.x-dev",
  525. "dev-4.1": "4.1.x-dev",
  526. "dev-4.2": "4.2.x-dev",
  527. "dev-main": "4.4.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "files": [
  532. "./HydraContext.php"
  533. ],
  534. "psr-4": {
  535. "ApiPlatform\\JsonLd\\": ""
  536. },
  537. "exclude-from-classmap": [
  538. "/Tests/"
  539. ]
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Kévin Dunglas",
  548. "email": "kevin@dunglas.fr",
  549. "homepage": "https://dunglas.fr"
  550. },
  551. {
  552. "name": "API Platform Community",
  553. "homepage": "https://api-platform.com/community/contributors"
  554. }
  555. ],
  556. "description": "API JSON-LD support",
  557. "homepage": "https://api-platform.com",
  558. "keywords": [
  559. "Hydra",
  560. "JSON-LD",
  561. "api",
  562. "graphql",
  563. "rest"
  564. ],
  565. "support": {
  566. "source": "https://github.com/api-platform/jsonld/tree/v4.3.3"
  567. },
  568. "time": "2026-03-13T08:23:46+00:00"
  569. },
  570. {
  571. "name": "api-platform/laravel",
  572. "version": "v4.1.25",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/api-platform/laravel.git",
  576. "reference": "f3aea0aef37e975844c48dae488cdc0d9a771576"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/api-platform/laravel/zipball/f3aea0aef37e975844c48dae488cdc0d9a771576",
  581. "reference": "f3aea0aef37e975844c48dae488cdc0d9a771576",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "api-platform/documentation": "^4.1.11",
  586. "api-platform/hydra": "^4.1.11",
  587. "api-platform/json-api": "^4.1.11",
  588. "api-platform/json-hal": "^4.1.11",
  589. "api-platform/json-schema": "^4.1.11",
  590. "api-platform/jsonld": "^4.1.11",
  591. "api-platform/metadata": "^4.1.11",
  592. "api-platform/openapi": "^4.1.11",
  593. "api-platform/serializer": "^4.1.11",
  594. "api-platform/state": "^4.1.11",
  595. "illuminate/config": "^11.0 || ^12.0",
  596. "illuminate/container": "^11.0 || ^12.0",
  597. "illuminate/contracts": "^11.0 || ^12.0",
  598. "illuminate/database": "^11.0 || ^12.0",
  599. "illuminate/http": "^11.0 || ^12.0",
  600. "illuminate/pagination": "^11.0 || ^12.0",
  601. "illuminate/routing": "^11.0 || ^12.0",
  602. "illuminate/support": "^11.0 || ^12.0",
  603. "laravel/framework": "^11.0 || ^12.0",
  604. "php": ">=8.2",
  605. "symfony/web-link": "^6.4 || ^7.1",
  606. "willdurand/negotiation": "^3.1"
  607. },
  608. "require-dev": {
  609. "api-platform/graphql": "^4.1",
  610. "api-platform/http-cache": "^4.1",
  611. "doctrine/dbal": "^4.0",
  612. "larastan/larastan": "^2.0 || ^3.0",
  613. "laravel/sanctum": "^4.0",
  614. "orchestra/testbench": "^9.1",
  615. "phpdocumentor/type-resolver": "^1.7",
  616. "phpstan/phpdoc-parser": "^1.29 || ^2.0",
  617. "phpunit/phpunit": "11.5.x-dev",
  618. "symfony/http-client": "^7.3"
  619. },
  620. "suggest": {
  621. "api-platform/graphql": "Enable GraphQl support.",
  622. "api-platform/http-cache": "Enable HTTP Cache support.",
  623. "phpstan/phpdoc-parser": "To support extracting metadata from PHPDoc."
  624. },
  625. "type": "library",
  626. "extra": {
  627. "thanks": {
  628. "url": "https://github.com/api-platform/api-platform",
  629. "name": "api-platform/api-platform"
  630. },
  631. "laravel": {
  632. "providers": [
  633. "ApiPlatform\\Laravel\\ApiPlatformProvider",
  634. "ApiPlatform\\Laravel\\ApiPlatformDeferredProvider",
  635. "ApiPlatform\\Laravel\\Eloquent\\ApiPlatformEventProvider"
  636. ]
  637. },
  638. "symfony": {
  639. "require": "^6.4 || ^7.1"
  640. },
  641. "branch-alias": {
  642. "dev-3.4": "3.4.x-dev",
  643. "dev-4.1": "4.1.x-dev",
  644. "dev-main": "4.2.x-dev"
  645. }
  646. },
  647. "autoload": {
  648. "psr-4": {
  649. "ApiPlatform\\Laravel\\": ""
  650. },
  651. "exclude-from-classmap": [
  652. "/Tests/",
  653. "/workbench/"
  654. ]
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Kévin Dunglas",
  663. "email": "kevin@dunglas.fr",
  664. "homepage": "https://dunglas.fr"
  665. },
  666. {
  667. "name": "API Platform Community",
  668. "homepage": "https://api-platform.com/community/contributors"
  669. }
  670. ],
  671. "description": "API Platform support for Laravel",
  672. "homepage": "https://api-platform.com",
  673. "keywords": [
  674. "Hydra",
  675. "JSON-LD",
  676. "api",
  677. "graphql",
  678. "hal",
  679. "jsonapi",
  680. "laravel",
  681. "openapi",
  682. "rest",
  683. "swagger"
  684. ],
  685. "support": {
  686. "source": "https://github.com/api-platform/laravel/tree/v4.1.25"
  687. },
  688. "time": "2025-09-26T10:26:42+00:00"
  689. },
  690. {
  691. "name": "api-platform/metadata",
  692. "version": "v4.3.3",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/api-platform/metadata.git",
  696. "reference": "e5d54902ad9817f1734ef39fe5b34d3c9b505f27"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/api-platform/metadata/zipball/e5d54902ad9817f1734ef39fe5b34d3c9b505f27",
  701. "reference": "e5d54902ad9817f1734ef39fe5b34d3c9b505f27",
  702. "shasum": ""
  703. },
  704. "require": {
  705. "doctrine/inflector": "^2.0",
  706. "php": ">=8.2",
  707. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  708. "psr/log": "^1.0 || ^2.0 || ^3.0",
  709. "symfony/property-info": "^6.4 || ^7.1 || ^8.0",
  710. "symfony/string": "^6.4 || ^7.0 || ^8.0",
  711. "symfony/type-info": "^7.3 || ^8.0"
  712. },
  713. "require-dev": {
  714. "api-platform/json-schema": "^4.3",
  715. "api-platform/openapi": "^4.3",
  716. "api-platform/state": "^4.3",
  717. "phpspec/prophecy-phpunit": "^2.2",
  718. "phpstan/phpdoc-parser": "^1.29 || ^2.0",
  719. "phpunit/phpunit": "^12.2",
  720. "symfony/config": "^6.4 || ^7.0 || ^8.0",
  721. "symfony/routing": "^6.4 || ^7.0 || ^8.0",
  722. "symfony/var-dumper": "^6.4 || ^7.0 || ^8.0",
  723. "symfony/web-link": "^6.4 || ^7.1 || ^8.0",
  724. "symfony/yaml": "^6.4 || ^7.0 || ^8.0"
  725. },
  726. "suggest": {
  727. "phpstan/phpdoc-parser": "For PHP documentation support.",
  728. "symfony/config": "For XML resource configuration.",
  729. "symfony/yaml": "For YAML resource configuration."
  730. },
  731. "type": "library",
  732. "extra": {
  733. "thanks": {
  734. "url": "https://github.com/api-platform/api-platform",
  735. "name": "api-platform/api-platform"
  736. },
  737. "symfony": {
  738. "require": "^6.4 || ^7.0 || ^8.0"
  739. },
  740. "branch-alias": {
  741. "dev-3.4": "3.4.x-dev",
  742. "dev-4.1": "4.1.x-dev",
  743. "dev-4.2": "4.2.x-dev",
  744. "dev-main": "4.4.x-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "ApiPlatform\\Metadata\\": ""
  750. },
  751. "exclude-from-classmap": [
  752. "/Tests/"
  753. ]
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Kévin Dunglas",
  762. "email": "kevin@dunglas.fr",
  763. "homepage": "https://dunglas.fr"
  764. },
  765. {
  766. "name": "API Platform Community",
  767. "homepage": "https://api-platform.com/community/contributors"
  768. }
  769. ],
  770. "description": "API Resource-oriented metadata attributes and factories",
  771. "homepage": "https://api-platform.com",
  772. "keywords": [
  773. "Hydra",
  774. "JSON-LD",
  775. "api",
  776. "graphql",
  777. "hal",
  778. "jsonapi",
  779. "openapi",
  780. "rest",
  781. "swagger"
  782. ],
  783. "support": {
  784. "source": "https://github.com/api-platform/metadata/tree/v4.3.3"
  785. },
  786. "time": "2026-03-27T06:51:10+00:00"
  787. },
  788. {
  789. "name": "api-platform/openapi",
  790. "version": "v4.3.3",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/api-platform/openapi.git",
  794. "reference": "6ae725b4d2cee60972c18c4bd6148b63ccf16785"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/api-platform/openapi/zipball/6ae725b4d2cee60972c18c4bd6148b63ccf16785",
  799. "reference": "6ae725b4d2cee60972c18c4bd6148b63ccf16785",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "api-platform/json-schema": "^4.3",
  804. "api-platform/metadata": "^4.3",
  805. "api-platform/state": "^4.3",
  806. "php": ">=8.2",
  807. "symfony/console": "^6.4 || ^7.0 || ^8.0",
  808. "symfony/filesystem": "^6.4 || ^7.0 || ^8.0",
  809. "symfony/property-access": "^6.4 || ^7.0 || ^8.0",
  810. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  811. "symfony/type-info": "^7.3 || ^8.0"
  812. },
  813. "require-dev": {
  814. "api-platform/doctrine-common": "^4.3",
  815. "api-platform/doctrine-odm": "^4.3",
  816. "api-platform/doctrine-orm": "^4.3",
  817. "api-platform/serializer": "^4.3",
  818. "phpspec/prophecy-phpunit": "^2.2",
  819. "phpunit/phpunit": "^12.2",
  820. "symfony/type-info": "^7.3 || ^8.0"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "thanks": {
  825. "url": "https://github.com/api-platform/api-platform",
  826. "name": "api-platform/api-platform"
  827. },
  828. "symfony": {
  829. "require": "^6.4 || ^7.0 || ^8.0"
  830. },
  831. "branch-alias": {
  832. "dev-3.4": "3.4.x-dev",
  833. "dev-4.1": "4.1.x-dev",
  834. "dev-4.2": "4.2.x-dev",
  835. "dev-main": "4.4.x-dev"
  836. }
  837. },
  838. "autoload": {
  839. "psr-4": {
  840. "ApiPlatform\\OpenApi\\": ""
  841. },
  842. "exclude-from-classmap": [
  843. "/Tests/"
  844. ]
  845. },
  846. "notification-url": "https://packagist.org/downloads/",
  847. "license": [
  848. "MIT"
  849. ],
  850. "authors": [
  851. {
  852. "name": "Kévin Dunglas",
  853. "email": "kevin@dunglas.fr",
  854. "homepage": "https://dunglas.fr"
  855. },
  856. {
  857. "name": "API Platform Community",
  858. "homepage": "https://api-platform.com/community/contributors"
  859. }
  860. ],
  861. "description": "Models to build and serialize an OpenAPI specification.",
  862. "homepage": "https://api-platform.com",
  863. "keywords": [
  864. "Hydra",
  865. "JSON-LD",
  866. "api",
  867. "graphql",
  868. "hal",
  869. "jsonapi",
  870. "openapi",
  871. "rest",
  872. "swagger"
  873. ],
  874. "support": {
  875. "source": "https://github.com/api-platform/openapi/tree/v4.3.3"
  876. },
  877. "time": "2026-03-29T07:20:23+00:00"
  878. },
  879. {
  880. "name": "api-platform/serializer",
  881. "version": "v4.3.3",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/api-platform/serializer.git",
  885. "reference": "c8a62096d277b89b0f146aa90c65eeaeb1412900"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/api-platform/serializer/zipball/c8a62096d277b89b0f146aa90c65eeaeb1412900",
  890. "reference": "c8a62096d277b89b0f146aa90c65eeaeb1412900",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "api-platform/metadata": "^4.3",
  895. "api-platform/state": "^4.3",
  896. "php": ">=8.2",
  897. "symfony/property-access": "^6.4 || ^7.0 || ^8.0",
  898. "symfony/property-info": "^6.4 || ^7.1 || ^8.0",
  899. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  900. "symfony/validator": "^6.4.11 || ^7.0 || ^8.0"
  901. },
  902. "require-dev": {
  903. "api-platform/doctrine-common": "^4.3",
  904. "api-platform/doctrine-odm": "^4.3",
  905. "api-platform/doctrine-orm": "^4.3",
  906. "api-platform/json-schema": "^4.3",
  907. "api-platform/openapi": "^4.3",
  908. "doctrine/collections": "^2.1",
  909. "phpspec/prophecy-phpunit": "^2.2",
  910. "phpunit/phpunit": "^12.2",
  911. "sebastian/exporter": "^6.3.2 || ^7.0.2",
  912. "symfony/mercure-bundle": "*",
  913. "symfony/type-info": "^7.3 || ^8.0",
  914. "symfony/var-dumper": "^6.4 || ^7.0 || ^8.0",
  915. "symfony/yaml": "^6.4 || ^7.0 || ^8.0"
  916. },
  917. "suggest": {
  918. "api-platform/doctrine-odm": "To support Doctrine MongoDB ODM state options.",
  919. "api-platform/doctrine-orm": "To support Doctrine ORM state options."
  920. },
  921. "type": "library",
  922. "extra": {
  923. "thanks": {
  924. "url": "https://github.com/api-platform/api-platform",
  925. "name": "api-platform/api-platform"
  926. },
  927. "symfony": {
  928. "require": "^6.4 || ^7.0 || ^8.0"
  929. },
  930. "branch-alias": {
  931. "dev-3.4": "3.4.x-dev",
  932. "dev-4.1": "4.1.x-dev",
  933. "dev-4.2": "4.2.x-dev",
  934. "dev-main": "4.4.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "ApiPlatform\\Serializer\\": ""
  940. },
  941. "exclude-from-classmap": [
  942. "/Tests/"
  943. ]
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Kévin Dunglas",
  952. "email": "kevin@dunglas.fr",
  953. "homepage": "https://dunglas.fr"
  954. },
  955. {
  956. "name": "API Platform Community",
  957. "homepage": "https://api-platform.com/community/contributors"
  958. }
  959. ],
  960. "description": "API Platform core Serializer",
  961. "homepage": "https://api-platform.com",
  962. "keywords": [
  963. "api",
  964. "graphql",
  965. "rest",
  966. "serializer"
  967. ],
  968. "support": {
  969. "source": "https://github.com/api-platform/serializer/tree/v4.3.3"
  970. },
  971. "time": "2026-03-27T06:51:10+00:00"
  972. },
  973. {
  974. "name": "api-platform/state",
  975. "version": "v4.3.3",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/api-platform/state.git",
  979. "reference": "5387afbb9e79027b34dab731bc90e810fdd6ca60"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/api-platform/state/zipball/5387afbb9e79027b34dab731bc90e810fdd6ca60",
  984. "reference": "5387afbb9e79027b34dab731bc90e810fdd6ca60",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "api-platform/metadata": "^4.3",
  989. "php": ">=8.2",
  990. "psr/container": "^1.0 || ^2.0",
  991. "symfony/deprecation-contracts": "^3.1",
  992. "symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
  993. "symfony/serializer": "^6.4 || ^7.0 || ^8.0",
  994. "symfony/translation-contracts": "^3.0"
  995. },
  996. "require-dev": {
  997. "api-platform/serializer": "^4.3",
  998. "api-platform/validator": "^4.3.1",
  999. "phpunit/phpunit": "^12.2",
  1000. "symfony/http-foundation": "^6.4.14 || ^7.0 || ^8.0",
  1001. "symfony/object-mapper": "^7.4 || ^8.0",
  1002. "symfony/type-info": "^7.4 || ^8.0",
  1003. "symfony/web-link": "^6.4 || ^7.1 || ^8.0",
  1004. "willdurand/negotiation": "^3.1"
  1005. },
  1006. "suggest": {
  1007. "api-platform/serializer": "To use API Platform serializer.",
  1008. "api-platform/validator": "To use API Platform validation.",
  1009. "symfony/http-foundation": "To use our HTTP providers and processor.",
  1010. "symfony/web-link": "To support adding web links to the response headers.",
  1011. "willdurand/negotiation": "To use the API Platform content negoatiation provider."
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "thanks": {
  1016. "url": "https://github.com/api-platform/api-platform",
  1017. "name": "api-platform/api-platform"
  1018. },
  1019. "symfony": {
  1020. "require": "^6.4 || ^7.0 || ^8.0"
  1021. },
  1022. "branch-alias": {
  1023. "dev-3.4": "3.4.x-dev",
  1024. "dev-4.1": "4.1.x-dev",
  1025. "dev-4.2": "4.2.x-dev",
  1026. "dev-main": "4.4.x-dev"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "ApiPlatform\\State\\": ""
  1032. },
  1033. "exclude-from-classmap": [
  1034. "/Tests/"
  1035. ]
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Kévin Dunglas",
  1044. "email": "kevin@dunglas.fr",
  1045. "homepage": "https://dunglas.fr"
  1046. },
  1047. {
  1048. "name": "API Platform Community",
  1049. "homepage": "https://api-platform.com/community/contributors"
  1050. }
  1051. ],
  1052. "description": "API Platform State component ",
  1053. "homepage": "https://api-platform.com",
  1054. "keywords": [
  1055. "Hydra",
  1056. "JSON-LD",
  1057. "api",
  1058. "graphql",
  1059. "hal",
  1060. "jsonapi",
  1061. "openapi",
  1062. "rest",
  1063. "swagger"
  1064. ],
  1065. "support": {
  1066. "source": "https://github.com/api-platform/state/tree/v4.3.3"
  1067. },
  1068. "time": "2026-03-29T06:54:13+00:00"
  1069. },
  1070. {
  1071. "name": "astrotomic/laravel-translatable",
  1072. "version": "v11.15.1",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/Astrotomic/laravel-translatable.git",
  1076. "reference": "0d065da7fb06b4b957afce79fdda159764561345"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://api.github.com/repos/Astrotomic/laravel-translatable/zipball/0d065da7fb06b4b957afce79fdda159764561345",
  1081. "reference": "0d065da7fb06b4b957afce79fdda159764561345",
  1082. "shasum": ""
  1083. },
  1084. "require": {
  1085. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
  1086. "illuminate/database": "^9.0 || ^10.0 || ^11.0",
  1087. "illuminate/support": "^9.0 || ^10.0 || ^11.0",
  1088. "php": "^8.0"
  1089. },
  1090. "require-dev": {
  1091. "larastan/larastan": "^2.0",
  1092. "laravel/legacy-factories": "^1.0.4",
  1093. "laravel/pint": "^1.0",
  1094. "mockery/mockery": "^1.3.3",
  1095. "orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
  1096. "phpunit/phpunit": "^10.0"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "laravel": {
  1101. "providers": [
  1102. "Astrotomic\\Translatable\\TranslatableServiceProvider"
  1103. ]
  1104. }
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Astrotomic\\Translatable\\": "src/Translatable/"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Tom Witkowski",
  1118. "email": "gummibeer@astrotomic.info",
  1119. "homepage": "https://gummibeer.de",
  1120. "role": "Developer"
  1121. },
  1122. {
  1123. "name": "Dimitrios Savvopoulos",
  1124. "email": "ds@dimsav.com",
  1125. "homepage": "http://dimsav.com",
  1126. "role": "Developer"
  1127. }
  1128. ],
  1129. "description": "A Laravel package for multilingual models",
  1130. "homepage": "https://astrotomic.info",
  1131. "keywords": [
  1132. "database",
  1133. "language",
  1134. "laravel",
  1135. "translation"
  1136. ],
  1137. "support": {
  1138. "docs": "https://docs.astrotomic.info/laravel-translatable",
  1139. "email": "dev@astrotomic.info",
  1140. "issues": "https://github.com/Astrotomic/laravel-translatable/issues",
  1141. "source": "https://github.com/Astrotomic/laravel-translatable"
  1142. },
  1143. "funding": [
  1144. {
  1145. "url": "https://forest.astrotomic.info",
  1146. "type": "custom"
  1147. },
  1148. {
  1149. "url": "https://github.com/Gummibeer",
  1150. "type": "github"
  1151. },
  1152. {
  1153. "url": "https://github.com/SarahSibert",
  1154. "type": "github"
  1155. },
  1156. {
  1157. "url": "https://issuehunt.io/r/astrotomic",
  1158. "type": "issuehunt"
  1159. }
  1160. ],
  1161. "time": "2024-08-28T09:20:26+00:00"
  1162. },
  1163. {
  1164. "name": "bagisto/bagisto-package-generator",
  1165. "version": "v2.1.2",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/bagisto/bagisto-package-generator.git",
  1169. "reference": "e6e9639c366f31f615160ff9c91bc78528aa8061"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/bagisto/bagisto-package-generator/zipball/e6e9639c366f31f615160ff9c91bc78528aa8061",
  1174. "reference": "e6e9639c366f31f615160ff9c91bc78528aa8061",
  1175. "shasum": "",
  1176. "mirrors": [
  1177. {
  1178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1179. "preferred": true
  1180. }
  1181. ]
  1182. },
  1183. "type": "library",
  1184. "extra": {
  1185. "laravel": {
  1186. "aliases": [],
  1187. "providers": [
  1188. "Webkul\\PackageGenerator\\Providers\\PackageGeneratorServiceProvider"
  1189. ]
  1190. }
  1191. },
  1192. "autoload": {
  1193. "psr-4": {
  1194. "Webkul\\PackageGenerator\\": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Jitendra Singh",
  1204. "email": "jitendra@webkul.com"
  1205. }
  1206. ],
  1207. "description": "Bagisto Package Generator",
  1208. "support": {
  1209. "issues": "https://github.com/bagisto/bagisto-package-generator/issues",
  1210. "source": "https://github.com/bagisto/bagisto-package-generator/tree/v2.1.2"
  1211. },
  1212. "time": "2025-09-02T16:15:30+00:00"
  1213. },
  1214. {
  1215. "name": "bagisto/image-cache",
  1216. "version": "dev-master",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/bagisto/image-cache.git",
  1220. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/bagisto/image-cache/zipball/b5a24e83ec4387261ae55947534d573fb897c86c",
  1225. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "illuminate/cache": "^9|~10|~11",
  1230. "illuminate/filesystem": "^9|~10|~11",
  1231. "intervention/image": "~2.2",
  1232. "nesbot/carbon": "^2.72.2",
  1233. "opis/closure": "^3.5",
  1234. "php": "^8.2"
  1235. },
  1236. "require-dev": {
  1237. "phpunit/phpunit": "^10.0"
  1238. },
  1239. "default-branch": true,
  1240. "type": "library",
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Intervention\\Image\\": "src/Intervention/Image"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Oliver Vogel",
  1253. "email": "oliver@intervention.io",
  1254. "homepage": "http://intervention.io/"
  1255. }
  1256. ],
  1257. "description": "Caching extension for the Intervention Image Class",
  1258. "homepage": "https://image.intervention.io",
  1259. "keywords": [
  1260. "cache",
  1261. "gd",
  1262. "image",
  1263. "imagick",
  1264. "laravel"
  1265. ],
  1266. "support": {
  1267. "source": "https://github.com/bagisto/image-cache/tree/master"
  1268. },
  1269. "time": "2024-10-03T06:31:17+00:00"
  1270. },
  1271. {
  1272. "name": "barryvdh/laravel-dompdf",
  1273. "version": "v2.2.0",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  1277. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c96f90c97666cebec154ca1ffb67afed372114d8",
  1282. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8",
  1283. "shasum": ""
  1284. },
  1285. "require": {
  1286. "dompdf/dompdf": "^2.0.7",
  1287. "illuminate/support": "^6|^7|^8|^9|^10|^11",
  1288. "php": "^7.2 || ^8.0"
  1289. },
  1290. "require-dev": {
  1291. "larastan/larastan": "^1.0|^2.7.0",
  1292. "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
  1293. "phpro/grumphp": "^1 || ^2.5",
  1294. "squizlabs/php_codesniffer": "^3.5"
  1295. },
  1296. "type": "library",
  1297. "extra": {
  1298. "laravel": {
  1299. "aliases": {
  1300. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf",
  1301. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf"
  1302. },
  1303. "providers": [
  1304. "Barryvdh\\DomPDF\\ServiceProvider"
  1305. ]
  1306. },
  1307. "branch-alias": {
  1308. "dev-master": "2.0-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "psr-4": {
  1313. "Barryvdh\\DomPDF\\": "src"
  1314. }
  1315. },
  1316. "notification-url": "https://packagist.org/downloads/",
  1317. "license": [
  1318. "MIT"
  1319. ],
  1320. "authors": [
  1321. {
  1322. "name": "Barry vd. Heuvel",
  1323. "email": "barryvdh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "A DOMPDF Wrapper for Laravel",
  1327. "keywords": [
  1328. "dompdf",
  1329. "laravel",
  1330. "pdf"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  1334. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.2.0"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://fruitcake.nl",
  1339. "type": "custom"
  1340. },
  1341. {
  1342. "url": "https://github.com/barryvdh",
  1343. "type": "github"
  1344. }
  1345. ],
  1346. "time": "2024-04-25T13:16:04+00:00"
  1347. },
  1348. {
  1349. "name": "brick/math",
  1350. "version": "0.12.3",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/brick/math.git",
  1354. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  1359. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "php": "^8.1"
  1364. },
  1365. "require-dev": {
  1366. "php-coveralls/php-coveralls": "^2.2",
  1367. "phpunit/phpunit": "^10.1",
  1368. "vimeo/psalm": "6.8.8"
  1369. },
  1370. "type": "library",
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Brick\\Math\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "description": "Arbitrary-precision arithmetic library",
  1381. "keywords": [
  1382. "Arbitrary-precision",
  1383. "BigInteger",
  1384. "BigRational",
  1385. "arithmetic",
  1386. "bigdecimal",
  1387. "bignum",
  1388. "bignumber",
  1389. "brick",
  1390. "decimal",
  1391. "integer",
  1392. "math",
  1393. "mathematics",
  1394. "rational"
  1395. ],
  1396. "support": {
  1397. "issues": "https://github.com/brick/math/issues",
  1398. "source": "https://github.com/brick/math/tree/0.12.3"
  1399. },
  1400. "funding": [
  1401. {
  1402. "url": "https://github.com/BenMorel",
  1403. "type": "github"
  1404. }
  1405. ],
  1406. "time": "2025-02-28T13:11:00+00:00"
  1407. },
  1408. {
  1409. "name": "carbonphp/carbon-doctrine-types",
  1410. "version": "3.2.0",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1414. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1419. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "php": "^8.1"
  1424. },
  1425. "conflict": {
  1426. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  1427. },
  1428. "require-dev": {
  1429. "doctrine/dbal": "^4.0.0",
  1430. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1431. "phpunit/phpunit": "^10.3"
  1432. },
  1433. "type": "library",
  1434. "autoload": {
  1435. "psr-4": {
  1436. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "MIT"
  1442. ],
  1443. "authors": [
  1444. {
  1445. "name": "KyleKatarn",
  1446. "email": "kylekatarnls@gmail.com"
  1447. }
  1448. ],
  1449. "description": "Types to use Carbon in Doctrine",
  1450. "keywords": [
  1451. "carbon",
  1452. "date",
  1453. "datetime",
  1454. "doctrine",
  1455. "time"
  1456. ],
  1457. "support": {
  1458. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1459. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1460. },
  1461. "funding": [
  1462. {
  1463. "url": "https://github.com/kylekatarnls",
  1464. "type": "github"
  1465. },
  1466. {
  1467. "url": "https://opencollective.com/Carbon",
  1468. "type": "open_collective"
  1469. },
  1470. {
  1471. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1472. "type": "tidelift"
  1473. }
  1474. ],
  1475. "time": "2024-02-09T16:56:22+00:00"
  1476. },
  1477. {
  1478. "name": "composer/ca-bundle",
  1479. "version": "1.5.6",
  1480. "source": {
  1481. "type": "git",
  1482. "url": "https://github.com/composer/ca-bundle.git",
  1483. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175"
  1484. },
  1485. "dist": {
  1486. "type": "zip",
  1487. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175",
  1488. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175",
  1489. "shasum": ""
  1490. },
  1491. "require": {
  1492. "ext-openssl": "*",
  1493. "ext-pcre": "*",
  1494. "php": "^7.2 || ^8.0"
  1495. },
  1496. "require-dev": {
  1497. "phpstan/phpstan": "^1.10",
  1498. "phpunit/phpunit": "^8 || ^9",
  1499. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1500. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1501. },
  1502. "type": "library",
  1503. "extra": {
  1504. "branch-alias": {
  1505. "dev-main": "1.x-dev"
  1506. }
  1507. },
  1508. "autoload": {
  1509. "psr-4": {
  1510. "Composer\\CaBundle\\": "src"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Jordi Boggiano",
  1520. "email": "j.boggiano@seld.be",
  1521. "homepage": "http://seld.be"
  1522. }
  1523. ],
  1524. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1525. "keywords": [
  1526. "cabundle",
  1527. "cacert",
  1528. "certificate",
  1529. "ssl",
  1530. "tls"
  1531. ],
  1532. "support": {
  1533. "irc": "irc://irc.freenode.org/composer",
  1534. "issues": "https://github.com/composer/ca-bundle/issues",
  1535. "source": "https://github.com/composer/ca-bundle/tree/1.5.6"
  1536. },
  1537. "funding": [
  1538. {
  1539. "url": "https://packagist.com",
  1540. "type": "custom"
  1541. },
  1542. {
  1543. "url": "https://github.com/composer",
  1544. "type": "github"
  1545. },
  1546. {
  1547. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1548. "type": "tidelift"
  1549. }
  1550. ],
  1551. "time": "2025-03-06T14:30:56+00:00"
  1552. },
  1553. {
  1554. "name": "composer/pcre",
  1555. "version": "3.3.2",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/composer/pcre.git",
  1559. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1564. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": "^7.4 || ^8.0"
  1569. },
  1570. "conflict": {
  1571. "phpstan/phpstan": "<1.11.10"
  1572. },
  1573. "require-dev": {
  1574. "phpstan/phpstan": "^1.12 || ^2",
  1575. "phpstan/phpstan-strict-rules": "^1 || ^2",
  1576. "phpunit/phpunit": "^8 || ^9"
  1577. },
  1578. "type": "library",
  1579. "extra": {
  1580. "phpstan": {
  1581. "includes": [
  1582. "extension.neon"
  1583. ]
  1584. },
  1585. "branch-alias": {
  1586. "dev-main": "3.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Composer\\Pcre\\": "src"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Jordi Boggiano",
  1601. "email": "j.boggiano@seld.be",
  1602. "homepage": "http://seld.be"
  1603. }
  1604. ],
  1605. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  1606. "keywords": [
  1607. "PCRE",
  1608. "preg",
  1609. "regex",
  1610. "regular expression"
  1611. ],
  1612. "support": {
  1613. "issues": "https://github.com/composer/pcre/issues",
  1614. "source": "https://github.com/composer/pcre/tree/3.3.2"
  1615. },
  1616. "funding": [
  1617. {
  1618. "url": "https://packagist.com",
  1619. "type": "custom"
  1620. },
  1621. {
  1622. "url": "https://github.com/composer",
  1623. "type": "github"
  1624. },
  1625. {
  1626. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1627. "type": "tidelift"
  1628. }
  1629. ],
  1630. "time": "2024-11-12T16:29:46+00:00"
  1631. },
  1632. {
  1633. "name": "composer/semver",
  1634. "version": "3.4.4",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/composer/semver.git",
  1638. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  1643. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "php": "^5.3.2 || ^7.0 || ^8.0"
  1648. },
  1649. "require-dev": {
  1650. "phpstan/phpstan": "^1.11",
  1651. "symfony/phpunit-bridge": "^3 || ^7"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-main": "3.x-dev"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Composer\\Semver\\": "src"
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Nils Adermann",
  1671. "email": "naderman@naderman.de",
  1672. "homepage": "http://www.naderman.de"
  1673. },
  1674. {
  1675. "name": "Jordi Boggiano",
  1676. "email": "j.boggiano@seld.be",
  1677. "homepage": "http://seld.be"
  1678. },
  1679. {
  1680. "name": "Rob Bast",
  1681. "email": "rob.bast@gmail.com",
  1682. "homepage": "http://robbast.nl"
  1683. }
  1684. ],
  1685. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1686. "keywords": [
  1687. "semantic",
  1688. "semver",
  1689. "validation",
  1690. "versioning"
  1691. ],
  1692. "support": {
  1693. "irc": "ircs://irc.libera.chat:6697/composer",
  1694. "issues": "https://github.com/composer/semver/issues",
  1695. "source": "https://github.com/composer/semver/tree/3.4.4"
  1696. },
  1697. "funding": [
  1698. {
  1699. "url": "https://packagist.com",
  1700. "type": "custom"
  1701. },
  1702. {
  1703. "url": "https://github.com/composer",
  1704. "type": "github"
  1705. }
  1706. ],
  1707. "time": "2025-08-20T19:15:30+00:00"
  1708. },
  1709. {
  1710. "name": "dflydev/dot-access-data",
  1711. "version": "v3.0.3",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1715. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1720. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1721. "shasum": ""
  1722. },
  1723. "require": {
  1724. "php": "^7.1 || ^8.0"
  1725. },
  1726. "require-dev": {
  1727. "phpstan/phpstan": "^0.12.42",
  1728. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1729. "scrutinizer/ocular": "1.6.0",
  1730. "squizlabs/php_codesniffer": "^3.5",
  1731. "vimeo/psalm": "^4.0.0"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-main": "3.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Dflydev\\DotAccessData\\": "src/"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Dragonfly Development Inc.",
  1751. "email": "info@dflydev.com",
  1752. "homepage": "http://dflydev.com"
  1753. },
  1754. {
  1755. "name": "Beau Simensen",
  1756. "email": "beau@dflydev.com",
  1757. "homepage": "http://beausimensen.com"
  1758. },
  1759. {
  1760. "name": "Carlos Frutos",
  1761. "email": "carlos@kiwing.it",
  1762. "homepage": "https://github.com/cfrutos"
  1763. },
  1764. {
  1765. "name": "Colin O'Dell",
  1766. "email": "colinodell@gmail.com",
  1767. "homepage": "https://www.colinodell.com"
  1768. }
  1769. ],
  1770. "description": "Given a deep data structure, access data by dot notation.",
  1771. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1772. "keywords": [
  1773. "access",
  1774. "data",
  1775. "dot",
  1776. "notation"
  1777. ],
  1778. "support": {
  1779. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1780. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1781. },
  1782. "time": "2024-07-08T12:26:09+00:00"
  1783. },
  1784. {
  1785. "name": "diglactic/laravel-breadcrumbs",
  1786. "version": "v9.0.0",
  1787. "source": {
  1788. "type": "git",
  1789. "url": "https://github.com/diglactic/laravel-breadcrumbs.git",
  1790. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4"
  1791. },
  1792. "dist": {
  1793. "type": "zip",
  1794. "url": "https://api.github.com/repos/diglactic/laravel-breadcrumbs/zipball/88e8f01e013e811215770e27b40a74014c28f2c4",
  1795. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4",
  1796. "shasum": ""
  1797. },
  1798. "require": {
  1799. "facade/ignition-contracts": "^1.0",
  1800. "laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  1801. "php": "^7.3 || ^8.0"
  1802. },
  1803. "conflict": {
  1804. "davejamesmiller/laravel-breadcrumbs": "*"
  1805. },
  1806. "require-dev": {
  1807. "orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  1808. "php-coveralls/php-coveralls": "^2.7",
  1809. "phpunit/phpunit": "^9.5 || ^10.5",
  1810. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1"
  1811. },
  1812. "type": "library",
  1813. "extra": {
  1814. "laravel": {
  1815. "aliases": {
  1816. "Breadcrumbs": "Diglactic\\Breadcrumbs\\Breadcrumbs"
  1817. },
  1818. "providers": [
  1819. "Diglactic\\Breadcrumbs\\ServiceProvider"
  1820. ]
  1821. }
  1822. },
  1823. "autoload": {
  1824. "psr-4": {
  1825. "Diglactic\\Breadcrumbs\\": "src/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Sheng Slogar",
  1835. "email": "sheng@diglactic.com",
  1836. "role": "Maintainer"
  1837. },
  1838. {
  1839. "name": "Dave James Miller",
  1840. "email": "dave@davejamesmiller.com",
  1841. "role": "Original Creator"
  1842. }
  1843. ],
  1844. "description": "A simple Laravel-style way to create breadcrumbs.",
  1845. "homepage": "https://github.com/diglactic/laravel-breadcrumbs",
  1846. "keywords": [
  1847. "laravel"
  1848. ],
  1849. "support": {
  1850. "issues": "https://github.com/diglactic/laravel-breadcrumbs/issues",
  1851. "source": "https://github.com/diglactic/laravel-breadcrumbs/tree/v9.0.0"
  1852. },
  1853. "time": "2024-03-12T00:42:39+00:00"
  1854. },
  1855. {
  1856. "name": "doctrine/inflector",
  1857. "version": "2.0.10",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/doctrine/inflector.git",
  1861. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1866. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "php": "^7.2 || ^8.0"
  1871. },
  1872. "require-dev": {
  1873. "doctrine/coding-standard": "^11.0",
  1874. "phpstan/phpstan": "^1.8",
  1875. "phpstan/phpstan-phpunit": "^1.1",
  1876. "phpstan/phpstan-strict-rules": "^1.3",
  1877. "phpunit/phpunit": "^8.5 || ^9.5",
  1878. "vimeo/psalm": "^4.25 || ^5.4"
  1879. },
  1880. "type": "library",
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Guilherme Blanco",
  1893. "email": "guilhermeblanco@gmail.com"
  1894. },
  1895. {
  1896. "name": "Roman Borschel",
  1897. "email": "roman@code-factory.org"
  1898. },
  1899. {
  1900. "name": "Benjamin Eberlei",
  1901. "email": "kontakt@beberlei.de"
  1902. },
  1903. {
  1904. "name": "Jonathan Wage",
  1905. "email": "jonwage@gmail.com"
  1906. },
  1907. {
  1908. "name": "Johannes Schmitt",
  1909. "email": "schmittjoh@gmail.com"
  1910. }
  1911. ],
  1912. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1913. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1914. "keywords": [
  1915. "inflection",
  1916. "inflector",
  1917. "lowercase",
  1918. "manipulation",
  1919. "php",
  1920. "plural",
  1921. "singular",
  1922. "strings",
  1923. "uppercase",
  1924. "words"
  1925. ],
  1926. "support": {
  1927. "issues": "https://github.com/doctrine/inflector/issues",
  1928. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://www.doctrine-project.org/sponsorship.html",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://www.patreon.com/phpdoctrine",
  1937. "type": "patreon"
  1938. },
  1939. {
  1940. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1941. "type": "tidelift"
  1942. }
  1943. ],
  1944. "time": "2024-02-18T20:23:39+00:00"
  1945. },
  1946. {
  1947. "name": "doctrine/lexer",
  1948. "version": "3.0.1",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/doctrine/lexer.git",
  1952. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1957. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "php": "^8.1"
  1962. },
  1963. "require-dev": {
  1964. "doctrine/coding-standard": "^12",
  1965. "phpstan/phpstan": "^1.10",
  1966. "phpunit/phpunit": "^10.5",
  1967. "psalm/plugin-phpunit": "^0.18.3",
  1968. "vimeo/psalm": "^5.21"
  1969. },
  1970. "type": "library",
  1971. "autoload": {
  1972. "psr-4": {
  1973. "Doctrine\\Common\\Lexer\\": "src"
  1974. }
  1975. },
  1976. "notification-url": "https://packagist.org/downloads/",
  1977. "license": [
  1978. "MIT"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Guilherme Blanco",
  1983. "email": "guilhermeblanco@gmail.com"
  1984. },
  1985. {
  1986. "name": "Roman Borschel",
  1987. "email": "roman@code-factory.org"
  1988. },
  1989. {
  1990. "name": "Johannes Schmitt",
  1991. "email": "schmittjoh@gmail.com"
  1992. }
  1993. ],
  1994. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1995. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1996. "keywords": [
  1997. "annotations",
  1998. "docblock",
  1999. "lexer",
  2000. "parser",
  2001. "php"
  2002. ],
  2003. "support": {
  2004. "issues": "https://github.com/doctrine/lexer/issues",
  2005. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  2006. },
  2007. "funding": [
  2008. {
  2009. "url": "https://www.doctrine-project.org/sponsorship.html",
  2010. "type": "custom"
  2011. },
  2012. {
  2013. "url": "https://www.patreon.com/phpdoctrine",
  2014. "type": "patreon"
  2015. },
  2016. {
  2017. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  2018. "type": "tidelift"
  2019. }
  2020. ],
  2021. "time": "2024-02-05T11:56:58+00:00"
  2022. },
  2023. {
  2024. "name": "dompdf/dompdf",
  2025. "version": "v2.0.8",
  2026. "source": {
  2027. "type": "git",
  2028. "url": "https://github.com/dompdf/dompdf.git",
  2029. "reference": "c20247574601700e1f7c8dab39310fca1964dc52"
  2030. },
  2031. "dist": {
  2032. "type": "zip",
  2033. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52",
  2034. "reference": "c20247574601700e1f7c8dab39310fca1964dc52",
  2035. "shasum": ""
  2036. },
  2037. "require": {
  2038. "ext-dom": "*",
  2039. "ext-mbstring": "*",
  2040. "masterminds/html5": "^2.0",
  2041. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  2042. "phenx/php-svg-lib": ">=0.5.2 <1.0.0",
  2043. "php": "^7.1 || ^8.0"
  2044. },
  2045. "require-dev": {
  2046. "ext-json": "*",
  2047. "ext-zip": "*",
  2048. "mockery/mockery": "^1.3",
  2049. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  2050. "squizlabs/php_codesniffer": "^3.5"
  2051. },
  2052. "suggest": {
  2053. "ext-gd": "Needed to process images",
  2054. "ext-gmagick": "Improves image processing performance",
  2055. "ext-imagick": "Improves image processing performance",
  2056. "ext-zlib": "Needed for pdf stream compression"
  2057. },
  2058. "type": "library",
  2059. "autoload": {
  2060. "psr-4": {
  2061. "Dompdf\\": "src/"
  2062. },
  2063. "classmap": [
  2064. "lib/"
  2065. ]
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "LGPL-2.1"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "The Dompdf Community",
  2074. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  2075. }
  2076. ],
  2077. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  2078. "homepage": "https://github.com/dompdf/dompdf",
  2079. "support": {
  2080. "issues": "https://github.com/dompdf/dompdf/issues",
  2081. "source": "https://github.com/dompdf/dompdf/tree/v2.0.8"
  2082. },
  2083. "time": "2024-04-29T13:06:17+00:00"
  2084. },
  2085. {
  2086. "name": "dragonmantank/cron-expression",
  2087. "version": "v3.4.0",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/dragonmantank/cron-expression.git",
  2091. "reference": "8c784d071debd117328803d86b2097615b457500"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  2096. "reference": "8c784d071debd117328803d86b2097615b457500",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "php": "^7.2|^8.0",
  2101. "webmozart/assert": "^1.0"
  2102. },
  2103. "replace": {
  2104. "mtdowling/cron-expression": "^1.0"
  2105. },
  2106. "require-dev": {
  2107. "phpstan/extension-installer": "^1.0",
  2108. "phpstan/phpstan": "^1.0",
  2109. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2110. },
  2111. "type": "library",
  2112. "extra": {
  2113. "branch-alias": {
  2114. "dev-master": "3.x-dev"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "psr-4": {
  2119. "Cron\\": "src/Cron/"
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "Chris Tankersley",
  2129. "email": "chris@ctankersley.com",
  2130. "homepage": "https://github.com/dragonmantank"
  2131. }
  2132. ],
  2133. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2134. "keywords": [
  2135. "cron",
  2136. "schedule"
  2137. ],
  2138. "support": {
  2139. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  2140. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  2141. },
  2142. "funding": [
  2143. {
  2144. "url": "https://github.com/dragonmantank",
  2145. "type": "github"
  2146. }
  2147. ],
  2148. "time": "2024-10-09T13:47:03+00:00"
  2149. },
  2150. {
  2151. "name": "egulias/email-validator",
  2152. "version": "4.0.4",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/egulias/EmailValidator.git",
  2156. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  2161. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "doctrine/lexer": "^2.0 || ^3.0",
  2166. "php": ">=8.1",
  2167. "symfony/polyfill-intl-idn": "^1.26"
  2168. },
  2169. "require-dev": {
  2170. "phpunit/phpunit": "^10.2",
  2171. "vimeo/psalm": "^5.12"
  2172. },
  2173. "suggest": {
  2174. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  2175. },
  2176. "type": "library",
  2177. "extra": {
  2178. "branch-alias": {
  2179. "dev-master": "4.0.x-dev"
  2180. }
  2181. },
  2182. "autoload": {
  2183. "psr-4": {
  2184. "Egulias\\EmailValidator\\": "src"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "MIT"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "Eduardo Gulias Davis"
  2194. }
  2195. ],
  2196. "description": "A library for validating emails against several RFCs",
  2197. "homepage": "https://github.com/egulias/EmailValidator",
  2198. "keywords": [
  2199. "email",
  2200. "emailvalidation",
  2201. "emailvalidator",
  2202. "validation",
  2203. "validator"
  2204. ],
  2205. "support": {
  2206. "issues": "https://github.com/egulias/EmailValidator/issues",
  2207. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  2208. },
  2209. "funding": [
  2210. {
  2211. "url": "https://github.com/egulias",
  2212. "type": "github"
  2213. }
  2214. ],
  2215. "time": "2025-03-06T22:45:56+00:00"
  2216. },
  2217. {
  2218. "name": "elastic/transport",
  2219. "version": "v8.10.0",
  2220. "source": {
  2221. "type": "git",
  2222. "url": "https://github.com/elastic/elastic-transport-php.git",
  2223. "reference": "8be37d679637545e50b1cea9f8ee903888783021"
  2224. },
  2225. "dist": {
  2226. "type": "zip",
  2227. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/8be37d679637545e50b1cea9f8ee903888783021",
  2228. "reference": "8be37d679637545e50b1cea9f8ee903888783021",
  2229. "shasum": ""
  2230. },
  2231. "require": {
  2232. "composer-runtime-api": "^2.0",
  2233. "open-telemetry/api": "^1.0",
  2234. "php": "^7.4 || ^8.0",
  2235. "php-http/discovery": "^1.14",
  2236. "php-http/httplug": "^2.3",
  2237. "psr/http-client": "^1.0",
  2238. "psr/http-factory": "^1.0",
  2239. "psr/http-message": "^1.0 || ^2.0",
  2240. "psr/log": "^1 || ^2 || ^3"
  2241. },
  2242. "require-dev": {
  2243. "nyholm/psr7": "^1.5",
  2244. "open-telemetry/sdk": "^1.0",
  2245. "php-http/mock-client": "^1.5",
  2246. "phpstan/phpstan": "^1.4",
  2247. "phpunit/phpunit": "^9.5",
  2248. "symfony/http-client": "^5.4"
  2249. },
  2250. "type": "library",
  2251. "autoload": {
  2252. "psr-4": {
  2253. "Elastic\\Transport\\": "src/"
  2254. }
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "description": "HTTP transport PHP library for Elastic products",
  2261. "keywords": [
  2262. "PSR_17",
  2263. "elastic",
  2264. "http",
  2265. "psr-18",
  2266. "psr-7",
  2267. "transport"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/elastic/elastic-transport-php/issues",
  2271. "source": "https://github.com/elastic/elastic-transport-php/tree/v8.10.0"
  2272. },
  2273. "time": "2024-08-14T08:55:07+00:00"
  2274. },
  2275. {
  2276. "name": "elasticsearch/elasticsearch",
  2277. "version": "v8.17.0",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/elastic/elasticsearch-php.git",
  2281. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  2286. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  2287. "shasum": ""
  2288. },
  2289. "require": {
  2290. "elastic/transport": "^8.10",
  2291. "guzzlehttp/guzzle": "^7.0",
  2292. "php": "^7.4 || ^8.0",
  2293. "psr/http-client": "^1.0",
  2294. "psr/http-message": "^1.1 || ^2.0",
  2295. "psr/log": "^1|^2|^3"
  2296. },
  2297. "require-dev": {
  2298. "ext-yaml": "*",
  2299. "ext-zip": "*",
  2300. "mockery/mockery": "^1.5",
  2301. "nyholm/psr7": "^1.5",
  2302. "php-http/message-factory": "^1.0",
  2303. "php-http/mock-client": "^1.5",
  2304. "phpstan/phpstan": "^1.4",
  2305. "phpunit/phpunit": "^9.5",
  2306. "psr/http-factory": "^1.0",
  2307. "symfony/finder": "~4.0",
  2308. "symfony/http-client": "^5.0|^6.0|^7.0"
  2309. },
  2310. "type": "library",
  2311. "autoload": {
  2312. "psr-4": {
  2313. "Elastic\\Elasticsearch\\": "src/"
  2314. }
  2315. },
  2316. "notification-url": "https://packagist.org/downloads/",
  2317. "license": [
  2318. "MIT"
  2319. ],
  2320. "description": "PHP Client for Elasticsearch",
  2321. "keywords": [
  2322. "client",
  2323. "elastic",
  2324. "elasticsearch",
  2325. "search"
  2326. ],
  2327. "support": {
  2328. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  2329. "source": "https://github.com/elastic/elasticsearch-php/tree/v8.17.0"
  2330. },
  2331. "time": "2024-12-18T11:00:27+00:00"
  2332. },
  2333. {
  2334. "name": "enshrined/svg-sanitize",
  2335. "version": "0.22.0",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/darylldoyle/svg-sanitizer.git",
  2339. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/0afa95ea74be155a7bcd6c6fb60c276c39984500",
  2344. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500",
  2345. "shasum": ""
  2346. },
  2347. "require": {
  2348. "ext-dom": "*",
  2349. "ext-libxml": "*",
  2350. "php": "^7.1 || ^8.0"
  2351. },
  2352. "require-dev": {
  2353. "phpunit/phpunit": "^6.5 || ^8.5"
  2354. },
  2355. "type": "library",
  2356. "autoload": {
  2357. "psr-4": {
  2358. "enshrined\\svgSanitize\\": "src"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "GPL-2.0-or-later"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "Daryll Doyle",
  2368. "email": "daryll@enshrined.co.uk"
  2369. }
  2370. ],
  2371. "description": "An SVG sanitizer for PHP",
  2372. "support": {
  2373. "issues": "https://github.com/darylldoyle/svg-sanitizer/issues",
  2374. "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.22.0"
  2375. },
  2376. "time": "2025-08-12T10:13:48+00:00"
  2377. },
  2378. {
  2379. "name": "ezyang/htmlpurifier",
  2380. "version": "v4.18.0",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/ezyang/htmlpurifier.git",
  2384. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  2389. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  2394. },
  2395. "require-dev": {
  2396. "cerdic/css-tidy": "^1.7 || ^2.0",
  2397. "simpletest/simpletest": "dev-master"
  2398. },
  2399. "suggest": {
  2400. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  2401. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  2402. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  2403. "ext-tidy": "Used for pretty-printing HTML"
  2404. },
  2405. "type": "library",
  2406. "autoload": {
  2407. "files": [
  2408. "library/HTMLPurifier.composer.php"
  2409. ],
  2410. "psr-0": {
  2411. "HTMLPurifier": "library/"
  2412. },
  2413. "exclude-from-classmap": [
  2414. "/library/HTMLPurifier/Language/"
  2415. ]
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "LGPL-2.1-or-later"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Edward Z. Yang",
  2424. "email": "admin@htmlpurifier.org",
  2425. "homepage": "http://ezyang.com"
  2426. }
  2427. ],
  2428. "description": "Standards compliant HTML filter written in PHP",
  2429. "homepage": "http://htmlpurifier.org/",
  2430. "keywords": [
  2431. "html"
  2432. ],
  2433. "support": {
  2434. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  2435. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  2436. },
  2437. "time": "2024-11-01T03:51:45+00:00"
  2438. },
  2439. {
  2440. "name": "facade/ignition-contracts",
  2441. "version": "1.0.2",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://github.com/facade/ignition-contracts.git",
  2445. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  2446. },
  2447. "dist": {
  2448. "type": "zip",
  2449. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  2450. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  2451. "shasum": ""
  2452. },
  2453. "require": {
  2454. "php": "^7.3|^8.0"
  2455. },
  2456. "require-dev": {
  2457. "friendsofphp/php-cs-fixer": "^v2.15.8",
  2458. "phpunit/phpunit": "^9.3.11",
  2459. "vimeo/psalm": "^3.17.1"
  2460. },
  2461. "type": "library",
  2462. "autoload": {
  2463. "psr-4": {
  2464. "Facade\\IgnitionContracts\\": "src"
  2465. }
  2466. },
  2467. "notification-url": "https://packagist.org/downloads/",
  2468. "license": [
  2469. "MIT"
  2470. ],
  2471. "authors": [
  2472. {
  2473. "name": "Freek Van der Herten",
  2474. "email": "freek@spatie.be",
  2475. "homepage": "https://flareapp.io",
  2476. "role": "Developer"
  2477. }
  2478. ],
  2479. "description": "Solution contracts for Ignition",
  2480. "homepage": "https://github.com/facade/ignition-contracts",
  2481. "keywords": [
  2482. "contracts",
  2483. "flare",
  2484. "ignition"
  2485. ],
  2486. "support": {
  2487. "issues": "https://github.com/facade/ignition-contracts/issues",
  2488. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  2489. },
  2490. "time": "2020-10-16T08:27:54+00:00"
  2491. },
  2492. {
  2493. "name": "firebase/php-jwt",
  2494. "version": "v6.11.0",
  2495. "source": {
  2496. "type": "git",
  2497. "url": "https://github.com/firebase/php-jwt.git",
  2498. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  2499. },
  2500. "dist": {
  2501. "type": "zip",
  2502. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2503. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2504. "shasum": ""
  2505. },
  2506. "require": {
  2507. "php": "^8.0"
  2508. },
  2509. "require-dev": {
  2510. "guzzlehttp/guzzle": "^7.4",
  2511. "phpspec/prophecy-phpunit": "^2.0",
  2512. "phpunit/phpunit": "^9.5",
  2513. "psr/cache": "^2.0||^3.0",
  2514. "psr/http-client": "^1.0",
  2515. "psr/http-factory": "^1.0"
  2516. },
  2517. "suggest": {
  2518. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2519. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2520. },
  2521. "type": "library",
  2522. "autoload": {
  2523. "psr-4": {
  2524. "Firebase\\JWT\\": "src"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "BSD-3-Clause"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Neuman Vong",
  2534. "email": "neuman+pear@twilio.com",
  2535. "role": "Developer"
  2536. },
  2537. {
  2538. "name": "Anant Narayanan",
  2539. "email": "anant@php.net",
  2540. "role": "Developer"
  2541. }
  2542. ],
  2543. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2544. "homepage": "https://github.com/firebase/php-jwt",
  2545. "keywords": [
  2546. "jwt",
  2547. "php"
  2548. ],
  2549. "support": {
  2550. "issues": "https://github.com/firebase/php-jwt/issues",
  2551. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  2552. },
  2553. "time": "2025-01-23T05:11:06+00:00"
  2554. },
  2555. {
  2556. "name": "fruitcake/php-cors",
  2557. "version": "v1.3.0",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/fruitcake/php-cors.git",
  2561. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2566. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": "^7.4|^8.0",
  2571. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2572. },
  2573. "require-dev": {
  2574. "phpstan/phpstan": "^1.4",
  2575. "phpunit/phpunit": "^9",
  2576. "squizlabs/php_codesniffer": "^3.5"
  2577. },
  2578. "type": "library",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-master": "1.2-dev"
  2582. }
  2583. },
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Fruitcake\\Cors\\": "src/"
  2587. }
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Fruitcake",
  2596. "homepage": "https://fruitcake.nl"
  2597. },
  2598. {
  2599. "name": "Barryvdh",
  2600. "email": "barryvdh@gmail.com"
  2601. }
  2602. ],
  2603. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2604. "homepage": "https://github.com/fruitcake/php-cors",
  2605. "keywords": [
  2606. "cors",
  2607. "laravel",
  2608. "symfony"
  2609. ],
  2610. "support": {
  2611. "issues": "https://github.com/fruitcake/php-cors/issues",
  2612. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2613. },
  2614. "funding": [
  2615. {
  2616. "url": "https://fruitcake.nl",
  2617. "type": "custom"
  2618. },
  2619. {
  2620. "url": "https://github.com/barryvdh",
  2621. "type": "github"
  2622. }
  2623. ],
  2624. "time": "2023-10-12T05:21:21+00:00"
  2625. },
  2626. {
  2627. "name": "graham-campbell/result-type",
  2628. "version": "v1.1.3",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2632. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2637. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": "^7.2.5 || ^8.0",
  2642. "phpoption/phpoption": "^1.9.3"
  2643. },
  2644. "require-dev": {
  2645. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2646. },
  2647. "type": "library",
  2648. "autoload": {
  2649. "psr-4": {
  2650. "GrahamCampbell\\ResultType\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Graham Campbell",
  2660. "email": "hello@gjcampbell.co.uk",
  2661. "homepage": "https://github.com/GrahamCampbell"
  2662. }
  2663. ],
  2664. "description": "An Implementation Of The Result Type",
  2665. "keywords": [
  2666. "Graham Campbell",
  2667. "GrahamCampbell",
  2668. "Result Type",
  2669. "Result-Type",
  2670. "result"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2674. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2675. },
  2676. "funding": [
  2677. {
  2678. "url": "https://github.com/GrahamCampbell",
  2679. "type": "github"
  2680. },
  2681. {
  2682. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2683. "type": "tidelift"
  2684. }
  2685. ],
  2686. "time": "2024-07-20T21:45:45+00:00"
  2687. },
  2688. {
  2689. "name": "guzzlehttp/guzzle",
  2690. "version": "7.9.2",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/guzzle/guzzle.git",
  2694. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2699. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "ext-json": "*",
  2704. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2705. "guzzlehttp/psr7": "^2.7.0",
  2706. "php": "^7.2.5 || ^8.0",
  2707. "psr/http-client": "^1.0",
  2708. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2709. },
  2710. "provide": {
  2711. "psr/http-client-implementation": "1.0"
  2712. },
  2713. "require-dev": {
  2714. "bamarni/composer-bin-plugin": "^1.8.2",
  2715. "ext-curl": "*",
  2716. "guzzle/client-integration-tests": "3.0.2",
  2717. "php-http/message-factory": "^1.1",
  2718. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2719. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2720. },
  2721. "suggest": {
  2722. "ext-curl": "Required for CURL handler support",
  2723. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2724. "psr/log": "Required for using the Log middleware"
  2725. },
  2726. "type": "library",
  2727. "extra": {
  2728. "bamarni-bin": {
  2729. "bin-links": true,
  2730. "forward-command": false
  2731. }
  2732. },
  2733. "autoload": {
  2734. "files": [
  2735. "src/functions_include.php"
  2736. ],
  2737. "psr-4": {
  2738. "GuzzleHttp\\": "src/"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Graham Campbell",
  2748. "email": "hello@gjcampbell.co.uk",
  2749. "homepage": "https://github.com/GrahamCampbell"
  2750. },
  2751. {
  2752. "name": "Michael Dowling",
  2753. "email": "mtdowling@gmail.com",
  2754. "homepage": "https://github.com/mtdowling"
  2755. },
  2756. {
  2757. "name": "Jeremy Lindblom",
  2758. "email": "jeremeamia@gmail.com",
  2759. "homepage": "https://github.com/jeremeamia"
  2760. },
  2761. {
  2762. "name": "George Mponos",
  2763. "email": "gmponos@gmail.com",
  2764. "homepage": "https://github.com/gmponos"
  2765. },
  2766. {
  2767. "name": "Tobias Nyholm",
  2768. "email": "tobias.nyholm@gmail.com",
  2769. "homepage": "https://github.com/Nyholm"
  2770. },
  2771. {
  2772. "name": "Márk Sági-Kazár",
  2773. "email": "mark.sagikazar@gmail.com",
  2774. "homepage": "https://github.com/sagikazarmark"
  2775. },
  2776. {
  2777. "name": "Tobias Schultze",
  2778. "email": "webmaster@tubo-world.de",
  2779. "homepage": "https://github.com/Tobion"
  2780. }
  2781. ],
  2782. "description": "Guzzle is a PHP HTTP client library",
  2783. "keywords": [
  2784. "client",
  2785. "curl",
  2786. "framework",
  2787. "http",
  2788. "http client",
  2789. "psr-18",
  2790. "psr-7",
  2791. "rest",
  2792. "web service"
  2793. ],
  2794. "support": {
  2795. "issues": "https://github.com/guzzle/guzzle/issues",
  2796. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2797. },
  2798. "funding": [
  2799. {
  2800. "url": "https://github.com/GrahamCampbell",
  2801. "type": "github"
  2802. },
  2803. {
  2804. "url": "https://github.com/Nyholm",
  2805. "type": "github"
  2806. },
  2807. {
  2808. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2809. "type": "tidelift"
  2810. }
  2811. ],
  2812. "time": "2024-07-24T11:22:20+00:00"
  2813. },
  2814. {
  2815. "name": "guzzlehttp/promises",
  2816. "version": "2.0.4",
  2817. "source": {
  2818. "type": "git",
  2819. "url": "https://github.com/guzzle/promises.git",
  2820. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2821. },
  2822. "dist": {
  2823. "type": "zip",
  2824. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2825. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2826. "shasum": ""
  2827. },
  2828. "require": {
  2829. "php": "^7.2.5 || ^8.0"
  2830. },
  2831. "require-dev": {
  2832. "bamarni/composer-bin-plugin": "^1.8.2",
  2833. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2834. },
  2835. "type": "library",
  2836. "extra": {
  2837. "bamarni-bin": {
  2838. "bin-links": true,
  2839. "forward-command": false
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "GuzzleHttp\\Promise\\": "src/"
  2845. }
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "MIT"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "Graham Campbell",
  2854. "email": "hello@gjcampbell.co.uk",
  2855. "homepage": "https://github.com/GrahamCampbell"
  2856. },
  2857. {
  2858. "name": "Michael Dowling",
  2859. "email": "mtdowling@gmail.com",
  2860. "homepage": "https://github.com/mtdowling"
  2861. },
  2862. {
  2863. "name": "Tobias Nyholm",
  2864. "email": "tobias.nyholm@gmail.com",
  2865. "homepage": "https://github.com/Nyholm"
  2866. },
  2867. {
  2868. "name": "Tobias Schultze",
  2869. "email": "webmaster@tubo-world.de",
  2870. "homepage": "https://github.com/Tobion"
  2871. }
  2872. ],
  2873. "description": "Guzzle promises library",
  2874. "keywords": [
  2875. "promise"
  2876. ],
  2877. "support": {
  2878. "issues": "https://github.com/guzzle/promises/issues",
  2879. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2880. },
  2881. "funding": [
  2882. {
  2883. "url": "https://github.com/GrahamCampbell",
  2884. "type": "github"
  2885. },
  2886. {
  2887. "url": "https://github.com/Nyholm",
  2888. "type": "github"
  2889. },
  2890. {
  2891. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2892. "type": "tidelift"
  2893. }
  2894. ],
  2895. "time": "2024-10-17T10:06:22+00:00"
  2896. },
  2897. {
  2898. "name": "guzzlehttp/psr7",
  2899. "version": "2.7.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/guzzle/psr7.git",
  2903. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2908. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "php": "^7.2.5 || ^8.0",
  2913. "psr/http-factory": "^1.0",
  2914. "psr/http-message": "^1.1 || ^2.0",
  2915. "ralouphie/getallheaders": "^3.0"
  2916. },
  2917. "provide": {
  2918. "psr/http-factory-implementation": "1.0",
  2919. "psr/http-message-implementation": "1.0"
  2920. },
  2921. "require-dev": {
  2922. "bamarni/composer-bin-plugin": "^1.8.2",
  2923. "http-interop/http-factory-tests": "0.9.0",
  2924. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2925. },
  2926. "suggest": {
  2927. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2928. },
  2929. "type": "library",
  2930. "extra": {
  2931. "bamarni-bin": {
  2932. "bin-links": true,
  2933. "forward-command": false
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "GuzzleHttp\\Psr7\\": "src/"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Graham Campbell",
  2948. "email": "hello@gjcampbell.co.uk",
  2949. "homepage": "https://github.com/GrahamCampbell"
  2950. },
  2951. {
  2952. "name": "Michael Dowling",
  2953. "email": "mtdowling@gmail.com",
  2954. "homepage": "https://github.com/mtdowling"
  2955. },
  2956. {
  2957. "name": "George Mponos",
  2958. "email": "gmponos@gmail.com",
  2959. "homepage": "https://github.com/gmponos"
  2960. },
  2961. {
  2962. "name": "Tobias Nyholm",
  2963. "email": "tobias.nyholm@gmail.com",
  2964. "homepage": "https://github.com/Nyholm"
  2965. },
  2966. {
  2967. "name": "Márk Sági-Kazár",
  2968. "email": "mark.sagikazar@gmail.com",
  2969. "homepage": "https://github.com/sagikazarmark"
  2970. },
  2971. {
  2972. "name": "Tobias Schultze",
  2973. "email": "webmaster@tubo-world.de",
  2974. "homepage": "https://github.com/Tobion"
  2975. },
  2976. {
  2977. "name": "Márk Sági-Kazár",
  2978. "email": "mark.sagikazar@gmail.com",
  2979. "homepage": "https://sagikazarmark.hu"
  2980. }
  2981. ],
  2982. "description": "PSR-7 message implementation that also provides common utility methods",
  2983. "keywords": [
  2984. "http",
  2985. "message",
  2986. "psr-7",
  2987. "request",
  2988. "response",
  2989. "stream",
  2990. "uri",
  2991. "url"
  2992. ],
  2993. "support": {
  2994. "issues": "https://github.com/guzzle/psr7/issues",
  2995. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2996. },
  2997. "funding": [
  2998. {
  2999. "url": "https://github.com/GrahamCampbell",
  3000. "type": "github"
  3001. },
  3002. {
  3003. "url": "https://github.com/Nyholm",
  3004. "type": "github"
  3005. },
  3006. {
  3007. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  3008. "type": "tidelift"
  3009. }
  3010. ],
  3011. "time": "2024-07-18T11:15:46+00:00"
  3012. },
  3013. {
  3014. "name": "guzzlehttp/uri-template",
  3015. "version": "v1.0.4",
  3016. "source": {
  3017. "type": "git",
  3018. "url": "https://github.com/guzzle/uri-template.git",
  3019. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  3020. },
  3021. "dist": {
  3022. "type": "zip",
  3023. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  3024. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  3025. "shasum": ""
  3026. },
  3027. "require": {
  3028. "php": "^7.2.5 || ^8.0",
  3029. "symfony/polyfill-php80": "^1.24"
  3030. },
  3031. "require-dev": {
  3032. "bamarni/composer-bin-plugin": "^1.8.2",
  3033. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  3034. "uri-template/tests": "1.0.0"
  3035. },
  3036. "type": "library",
  3037. "extra": {
  3038. "bamarni-bin": {
  3039. "bin-links": true,
  3040. "forward-command": false
  3041. }
  3042. },
  3043. "autoload": {
  3044. "psr-4": {
  3045. "GuzzleHttp\\UriTemplate\\": "src"
  3046. }
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "Graham Campbell",
  3055. "email": "hello@gjcampbell.co.uk",
  3056. "homepage": "https://github.com/GrahamCampbell"
  3057. },
  3058. {
  3059. "name": "Michael Dowling",
  3060. "email": "mtdowling@gmail.com",
  3061. "homepage": "https://github.com/mtdowling"
  3062. },
  3063. {
  3064. "name": "George Mponos",
  3065. "email": "gmponos@gmail.com",
  3066. "homepage": "https://github.com/gmponos"
  3067. },
  3068. {
  3069. "name": "Tobias Nyholm",
  3070. "email": "tobias.nyholm@gmail.com",
  3071. "homepage": "https://github.com/Nyholm"
  3072. }
  3073. ],
  3074. "description": "A polyfill class for uri_template of PHP",
  3075. "keywords": [
  3076. "guzzlehttp",
  3077. "uri-template"
  3078. ],
  3079. "support": {
  3080. "issues": "https://github.com/guzzle/uri-template/issues",
  3081. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  3082. },
  3083. "funding": [
  3084. {
  3085. "url": "https://github.com/GrahamCampbell",
  3086. "type": "github"
  3087. },
  3088. {
  3089. "url": "https://github.com/Nyholm",
  3090. "type": "github"
  3091. },
  3092. {
  3093. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  3094. "type": "tidelift"
  3095. }
  3096. ],
  3097. "time": "2025-02-03T10:55:03+00:00"
  3098. },
  3099. {
  3100. "name": "intervention/image",
  3101. "version": "2.7.2",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/Intervention/image.git",
  3105. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  3110. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "ext-fileinfo": "*",
  3115. "guzzlehttp/psr7": "~1.1 || ^2.0",
  3116. "php": ">=5.4.0"
  3117. },
  3118. "require-dev": {
  3119. "mockery/mockery": "~0.9.2",
  3120. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  3121. },
  3122. "suggest": {
  3123. "ext-gd": "to use GD library based image processing.",
  3124. "ext-imagick": "to use Imagick based image processing.",
  3125. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3126. },
  3127. "type": "library",
  3128. "extra": {
  3129. "laravel": {
  3130. "aliases": {
  3131. "Image": "Intervention\\Image\\Facades\\Image"
  3132. },
  3133. "providers": [
  3134. "Intervention\\Image\\ImageServiceProvider"
  3135. ]
  3136. },
  3137. "branch-alias": {
  3138. "dev-master": "2.4-dev"
  3139. }
  3140. },
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Intervention\\Image\\": "src/Intervention/Image"
  3144. }
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Oliver Vogel",
  3153. "email": "oliver@intervention.io",
  3154. "homepage": "https://intervention.io/"
  3155. }
  3156. ],
  3157. "description": "Image handling and manipulation library with support for Laravel integration",
  3158. "homepage": "http://image.intervention.io/",
  3159. "keywords": [
  3160. "gd",
  3161. "image",
  3162. "imagick",
  3163. "laravel",
  3164. "thumbnail",
  3165. "watermark"
  3166. ],
  3167. "support": {
  3168. "issues": "https://github.com/Intervention/image/issues",
  3169. "source": "https://github.com/Intervention/image/tree/2.7.2"
  3170. },
  3171. "funding": [
  3172. {
  3173. "url": "https://paypal.me/interventionio",
  3174. "type": "custom"
  3175. },
  3176. {
  3177. "url": "https://github.com/Intervention",
  3178. "type": "github"
  3179. }
  3180. ],
  3181. "time": "2022-05-21T17:30:32+00:00"
  3182. },
  3183. {
  3184. "name": "jaybizzle/crawler-detect",
  3185. "version": "v1.3.4",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3189. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  3194. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  3195. "shasum": ""
  3196. },
  3197. "require": {
  3198. "php": ">=7.1.0"
  3199. },
  3200. "require-dev": {
  3201. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3202. },
  3203. "type": "library",
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Jaybizzle\\CrawlerDetect\\": "src/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Mark Beech",
  3216. "email": "m@rkbee.ch",
  3217. "role": "Developer"
  3218. }
  3219. ],
  3220. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3221. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3222. "keywords": [
  3223. "crawler",
  3224. "crawler detect",
  3225. "crawler detector",
  3226. "crawlerdetect",
  3227. "php crawler detect"
  3228. ],
  3229. "support": {
  3230. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  3231. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.4"
  3232. },
  3233. "time": "2025-03-05T23:12:10+00:00"
  3234. },
  3235. {
  3236. "name": "kalnoy/nestedset",
  3237. "version": "v6.0.5",
  3238. "source": {
  3239. "type": "git",
  3240. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  3241. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63"
  3242. },
  3243. "dist": {
  3244. "type": "zip",
  3245. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  3246. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  3247. "shasum": ""
  3248. },
  3249. "require": {
  3250. "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3251. "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3252. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3253. "php": "^7.2.5|^8.0"
  3254. },
  3255. "require-dev": {
  3256. "phpunit/phpunit": "7.*|8.*|9.*|^10.5"
  3257. },
  3258. "type": "library",
  3259. "extra": {
  3260. "laravel": {
  3261. "providers": [
  3262. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  3263. ]
  3264. },
  3265. "branch-alias": {
  3266. "dev-master": "v5.0.x-dev"
  3267. }
  3268. },
  3269. "autoload": {
  3270. "psr-4": {
  3271. "Kalnoy\\Nestedset\\": "src/"
  3272. }
  3273. },
  3274. "notification-url": "https://packagist.org/downloads/",
  3275. "license": [
  3276. "MIT"
  3277. ],
  3278. "authors": [
  3279. {
  3280. "name": "Alexander Kalnoy",
  3281. "email": "lazychaser@gmail.com"
  3282. }
  3283. ],
  3284. "description": "Nested Set Model for Laravel 5.7 and up",
  3285. "keywords": [
  3286. "database",
  3287. "hierarchy",
  3288. "laravel",
  3289. "nested sets",
  3290. "nsm"
  3291. ],
  3292. "support": {
  3293. "issues": "https://github.com/lazychaser/laravel-nestedset/issues",
  3294. "source": "https://github.com/lazychaser/laravel-nestedset/tree/v6.0.5"
  3295. },
  3296. "time": "2025-02-25T11:09:07+00:00"
  3297. },
  3298. {
  3299. "name": "khaled.alshamaa/ar-php",
  3300. "version": "v6.3.4",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/khaled-alshamaa/ar-php.git",
  3304. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/khaled-alshamaa/ar-php/zipball/36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  3309. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "ext-calendar": "*",
  3314. "ext-mbstring": "*",
  3315. "php": ">=5.6.0"
  3316. },
  3317. "require-dev": {
  3318. "phpunit/phpunit": "9.*"
  3319. },
  3320. "type": "library",
  3321. "autoload": {
  3322. "psr-4": {
  3323. "ArPHP\\I18N\\": "src"
  3324. }
  3325. },
  3326. "notification-url": "https://packagist.org/downloads/",
  3327. "license": [
  3328. "LGPL-3.0"
  3329. ],
  3330. "authors": [
  3331. {
  3332. "name": "Khaled Al-Sham'aa",
  3333. "email": "khaled@ar-php.org",
  3334. "homepage": "http://www.ar-php.org",
  3335. "role": "Developer"
  3336. }
  3337. ],
  3338. "description": "Set of functionalities enable Arabic website developers to serve professional search, present and process Arabic content in PHP",
  3339. "homepage": "https://github.com/khaled-alshamaa/ar-php",
  3340. "keywords": [
  3341. "arabic",
  3342. "arabic-calendar",
  3343. "arabic-glyphs",
  3344. "arabic-numbers",
  3345. "arabic-segments-identifier",
  3346. "arabic-sentiment",
  3347. "arabic-sql-query"
  3348. ],
  3349. "support": {
  3350. "issues": "https://github.com/khaled-alshamaa/ar-php/issues",
  3351. "source": "https://github.com/khaled-alshamaa/ar-php/tree/v6.3.4"
  3352. },
  3353. "funding": [
  3354. {
  3355. "url": "https://github.com/khaled-alshamaa",
  3356. "type": "github"
  3357. }
  3358. ],
  3359. "time": "2023-04-04T22:05:31+00:00"
  3360. },
  3361. {
  3362. "name": "konekt/concord",
  3363. "version": "1.16.0",
  3364. "source": {
  3365. "type": "git",
  3366. "url": "https://github.com/artkonekt/concord.git",
  3367. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c"
  3368. },
  3369. "dist": {
  3370. "type": "zip",
  3371. "url": "https://api.github.com/repos/artkonekt/concord/zipball/56d337f6ffc8534175c98b82071556a2d74f659c",
  3372. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c",
  3373. "shasum": ""
  3374. },
  3375. "require": {
  3376. "illuminate/console": "^10.0|^11.0|^12.0",
  3377. "illuminate/support": "^10.0|^11.0|^12.0",
  3378. "konekt/enum": "^2.1|^3.0|^4.0",
  3379. "konekt/enum-eloquent": "^1.7",
  3380. "php": "^8.1"
  3381. },
  3382. "require-dev": {
  3383. "orchestra/testbench": "^8.0|^9.0|^10.0",
  3384. "phpunit/phpunit": "9 - 11"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "laravel": {
  3389. "aliases": {
  3390. "Helper": "Konekt\\Concord\\Facades\\Helper",
  3391. "Concord": "Konekt\\Concord\\Facades\\Concord"
  3392. },
  3393. "providers": [
  3394. "Konekt\\Concord\\ConcordServiceProvider"
  3395. ]
  3396. }
  3397. },
  3398. "autoload": {
  3399. "files": [
  3400. "src/Support/functions.php"
  3401. ],
  3402. "psr-4": {
  3403. "Konekt\\Concord\\": "src"
  3404. }
  3405. },
  3406. "notification-url": "https://packagist.org/downloads/",
  3407. "license": [
  3408. "MIT"
  3409. ],
  3410. "authors": [
  3411. {
  3412. "name": "Attila Fulop",
  3413. "homepage": "https://github.com/fulopattila122"
  3414. }
  3415. ],
  3416. "description": "Concord is a Laravel Extension for building modular Laravel Applications",
  3417. "support": {
  3418. "issues": "https://github.com/artkonekt/concord",
  3419. "source": "https://github.com/artkonekt/concord/tree/1.16.0"
  3420. },
  3421. "time": "2025-03-03T11:39:09+00:00"
  3422. },
  3423. {
  3424. "name": "konekt/enum",
  3425. "version": "4.2.0",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/artkonekt/enum.git",
  3429. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/artkonekt/enum/zipball/e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  3434. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": "^8.0"
  3439. },
  3440. "require-dev": {
  3441. "phpunit/phpunit": "^9.0"
  3442. },
  3443. "type": "library",
  3444. "extra": {
  3445. "branch-alias": {
  3446. "dev-master": "4.x-dev"
  3447. }
  3448. },
  3449. "autoload": {
  3450. "psr-4": {
  3451. "Konekt\\Enum\\": "src/"
  3452. }
  3453. },
  3454. "notification-url": "https://packagist.org/downloads/",
  3455. "license": [
  3456. "MIT"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "Attila Fulop",
  3461. "homepage": "https://github.com/fulopattila122"
  3462. }
  3463. ],
  3464. "description": "SPL inspired PHP enum class implementation",
  3465. "keywords": [
  3466. "artkonekt",
  3467. "enum",
  3468. "konekt"
  3469. ],
  3470. "support": {
  3471. "issues": "https://github.com/artkonekt/enum/issues",
  3472. "source": "https://github.com/artkonekt/enum"
  3473. },
  3474. "time": "2024-02-29T15:32:06+00:00"
  3475. },
  3476. {
  3477. "name": "konekt/enum-eloquent",
  3478. "version": "1.10.0",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/artkonekt/enum-eloquent.git",
  3482. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/artkonekt/enum-eloquent/zipball/ebfbc29706c407eb98fdabd90c38501315d99ec7",
  3487. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "illuminate/database": "^8.75|9.*|10.*|11.*|12.*",
  3492. "konekt/enum": "^2.0.2 || ^3.0 | ^4.0",
  3493. "php": "^8.0"
  3494. },
  3495. "require-dev": {
  3496. "illuminate/events": "^8.75|9.*|10.*|11.*|12.*",
  3497. "phpunit/phpunit": "9 - 11"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "laravel": {
  3502. "providers": [
  3503. "Konekt\\Enum\\Eloquent\\EnumServiceProvider"
  3504. ]
  3505. }
  3506. },
  3507. "autoload": {
  3508. "psr-4": {
  3509. "Konekt\\Enum\\Eloquent\\": "src/"
  3510. }
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "Attila Fulop",
  3519. "homepage": "https://github.com/fulopattila122"
  3520. },
  3521. {
  3522. "name": "Semyon Chetvertnyh",
  3523. "homepage": "https://github.com/semyonchetvertnyh"
  3524. },
  3525. {
  3526. "name": "Mark Boessenkool",
  3527. "homepage": "https://github.com/TheM1984"
  3528. }
  3529. ],
  3530. "description": "Enum attribute casting for Eloquent models",
  3531. "keywords": [
  3532. "artkonekt",
  3533. "eloquent",
  3534. "enum",
  3535. "konekt",
  3536. "laravel"
  3537. ],
  3538. "support": {
  3539. "issues": "https://github.com/artkonekt/enum-eloquent/issues",
  3540. "source": "https://github.com/artkonekt/enum-eloquent"
  3541. },
  3542. "time": "2025-03-03T11:34:47+00:00"
  3543. },
  3544. {
  3545. "name": "laminas/laminas-diactoros",
  3546. "version": "3.5.0",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/laminas/laminas-diactoros.git",
  3550. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  3555. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  3560. "psr/http-factory": "^1.1",
  3561. "psr/http-message": "^1.1 || ^2.0"
  3562. },
  3563. "conflict": {
  3564. "amphp/amp": "<2.6.4"
  3565. },
  3566. "provide": {
  3567. "psr/http-factory-implementation": "^1.0",
  3568. "psr/http-message-implementation": "^1.1 || ^2.0"
  3569. },
  3570. "require-dev": {
  3571. "ext-curl": "*",
  3572. "ext-dom": "*",
  3573. "ext-gd": "*",
  3574. "ext-libxml": "*",
  3575. "http-interop/http-factory-tests": "^2.2.0",
  3576. "laminas/laminas-coding-standard": "~2.5.0",
  3577. "php-http/psr7-integration-tests": "^1.4.0",
  3578. "phpunit/phpunit": "^10.5.36",
  3579. "psalm/plugin-phpunit": "^0.19.0",
  3580. "vimeo/psalm": "^5.26.1"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "laminas": {
  3585. "module": "Laminas\\Diactoros",
  3586. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  3587. }
  3588. },
  3589. "autoload": {
  3590. "files": [
  3591. "src/functions/create_uploaded_file.php",
  3592. "src/functions/marshal_headers_from_sapi.php",
  3593. "src/functions/marshal_method_from_sapi.php",
  3594. "src/functions/marshal_protocol_version_from_sapi.php",
  3595. "src/functions/normalize_server.php",
  3596. "src/functions/normalize_uploaded_files.php",
  3597. "src/functions/parse_cookie_header.php"
  3598. ],
  3599. "psr-4": {
  3600. "Laminas\\Diactoros\\": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "BSD-3-Clause"
  3606. ],
  3607. "description": "PSR HTTP Message implementations",
  3608. "homepage": "https://laminas.dev",
  3609. "keywords": [
  3610. "http",
  3611. "laminas",
  3612. "psr",
  3613. "psr-17",
  3614. "psr-7"
  3615. ],
  3616. "support": {
  3617. "chat": "https://laminas.dev/chat",
  3618. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  3619. "forum": "https://discourse.laminas.dev",
  3620. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  3621. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  3622. "source": "https://github.com/laminas/laminas-diactoros"
  3623. },
  3624. "funding": [
  3625. {
  3626. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3627. "type": "community_bridge"
  3628. }
  3629. ],
  3630. "time": "2024-10-14T11:59:49+00:00"
  3631. },
  3632. {
  3633. "name": "laravel/framework",
  3634. "version": "v11.44.2",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/laravel/framework.git",
  3638. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/laravel/framework/zipball/f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3643. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3648. "composer-runtime-api": "^2.2",
  3649. "doctrine/inflector": "^2.0.5",
  3650. "dragonmantank/cron-expression": "^3.4",
  3651. "egulias/email-validator": "^3.2.1|^4.0",
  3652. "ext-ctype": "*",
  3653. "ext-filter": "*",
  3654. "ext-hash": "*",
  3655. "ext-mbstring": "*",
  3656. "ext-openssl": "*",
  3657. "ext-session": "*",
  3658. "ext-tokenizer": "*",
  3659. "fruitcake/php-cors": "^1.3",
  3660. "guzzlehttp/guzzle": "^7.8.2",
  3661. "guzzlehttp/uri-template": "^1.0",
  3662. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3663. "laravel/serializable-closure": "^1.3|^2.0",
  3664. "league/commonmark": "^2.6",
  3665. "league/flysystem": "^3.25.1",
  3666. "league/flysystem-local": "^3.25.1",
  3667. "league/uri": "^7.5.1",
  3668. "monolog/monolog": "^3.0",
  3669. "nesbot/carbon": "^2.72.6|^3.8.4",
  3670. "nunomaduro/termwind": "^2.0",
  3671. "php": "^8.2",
  3672. "psr/container": "^1.1.1|^2.0.1",
  3673. "psr/log": "^1.0|^2.0|^3.0",
  3674. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3675. "ramsey/uuid": "^4.7",
  3676. "symfony/console": "^7.0.3",
  3677. "symfony/error-handler": "^7.0.3",
  3678. "symfony/finder": "^7.0.3",
  3679. "symfony/http-foundation": "^7.2.0",
  3680. "symfony/http-kernel": "^7.0.3",
  3681. "symfony/mailer": "^7.0.3",
  3682. "symfony/mime": "^7.0.3",
  3683. "symfony/polyfill-php83": "^1.31",
  3684. "symfony/process": "^7.0.3",
  3685. "symfony/routing": "^7.0.3",
  3686. "symfony/uid": "^7.0.3",
  3687. "symfony/var-dumper": "^7.0.3",
  3688. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3689. "vlucas/phpdotenv": "^5.6.1",
  3690. "voku/portable-ascii": "^2.0.2"
  3691. },
  3692. "conflict": {
  3693. "tightenco/collect": "<5.5.33"
  3694. },
  3695. "provide": {
  3696. "psr/container-implementation": "1.1|2.0",
  3697. "psr/log-implementation": "1.0|2.0|3.0",
  3698. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3699. },
  3700. "replace": {
  3701. "illuminate/auth": "self.version",
  3702. "illuminate/broadcasting": "self.version",
  3703. "illuminate/bus": "self.version",
  3704. "illuminate/cache": "self.version",
  3705. "illuminate/collections": "self.version",
  3706. "illuminate/concurrency": "self.version",
  3707. "illuminate/conditionable": "self.version",
  3708. "illuminate/config": "self.version",
  3709. "illuminate/console": "self.version",
  3710. "illuminate/container": "self.version",
  3711. "illuminate/contracts": "self.version",
  3712. "illuminate/cookie": "self.version",
  3713. "illuminate/database": "self.version",
  3714. "illuminate/encryption": "self.version",
  3715. "illuminate/events": "self.version",
  3716. "illuminate/filesystem": "self.version",
  3717. "illuminate/hashing": "self.version",
  3718. "illuminate/http": "self.version",
  3719. "illuminate/log": "self.version",
  3720. "illuminate/macroable": "self.version",
  3721. "illuminate/mail": "self.version",
  3722. "illuminate/notifications": "self.version",
  3723. "illuminate/pagination": "self.version",
  3724. "illuminate/pipeline": "self.version",
  3725. "illuminate/process": "self.version",
  3726. "illuminate/queue": "self.version",
  3727. "illuminate/redis": "self.version",
  3728. "illuminate/routing": "self.version",
  3729. "illuminate/session": "self.version",
  3730. "illuminate/support": "self.version",
  3731. "illuminate/testing": "self.version",
  3732. "illuminate/translation": "self.version",
  3733. "illuminate/validation": "self.version",
  3734. "illuminate/view": "self.version",
  3735. "spatie/once": "*"
  3736. },
  3737. "require-dev": {
  3738. "ably/ably-php": "^1.0",
  3739. "aws/aws-sdk-php": "^3.322.9",
  3740. "ext-gmp": "*",
  3741. "fakerphp/faker": "^1.24",
  3742. "guzzlehttp/promises": "^2.0.3",
  3743. "guzzlehttp/psr7": "^2.4",
  3744. "laravel/pint": "^1.18",
  3745. "league/flysystem-aws-s3-v3": "^3.25.1",
  3746. "league/flysystem-ftp": "^3.25.1",
  3747. "league/flysystem-path-prefixing": "^3.25.1",
  3748. "league/flysystem-read-only": "^3.25.1",
  3749. "league/flysystem-sftp-v3": "^3.25.1",
  3750. "mockery/mockery": "^1.6.10",
  3751. "orchestra/testbench-core": "^9.11.2",
  3752. "pda/pheanstalk": "^5.0.6",
  3753. "php-http/discovery": "^1.15",
  3754. "phpstan/phpstan": "^2.0",
  3755. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3756. "predis/predis": "^2.3",
  3757. "resend/resend-php": "^0.10.0",
  3758. "symfony/cache": "^7.0.3",
  3759. "symfony/http-client": "^7.0.3",
  3760. "symfony/psr-http-message-bridge": "^7.0.3",
  3761. "symfony/translation": "^7.0.3"
  3762. },
  3763. "suggest": {
  3764. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3765. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3766. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3767. "ext-apcu": "Required to use the APC cache driver.",
  3768. "ext-fileinfo": "Required to use the Filesystem class.",
  3769. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3770. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3771. "ext-memcached": "Required to use the memcache cache driver.",
  3772. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3773. "ext-pdo": "Required to use all database features.",
  3774. "ext-posix": "Required to use all features of the queue worker.",
  3775. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3776. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3777. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3778. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3779. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3780. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3781. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3782. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3783. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3784. "mockery/mockery": "Required to use mocking (^1.6).",
  3785. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3786. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3787. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  3788. "predis/predis": "Required to use the predis connector (^2.3).",
  3789. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3790. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3791. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3792. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3793. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3794. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3795. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3796. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3797. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "11.x-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "files": [
  3807. "src/Illuminate/Collections/functions.php",
  3808. "src/Illuminate/Collections/helpers.php",
  3809. "src/Illuminate/Events/functions.php",
  3810. "src/Illuminate/Filesystem/functions.php",
  3811. "src/Illuminate/Foundation/helpers.php",
  3812. "src/Illuminate/Log/functions.php",
  3813. "src/Illuminate/Support/functions.php",
  3814. "src/Illuminate/Support/helpers.php"
  3815. ],
  3816. "psr-4": {
  3817. "Illuminate\\": "src/Illuminate/",
  3818. "Illuminate\\Support\\": [
  3819. "src/Illuminate/Macroable/",
  3820. "src/Illuminate/Collections/",
  3821. "src/Illuminate/Conditionable/"
  3822. ]
  3823. }
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "MIT"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "Taylor Otwell",
  3832. "email": "taylor@laravel.com"
  3833. }
  3834. ],
  3835. "description": "The Laravel Framework.",
  3836. "homepage": "https://laravel.com",
  3837. "keywords": [
  3838. "framework",
  3839. "laravel"
  3840. ],
  3841. "support": {
  3842. "issues": "https://github.com/laravel/framework/issues",
  3843. "source": "https://github.com/laravel/framework"
  3844. },
  3845. "time": "2025-03-12T14:34:30+00:00"
  3846. },
  3847. {
  3848. "name": "laravel/octane",
  3849. "version": "v2.8.2",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/laravel/octane.git",
  3853. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/laravel/octane/zipball/74fef270e9f7d2dfbfd8f272de81aac839942c29",
  3858. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "laminas/laminas-diactoros": "^3.0",
  3863. "laravel/framework": "^10.10.1|^11.0|^12.0",
  3864. "laravel/prompts": "^0.1.24|^0.2.0|^0.3.0",
  3865. "laravel/serializable-closure": "^1.3|^2.0",
  3866. "nesbot/carbon": "^2.66.0|^3.0",
  3867. "php": "^8.1.0",
  3868. "symfony/console": "^6.0|^7.0",
  3869. "symfony/psr-http-message-bridge": "^2.2.0|^6.4|^7.0"
  3870. },
  3871. "conflict": {
  3872. "spiral/roadrunner": "<2023.1.0",
  3873. "spiral/roadrunner-cli": "<2.6.0",
  3874. "spiral/roadrunner-http": "<3.3.0"
  3875. },
  3876. "require-dev": {
  3877. "guzzlehttp/guzzle": "^7.6.1",
  3878. "inertiajs/inertia-laravel": "^1.3.2|^2.0",
  3879. "laravel/scout": "^10.2.1",
  3880. "laravel/socialite": "^5.6.1",
  3881. "livewire/livewire": "^2.12.3|^3.0",
  3882. "mockery/mockery": "^1.5.1",
  3883. "nunomaduro/collision": "^6.4.0|^7.5.2|^8.0",
  3884. "orchestra/testbench": "^8.21|^9.0|^10.0",
  3885. "phpstan/phpstan": "^2.1.7",
  3886. "phpunit/phpunit": "^10.4|^11.5",
  3887. "spiral/roadrunner-cli": "^2.6.0",
  3888. "spiral/roadrunner-http": "^3.3.0"
  3889. },
  3890. "bin": [
  3891. "bin/roadrunner-worker",
  3892. "bin/swoole-server"
  3893. ],
  3894. "type": "library",
  3895. "extra": {
  3896. "laravel": {
  3897. "aliases": {
  3898. "Octane": "Laravel\\Octane\\Facades\\Octane"
  3899. },
  3900. "providers": [
  3901. "Laravel\\Octane\\OctaneServiceProvider"
  3902. ]
  3903. },
  3904. "branch-alias": {
  3905. "dev-master": "2.x-dev"
  3906. }
  3907. },
  3908. "autoload": {
  3909. "psr-4": {
  3910. "Laravel\\Octane\\": "src"
  3911. }
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "Taylor Otwell",
  3920. "email": "taylor@laravel.com"
  3921. }
  3922. ],
  3923. "description": "Supercharge your Laravel application's performance.",
  3924. "keywords": [
  3925. "frankenphp",
  3926. "laravel",
  3927. "octane",
  3928. "roadrunner",
  3929. "swoole"
  3930. ],
  3931. "support": {
  3932. "issues": "https://github.com/laravel/octane/issues",
  3933. "source": "https://github.com/laravel/octane"
  3934. },
  3935. "time": "2025-03-12T14:26:35+00:00"
  3936. },
  3937. {
  3938. "name": "laravel/prompts",
  3939. "version": "v0.3.5",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/laravel/prompts.git",
  3943. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  3948. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "composer-runtime-api": "^2.2",
  3953. "ext-mbstring": "*",
  3954. "php": "^8.1",
  3955. "symfony/console": "^6.2|^7.0"
  3956. },
  3957. "conflict": {
  3958. "illuminate/console": ">=10.17.0 <10.25.0",
  3959. "laravel/framework": ">=10.17.0 <10.25.0"
  3960. },
  3961. "require-dev": {
  3962. "illuminate/collections": "^10.0|^11.0|^12.0",
  3963. "mockery/mockery": "^1.5",
  3964. "pestphp/pest": "^2.3|^3.4",
  3965. "phpstan/phpstan": "^1.11",
  3966. "phpstan/phpstan-mockery": "^1.1"
  3967. },
  3968. "suggest": {
  3969. "ext-pcntl": "Required for the spinner to be animated."
  3970. },
  3971. "type": "library",
  3972. "extra": {
  3973. "branch-alias": {
  3974. "dev-main": "0.3.x-dev"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "files": [
  3979. "src/helpers.php"
  3980. ],
  3981. "psr-4": {
  3982. "Laravel\\Prompts\\": "src/"
  3983. }
  3984. },
  3985. "notification-url": "https://packagist.org/downloads/",
  3986. "license": [
  3987. "MIT"
  3988. ],
  3989. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3990. "support": {
  3991. "issues": "https://github.com/laravel/prompts/issues",
  3992. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  3993. },
  3994. "time": "2025-02-11T13:34:40+00:00"
  3995. },
  3996. {
  3997. "name": "laravel/sanctum",
  3998. "version": "v4.0.8",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/laravel/sanctum.git",
  4002. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  4007. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "ext-json": "*",
  4012. "illuminate/console": "^11.0|^12.0",
  4013. "illuminate/contracts": "^11.0|^12.0",
  4014. "illuminate/database": "^11.0|^12.0",
  4015. "illuminate/support": "^11.0|^12.0",
  4016. "php": "^8.2",
  4017. "symfony/console": "^7.0"
  4018. },
  4019. "require-dev": {
  4020. "mockery/mockery": "^1.6",
  4021. "orchestra/testbench": "^9.0|^10.0",
  4022. "phpstan/phpstan": "^1.10",
  4023. "phpunit/phpunit": "^11.3"
  4024. },
  4025. "type": "library",
  4026. "extra": {
  4027. "laravel": {
  4028. "providers": [
  4029. "Laravel\\Sanctum\\SanctumServiceProvider"
  4030. ]
  4031. }
  4032. },
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Laravel\\Sanctum\\": "src/"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "Taylor Otwell",
  4045. "email": "taylor@laravel.com"
  4046. }
  4047. ],
  4048. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  4049. "keywords": [
  4050. "auth",
  4051. "laravel",
  4052. "sanctum"
  4053. ],
  4054. "support": {
  4055. "issues": "https://github.com/laravel/sanctum/issues",
  4056. "source": "https://github.com/laravel/sanctum"
  4057. },
  4058. "time": "2025-01-26T19:34:36+00:00"
  4059. },
  4060. {
  4061. "name": "laravel/serializable-closure",
  4062. "version": "v2.0.3",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/laravel/serializable-closure.git",
  4066. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f",
  4071. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f",
  4072. "shasum": ""
  4073. },
  4074. "require": {
  4075. "php": "^8.1"
  4076. },
  4077. "require-dev": {
  4078. "illuminate/support": "^10.0|^11.0|^12.0",
  4079. "nesbot/carbon": "^2.67|^3.0",
  4080. "pestphp/pest": "^2.36|^3.0",
  4081. "phpstan/phpstan": "^2.0",
  4082. "symfony/var-dumper": "^6.2.0|^7.0.0"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "2.x-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Laravel\\SerializableClosure\\": "src/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Taylor Otwell",
  4102. "email": "taylor@laravel.com"
  4103. },
  4104. {
  4105. "name": "Nuno Maduro",
  4106. "email": "nuno@laravel.com"
  4107. }
  4108. ],
  4109. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  4110. "keywords": [
  4111. "closure",
  4112. "laravel",
  4113. "serializable"
  4114. ],
  4115. "support": {
  4116. "issues": "https://github.com/laravel/serializable-closure/issues",
  4117. "source": "https://github.com/laravel/serializable-closure"
  4118. },
  4119. "time": "2025-02-11T15:03:05+00:00"
  4120. },
  4121. {
  4122. "name": "laravel/socialite",
  4123. "version": "v5.18.0",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/laravel/socialite.git",
  4127. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/laravel/socialite/zipball/7809dc71250e074cd42970f0f803f2cddc04c5de",
  4132. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de",
  4133. "shasum": ""
  4134. },
  4135. "require": {
  4136. "ext-json": "*",
  4137. "firebase/php-jwt": "^6.4",
  4138. "guzzlehttp/guzzle": "^6.0|^7.0",
  4139. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4140. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4141. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4142. "league/oauth1-client": "^1.11",
  4143. "php": "^7.2|^8.0",
  4144. "phpseclib/phpseclib": "^3.0"
  4145. },
  4146. "require-dev": {
  4147. "mockery/mockery": "^1.0",
  4148. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  4149. "phpstan/phpstan": "^1.10",
  4150. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  4151. },
  4152. "type": "library",
  4153. "extra": {
  4154. "laravel": {
  4155. "aliases": {
  4156. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  4157. },
  4158. "providers": [
  4159. "Laravel\\Socialite\\SocialiteServiceProvider"
  4160. ]
  4161. },
  4162. "branch-alias": {
  4163. "dev-master": "5.x-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Laravel\\Socialite\\": "src/"
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Taylor Otwell",
  4178. "email": "taylor@laravel.com"
  4179. }
  4180. ],
  4181. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  4182. "homepage": "https://laravel.com",
  4183. "keywords": [
  4184. "laravel",
  4185. "oauth"
  4186. ],
  4187. "support": {
  4188. "issues": "https://github.com/laravel/socialite/issues",
  4189. "source": "https://github.com/laravel/socialite"
  4190. },
  4191. "time": "2025-02-11T13:38:19+00:00"
  4192. },
  4193. {
  4194. "name": "laravel/tinker",
  4195. "version": "v2.10.1",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/laravel/tinker.git",
  4199. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  4204. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4209. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4210. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  4211. "php": "^7.2.5|^8.0",
  4212. "psy/psysh": "^0.11.1|^0.12.0",
  4213. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  4214. },
  4215. "require-dev": {
  4216. "mockery/mockery": "~1.3.3|^1.4.2",
  4217. "phpstan/phpstan": "^1.10",
  4218. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  4219. },
  4220. "suggest": {
  4221. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  4222. },
  4223. "type": "library",
  4224. "extra": {
  4225. "laravel": {
  4226. "providers": [
  4227. "Laravel\\Tinker\\TinkerServiceProvider"
  4228. ]
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Laravel\\Tinker\\": "src/"
  4234. }
  4235. },
  4236. "notification-url": "https://packagist.org/downloads/",
  4237. "license": [
  4238. "MIT"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "Taylor Otwell",
  4243. "email": "taylor@laravel.com"
  4244. }
  4245. ],
  4246. "description": "Powerful REPL for the Laravel framework.",
  4247. "keywords": [
  4248. "REPL",
  4249. "Tinker",
  4250. "laravel",
  4251. "psysh"
  4252. ],
  4253. "support": {
  4254. "issues": "https://github.com/laravel/tinker/issues",
  4255. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  4256. },
  4257. "time": "2025-01-27T14:24:01+00:00"
  4258. },
  4259. {
  4260. "name": "laravel/ui",
  4261. "version": "v4.6.1",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/laravel/ui.git",
  4265. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  4270. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  4271. "shasum": ""
  4272. },
  4273. "require": {
  4274. "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
  4275. "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
  4276. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  4277. "illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
  4278. "php": "^8.0",
  4279. "symfony/console": "^6.0|^7.0"
  4280. },
  4281. "require-dev": {
  4282. "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
  4283. "phpunit/phpunit": "^9.3|^10.4|^11.5"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "laravel": {
  4288. "providers": [
  4289. "Laravel\\Ui\\UiServiceProvider"
  4290. ]
  4291. },
  4292. "branch-alias": {
  4293. "dev-master": "4.x-dev"
  4294. }
  4295. },
  4296. "autoload": {
  4297. "psr-4": {
  4298. "Laravel\\Ui\\": "src/",
  4299. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  4300. }
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "Taylor Otwell",
  4309. "email": "taylor@laravel.com"
  4310. }
  4311. ],
  4312. "description": "Laravel UI utilities and presets.",
  4313. "keywords": [
  4314. "laravel",
  4315. "ui"
  4316. ],
  4317. "support": {
  4318. "source": "https://github.com/laravel/ui/tree/v4.6.1"
  4319. },
  4320. "time": "2025-01-28T15:15:29+00:00"
  4321. },
  4322. {
  4323. "name": "league/commonmark",
  4324. "version": "2.7.0",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/thephpleague/commonmark.git",
  4328. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  4333. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "ext-mbstring": "*",
  4338. "league/config": "^1.1.1",
  4339. "php": "^7.4 || ^8.0",
  4340. "psr/event-dispatcher": "^1.0",
  4341. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  4342. "symfony/polyfill-php80": "^1.16"
  4343. },
  4344. "require-dev": {
  4345. "cebe/markdown": "^1.0",
  4346. "commonmark/cmark": "0.31.1",
  4347. "commonmark/commonmark.js": "0.31.1",
  4348. "composer/package-versions-deprecated": "^1.8",
  4349. "embed/embed": "^4.4",
  4350. "erusev/parsedown": "^1.0",
  4351. "ext-json": "*",
  4352. "github/gfm": "0.29.0",
  4353. "michelf/php-markdown": "^1.4 || ^2.0",
  4354. "nyholm/psr7": "^1.5",
  4355. "phpstan/phpstan": "^1.8.2",
  4356. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  4357. "scrutinizer/ocular": "^1.8.1",
  4358. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  4359. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  4360. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  4361. "unleashedtech/php-coding-standard": "^3.1.1",
  4362. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  4363. },
  4364. "suggest": {
  4365. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  4366. },
  4367. "type": "library",
  4368. "extra": {
  4369. "branch-alias": {
  4370. "dev-main": "2.8-dev"
  4371. }
  4372. },
  4373. "autoload": {
  4374. "psr-4": {
  4375. "League\\CommonMark\\": "src"
  4376. }
  4377. },
  4378. "notification-url": "https://packagist.org/downloads/",
  4379. "license": [
  4380. "BSD-3-Clause"
  4381. ],
  4382. "authors": [
  4383. {
  4384. "name": "Colin O'Dell",
  4385. "email": "colinodell@gmail.com",
  4386. "homepage": "https://www.colinodell.com",
  4387. "role": "Lead Developer"
  4388. }
  4389. ],
  4390. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  4391. "homepage": "https://commonmark.thephpleague.com",
  4392. "keywords": [
  4393. "commonmark",
  4394. "flavored",
  4395. "gfm",
  4396. "github",
  4397. "github-flavored",
  4398. "markdown",
  4399. "md",
  4400. "parser"
  4401. ],
  4402. "support": {
  4403. "docs": "https://commonmark.thephpleague.com/",
  4404. "forum": "https://github.com/thephpleague/commonmark/discussions",
  4405. "issues": "https://github.com/thephpleague/commonmark/issues",
  4406. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  4407. "source": "https://github.com/thephpleague/commonmark"
  4408. },
  4409. "funding": [
  4410. {
  4411. "url": "https://www.colinodell.com/sponsor",
  4412. "type": "custom"
  4413. },
  4414. {
  4415. "url": "https://www.paypal.me/colinpodell/10.00",
  4416. "type": "custom"
  4417. },
  4418. {
  4419. "url": "https://github.com/colinodell",
  4420. "type": "github"
  4421. },
  4422. {
  4423. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  4424. "type": "tidelift"
  4425. }
  4426. ],
  4427. "time": "2025-05-05T12:20:28+00:00"
  4428. },
  4429. {
  4430. "name": "league/config",
  4431. "version": "v1.2.0",
  4432. "source": {
  4433. "type": "git",
  4434. "url": "https://github.com/thephpleague/config.git",
  4435. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  4436. },
  4437. "dist": {
  4438. "type": "zip",
  4439. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  4440. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  4441. "shasum": ""
  4442. },
  4443. "require": {
  4444. "dflydev/dot-access-data": "^3.0.1",
  4445. "nette/schema": "^1.2",
  4446. "php": "^7.4 || ^8.0"
  4447. },
  4448. "require-dev": {
  4449. "phpstan/phpstan": "^1.8.2",
  4450. "phpunit/phpunit": "^9.5.5",
  4451. "scrutinizer/ocular": "^1.8.1",
  4452. "unleashedtech/php-coding-standard": "^3.1",
  4453. "vimeo/psalm": "^4.7.3"
  4454. },
  4455. "type": "library",
  4456. "extra": {
  4457. "branch-alias": {
  4458. "dev-main": "1.2-dev"
  4459. }
  4460. },
  4461. "autoload": {
  4462. "psr-4": {
  4463. "League\\Config\\": "src"
  4464. }
  4465. },
  4466. "notification-url": "https://packagist.org/downloads/",
  4467. "license": [
  4468. "BSD-3-Clause"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "Colin O'Dell",
  4473. "email": "colinodell@gmail.com",
  4474. "homepage": "https://www.colinodell.com",
  4475. "role": "Lead Developer"
  4476. }
  4477. ],
  4478. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  4479. "homepage": "https://config.thephpleague.com",
  4480. "keywords": [
  4481. "array",
  4482. "config",
  4483. "configuration",
  4484. "dot",
  4485. "dot-access",
  4486. "nested",
  4487. "schema"
  4488. ],
  4489. "support": {
  4490. "docs": "https://config.thephpleague.com/",
  4491. "issues": "https://github.com/thephpleague/config/issues",
  4492. "rss": "https://github.com/thephpleague/config/releases.atom",
  4493. "source": "https://github.com/thephpleague/config"
  4494. },
  4495. "funding": [
  4496. {
  4497. "url": "https://www.colinodell.com/sponsor",
  4498. "type": "custom"
  4499. },
  4500. {
  4501. "url": "https://www.paypal.me/colinpodell/10.00",
  4502. "type": "custom"
  4503. },
  4504. {
  4505. "url": "https://github.com/colinodell",
  4506. "type": "github"
  4507. }
  4508. ],
  4509. "time": "2022-12-11T20:36:23+00:00"
  4510. },
  4511. {
  4512. "name": "league/flysystem",
  4513. "version": "3.29.1",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/thephpleague/flysystem.git",
  4517. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  4522. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "league/flysystem-local": "^3.0.0",
  4527. "league/mime-type-detection": "^1.0.0",
  4528. "php": "^8.0.2"
  4529. },
  4530. "conflict": {
  4531. "async-aws/core": "<1.19.0",
  4532. "async-aws/s3": "<1.14.0",
  4533. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  4534. "guzzlehttp/guzzle": "<7.0",
  4535. "guzzlehttp/ringphp": "<1.1.1",
  4536. "phpseclib/phpseclib": "3.0.15",
  4537. "symfony/http-client": "<5.2"
  4538. },
  4539. "require-dev": {
  4540. "async-aws/s3": "^1.5 || ^2.0",
  4541. "async-aws/simple-s3": "^1.1 || ^2.0",
  4542. "aws/aws-sdk-php": "^3.295.10",
  4543. "composer/semver": "^3.0",
  4544. "ext-fileinfo": "*",
  4545. "ext-ftp": "*",
  4546. "ext-mongodb": "^1.3",
  4547. "ext-zip": "*",
  4548. "friendsofphp/php-cs-fixer": "^3.5",
  4549. "google/cloud-storage": "^1.23",
  4550. "guzzlehttp/psr7": "^2.6",
  4551. "microsoft/azure-storage-blob": "^1.1",
  4552. "mongodb/mongodb": "^1.2",
  4553. "phpseclib/phpseclib": "^3.0.36",
  4554. "phpstan/phpstan": "^1.10",
  4555. "phpunit/phpunit": "^9.5.11|^10.0",
  4556. "sabre/dav": "^4.6.0"
  4557. },
  4558. "type": "library",
  4559. "autoload": {
  4560. "psr-4": {
  4561. "League\\Flysystem\\": "src"
  4562. }
  4563. },
  4564. "notification-url": "https://packagist.org/downloads/",
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "authors": [
  4569. {
  4570. "name": "Frank de Jonge",
  4571. "email": "info@frankdejonge.nl"
  4572. }
  4573. ],
  4574. "description": "File storage abstraction for PHP",
  4575. "keywords": [
  4576. "WebDAV",
  4577. "aws",
  4578. "cloud",
  4579. "file",
  4580. "files",
  4581. "filesystem",
  4582. "filesystems",
  4583. "ftp",
  4584. "s3",
  4585. "sftp",
  4586. "storage"
  4587. ],
  4588. "support": {
  4589. "issues": "https://github.com/thephpleague/flysystem/issues",
  4590. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  4591. },
  4592. "time": "2024-10-08T08:58:34+00:00"
  4593. },
  4594. {
  4595. "name": "league/flysystem-aws-s3-v3",
  4596. "version": "3.29.0",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  4600. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://repo.huaweicloud.com/repository/php/league/flysystem-aws-s3-v3/3.29.0/league-flysystem-aws-s3-v3-3.29.0.zip",
  4605. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  4606. "shasum": ""
  4607. },
  4608. "require": {
  4609. "aws/aws-sdk-php": "^3.295.10",
  4610. "league/flysystem": "^3.10.0",
  4611. "league/mime-type-detection": "^1.0.0",
  4612. "php": "^8.0.2"
  4613. },
  4614. "conflict": {
  4615. "guzzlehttp/guzzle": "<7.0",
  4616. "guzzlehttp/ringphp": "<1.1.1"
  4617. },
  4618. "type": "library",
  4619. "autoload": {
  4620. "psr-4": {
  4621. "League\\Flysystem\\AwsS3V3\\": ""
  4622. }
  4623. },
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Frank de Jonge",
  4630. "email": "info@frankdejonge.nl"
  4631. }
  4632. ],
  4633. "description": "AWS S3 filesystem adapter for Flysystem.",
  4634. "keywords": [
  4635. "Flysystem",
  4636. "aws",
  4637. "file",
  4638. "files",
  4639. "filesystem",
  4640. "s3",
  4641. "storage"
  4642. ],
  4643. "time": "2024-08-17T13:10:48+00:00"
  4644. },
  4645. {
  4646. "name": "league/flysystem-local",
  4647. "version": "3.29.0",
  4648. "source": {
  4649. "type": "git",
  4650. "url": "https://github.com/thephpleague/flysystem-local.git",
  4651. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  4652. },
  4653. "dist": {
  4654. "type": "zip",
  4655. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4656. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4657. "shasum": ""
  4658. },
  4659. "require": {
  4660. "ext-fileinfo": "*",
  4661. "league/flysystem": "^3.0.0",
  4662. "league/mime-type-detection": "^1.0.0",
  4663. "php": "^8.0.2"
  4664. },
  4665. "type": "library",
  4666. "autoload": {
  4667. "psr-4": {
  4668. "League\\Flysystem\\Local\\": ""
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "MIT"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Frank de Jonge",
  4678. "email": "info@frankdejonge.nl"
  4679. }
  4680. ],
  4681. "description": "Local filesystem adapter for Flysystem.",
  4682. "keywords": [
  4683. "Flysystem",
  4684. "file",
  4685. "files",
  4686. "filesystem",
  4687. "local"
  4688. ],
  4689. "support": {
  4690. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  4691. },
  4692. "time": "2024-08-09T21:24:39+00:00"
  4693. },
  4694. {
  4695. "name": "league/mime-type-detection",
  4696. "version": "1.16.0",
  4697. "source": {
  4698. "type": "git",
  4699. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4700. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4701. },
  4702. "dist": {
  4703. "type": "zip",
  4704. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4705. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4706. "shasum": ""
  4707. },
  4708. "require": {
  4709. "ext-fileinfo": "*",
  4710. "php": "^7.4 || ^8.0"
  4711. },
  4712. "require-dev": {
  4713. "friendsofphp/php-cs-fixer": "^3.2",
  4714. "phpstan/phpstan": "^0.12.68",
  4715. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4716. },
  4717. "type": "library",
  4718. "autoload": {
  4719. "psr-4": {
  4720. "League\\MimeTypeDetection\\": "src"
  4721. }
  4722. },
  4723. "notification-url": "https://packagist.org/downloads/",
  4724. "license": [
  4725. "MIT"
  4726. ],
  4727. "authors": [
  4728. {
  4729. "name": "Frank de Jonge",
  4730. "email": "info@frankdejonge.nl"
  4731. }
  4732. ],
  4733. "description": "Mime-type detection for Flysystem",
  4734. "support": {
  4735. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4736. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4737. },
  4738. "funding": [
  4739. {
  4740. "url": "https://github.com/frankdejonge",
  4741. "type": "github"
  4742. },
  4743. {
  4744. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4745. "type": "tidelift"
  4746. }
  4747. ],
  4748. "time": "2024-09-21T08:32:55+00:00"
  4749. },
  4750. {
  4751. "name": "league/oauth1-client",
  4752. "version": "v1.11.0",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/thephpleague/oauth1-client.git",
  4756. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4761. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4762. "shasum": ""
  4763. },
  4764. "require": {
  4765. "ext-json": "*",
  4766. "ext-openssl": "*",
  4767. "guzzlehttp/guzzle": "^6.0|^7.0",
  4768. "guzzlehttp/psr7": "^1.7|^2.0",
  4769. "php": ">=7.1||>=8.0"
  4770. },
  4771. "require-dev": {
  4772. "ext-simplexml": "*",
  4773. "friendsofphp/php-cs-fixer": "^2.17",
  4774. "mockery/mockery": "^1.3.3",
  4775. "phpstan/phpstan": "^0.12.42",
  4776. "phpunit/phpunit": "^7.5||9.5"
  4777. },
  4778. "suggest": {
  4779. "ext-simplexml": "For decoding XML-based responses."
  4780. },
  4781. "type": "library",
  4782. "extra": {
  4783. "branch-alias": {
  4784. "dev-master": "1.0-dev",
  4785. "dev-develop": "2.0-dev"
  4786. }
  4787. },
  4788. "autoload": {
  4789. "psr-4": {
  4790. "League\\OAuth1\\Client\\": "src/"
  4791. }
  4792. },
  4793. "notification-url": "https://packagist.org/downloads/",
  4794. "license": [
  4795. "MIT"
  4796. ],
  4797. "authors": [
  4798. {
  4799. "name": "Ben Corlett",
  4800. "email": "bencorlett@me.com",
  4801. "homepage": "http://www.webcomm.com.au",
  4802. "role": "Developer"
  4803. }
  4804. ],
  4805. "description": "OAuth 1.0 Client Library",
  4806. "keywords": [
  4807. "Authentication",
  4808. "SSO",
  4809. "authorization",
  4810. "bitbucket",
  4811. "identity",
  4812. "idp",
  4813. "oauth",
  4814. "oauth1",
  4815. "single sign on",
  4816. "trello",
  4817. "tumblr",
  4818. "twitter"
  4819. ],
  4820. "support": {
  4821. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4822. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4823. },
  4824. "time": "2024-12-10T19:59:05+00:00"
  4825. },
  4826. {
  4827. "name": "league/uri",
  4828. "version": "7.5.1",
  4829. "source": {
  4830. "type": "git",
  4831. "url": "https://github.com/thephpleague/uri.git",
  4832. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4833. },
  4834. "dist": {
  4835. "type": "zip",
  4836. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4837. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4838. "shasum": ""
  4839. },
  4840. "require": {
  4841. "league/uri-interfaces": "^7.5",
  4842. "php": "^8.1"
  4843. },
  4844. "conflict": {
  4845. "league/uri-schemes": "^1.0"
  4846. },
  4847. "suggest": {
  4848. "ext-bcmath": "to improve IPV4 host parsing",
  4849. "ext-fileinfo": "to create Data URI from file contennts",
  4850. "ext-gmp": "to improve IPV4 host parsing",
  4851. "ext-intl": "to handle IDN host with the best performance",
  4852. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4853. "league/uri-components": "Needed to easily manipulate URI objects components",
  4854. "php-64bit": "to improve IPV4 host parsing",
  4855. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4856. },
  4857. "type": "library",
  4858. "extra": {
  4859. "branch-alias": {
  4860. "dev-master": "7.x-dev"
  4861. }
  4862. },
  4863. "autoload": {
  4864. "psr-4": {
  4865. "League\\Uri\\": ""
  4866. }
  4867. },
  4868. "notification-url": "https://packagist.org/downloads/",
  4869. "license": [
  4870. "MIT"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "Ignace Nyamagana Butera",
  4875. "email": "nyamsprod@gmail.com",
  4876. "homepage": "https://nyamsprod.com"
  4877. }
  4878. ],
  4879. "description": "URI manipulation library",
  4880. "homepage": "https://uri.thephpleague.com",
  4881. "keywords": [
  4882. "data-uri",
  4883. "file-uri",
  4884. "ftp",
  4885. "hostname",
  4886. "http",
  4887. "https",
  4888. "middleware",
  4889. "parse_str",
  4890. "parse_url",
  4891. "psr-7",
  4892. "query-string",
  4893. "querystring",
  4894. "rfc3986",
  4895. "rfc3987",
  4896. "rfc6570",
  4897. "uri",
  4898. "uri-template",
  4899. "url",
  4900. "ws"
  4901. ],
  4902. "support": {
  4903. "docs": "https://uri.thephpleague.com",
  4904. "forum": "https://thephpleague.slack.com",
  4905. "issues": "https://github.com/thephpleague/uri-src/issues",
  4906. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4907. },
  4908. "funding": [
  4909. {
  4910. "url": "https://github.com/sponsors/nyamsprod",
  4911. "type": "github"
  4912. }
  4913. ],
  4914. "time": "2024-12-08T08:40:02+00:00"
  4915. },
  4916. {
  4917. "name": "league/uri-interfaces",
  4918. "version": "7.5.0",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4922. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4927. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "ext-filter": "*",
  4932. "php": "^8.1",
  4933. "psr/http-factory": "^1",
  4934. "psr/http-message": "^1.1 || ^2.0"
  4935. },
  4936. "suggest": {
  4937. "ext-bcmath": "to improve IPV4 host parsing",
  4938. "ext-gmp": "to improve IPV4 host parsing",
  4939. "ext-intl": "to handle IDN host with the best performance",
  4940. "php-64bit": "to improve IPV4 host parsing",
  4941. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4942. },
  4943. "type": "library",
  4944. "extra": {
  4945. "branch-alias": {
  4946. "dev-master": "7.x-dev"
  4947. }
  4948. },
  4949. "autoload": {
  4950. "psr-4": {
  4951. "League\\Uri\\": ""
  4952. }
  4953. },
  4954. "notification-url": "https://packagist.org/downloads/",
  4955. "license": [
  4956. "MIT"
  4957. ],
  4958. "authors": [
  4959. {
  4960. "name": "Ignace Nyamagana Butera",
  4961. "email": "nyamsprod@gmail.com",
  4962. "homepage": "https://nyamsprod.com"
  4963. }
  4964. ],
  4965. "description": "Common interfaces and classes for URI representation and interaction",
  4966. "homepage": "https://uri.thephpleague.com",
  4967. "keywords": [
  4968. "data-uri",
  4969. "file-uri",
  4970. "ftp",
  4971. "hostname",
  4972. "http",
  4973. "https",
  4974. "parse_str",
  4975. "parse_url",
  4976. "psr-7",
  4977. "query-string",
  4978. "querystring",
  4979. "rfc3986",
  4980. "rfc3987",
  4981. "rfc6570",
  4982. "uri",
  4983. "url",
  4984. "ws"
  4985. ],
  4986. "support": {
  4987. "docs": "https://uri.thephpleague.com",
  4988. "forum": "https://thephpleague.slack.com",
  4989. "issues": "https://github.com/thephpleague/uri-src/issues",
  4990. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4991. },
  4992. "funding": [
  4993. {
  4994. "url": "https://github.com/sponsors/nyamsprod",
  4995. "type": "github"
  4996. }
  4997. ],
  4998. "time": "2024-12-08T08:18:47+00:00"
  4999. },
  5000. {
  5001. "name": "maatwebsite/excel",
  5002. "version": "3.1.64",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  5006. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79",
  5011. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "composer/semver": "^3.3",
  5016. "ext-json": "*",
  5017. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
  5018. "php": "^7.0||^8.0",
  5019. "phpoffice/phpspreadsheet": "^1.29.9",
  5020. "psr/simple-cache": "^1.0||^2.0||^3.0"
  5021. },
  5022. "require-dev": {
  5023. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  5024. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
  5025. "predis/predis": "^1.1"
  5026. },
  5027. "type": "library",
  5028. "extra": {
  5029. "laravel": {
  5030. "aliases": {
  5031. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  5032. },
  5033. "providers": [
  5034. "Maatwebsite\\Excel\\ExcelServiceProvider"
  5035. ]
  5036. }
  5037. },
  5038. "autoload": {
  5039. "psr-4": {
  5040. "Maatwebsite\\Excel\\": "src/"
  5041. }
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Patrick Brouwers",
  5050. "email": "patrick@spartner.nl"
  5051. }
  5052. ],
  5053. "description": "Supercharged Excel exports and imports in Laravel",
  5054. "keywords": [
  5055. "PHPExcel",
  5056. "batch",
  5057. "csv",
  5058. "excel",
  5059. "export",
  5060. "import",
  5061. "laravel",
  5062. "php",
  5063. "phpspreadsheet"
  5064. ],
  5065. "support": {
  5066. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  5067. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64"
  5068. },
  5069. "funding": [
  5070. {
  5071. "url": "https://laravel-excel.com/commercial-support",
  5072. "type": "custom"
  5073. },
  5074. {
  5075. "url": "https://github.com/patrickbrouwers",
  5076. "type": "github"
  5077. }
  5078. ],
  5079. "time": "2025-02-24T11:12:50+00:00"
  5080. },
  5081. {
  5082. "name": "maennchen/zipstream-php",
  5083. "version": "3.1.2",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  5087. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  5092. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  5093. "shasum": ""
  5094. },
  5095. "require": {
  5096. "ext-mbstring": "*",
  5097. "ext-zlib": "*",
  5098. "php-64bit": "^8.2"
  5099. },
  5100. "require-dev": {
  5101. "brianium/paratest": "^7.7",
  5102. "ext-zip": "*",
  5103. "friendsofphp/php-cs-fixer": "^3.16",
  5104. "guzzlehttp/guzzle": "^7.5",
  5105. "mikey179/vfsstream": "^1.6",
  5106. "php-coveralls/php-coveralls": "^2.5",
  5107. "phpunit/phpunit": "^11.0",
  5108. "vimeo/psalm": "^6.0"
  5109. },
  5110. "suggest": {
  5111. "guzzlehttp/psr7": "^2.4",
  5112. "psr/http-message": "^2.0"
  5113. },
  5114. "type": "library",
  5115. "autoload": {
  5116. "psr-4": {
  5117. "ZipStream\\": "src/"
  5118. }
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "MIT"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Paul Duncan",
  5127. "email": "pabs@pablotron.org"
  5128. },
  5129. {
  5130. "name": "Jonatan Männchen",
  5131. "email": "jonatan@maennchen.ch"
  5132. },
  5133. {
  5134. "name": "Jesse Donat",
  5135. "email": "donatj@gmail.com"
  5136. },
  5137. {
  5138. "name": "András Kolesár",
  5139. "email": "kolesar@kolesar.hu"
  5140. }
  5141. ],
  5142. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  5143. "keywords": [
  5144. "stream",
  5145. "zip"
  5146. ],
  5147. "support": {
  5148. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  5149. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  5150. },
  5151. "funding": [
  5152. {
  5153. "url": "https://github.com/maennchen",
  5154. "type": "github"
  5155. }
  5156. ],
  5157. "time": "2025-01-27T12:07:53+00:00"
  5158. },
  5159. {
  5160. "name": "markbaker/complex",
  5161. "version": "3.0.2",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/MarkBaker/PHPComplex.git",
  5165. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  5170. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": "^7.2 || ^8.0"
  5175. },
  5176. "require-dev": {
  5177. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5178. "phpcompatibility/php-compatibility": "^9.3",
  5179. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  5180. "squizlabs/php_codesniffer": "^3.7"
  5181. },
  5182. "type": "library",
  5183. "autoload": {
  5184. "psr-4": {
  5185. "Complex\\": "classes/src/"
  5186. }
  5187. },
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "Mark Baker",
  5195. "email": "mark@lange.demon.co.uk"
  5196. }
  5197. ],
  5198. "description": "PHP Class for working with complex numbers",
  5199. "homepage": "https://github.com/MarkBaker/PHPComplex",
  5200. "keywords": [
  5201. "complex",
  5202. "mathematics"
  5203. ],
  5204. "support": {
  5205. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  5206. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  5207. },
  5208. "time": "2022-12-06T16:21:08+00:00"
  5209. },
  5210. {
  5211. "name": "markbaker/matrix",
  5212. "version": "3.0.1",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  5216. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  5221. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  5222. "shasum": ""
  5223. },
  5224. "require": {
  5225. "php": "^7.1 || ^8.0"
  5226. },
  5227. "require-dev": {
  5228. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5229. "phpcompatibility/php-compatibility": "^9.3",
  5230. "phpdocumentor/phpdocumentor": "2.*",
  5231. "phploc/phploc": "^4.0",
  5232. "phpmd/phpmd": "2.*",
  5233. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  5234. "sebastian/phpcpd": "^4.0",
  5235. "squizlabs/php_codesniffer": "^3.7"
  5236. },
  5237. "type": "library",
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Matrix\\": "classes/src/"
  5241. }
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "Mark Baker",
  5250. "email": "mark@demon-angel.eu"
  5251. }
  5252. ],
  5253. "description": "PHP Class for working with matrices",
  5254. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  5255. "keywords": [
  5256. "mathematics",
  5257. "matrix",
  5258. "vector"
  5259. ],
  5260. "support": {
  5261. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  5262. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  5263. },
  5264. "time": "2022-12-02T22:17:43+00:00"
  5265. },
  5266. {
  5267. "name": "masterminds/html5",
  5268. "version": "2.9.0",
  5269. "source": {
  5270. "type": "git",
  5271. "url": "https://github.com/Masterminds/html5-php.git",
  5272. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  5273. },
  5274. "dist": {
  5275. "type": "zip",
  5276. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  5277. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  5278. "shasum": ""
  5279. },
  5280. "require": {
  5281. "ext-dom": "*",
  5282. "php": ">=5.3.0"
  5283. },
  5284. "require-dev": {
  5285. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  5286. },
  5287. "type": "library",
  5288. "extra": {
  5289. "branch-alias": {
  5290. "dev-master": "2.7-dev"
  5291. }
  5292. },
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Masterminds\\": "src"
  5296. }
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "Matt Butcher",
  5305. "email": "technosophos@gmail.com"
  5306. },
  5307. {
  5308. "name": "Matt Farina",
  5309. "email": "matt@mattfarina.com"
  5310. },
  5311. {
  5312. "name": "Asmir Mustafic",
  5313. "email": "goetas@gmail.com"
  5314. }
  5315. ],
  5316. "description": "An HTML5 parser and serializer.",
  5317. "homepage": "http://masterminds.github.io/html5-php",
  5318. "keywords": [
  5319. "HTML5",
  5320. "dom",
  5321. "html",
  5322. "parser",
  5323. "querypath",
  5324. "serializer",
  5325. "xml"
  5326. ],
  5327. "support": {
  5328. "issues": "https://github.com/Masterminds/html5-php/issues",
  5329. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  5330. },
  5331. "time": "2024-03-31T07:05:07+00:00"
  5332. },
  5333. {
  5334. "name": "mobiledetect/mobiledetectlib",
  5335. "version": "4.8.09",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  5339. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  5344. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  5345. "shasum": ""
  5346. },
  5347. "require": {
  5348. "php": ">=8.0",
  5349. "psr/cache": "^3.0",
  5350. "psr/simple-cache": "^3"
  5351. },
  5352. "require-dev": {
  5353. "friendsofphp/php-cs-fixer": "^v3.65.0",
  5354. "phpbench/phpbench": "^1.2",
  5355. "phpstan/phpstan": "^1.12.x-dev",
  5356. "phpunit/phpunit": "^9.6.18",
  5357. "squizlabs/php_codesniffer": "^3.11.1"
  5358. },
  5359. "type": "library",
  5360. "autoload": {
  5361. "psr-4": {
  5362. "Detection\\": "src/"
  5363. }
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "MIT"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Serban Ghita",
  5372. "email": "serbanghita@gmail.com",
  5373. "homepage": "http://mobiledetect.net",
  5374. "role": "Developer"
  5375. }
  5376. ],
  5377. "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.",
  5378. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  5379. "keywords": [
  5380. "detect mobile devices",
  5381. "mobile",
  5382. "mobile detect",
  5383. "mobile detector",
  5384. "php mobile detect"
  5385. ],
  5386. "support": {
  5387. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  5388. "source": "https://github.com/serbanghita/Mobile-Detect/tree/4.8.09"
  5389. },
  5390. "funding": [
  5391. {
  5392. "url": "https://github.com/serbanghita",
  5393. "type": "github"
  5394. }
  5395. ],
  5396. "time": "2024-12-10T15:32:06+00:00"
  5397. },
  5398. {
  5399. "name": "monolog/monolog",
  5400. "version": "3.8.1",
  5401. "source": {
  5402. "type": "git",
  5403. "url": "https://github.com/Seldaek/monolog.git",
  5404. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5405. },
  5406. "dist": {
  5407. "type": "zip",
  5408. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5409. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5410. "shasum": ""
  5411. },
  5412. "require": {
  5413. "php": ">=8.1",
  5414. "psr/log": "^2.0 || ^3.0"
  5415. },
  5416. "provide": {
  5417. "psr/log-implementation": "3.0.0"
  5418. },
  5419. "require-dev": {
  5420. "aws/aws-sdk-php": "^3.0",
  5421. "doctrine/couchdb": "~1.0@dev",
  5422. "elasticsearch/elasticsearch": "^7 || ^8",
  5423. "ext-json": "*",
  5424. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5425. "guzzlehttp/guzzle": "^7.4.5",
  5426. "guzzlehttp/psr7": "^2.2",
  5427. "mongodb/mongodb": "^1.8",
  5428. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5429. "php-console/php-console": "^3.1.8",
  5430. "phpstan/phpstan": "^2",
  5431. "phpstan/phpstan-deprecation-rules": "^2",
  5432. "phpstan/phpstan-strict-rules": "^2",
  5433. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5434. "predis/predis": "^1.1 || ^2",
  5435. "rollbar/rollbar": "^4.0",
  5436. "ruflin/elastica": "^7 || ^8",
  5437. "symfony/mailer": "^5.4 || ^6",
  5438. "symfony/mime": "^5.4 || ^6"
  5439. },
  5440. "suggest": {
  5441. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5442. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5443. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5444. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5445. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5446. "ext-mbstring": "Allow to work properly with unicode symbols",
  5447. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5448. "ext-openssl": "Required to send log messages using SSL",
  5449. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5450. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5451. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5452. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5453. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5454. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5455. },
  5456. "type": "library",
  5457. "extra": {
  5458. "branch-alias": {
  5459. "dev-main": "3.x-dev"
  5460. }
  5461. },
  5462. "autoload": {
  5463. "psr-4": {
  5464. "Monolog\\": "src/Monolog"
  5465. }
  5466. },
  5467. "notification-url": "https://packagist.org/downloads/",
  5468. "license": [
  5469. "MIT"
  5470. ],
  5471. "authors": [
  5472. {
  5473. "name": "Jordi Boggiano",
  5474. "email": "j.boggiano@seld.be",
  5475. "homepage": "https://seld.be"
  5476. }
  5477. ],
  5478. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5479. "homepage": "https://github.com/Seldaek/monolog",
  5480. "keywords": [
  5481. "log",
  5482. "logging",
  5483. "psr-3"
  5484. ],
  5485. "support": {
  5486. "issues": "https://github.com/Seldaek/monolog/issues",
  5487. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5488. },
  5489. "funding": [
  5490. {
  5491. "url": "https://github.com/Seldaek",
  5492. "type": "github"
  5493. },
  5494. {
  5495. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5496. "type": "tidelift"
  5497. }
  5498. ],
  5499. "time": "2024-12-05T17:15:07+00:00"
  5500. },
  5501. {
  5502. "name": "mpdf/mpdf",
  5503. "version": "v8.2.5",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/mpdf/mpdf.git",
  5507. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f",
  5512. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f",
  5513. "shasum": ""
  5514. },
  5515. "require": {
  5516. "ext-gd": "*",
  5517. "ext-mbstring": "*",
  5518. "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
  5519. "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
  5520. "myclabs/deep-copy": "^1.7",
  5521. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5522. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  5523. "psr/http-message": "^1.0 || ^2.0",
  5524. "psr/log": "^1.0 || ^2.0 || ^3.0",
  5525. "setasign/fpdi": "^2.1"
  5526. },
  5527. "require-dev": {
  5528. "mockery/mockery": "^1.3.0",
  5529. "mpdf/qrcode": "^1.1.0",
  5530. "squizlabs/php_codesniffer": "^3.5.0",
  5531. "tracy/tracy": "~2.5",
  5532. "yoast/phpunit-polyfills": "^1.0"
  5533. },
  5534. "suggest": {
  5535. "ext-bcmath": "Needed for generation of some types of barcodes",
  5536. "ext-xml": "Needed mainly for SVG manipulation",
  5537. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  5538. },
  5539. "type": "library",
  5540. "autoload": {
  5541. "files": [
  5542. "src/functions.php"
  5543. ],
  5544. "psr-4": {
  5545. "Mpdf\\": "src/"
  5546. }
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "GPL-2.0-only"
  5551. ],
  5552. "authors": [
  5553. {
  5554. "name": "Matěj Humpál",
  5555. "role": "Developer, maintainer"
  5556. },
  5557. {
  5558. "name": "Ian Back",
  5559. "role": "Developer (retired)"
  5560. }
  5561. ],
  5562. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  5563. "homepage": "https://mpdf.github.io",
  5564. "keywords": [
  5565. "pdf",
  5566. "php",
  5567. "utf-8"
  5568. ],
  5569. "support": {
  5570. "docs": "https://mpdf.github.io",
  5571. "issues": "https://github.com/mpdf/mpdf/issues",
  5572. "source": "https://github.com/mpdf/mpdf"
  5573. },
  5574. "funding": [
  5575. {
  5576. "url": "https://www.paypal.me/mpdf",
  5577. "type": "custom"
  5578. }
  5579. ],
  5580. "time": "2024-11-18T15:30:42+00:00"
  5581. },
  5582. {
  5583. "name": "mpdf/psr-http-message-shim",
  5584. "version": "v2.0.1",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://github.com/mpdf/psr-http-message-shim.git",
  5588. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
  5589. },
  5590. "dist": {
  5591. "type": "zip",
  5592. "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
  5593. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
  5594. "shasum": ""
  5595. },
  5596. "require": {
  5597. "psr/http-message": "^2.0"
  5598. },
  5599. "type": "library",
  5600. "autoload": {
  5601. "psr-4": {
  5602. "Mpdf\\PsrHttpMessageShim\\": "src/"
  5603. }
  5604. },
  5605. "notification-url": "https://packagist.org/downloads/",
  5606. "license": [
  5607. "MIT"
  5608. ],
  5609. "authors": [
  5610. {
  5611. "name": "Mark Dorison",
  5612. "email": "mark@chromatichq.com"
  5613. },
  5614. {
  5615. "name": "Kristofer Widholm",
  5616. "email": "kristofer@chromatichq.com"
  5617. },
  5618. {
  5619. "name": "Nigel Cunningham",
  5620. "email": "nigel.cunningham@technocrat.com.au"
  5621. }
  5622. ],
  5623. "description": "Shim to allow support of different psr/message versions.",
  5624. "support": {
  5625. "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
  5626. "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
  5627. },
  5628. "time": "2023-10-02T14:34:03+00:00"
  5629. },
  5630. {
  5631. "name": "mpdf/psr-log-aware-trait",
  5632. "version": "v3.0.0",
  5633. "source": {
  5634. "type": "git",
  5635. "url": "https://github.com/mpdf/psr-log-aware-trait.git",
  5636. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
  5637. },
  5638. "dist": {
  5639. "type": "zip",
  5640. "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
  5641. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
  5642. "shasum": ""
  5643. },
  5644. "require": {
  5645. "psr/log": "^3.0"
  5646. },
  5647. "type": "library",
  5648. "autoload": {
  5649. "psr-4": {
  5650. "Mpdf\\PsrLogAwareTrait\\": "src/"
  5651. }
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "Mark Dorison",
  5660. "email": "mark@chromatichq.com"
  5661. },
  5662. {
  5663. "name": "Kristofer Widholm",
  5664. "email": "kristofer@chromatichq.com"
  5665. }
  5666. ],
  5667. "description": "Trait to allow support of different psr/log versions.",
  5668. "support": {
  5669. "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
  5670. "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
  5671. },
  5672. "time": "2023-05-03T06:19:36+00:00"
  5673. },
  5674. {
  5675. "name": "mtdowling/jmespath.php",
  5676. "version": "2.8.0",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/jmespath/jmespath.php.git",
  5680. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://repo.huaweicloud.com/repository/php/mtdowling/jmespath.php/2.8.0/mtdowling-jmespath.php-2.8.0.zip",
  5685. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  5686. "shasum": ""
  5687. },
  5688. "require": {
  5689. "php": "^7.2.5 || ^8.0",
  5690. "symfony/polyfill-mbstring": "^1.17"
  5691. },
  5692. "require-dev": {
  5693. "composer/xdebug-handler": "^3.0.3",
  5694. "phpunit/phpunit": "^8.5.33"
  5695. },
  5696. "bin": [
  5697. "bin/jp.php"
  5698. ],
  5699. "type": "library",
  5700. "extra": {
  5701. "branch-alias": {
  5702. "dev-master": "2.8-dev"
  5703. }
  5704. },
  5705. "autoload": {
  5706. "files": [
  5707. "src/JmesPath.php"
  5708. ],
  5709. "psr-4": {
  5710. "JmesPath\\": "src/"
  5711. }
  5712. },
  5713. "license": [
  5714. "MIT"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "Graham Campbell",
  5719. "email": "hello@gjcampbell.co.uk",
  5720. "homepage": "https://github.com/GrahamCampbell"
  5721. },
  5722. {
  5723. "name": "Michael Dowling",
  5724. "email": "mtdowling@gmail.com",
  5725. "homepage": "https://github.com/mtdowling"
  5726. }
  5727. ],
  5728. "description": "Declaratively specify how to extract elements from a JSON document",
  5729. "keywords": [
  5730. "json",
  5731. "jsonpath"
  5732. ],
  5733. "time": "2024-09-04T18:46:31+00:00"
  5734. },
  5735. {
  5736. "name": "myclabs/deep-copy",
  5737. "version": "1.13.0",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://github.com/myclabs/DeepCopy.git",
  5741. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  5746. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  5747. "shasum": ""
  5748. },
  5749. "require": {
  5750. "php": "^7.1 || ^8.0"
  5751. },
  5752. "conflict": {
  5753. "doctrine/collections": "<1.6.8",
  5754. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  5755. },
  5756. "require-dev": {
  5757. "doctrine/collections": "^1.6.8",
  5758. "doctrine/common": "^2.13.3 || ^3.2.2",
  5759. "phpspec/prophecy": "^1.10",
  5760. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5761. },
  5762. "type": "library",
  5763. "autoload": {
  5764. "files": [
  5765. "src/DeepCopy/deep_copy.php"
  5766. ],
  5767. "psr-4": {
  5768. "DeepCopy\\": "src/DeepCopy/"
  5769. }
  5770. },
  5771. "notification-url": "https://packagist.org/downloads/",
  5772. "license": [
  5773. "MIT"
  5774. ],
  5775. "description": "Create deep copies (clones) of your objects",
  5776. "keywords": [
  5777. "clone",
  5778. "copy",
  5779. "duplicate",
  5780. "object",
  5781. "object graph"
  5782. ],
  5783. "support": {
  5784. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5785. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5790. "type": "tidelift"
  5791. }
  5792. ],
  5793. "time": "2025-02-12T12:17:51+00:00"
  5794. },
  5795. {
  5796. "name": "nesbot/carbon",
  5797. "version": "2.73.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/CarbonPHP/carbon.git",
  5801. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5806. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5807. "shasum": ""
  5808. },
  5809. "require": {
  5810. "carbonphp/carbon-doctrine-types": "*",
  5811. "ext-json": "*",
  5812. "php": "^7.1.8 || ^8.0",
  5813. "psr/clock": "^1.0",
  5814. "symfony/polyfill-mbstring": "^1.0",
  5815. "symfony/polyfill-php80": "^1.16",
  5816. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5817. },
  5818. "provide": {
  5819. "psr/clock-implementation": "1.0"
  5820. },
  5821. "require-dev": {
  5822. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5823. "doctrine/orm": "^2.7 || ^3.0",
  5824. "friendsofphp/php-cs-fixer": "^3.0",
  5825. "kylekatarnls/multi-tester": "^2.0",
  5826. "ondrejmirtes/better-reflection": "<6",
  5827. "phpmd/phpmd": "^2.9",
  5828. "phpstan/extension-installer": "^1.0",
  5829. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5830. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5831. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5832. "squizlabs/php_codesniffer": "^3.4"
  5833. },
  5834. "bin": [
  5835. "bin/carbon"
  5836. ],
  5837. "type": "library",
  5838. "extra": {
  5839. "laravel": {
  5840. "providers": [
  5841. "Carbon\\Laravel\\ServiceProvider"
  5842. ]
  5843. },
  5844. "phpstan": {
  5845. "includes": [
  5846. "extension.neon"
  5847. ]
  5848. },
  5849. "branch-alias": {
  5850. "dev-2.x": "2.x-dev",
  5851. "dev-master": "3.x-dev"
  5852. }
  5853. },
  5854. "autoload": {
  5855. "psr-4": {
  5856. "Carbon\\": "src/Carbon/"
  5857. }
  5858. },
  5859. "notification-url": "https://packagist.org/downloads/",
  5860. "license": [
  5861. "MIT"
  5862. ],
  5863. "authors": [
  5864. {
  5865. "name": "Brian Nesbitt",
  5866. "email": "brian@nesbot.com",
  5867. "homepage": "https://markido.com"
  5868. },
  5869. {
  5870. "name": "kylekatarnls",
  5871. "homepage": "https://github.com/kylekatarnls"
  5872. }
  5873. ],
  5874. "description": "An API extension for DateTime that supports 281 different languages.",
  5875. "homepage": "https://carbon.nesbot.com",
  5876. "keywords": [
  5877. "date",
  5878. "datetime",
  5879. "time"
  5880. ],
  5881. "support": {
  5882. "docs": "https://carbon.nesbot.com/docs",
  5883. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5884. "source": "https://github.com/briannesbitt/Carbon"
  5885. },
  5886. "funding": [
  5887. {
  5888. "url": "https://github.com/sponsors/kylekatarnls",
  5889. "type": "github"
  5890. },
  5891. {
  5892. "url": "https://opencollective.com/Carbon#sponsor",
  5893. "type": "opencollective"
  5894. },
  5895. {
  5896. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5897. "type": "tidelift"
  5898. }
  5899. ],
  5900. "time": "2025-01-08T20:10:23+00:00"
  5901. },
  5902. {
  5903. "name": "nette/schema",
  5904. "version": "v1.3.2",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://github.com/nette/schema.git",
  5908. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  5913. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  5914. "shasum": ""
  5915. },
  5916. "require": {
  5917. "nette/utils": "^4.0",
  5918. "php": "8.1 - 8.4"
  5919. },
  5920. "require-dev": {
  5921. "nette/tester": "^2.5.2",
  5922. "phpstan/phpstan-nette": "^1.0",
  5923. "tracy/tracy": "^2.8"
  5924. },
  5925. "type": "library",
  5926. "extra": {
  5927. "branch-alias": {
  5928. "dev-master": "1.3-dev"
  5929. }
  5930. },
  5931. "autoload": {
  5932. "classmap": [
  5933. "src/"
  5934. ]
  5935. },
  5936. "notification-url": "https://packagist.org/downloads/",
  5937. "license": [
  5938. "BSD-3-Clause",
  5939. "GPL-2.0-only",
  5940. "GPL-3.0-only"
  5941. ],
  5942. "authors": [
  5943. {
  5944. "name": "David Grudl",
  5945. "homepage": "https://davidgrudl.com"
  5946. },
  5947. {
  5948. "name": "Nette Community",
  5949. "homepage": "https://nette.org/contributors"
  5950. }
  5951. ],
  5952. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5953. "homepage": "https://nette.org",
  5954. "keywords": [
  5955. "config",
  5956. "nette"
  5957. ],
  5958. "support": {
  5959. "issues": "https://github.com/nette/schema/issues",
  5960. "source": "https://github.com/nette/schema/tree/v1.3.2"
  5961. },
  5962. "time": "2024-10-06T23:10:23+00:00"
  5963. },
  5964. {
  5965. "name": "nette/utils",
  5966. "version": "v4.0.6",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/nette/utils.git",
  5970. "reference": "ce708655043c7050eb050df361c5e313cf708309"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309",
  5975. "reference": "ce708655043c7050eb050df361c5e313cf708309",
  5976. "shasum": ""
  5977. },
  5978. "require": {
  5979. "php": "8.0 - 8.4"
  5980. },
  5981. "conflict": {
  5982. "nette/finder": "<3",
  5983. "nette/schema": "<1.2.2"
  5984. },
  5985. "require-dev": {
  5986. "jetbrains/phpstorm-attributes": "dev-master",
  5987. "nette/tester": "^2.5",
  5988. "phpstan/phpstan": "^1.0",
  5989. "tracy/tracy": "^2.9"
  5990. },
  5991. "suggest": {
  5992. "ext-gd": "to use Image",
  5993. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5994. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5995. "ext-json": "to use Nette\\Utils\\Json",
  5996. "ext-mbstring": "to use Strings::lower() etc...",
  5997. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5998. },
  5999. "type": "library",
  6000. "extra": {
  6001. "branch-alias": {
  6002. "dev-master": "4.0-dev"
  6003. }
  6004. },
  6005. "autoload": {
  6006. "classmap": [
  6007. "src/"
  6008. ]
  6009. },
  6010. "notification-url": "https://packagist.org/downloads/",
  6011. "license": [
  6012. "BSD-3-Clause",
  6013. "GPL-2.0-only",
  6014. "GPL-3.0-only"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "David Grudl",
  6019. "homepage": "https://davidgrudl.com"
  6020. },
  6021. {
  6022. "name": "Nette Community",
  6023. "homepage": "https://nette.org/contributors"
  6024. }
  6025. ],
  6026. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  6027. "homepage": "https://nette.org",
  6028. "keywords": [
  6029. "array",
  6030. "core",
  6031. "datetime",
  6032. "images",
  6033. "json",
  6034. "nette",
  6035. "paginator",
  6036. "password",
  6037. "slugify",
  6038. "string",
  6039. "unicode",
  6040. "utf-8",
  6041. "utility",
  6042. "validation"
  6043. ],
  6044. "support": {
  6045. "issues": "https://github.com/nette/utils/issues",
  6046. "source": "https://github.com/nette/utils/tree/v4.0.6"
  6047. },
  6048. "time": "2025-03-30T21:06:30+00:00"
  6049. },
  6050. {
  6051. "name": "nicmart/tree",
  6052. "version": "0.9.0",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://github.com/nicmart/Tree.git",
  6056. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://api.github.com/repos/nicmart/Tree/zipball/f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  6061. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  6062. "shasum": ""
  6063. },
  6064. "require": {
  6065. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  6066. },
  6067. "require-dev": {
  6068. "ergebnis/composer-normalize": "^2.44.0",
  6069. "ergebnis/license": "^2.6.0",
  6070. "ergebnis/php-cs-fixer-config": "^6.28.1",
  6071. "fakerphp/faker": "^1.24.1",
  6072. "infection/infection": "~0.26.19",
  6073. "phpunit/phpunit": "^9.6.19",
  6074. "psalm/plugin-phpunit": "~0.19.0",
  6075. "vimeo/psalm": "^5.26.1"
  6076. },
  6077. "type": "library",
  6078. "autoload": {
  6079. "psr-4": {
  6080. "Tree\\": "src/"
  6081. }
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Nicolò Martini",
  6090. "email": "nicmartnic@gmail.com"
  6091. },
  6092. {
  6093. "name": "Andreas Möller",
  6094. "email": "am@localheinz.com"
  6095. }
  6096. ],
  6097. "description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
  6098. "support": {
  6099. "issues": "https://github.com/nicmart/Tree/issues",
  6100. "source": "https://github.com/nicmart/Tree/tree/0.9.0"
  6101. },
  6102. "time": "2024-11-22T15:36:01+00:00"
  6103. },
  6104. {
  6105. "name": "nikic/php-parser",
  6106. "version": "v5.6.1",
  6107. "source": {
  6108. "type": "git",
  6109. "url": "https://github.com/nikic/PHP-Parser.git",
  6110. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  6111. },
  6112. "dist": {
  6113. "type": "zip",
  6114. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  6115. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  6116. "shasum": ""
  6117. },
  6118. "require": {
  6119. "ext-ctype": "*",
  6120. "ext-json": "*",
  6121. "ext-tokenizer": "*",
  6122. "php": ">=7.4"
  6123. },
  6124. "require-dev": {
  6125. "ircmaxell/php-yacc": "^0.0.7",
  6126. "phpunit/phpunit": "^9.0"
  6127. },
  6128. "bin": [
  6129. "bin/php-parse"
  6130. ],
  6131. "type": "library",
  6132. "extra": {
  6133. "branch-alias": {
  6134. "dev-master": "5.x-dev"
  6135. }
  6136. },
  6137. "autoload": {
  6138. "psr-4": {
  6139. "PhpParser\\": "lib/PhpParser"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "BSD-3-Clause"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Nikita Popov"
  6149. }
  6150. ],
  6151. "description": "A PHP parser written in PHP",
  6152. "keywords": [
  6153. "parser",
  6154. "php"
  6155. ],
  6156. "support": {
  6157. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6158. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  6159. },
  6160. "time": "2025-08-13T20:13:15+00:00"
  6161. },
  6162. {
  6163. "name": "nunomaduro/termwind",
  6164. "version": "v2.3.0",
  6165. "source": {
  6166. "type": "git",
  6167. "url": "https://github.com/nunomaduro/termwind.git",
  6168. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  6169. },
  6170. "dist": {
  6171. "type": "zip",
  6172. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  6173. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  6174. "shasum": ""
  6175. },
  6176. "require": {
  6177. "ext-mbstring": "*",
  6178. "php": "^8.2",
  6179. "symfony/console": "^7.1.8"
  6180. },
  6181. "require-dev": {
  6182. "illuminate/console": "^11.33.2",
  6183. "laravel/pint": "^1.18.2",
  6184. "mockery/mockery": "^1.6.12",
  6185. "pestphp/pest": "^2.36.0",
  6186. "phpstan/phpstan": "^1.12.11",
  6187. "phpstan/phpstan-strict-rules": "^1.6.1",
  6188. "symfony/var-dumper": "^7.1.8",
  6189. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  6190. },
  6191. "type": "library",
  6192. "extra": {
  6193. "laravel": {
  6194. "providers": [
  6195. "Termwind\\Laravel\\TermwindServiceProvider"
  6196. ]
  6197. },
  6198. "branch-alias": {
  6199. "dev-2.x": "2.x-dev"
  6200. }
  6201. },
  6202. "autoload": {
  6203. "files": [
  6204. "src/Functions.php"
  6205. ],
  6206. "psr-4": {
  6207. "Termwind\\": "src/"
  6208. }
  6209. },
  6210. "notification-url": "https://packagist.org/downloads/",
  6211. "license": [
  6212. "MIT"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "Nuno Maduro",
  6217. "email": "enunomaduro@gmail.com"
  6218. }
  6219. ],
  6220. "description": "Its like Tailwind CSS, but for the console.",
  6221. "keywords": [
  6222. "cli",
  6223. "console",
  6224. "css",
  6225. "package",
  6226. "php",
  6227. "style"
  6228. ],
  6229. "support": {
  6230. "issues": "https://github.com/nunomaduro/termwind/issues",
  6231. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  6232. },
  6233. "funding": [
  6234. {
  6235. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6236. "type": "custom"
  6237. },
  6238. {
  6239. "url": "https://github.com/nunomaduro",
  6240. "type": "github"
  6241. },
  6242. {
  6243. "url": "https://github.com/xiCO2k",
  6244. "type": "github"
  6245. }
  6246. ],
  6247. "time": "2024-11-21T10:39:51+00:00"
  6248. },
  6249. {
  6250. "name": "open-telemetry/api",
  6251. "version": "1.2.3",
  6252. "source": {
  6253. "type": "git",
  6254. "url": "https://github.com/opentelemetry-php/api.git",
  6255. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1"
  6256. },
  6257. "dist": {
  6258. "type": "zip",
  6259. "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  6260. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  6261. "shasum": ""
  6262. },
  6263. "require": {
  6264. "open-telemetry/context": "^1.0",
  6265. "php": "^8.1",
  6266. "psr/log": "^1.1|^2.0|^3.0",
  6267. "symfony/polyfill-php82": "^1.26"
  6268. },
  6269. "conflict": {
  6270. "open-telemetry/sdk": "<=1.0.8"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "spi": {
  6275. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [
  6276. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager"
  6277. ]
  6278. },
  6279. "branch-alias": {
  6280. "dev-main": "1.1.x-dev"
  6281. }
  6282. },
  6283. "autoload": {
  6284. "files": [
  6285. "Trace/functions.php"
  6286. ],
  6287. "psr-4": {
  6288. "OpenTelemetry\\API\\": "."
  6289. }
  6290. },
  6291. "notification-url": "https://packagist.org/downloads/",
  6292. "license": [
  6293. "Apache-2.0"
  6294. ],
  6295. "authors": [
  6296. {
  6297. "name": "opentelemetry-php contributors",
  6298. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  6299. }
  6300. ],
  6301. "description": "API for OpenTelemetry PHP.",
  6302. "keywords": [
  6303. "Metrics",
  6304. "api",
  6305. "apm",
  6306. "logging",
  6307. "opentelemetry",
  6308. "otel",
  6309. "tracing"
  6310. ],
  6311. "support": {
  6312. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  6313. "docs": "https://opentelemetry.io/docs/php",
  6314. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  6315. "source": "https://github.com/open-telemetry/opentelemetry-php"
  6316. },
  6317. "time": "2025-03-05T21:42:54+00:00"
  6318. },
  6319. {
  6320. "name": "open-telemetry/context",
  6321. "version": "1.1.0",
  6322. "source": {
  6323. "type": "git",
  6324. "url": "https://github.com/opentelemetry-php/context.git",
  6325. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3"
  6326. },
  6327. "dist": {
  6328. "type": "zip",
  6329. "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  6330. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  6331. "shasum": ""
  6332. },
  6333. "require": {
  6334. "php": "^8.1",
  6335. "symfony/polyfill-php82": "^1.26"
  6336. },
  6337. "suggest": {
  6338. "ext-ffi": "To allow context switching in Fibers"
  6339. },
  6340. "type": "library",
  6341. "extra": {
  6342. "branch-alias": {
  6343. "dev-main": "1.0.x-dev"
  6344. }
  6345. },
  6346. "autoload": {
  6347. "files": [
  6348. "fiber/initialize_fiber_handler.php"
  6349. ],
  6350. "psr-4": {
  6351. "OpenTelemetry\\Context\\": "."
  6352. }
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "Apache-2.0"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "opentelemetry-php contributors",
  6361. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  6362. }
  6363. ],
  6364. "description": "Context implementation for OpenTelemetry PHP.",
  6365. "keywords": [
  6366. "Context",
  6367. "opentelemetry",
  6368. "otel"
  6369. ],
  6370. "support": {
  6371. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  6372. "docs": "https://opentelemetry.io/docs/php",
  6373. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  6374. "source": "https://github.com/open-telemetry/opentelemetry-php"
  6375. },
  6376. "time": "2024-08-21T00:29:20+00:00"
  6377. },
  6378. {
  6379. "name": "openai-php/client",
  6380. "version": "v0.10.3",
  6381. "source": {
  6382. "type": "git",
  6383. "url": "https://github.com/openai-php/client.git",
  6384. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  6385. },
  6386. "dist": {
  6387. "type": "zip",
  6388. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6389. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6390. "shasum": ""
  6391. },
  6392. "require": {
  6393. "php": "^8.1.0",
  6394. "php-http/discovery": "^1.20.0",
  6395. "php-http/multipart-stream-builder": "^1.4.2",
  6396. "psr/http-client": "^1.0.3",
  6397. "psr/http-client-implementation": "^1.0.1",
  6398. "psr/http-factory-implementation": "*",
  6399. "psr/http-message": "^1.1.0|^2.0.0"
  6400. },
  6401. "require-dev": {
  6402. "guzzlehttp/guzzle": "^7.9.2",
  6403. "guzzlehttp/psr7": "^2.7.0",
  6404. "laravel/pint": "^1.18.1",
  6405. "mockery/mockery": "^1.6.12",
  6406. "nunomaduro/collision": "^7.11.0|^8.5.0",
  6407. "pestphp/pest": "^2.36.0|^3.5.0",
  6408. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  6409. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  6410. "phpstan/phpstan": "^1.12.7",
  6411. "symfony/var-dumper": "^6.4.11|^7.1.5"
  6412. },
  6413. "type": "library",
  6414. "autoload": {
  6415. "files": [
  6416. "src/OpenAI.php"
  6417. ],
  6418. "psr-4": {
  6419. "OpenAI\\": "src/"
  6420. }
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "MIT"
  6425. ],
  6426. "authors": [
  6427. {
  6428. "name": "Nuno Maduro",
  6429. "email": "enunomaduro@gmail.com"
  6430. },
  6431. {
  6432. "name": "Sandro Gehri"
  6433. }
  6434. ],
  6435. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  6436. "keywords": [
  6437. "GPT-3",
  6438. "api",
  6439. "client",
  6440. "codex",
  6441. "dall-e",
  6442. "language",
  6443. "natural",
  6444. "openai",
  6445. "php",
  6446. "processing",
  6447. "sdk"
  6448. ],
  6449. "support": {
  6450. "issues": "https://github.com/openai-php/client/issues",
  6451. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/gehrisandro",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://github.com/nunomaduro",
  6464. "type": "github"
  6465. }
  6466. ],
  6467. "time": "2024-11-12T20:51:16+00:00"
  6468. },
  6469. {
  6470. "name": "openai-php/laravel",
  6471. "version": "v0.10.2",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/openai-php/laravel.git",
  6475. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/openai-php/laravel/zipball/24815ef1bda71cc0715f7aefe4506e77329e560f",
  6480. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f",
  6481. "shasum": ""
  6482. },
  6483. "require": {
  6484. "guzzlehttp/guzzle": "^7.9.2",
  6485. "laravel/framework": "^9.46.0|^10.34.2|^11.23.5",
  6486. "openai-php/client": "^0.10.2",
  6487. "php": "^8.1.0"
  6488. },
  6489. "require-dev": {
  6490. "laravel/pint": "^1.17.3",
  6491. "pestphp/pest": "^2.35.1|^3.0.0",
  6492. "pestphp/pest-plugin-arch": "^2.7.0|^3.0.0",
  6493. "phpstan/phpstan": "^1.12.4",
  6494. "symfony/var-dumper": "^6.4.0|^7.1.4"
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "laravel": {
  6499. "providers": [
  6500. "OpenAI\\Laravel\\ServiceProvider"
  6501. ]
  6502. }
  6503. },
  6504. "autoload": {
  6505. "psr-4": {
  6506. "OpenAI\\Laravel\\": "src/"
  6507. }
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Nuno Maduro",
  6516. "email": "enunomaduro@gmail.com"
  6517. }
  6518. ],
  6519. "description": "OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API",
  6520. "keywords": [
  6521. "GPT-3",
  6522. "api",
  6523. "client",
  6524. "codex",
  6525. "dall-e",
  6526. "language",
  6527. "laravel",
  6528. "natural",
  6529. "openai",
  6530. "php",
  6531. "processing",
  6532. "sdk"
  6533. ],
  6534. "support": {
  6535. "issues": "https://github.com/openai-php/laravel/issues",
  6536. "source": "https://github.com/openai-php/laravel/tree/v0.10.2"
  6537. },
  6538. "funding": [
  6539. {
  6540. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6541. "type": "custom"
  6542. },
  6543. {
  6544. "url": "https://github.com/gehrisandro",
  6545. "type": "github"
  6546. },
  6547. {
  6548. "url": "https://github.com/nunomaduro",
  6549. "type": "github"
  6550. },
  6551. {
  6552. "url": "https://www.patreon.com/nunomaduro",
  6553. "type": "patreon"
  6554. }
  6555. ],
  6556. "time": "2024-10-17T20:34:07+00:00"
  6557. },
  6558. {
  6559. "name": "opis/closure",
  6560. "version": "3.6.3",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/opis/closure.git",
  6564. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  6569. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  6570. "shasum": ""
  6571. },
  6572. "require": {
  6573. "php": "^5.4 || ^7.0 || ^8.0"
  6574. },
  6575. "require-dev": {
  6576. "jeremeamia/superclosure": "^2.0",
  6577. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6578. },
  6579. "type": "library",
  6580. "extra": {
  6581. "branch-alias": {
  6582. "dev-master": "3.6.x-dev"
  6583. }
  6584. },
  6585. "autoload": {
  6586. "files": [
  6587. "functions.php"
  6588. ],
  6589. "psr-4": {
  6590. "Opis\\Closure\\": "src/"
  6591. }
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "MIT"
  6596. ],
  6597. "authors": [
  6598. {
  6599. "name": "Marius Sarca",
  6600. "email": "marius.sarca@gmail.com"
  6601. },
  6602. {
  6603. "name": "Sorin Sarca",
  6604. "email": "sarca_sorin@hotmail.com"
  6605. }
  6606. ],
  6607. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  6608. "homepage": "https://opis.io/closure",
  6609. "keywords": [
  6610. "anonymous functions",
  6611. "closure",
  6612. "function",
  6613. "serializable",
  6614. "serialization",
  6615. "serialize"
  6616. ],
  6617. "support": {
  6618. "issues": "https://github.com/opis/closure/issues",
  6619. "source": "https://github.com/opis/closure/tree/3.6.3"
  6620. },
  6621. "time": "2022-01-27T09:35:39+00:00"
  6622. },
  6623. {
  6624. "name": "paragonie/constant_time_encoding",
  6625. "version": "v3.0.0",
  6626. "source": {
  6627. "type": "git",
  6628. "url": "https://github.com/paragonie/constant_time_encoding.git",
  6629. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  6630. },
  6631. "dist": {
  6632. "type": "zip",
  6633. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  6634. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  6635. "shasum": ""
  6636. },
  6637. "require": {
  6638. "php": "^8"
  6639. },
  6640. "require-dev": {
  6641. "phpunit/phpunit": "^9",
  6642. "vimeo/psalm": "^4|^5"
  6643. },
  6644. "type": "library",
  6645. "autoload": {
  6646. "psr-4": {
  6647. "ParagonIE\\ConstantTime\\": "src/"
  6648. }
  6649. },
  6650. "notification-url": "https://packagist.org/downloads/",
  6651. "license": [
  6652. "MIT"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "Paragon Initiative Enterprises",
  6657. "email": "security@paragonie.com",
  6658. "homepage": "https://paragonie.com",
  6659. "role": "Maintainer"
  6660. },
  6661. {
  6662. "name": "Steve 'Sc00bz' Thomas",
  6663. "email": "steve@tobtu.com",
  6664. "homepage": "https://www.tobtu.com",
  6665. "role": "Original Developer"
  6666. }
  6667. ],
  6668. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  6669. "keywords": [
  6670. "base16",
  6671. "base32",
  6672. "base32_decode",
  6673. "base32_encode",
  6674. "base64",
  6675. "base64_decode",
  6676. "base64_encode",
  6677. "bin2hex",
  6678. "encoding",
  6679. "hex",
  6680. "hex2bin",
  6681. "rfc4648"
  6682. ],
  6683. "support": {
  6684. "email": "info@paragonie.com",
  6685. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  6686. "source": "https://github.com/paragonie/constant_time_encoding"
  6687. },
  6688. "time": "2024-05-08T12:36:18+00:00"
  6689. },
  6690. {
  6691. "name": "paragonie/random_compat",
  6692. "version": "v9.99.100",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/paragonie/random_compat.git",
  6696. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6701. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6702. "shasum": ""
  6703. },
  6704. "require": {
  6705. "php": ">= 7"
  6706. },
  6707. "require-dev": {
  6708. "phpunit/phpunit": "4.*|5.*",
  6709. "vimeo/psalm": "^1"
  6710. },
  6711. "suggest": {
  6712. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6713. },
  6714. "type": "library",
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Paragon Initiative Enterprises",
  6722. "email": "security@paragonie.com",
  6723. "homepage": "https://paragonie.com"
  6724. }
  6725. ],
  6726. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6727. "keywords": [
  6728. "csprng",
  6729. "polyfill",
  6730. "pseudorandom",
  6731. "random"
  6732. ],
  6733. "support": {
  6734. "email": "info@paragonie.com",
  6735. "issues": "https://github.com/paragonie/random_compat/issues",
  6736. "source": "https://github.com/paragonie/random_compat"
  6737. },
  6738. "time": "2020-10-15T08:29:30+00:00"
  6739. },
  6740. {
  6741. "name": "paragonie/sodium_compat",
  6742. "version": "v2.5.0",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/paragonie/sodium_compat.git",
  6746. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/4714da6efdc782c06690bc72ce34fae7941c2d9f",
  6751. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "php": "^8.1",
  6756. "php-64bit": "*"
  6757. },
  6758. "require-dev": {
  6759. "infection/infection": "^0",
  6760. "nikic/php-fuzzer": "^0",
  6761. "phpunit/phpunit": "^7|^8|^9|^10|^11",
  6762. "vimeo/psalm": "^4|^5|^6"
  6763. },
  6764. "suggest": {
  6765. "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  6766. },
  6767. "type": "library",
  6768. "extra": {
  6769. "branch-alias": {
  6770. "dev-master": "2.0.x-dev"
  6771. }
  6772. },
  6773. "autoload": {
  6774. "files": [
  6775. "autoload.php"
  6776. ],
  6777. "psr-4": {
  6778. "ParagonIE\\Sodium\\": "namespaced/"
  6779. }
  6780. },
  6781. "notification-url": "https://packagist.org/downloads/",
  6782. "license": [
  6783. "ISC"
  6784. ],
  6785. "authors": [
  6786. {
  6787. "name": "Paragon Initiative Enterprises",
  6788. "email": "security@paragonie.com"
  6789. },
  6790. {
  6791. "name": "Frank Denis",
  6792. "email": "jedisct1@pureftpd.org"
  6793. }
  6794. ],
  6795. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  6796. "keywords": [
  6797. "Authentication",
  6798. "BLAKE2b",
  6799. "ChaCha20",
  6800. "ChaCha20-Poly1305",
  6801. "Chapoly",
  6802. "Curve25519",
  6803. "Ed25519",
  6804. "EdDSA",
  6805. "Edwards-curve Digital Signature Algorithm",
  6806. "Elliptic Curve Diffie-Hellman",
  6807. "Poly1305",
  6808. "Pure-PHP cryptography",
  6809. "RFC 7748",
  6810. "RFC 8032",
  6811. "Salpoly",
  6812. "Salsa20",
  6813. "X25519",
  6814. "XChaCha20-Poly1305",
  6815. "XSalsa20-Poly1305",
  6816. "Xchacha20",
  6817. "Xsalsa20",
  6818. "aead",
  6819. "cryptography",
  6820. "ecdh",
  6821. "elliptic curve",
  6822. "elliptic curve cryptography",
  6823. "encryption",
  6824. "libsodium",
  6825. "php",
  6826. "public-key cryptography",
  6827. "secret-key cryptography",
  6828. "side-channel resistant"
  6829. ],
  6830. "support": {
  6831. "issues": "https://github.com/paragonie/sodium_compat/issues",
  6832. "source": "https://github.com/paragonie/sodium_compat/tree/v2.5.0"
  6833. },
  6834. "time": "2025-12-30T16:12:18+00:00"
  6835. },
  6836. {
  6837. "name": "paypal/paypal-checkout-sdk",
  6838. "version": "1.0.1",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  6842. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  6847. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "paypal/paypalhttp": "1.0.0"
  6852. },
  6853. "require-dev": {
  6854. "phpunit/phpunit": "^5.7"
  6855. },
  6856. "type": "library",
  6857. "autoload": {
  6858. "psr-4": {
  6859. "Sample\\": "samples/",
  6860. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  6861. }
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "PayPal",
  6870. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  6871. }
  6872. ],
  6873. "description": "PayPal's PHP SDK for Checkout REST APIs",
  6874. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  6875. "keywords": [
  6876. "checkout",
  6877. "orders",
  6878. "payments",
  6879. "paypal",
  6880. "rest",
  6881. "sdk"
  6882. ],
  6883. "support": {
  6884. "issues": "https://github.com/paypal/Checkout-PHP-SDK/issues",
  6885. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.1"
  6886. },
  6887. "abandoned": "paypal/paypal-server-sdk",
  6888. "time": "2019-11-07T23:16:44+00:00"
  6889. },
  6890. {
  6891. "name": "paypal/paypalhttp",
  6892. "version": "1.0.0",
  6893. "source": {
  6894. "type": "git",
  6895. "url": "https://github.com/paypal/paypalhttp_php.git",
  6896. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3"
  6897. },
  6898. "dist": {
  6899. "type": "zip",
  6900. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  6901. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  6902. "shasum": ""
  6903. },
  6904. "require": {
  6905. "ext-curl": "*"
  6906. },
  6907. "require-dev": {
  6908. "phpunit/phpunit": "^5.7",
  6909. "wiremock-php/wiremock-php": "1.43.2"
  6910. },
  6911. "type": "library",
  6912. "autoload": {
  6913. "psr-4": {
  6914. "PayPalHttp\\": "lib/PayPalHttp"
  6915. }
  6916. },
  6917. "notification-url": "https://packagist.org/downloads/",
  6918. "license": [
  6919. "MIT"
  6920. ],
  6921. "authors": [
  6922. {
  6923. "name": "PayPal",
  6924. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  6925. }
  6926. ],
  6927. "support": {
  6928. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  6929. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.0"
  6930. },
  6931. "time": "2019-11-06T21:27:12+00:00"
  6932. },
  6933. {
  6934. "name": "phenx/php-font-lib",
  6935. "version": "0.5.6",
  6936. "source": {
  6937. "type": "git",
  6938. "url": "https://github.com/dompdf/php-font-lib.git",
  6939. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  6940. },
  6941. "dist": {
  6942. "type": "zip",
  6943. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  6944. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  6945. "shasum": ""
  6946. },
  6947. "require": {
  6948. "ext-mbstring": "*"
  6949. },
  6950. "require-dev": {
  6951. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  6952. },
  6953. "type": "library",
  6954. "autoload": {
  6955. "psr-4": {
  6956. "FontLib\\": "src/FontLib"
  6957. }
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "LGPL-2.1-or-later"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "Fabien Ménager",
  6966. "email": "fabien.menager@gmail.com"
  6967. }
  6968. ],
  6969. "description": "A library to read, parse, export and make subsets of different types of font files.",
  6970. "homepage": "https://github.com/PhenX/php-font-lib",
  6971. "support": {
  6972. "issues": "https://github.com/dompdf/php-font-lib/issues",
  6973. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  6974. },
  6975. "time": "2024-01-29T14:45:26+00:00"
  6976. },
  6977. {
  6978. "name": "phenx/php-svg-lib",
  6979. "version": "0.5.4",
  6980. "source": {
  6981. "type": "git",
  6982. "url": "https://github.com/dompdf/php-svg-lib.git",
  6983. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691"
  6984. },
  6985. "dist": {
  6986. "type": "zip",
  6987. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  6988. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  6989. "shasum": ""
  6990. },
  6991. "require": {
  6992. "ext-mbstring": "*",
  6993. "php": "^7.1 || ^8.0",
  6994. "sabberworm/php-css-parser": "^8.4"
  6995. },
  6996. "require-dev": {
  6997. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  6998. },
  6999. "type": "library",
  7000. "autoload": {
  7001. "psr-4": {
  7002. "Svg\\": "src/Svg"
  7003. }
  7004. },
  7005. "notification-url": "https://packagist.org/downloads/",
  7006. "license": [
  7007. "LGPL-3.0-or-later"
  7008. ],
  7009. "authors": [
  7010. {
  7011. "name": "Fabien Ménager",
  7012. "email": "fabien.menager@gmail.com"
  7013. }
  7014. ],
  7015. "description": "A library to read, parse and export to PDF SVG files.",
  7016. "homepage": "https://github.com/PhenX/php-svg-lib",
  7017. "support": {
  7018. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  7019. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4"
  7020. },
  7021. "time": "2024-04-08T12:52:34+00:00"
  7022. },
  7023. {
  7024. "name": "php-http/discovery",
  7025. "version": "1.20.0",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/php-http/discovery.git",
  7029. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  7034. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  7035. "shasum": ""
  7036. },
  7037. "require": {
  7038. "composer-plugin-api": "^1.0|^2.0",
  7039. "php": "^7.1 || ^8.0"
  7040. },
  7041. "conflict": {
  7042. "nyholm/psr7": "<1.0",
  7043. "zendframework/zend-diactoros": "*"
  7044. },
  7045. "provide": {
  7046. "php-http/async-client-implementation": "*",
  7047. "php-http/client-implementation": "*",
  7048. "psr/http-client-implementation": "*",
  7049. "psr/http-factory-implementation": "*",
  7050. "psr/http-message-implementation": "*"
  7051. },
  7052. "require-dev": {
  7053. "composer/composer": "^1.0.2|^2.0",
  7054. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  7055. "php-http/httplug": "^1.0 || ^2.0",
  7056. "php-http/message-factory": "^1.0",
  7057. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  7058. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  7059. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  7060. },
  7061. "type": "composer-plugin",
  7062. "extra": {
  7063. "class": "Http\\Discovery\\Composer\\Plugin",
  7064. "plugin-optional": true
  7065. },
  7066. "autoload": {
  7067. "psr-4": {
  7068. "Http\\Discovery\\": "src/"
  7069. },
  7070. "exclude-from-classmap": [
  7071. "src/Composer/Plugin.php"
  7072. ]
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "MIT"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Márk Sági-Kazár",
  7081. "email": "mark.sagikazar@gmail.com"
  7082. }
  7083. ],
  7084. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  7085. "homepage": "http://php-http.org",
  7086. "keywords": [
  7087. "adapter",
  7088. "client",
  7089. "discovery",
  7090. "factory",
  7091. "http",
  7092. "message",
  7093. "psr17",
  7094. "psr7"
  7095. ],
  7096. "support": {
  7097. "issues": "https://github.com/php-http/discovery/issues",
  7098. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  7099. },
  7100. "time": "2024-10-02T11:20:13+00:00"
  7101. },
  7102. {
  7103. "name": "php-http/httplug",
  7104. "version": "2.4.1",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/php-http/httplug.git",
  7108. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  7113. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "php": "^7.1 || ^8.0",
  7118. "php-http/promise": "^1.1",
  7119. "psr/http-client": "^1.0",
  7120. "psr/http-message": "^1.0 || ^2.0"
  7121. },
  7122. "require-dev": {
  7123. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  7124. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  7125. },
  7126. "type": "library",
  7127. "autoload": {
  7128. "psr-4": {
  7129. "Http\\Client\\": "src/"
  7130. }
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Eric GELOEN",
  7139. "email": "geloen.eric@gmail.com"
  7140. },
  7141. {
  7142. "name": "Márk Sági-Kazár",
  7143. "email": "mark.sagikazar@gmail.com",
  7144. "homepage": "https://sagikazarmark.hu"
  7145. }
  7146. ],
  7147. "description": "HTTPlug, the HTTP client abstraction for PHP",
  7148. "homepage": "http://httplug.io",
  7149. "keywords": [
  7150. "client",
  7151. "http"
  7152. ],
  7153. "support": {
  7154. "issues": "https://github.com/php-http/httplug/issues",
  7155. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  7156. },
  7157. "time": "2024-09-23T11:39:58+00:00"
  7158. },
  7159. {
  7160. "name": "php-http/multipart-stream-builder",
  7161. "version": "1.4.2",
  7162. "source": {
  7163. "type": "git",
  7164. "url": "https://github.com/php-http/multipart-stream-builder.git",
  7165. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  7166. },
  7167. "dist": {
  7168. "type": "zip",
  7169. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  7170. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  7171. "shasum": ""
  7172. },
  7173. "require": {
  7174. "php": "^7.1 || ^8.0",
  7175. "php-http/discovery": "^1.15",
  7176. "psr/http-factory-implementation": "^1.0"
  7177. },
  7178. "require-dev": {
  7179. "nyholm/psr7": "^1.0",
  7180. "php-http/message": "^1.5",
  7181. "php-http/message-factory": "^1.0.2",
  7182. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  7183. },
  7184. "type": "library",
  7185. "autoload": {
  7186. "psr-4": {
  7187. "Http\\Message\\MultipartStream\\": "src/"
  7188. }
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Tobias Nyholm",
  7197. "email": "tobias.nyholm@gmail.com"
  7198. }
  7199. ],
  7200. "description": "A builder class that help you create a multipart stream",
  7201. "homepage": "http://php-http.org",
  7202. "keywords": [
  7203. "factory",
  7204. "http",
  7205. "message",
  7206. "multipart stream",
  7207. "stream"
  7208. ],
  7209. "support": {
  7210. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  7211. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  7212. },
  7213. "time": "2024-09-04T13:22:54+00:00"
  7214. },
  7215. {
  7216. "name": "php-http/promise",
  7217. "version": "1.3.1",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/php-http/promise.git",
  7221. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  7226. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "php": "^7.1 || ^8.0"
  7231. },
  7232. "require-dev": {
  7233. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  7234. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  7235. },
  7236. "type": "library",
  7237. "autoload": {
  7238. "psr-4": {
  7239. "Http\\Promise\\": "src/"
  7240. }
  7241. },
  7242. "notification-url": "https://packagist.org/downloads/",
  7243. "license": [
  7244. "MIT"
  7245. ],
  7246. "authors": [
  7247. {
  7248. "name": "Joel Wurtz",
  7249. "email": "joel.wurtz@gmail.com"
  7250. },
  7251. {
  7252. "name": "Márk Sági-Kazár",
  7253. "email": "mark.sagikazar@gmail.com"
  7254. }
  7255. ],
  7256. "description": "Promise used for asynchronous HTTP requests",
  7257. "homepage": "http://httplug.io",
  7258. "keywords": [
  7259. "promise"
  7260. ],
  7261. "support": {
  7262. "issues": "https://github.com/php-http/promise/issues",
  7263. "source": "https://github.com/php-http/promise/tree/1.3.1"
  7264. },
  7265. "time": "2024-03-15T13:55:21+00:00"
  7266. },
  7267. {
  7268. "name": "phpoffice/phpspreadsheet",
  7269. "version": "1.30.0",
  7270. "source": {
  7271. "type": "git",
  7272. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  7273. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  7274. },
  7275. "dist": {
  7276. "type": "zip",
  7277. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  7278. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  7279. "shasum": ""
  7280. },
  7281. "require": {
  7282. "composer/pcre": "^1||^2||^3",
  7283. "ext-ctype": "*",
  7284. "ext-dom": "*",
  7285. "ext-fileinfo": "*",
  7286. "ext-gd": "*",
  7287. "ext-iconv": "*",
  7288. "ext-libxml": "*",
  7289. "ext-mbstring": "*",
  7290. "ext-simplexml": "*",
  7291. "ext-xml": "*",
  7292. "ext-xmlreader": "*",
  7293. "ext-xmlwriter": "*",
  7294. "ext-zip": "*",
  7295. "ext-zlib": "*",
  7296. "ezyang/htmlpurifier": "^4.15",
  7297. "maennchen/zipstream-php": "^2.1 || ^3.0",
  7298. "markbaker/complex": "^3.0",
  7299. "markbaker/matrix": "^3.0",
  7300. "php": "^7.4 || ^8.0",
  7301. "psr/http-client": "^1.0",
  7302. "psr/http-factory": "^1.0",
  7303. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  7304. },
  7305. "require-dev": {
  7306. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  7307. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  7308. "friendsofphp/php-cs-fixer": "^3.2",
  7309. "mitoteam/jpgraph": "^10.3",
  7310. "mpdf/mpdf": "^8.1.1",
  7311. "phpcompatibility/php-compatibility": "^9.3",
  7312. "phpstan/phpstan": "^1.1",
  7313. "phpstan/phpstan-phpunit": "^1.0",
  7314. "phpunit/phpunit": "^8.5 || ^9.0",
  7315. "squizlabs/php_codesniffer": "^3.7",
  7316. "tecnickcom/tcpdf": "^6.5"
  7317. },
  7318. "suggest": {
  7319. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  7320. "ext-intl": "PHP Internationalization Functions",
  7321. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  7322. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  7323. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "psr-4": {
  7328. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  7329. }
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "license": [
  7333. "MIT"
  7334. ],
  7335. "authors": [
  7336. {
  7337. "name": "Maarten Balliauw",
  7338. "homepage": "https://blog.maartenballiauw.be"
  7339. },
  7340. {
  7341. "name": "Mark Baker",
  7342. "homepage": "https://markbakeruk.net"
  7343. },
  7344. {
  7345. "name": "Franck Lefevre",
  7346. "homepage": "https://rootslabs.net"
  7347. },
  7348. {
  7349. "name": "Erik Tilt"
  7350. },
  7351. {
  7352. "name": "Adrien Crivelli"
  7353. }
  7354. ],
  7355. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  7356. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  7357. "keywords": [
  7358. "OpenXML",
  7359. "excel",
  7360. "gnumeric",
  7361. "ods",
  7362. "php",
  7363. "spreadsheet",
  7364. "xls",
  7365. "xlsx"
  7366. ],
  7367. "support": {
  7368. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  7369. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  7370. },
  7371. "time": "2025-08-10T06:28:02+00:00"
  7372. },
  7373. {
  7374. "name": "phpoption/phpoption",
  7375. "version": "1.9.3",
  7376. "source": {
  7377. "type": "git",
  7378. "url": "https://github.com/schmittjoh/php-option.git",
  7379. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  7380. },
  7381. "dist": {
  7382. "type": "zip",
  7383. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7384. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7385. "shasum": ""
  7386. },
  7387. "require": {
  7388. "php": "^7.2.5 || ^8.0"
  7389. },
  7390. "require-dev": {
  7391. "bamarni/composer-bin-plugin": "^1.8.2",
  7392. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  7393. },
  7394. "type": "library",
  7395. "extra": {
  7396. "bamarni-bin": {
  7397. "bin-links": true,
  7398. "forward-command": false
  7399. },
  7400. "branch-alias": {
  7401. "dev-master": "1.9-dev"
  7402. }
  7403. },
  7404. "autoload": {
  7405. "psr-4": {
  7406. "PhpOption\\": "src/PhpOption/"
  7407. }
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "Apache-2.0"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Johannes M. Schmitt",
  7416. "email": "schmittjoh@gmail.com",
  7417. "homepage": "https://github.com/schmittjoh"
  7418. },
  7419. {
  7420. "name": "Graham Campbell",
  7421. "email": "hello@gjcampbell.co.uk",
  7422. "homepage": "https://github.com/GrahamCampbell"
  7423. }
  7424. ],
  7425. "description": "Option Type for PHP",
  7426. "keywords": [
  7427. "language",
  7428. "option",
  7429. "php",
  7430. "type"
  7431. ],
  7432. "support": {
  7433. "issues": "https://github.com/schmittjoh/php-option/issues",
  7434. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  7435. },
  7436. "funding": [
  7437. {
  7438. "url": "https://github.com/GrahamCampbell",
  7439. "type": "github"
  7440. },
  7441. {
  7442. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  7443. "type": "tidelift"
  7444. }
  7445. ],
  7446. "time": "2024-07-20T21:41:07+00:00"
  7447. },
  7448. {
  7449. "name": "phpseclib/phpseclib",
  7450. "version": "3.0.43",
  7451. "source": {
  7452. "type": "git",
  7453. "url": "https://github.com/phpseclib/phpseclib.git",
  7454. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  7455. },
  7456. "dist": {
  7457. "type": "zip",
  7458. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  7459. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  7460. "shasum": ""
  7461. },
  7462. "require": {
  7463. "paragonie/constant_time_encoding": "^1|^2|^3",
  7464. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  7465. "php": ">=5.6.1"
  7466. },
  7467. "require-dev": {
  7468. "phpunit/phpunit": "*"
  7469. },
  7470. "suggest": {
  7471. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  7472. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  7473. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  7474. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  7475. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  7476. },
  7477. "type": "library",
  7478. "autoload": {
  7479. "files": [
  7480. "phpseclib/bootstrap.php"
  7481. ],
  7482. "psr-4": {
  7483. "phpseclib3\\": "phpseclib/"
  7484. }
  7485. },
  7486. "notification-url": "https://packagist.org/downloads/",
  7487. "license": [
  7488. "MIT"
  7489. ],
  7490. "authors": [
  7491. {
  7492. "name": "Jim Wigginton",
  7493. "email": "terrafrost@php.net",
  7494. "role": "Lead Developer"
  7495. },
  7496. {
  7497. "name": "Patrick Monnerat",
  7498. "email": "pm@datasphere.ch",
  7499. "role": "Developer"
  7500. },
  7501. {
  7502. "name": "Andreas Fischer",
  7503. "email": "bantu@phpbb.com",
  7504. "role": "Developer"
  7505. },
  7506. {
  7507. "name": "Hans-Jürgen Petrich",
  7508. "email": "petrich@tronic-media.com",
  7509. "role": "Developer"
  7510. },
  7511. {
  7512. "name": "Graham Campbell",
  7513. "email": "graham@alt-three.com",
  7514. "role": "Developer"
  7515. }
  7516. ],
  7517. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  7518. "homepage": "http://phpseclib.sourceforge.net",
  7519. "keywords": [
  7520. "BigInteger",
  7521. "aes",
  7522. "asn.1",
  7523. "asn1",
  7524. "blowfish",
  7525. "crypto",
  7526. "cryptography",
  7527. "encryption",
  7528. "rsa",
  7529. "security",
  7530. "sftp",
  7531. "signature",
  7532. "signing",
  7533. "ssh",
  7534. "twofish",
  7535. "x.509",
  7536. "x509"
  7537. ],
  7538. "support": {
  7539. "issues": "https://github.com/phpseclib/phpseclib/issues",
  7540. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  7541. },
  7542. "funding": [
  7543. {
  7544. "url": "https://github.com/terrafrost",
  7545. "type": "github"
  7546. },
  7547. {
  7548. "url": "https://www.patreon.com/phpseclib",
  7549. "type": "patreon"
  7550. },
  7551. {
  7552. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  7553. "type": "tidelift"
  7554. }
  7555. ],
  7556. "time": "2024-12-14T21:12:59+00:00"
  7557. },
  7558. {
  7559. "name": "predis/predis",
  7560. "version": "v2.3.0",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/predis/predis.git",
  7564. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/predis/predis/zipball/bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  7569. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  7570. "shasum": ""
  7571. },
  7572. "require": {
  7573. "php": "^7.2 || ^8.0"
  7574. },
  7575. "require-dev": {
  7576. "friendsofphp/php-cs-fixer": "^3.3",
  7577. "phpstan/phpstan": "^1.9",
  7578. "phpunit/phpunit": "^8.0 || ^9.4"
  7579. },
  7580. "suggest": {
  7581. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  7582. },
  7583. "type": "library",
  7584. "autoload": {
  7585. "psr-4": {
  7586. "Predis\\": "src/"
  7587. }
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "MIT"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Till Krüss",
  7596. "homepage": "https://till.im",
  7597. "role": "Maintainer"
  7598. }
  7599. ],
  7600. "description": "A flexible and feature-complete Redis client for PHP.",
  7601. "homepage": "http://github.com/predis/predis",
  7602. "keywords": [
  7603. "nosql",
  7604. "predis",
  7605. "redis"
  7606. ],
  7607. "support": {
  7608. "issues": "https://github.com/predis/predis/issues",
  7609. "source": "https://github.com/predis/predis/tree/v2.3.0"
  7610. },
  7611. "funding": [
  7612. {
  7613. "url": "https://github.com/sponsors/tillkruss",
  7614. "type": "github"
  7615. }
  7616. ],
  7617. "time": "2024-11-21T20:00:02+00:00"
  7618. },
  7619. {
  7620. "name": "prettus/l5-repository",
  7621. "version": "2.10.1",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/andersao/l5-repository.git",
  7625. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/27835088f92f42d73cc7f4f98b9386ddba709dcf",
  7630. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf",
  7631. "shasum": ""
  7632. },
  7633. "require": {
  7634. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7635. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7636. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7637. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7638. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7639. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7640. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7641. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7642. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4|~1.5|~1.6|~1.7"
  7643. },
  7644. "suggest": {
  7645. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  7646. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  7647. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "laravel": {
  7652. "providers": [
  7653. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  7654. ]
  7655. }
  7656. },
  7657. "autoload": {
  7658. "psr-4": {
  7659. "Prettus\\Repository\\": "src/Prettus/Repository/"
  7660. }
  7661. },
  7662. "notification-url": "https://packagist.org/downloads/",
  7663. "license": [
  7664. "MIT"
  7665. ],
  7666. "authors": [
  7667. {
  7668. "name": "Anderson Andrade",
  7669. "email": "contato@andersonandra.de",
  7670. "homepage": "http://andersonandra.de",
  7671. "role": "Developer"
  7672. }
  7673. ],
  7674. "description": "Laravel 5|6|7|8|9|10|11|12 - Repositories to the database layer",
  7675. "homepage": "http://andersao.github.io/l5-repository",
  7676. "keywords": [
  7677. "cache",
  7678. "eloquent",
  7679. "laravel",
  7680. "model",
  7681. "repository"
  7682. ],
  7683. "support": {
  7684. "docs": "http://andersao.github.io/l5-repository",
  7685. "email": "contato@andersonandra.de",
  7686. "issues": "https://github.com/andersao/l5-repository/issues",
  7687. "source": "https://github.com/andersao/l5-repository",
  7688. "wiki": "https://github.com/andersao/l5-repository"
  7689. },
  7690. "time": "2025-03-10T11:13:50+00:00"
  7691. },
  7692. {
  7693. "name": "prettus/laravel-validation",
  7694. "version": "1.7.0",
  7695. "source": {
  7696. "type": "git",
  7697. "url": "https://github.com/andersao/laravel-validator.git",
  7698. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda"
  7699. },
  7700. "dist": {
  7701. "type": "zip",
  7702. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/fc6ecaaedb482767592eba2a4178792437c86bda",
  7703. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda",
  7704. "shasum": ""
  7705. },
  7706. "require": {
  7707. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7708. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7709. "php": ">=5.4.0"
  7710. },
  7711. "type": "library",
  7712. "autoload": {
  7713. "psr-4": {
  7714. "Prettus\\Validator\\": "src/Prettus/Validator/"
  7715. }
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "authors": [
  7719. {
  7720. "name": "Anderson Andrade",
  7721. "email": "contato@andersonandra.de",
  7722. "homepage": "http://andersonandra.de",
  7723. "role": "Developer"
  7724. }
  7725. ],
  7726. "description": "Laravel Validation Service",
  7727. "homepage": "http://andersao.github.io/laravel-validation",
  7728. "keywords": [
  7729. "laravel",
  7730. "service",
  7731. "validation"
  7732. ],
  7733. "support": {
  7734. "docs": "http://andersao.github.io/laravel-validation",
  7735. "email": "contato@andersonandra.de",
  7736. "issues": "https://github.com/andersao/laravel-validation/issues",
  7737. "source": "https://github.com/andersao/laravel-validation",
  7738. "wiki": "https://github.com/andersao/laravel-validation"
  7739. },
  7740. "time": "2025-03-07T18:33:05+00:00"
  7741. },
  7742. {
  7743. "name": "psr/cache",
  7744. "version": "3.0.0",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://github.com/php-fig/cache.git",
  7748. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7749. },
  7750. "dist": {
  7751. "type": "zip",
  7752. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7753. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7754. "shasum": ""
  7755. },
  7756. "require": {
  7757. "php": ">=8.0.0"
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-master": "1.0.x-dev"
  7763. }
  7764. },
  7765. "autoload": {
  7766. "psr-4": {
  7767. "Psr\\Cache\\": "src/"
  7768. }
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "MIT"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "PHP-FIG",
  7777. "homepage": "https://www.php-fig.org/"
  7778. }
  7779. ],
  7780. "description": "Common interface for caching libraries",
  7781. "keywords": [
  7782. "cache",
  7783. "psr",
  7784. "psr-6"
  7785. ],
  7786. "support": {
  7787. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7788. },
  7789. "time": "2021-02-03T23:26:27+00:00"
  7790. },
  7791. {
  7792. "name": "psr/clock",
  7793. "version": "1.0.0",
  7794. "source": {
  7795. "type": "git",
  7796. "url": "https://github.com/php-fig/clock.git",
  7797. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  7798. },
  7799. "dist": {
  7800. "type": "zip",
  7801. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7802. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7803. "shasum": ""
  7804. },
  7805. "require": {
  7806. "php": "^7.0 || ^8.0"
  7807. },
  7808. "type": "library",
  7809. "autoload": {
  7810. "psr-4": {
  7811. "Psr\\Clock\\": "src/"
  7812. }
  7813. },
  7814. "notification-url": "https://packagist.org/downloads/",
  7815. "license": [
  7816. "MIT"
  7817. ],
  7818. "authors": [
  7819. {
  7820. "name": "PHP-FIG",
  7821. "homepage": "https://www.php-fig.org/"
  7822. }
  7823. ],
  7824. "description": "Common interface for reading the clock.",
  7825. "homepage": "https://github.com/php-fig/clock",
  7826. "keywords": [
  7827. "clock",
  7828. "now",
  7829. "psr",
  7830. "psr-20",
  7831. "time"
  7832. ],
  7833. "support": {
  7834. "issues": "https://github.com/php-fig/clock/issues",
  7835. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  7836. },
  7837. "time": "2022-11-25T14:36:26+00:00"
  7838. },
  7839. {
  7840. "name": "psr/container",
  7841. "version": "2.0.2",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://github.com/php-fig/container.git",
  7845. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7850. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7851. "shasum": ""
  7852. },
  7853. "require": {
  7854. "php": ">=7.4.0"
  7855. },
  7856. "type": "library",
  7857. "extra": {
  7858. "branch-alias": {
  7859. "dev-master": "2.0.x-dev"
  7860. }
  7861. },
  7862. "autoload": {
  7863. "psr-4": {
  7864. "Psr\\Container\\": "src/"
  7865. }
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "MIT"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "PHP-FIG",
  7874. "homepage": "https://www.php-fig.org/"
  7875. }
  7876. ],
  7877. "description": "Common Container Interface (PHP FIG PSR-11)",
  7878. "homepage": "https://github.com/php-fig/container",
  7879. "keywords": [
  7880. "PSR-11",
  7881. "container",
  7882. "container-interface",
  7883. "container-interop",
  7884. "psr"
  7885. ],
  7886. "support": {
  7887. "issues": "https://github.com/php-fig/container/issues",
  7888. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7889. },
  7890. "time": "2021-11-05T16:47:00+00:00"
  7891. },
  7892. {
  7893. "name": "psr/event-dispatcher",
  7894. "version": "1.0.0",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/php-fig/event-dispatcher.git",
  7898. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7903. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "php": ">=7.2.0"
  7908. },
  7909. "type": "library",
  7910. "extra": {
  7911. "branch-alias": {
  7912. "dev-master": "1.0.x-dev"
  7913. }
  7914. },
  7915. "autoload": {
  7916. "psr-4": {
  7917. "Psr\\EventDispatcher\\": "src/"
  7918. }
  7919. },
  7920. "notification-url": "https://packagist.org/downloads/",
  7921. "license": [
  7922. "MIT"
  7923. ],
  7924. "authors": [
  7925. {
  7926. "name": "PHP-FIG",
  7927. "homepage": "http://www.php-fig.org/"
  7928. }
  7929. ],
  7930. "description": "Standard interfaces for event handling.",
  7931. "keywords": [
  7932. "events",
  7933. "psr",
  7934. "psr-14"
  7935. ],
  7936. "support": {
  7937. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7938. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7939. },
  7940. "time": "2019-01-08T18:20:26+00:00"
  7941. },
  7942. {
  7943. "name": "psr/http-client",
  7944. "version": "1.0.3",
  7945. "source": {
  7946. "type": "git",
  7947. "url": "https://github.com/php-fig/http-client.git",
  7948. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7949. },
  7950. "dist": {
  7951. "type": "zip",
  7952. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7953. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7954. "shasum": ""
  7955. },
  7956. "require": {
  7957. "php": "^7.0 || ^8.0",
  7958. "psr/http-message": "^1.0 || ^2.0"
  7959. },
  7960. "type": "library",
  7961. "extra": {
  7962. "branch-alias": {
  7963. "dev-master": "1.0.x-dev"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "psr-4": {
  7968. "Psr\\Http\\Client\\": "src/"
  7969. }
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "PHP-FIG",
  7978. "homepage": "https://www.php-fig.org/"
  7979. }
  7980. ],
  7981. "description": "Common interface for HTTP clients",
  7982. "homepage": "https://github.com/php-fig/http-client",
  7983. "keywords": [
  7984. "http",
  7985. "http-client",
  7986. "psr",
  7987. "psr-18"
  7988. ],
  7989. "support": {
  7990. "source": "https://github.com/php-fig/http-client"
  7991. },
  7992. "time": "2023-09-23T14:17:50+00:00"
  7993. },
  7994. {
  7995. "name": "psr/http-factory",
  7996. "version": "1.1.0",
  7997. "source": {
  7998. "type": "git",
  7999. "url": "https://github.com/php-fig/http-factory.git",
  8000. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  8001. },
  8002. "dist": {
  8003. "type": "zip",
  8004. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  8005. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  8006. "shasum": ""
  8007. },
  8008. "require": {
  8009. "php": ">=7.1",
  8010. "psr/http-message": "^1.0 || ^2.0"
  8011. },
  8012. "type": "library",
  8013. "extra": {
  8014. "branch-alias": {
  8015. "dev-master": "1.0.x-dev"
  8016. }
  8017. },
  8018. "autoload": {
  8019. "psr-4": {
  8020. "Psr\\Http\\Message\\": "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": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  8034. "keywords": [
  8035. "factory",
  8036. "http",
  8037. "message",
  8038. "psr",
  8039. "psr-17",
  8040. "psr-7",
  8041. "request",
  8042. "response"
  8043. ],
  8044. "support": {
  8045. "source": "https://github.com/php-fig/http-factory"
  8046. },
  8047. "time": "2024-04-15T12:06:14+00:00"
  8048. },
  8049. {
  8050. "name": "psr/http-message",
  8051. "version": "2.0",
  8052. "source": {
  8053. "type": "git",
  8054. "url": "https://github.com/php-fig/http-message.git",
  8055. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  8056. },
  8057. "dist": {
  8058. "type": "zip",
  8059. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8060. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8061. "shasum": ""
  8062. },
  8063. "require": {
  8064. "php": "^7.2 || ^8.0"
  8065. },
  8066. "type": "library",
  8067. "extra": {
  8068. "branch-alias": {
  8069. "dev-master": "2.0.x-dev"
  8070. }
  8071. },
  8072. "autoload": {
  8073. "psr-4": {
  8074. "Psr\\Http\\Message\\": "src/"
  8075. }
  8076. },
  8077. "notification-url": "https://packagist.org/downloads/",
  8078. "license": [
  8079. "MIT"
  8080. ],
  8081. "authors": [
  8082. {
  8083. "name": "PHP-FIG",
  8084. "homepage": "https://www.php-fig.org/"
  8085. }
  8086. ],
  8087. "description": "Common interface for HTTP messages",
  8088. "homepage": "https://github.com/php-fig/http-message",
  8089. "keywords": [
  8090. "http",
  8091. "http-message",
  8092. "psr",
  8093. "psr-7",
  8094. "request",
  8095. "response"
  8096. ],
  8097. "support": {
  8098. "source": "https://github.com/php-fig/http-message/tree/2.0"
  8099. },
  8100. "time": "2023-04-04T09:54:51+00:00"
  8101. },
  8102. {
  8103. "name": "psr/link",
  8104. "version": "2.0.1",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/php-fig/link.git",
  8108. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  8113. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "php": ">=8.0.0"
  8118. },
  8119. "suggest": {
  8120. "fig/link-util": "Provides some useful PSR-13 utilities"
  8121. },
  8122. "type": "library",
  8123. "extra": {
  8124. "branch-alias": {
  8125. "dev-master": "2.0.x-dev"
  8126. }
  8127. },
  8128. "autoload": {
  8129. "psr-4": {
  8130. "Psr\\Link\\": "src/"
  8131. }
  8132. },
  8133. "notification-url": "https://packagist.org/downloads/",
  8134. "license": [
  8135. "MIT"
  8136. ],
  8137. "authors": [
  8138. {
  8139. "name": "PHP-FIG",
  8140. "homepage": "http://www.php-fig.org/"
  8141. }
  8142. ],
  8143. "description": "Common interfaces for HTTP links",
  8144. "homepage": "https://github.com/php-fig/link",
  8145. "keywords": [
  8146. "http",
  8147. "http-link",
  8148. "link",
  8149. "psr",
  8150. "psr-13",
  8151. "rest"
  8152. ],
  8153. "support": {
  8154. "source": "https://github.com/php-fig/link/tree/2.0.1"
  8155. },
  8156. "time": "2021-03-11T23:00:27+00:00"
  8157. },
  8158. {
  8159. "name": "psr/log",
  8160. "version": "3.0.2",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/php-fig/log.git",
  8164. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  8169. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  8170. "shasum": ""
  8171. },
  8172. "require": {
  8173. "php": ">=8.0.0"
  8174. },
  8175. "type": "library",
  8176. "extra": {
  8177. "branch-alias": {
  8178. "dev-master": "3.x-dev"
  8179. }
  8180. },
  8181. "autoload": {
  8182. "psr-4": {
  8183. "Psr\\Log\\": "src"
  8184. }
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "PHP-FIG",
  8193. "homepage": "https://www.php-fig.org/"
  8194. }
  8195. ],
  8196. "description": "Common interface for logging libraries",
  8197. "homepage": "https://github.com/php-fig/log",
  8198. "keywords": [
  8199. "log",
  8200. "psr",
  8201. "psr-3"
  8202. ],
  8203. "support": {
  8204. "source": "https://github.com/php-fig/log/tree/3.0.2"
  8205. },
  8206. "time": "2024-09-11T13:17:53+00:00"
  8207. },
  8208. {
  8209. "name": "psr/simple-cache",
  8210. "version": "3.0.0",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/php-fig/simple-cache.git",
  8214. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  8219. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  8220. "shasum": ""
  8221. },
  8222. "require": {
  8223. "php": ">=8.0.0"
  8224. },
  8225. "type": "library",
  8226. "extra": {
  8227. "branch-alias": {
  8228. "dev-master": "3.0.x-dev"
  8229. }
  8230. },
  8231. "autoload": {
  8232. "psr-4": {
  8233. "Psr\\SimpleCache\\": "src/"
  8234. }
  8235. },
  8236. "notification-url": "https://packagist.org/downloads/",
  8237. "license": [
  8238. "MIT"
  8239. ],
  8240. "authors": [
  8241. {
  8242. "name": "PHP-FIG",
  8243. "homepage": "https://www.php-fig.org/"
  8244. }
  8245. ],
  8246. "description": "Common interfaces for simple caching",
  8247. "keywords": [
  8248. "cache",
  8249. "caching",
  8250. "psr",
  8251. "psr-16",
  8252. "simple-cache"
  8253. ],
  8254. "support": {
  8255. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  8256. },
  8257. "time": "2021-10-29T13:26:27+00:00"
  8258. },
  8259. {
  8260. "name": "psy/psysh",
  8261. "version": "v0.12.8",
  8262. "source": {
  8263. "type": "git",
  8264. "url": "https://github.com/bobthecow/psysh.git",
  8265. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  8266. },
  8267. "dist": {
  8268. "type": "zip",
  8269. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  8270. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  8271. "shasum": ""
  8272. },
  8273. "require": {
  8274. "ext-json": "*",
  8275. "ext-tokenizer": "*",
  8276. "nikic/php-parser": "^5.0 || ^4.0",
  8277. "php": "^8.0 || ^7.4",
  8278. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  8279. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  8280. },
  8281. "conflict": {
  8282. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  8283. },
  8284. "require-dev": {
  8285. "bamarni/composer-bin-plugin": "^1.2"
  8286. },
  8287. "suggest": {
  8288. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8289. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8290. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  8291. },
  8292. "bin": [
  8293. "bin/psysh"
  8294. ],
  8295. "type": "library",
  8296. "extra": {
  8297. "bamarni-bin": {
  8298. "bin-links": false,
  8299. "forward-command": false
  8300. },
  8301. "branch-alias": {
  8302. "dev-main": "0.12.x-dev"
  8303. }
  8304. },
  8305. "autoload": {
  8306. "files": [
  8307. "src/functions.php"
  8308. ],
  8309. "psr-4": {
  8310. "Psy\\": "src/"
  8311. }
  8312. },
  8313. "notification-url": "https://packagist.org/downloads/",
  8314. "license": [
  8315. "MIT"
  8316. ],
  8317. "authors": [
  8318. {
  8319. "name": "Justin Hileman",
  8320. "email": "justin@justinhileman.info",
  8321. "homepage": "http://justinhileman.com"
  8322. }
  8323. ],
  8324. "description": "An interactive shell for modern PHP.",
  8325. "homepage": "http://psysh.org",
  8326. "keywords": [
  8327. "REPL",
  8328. "console",
  8329. "interactive",
  8330. "shell"
  8331. ],
  8332. "support": {
  8333. "issues": "https://github.com/bobthecow/psysh/issues",
  8334. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  8335. },
  8336. "time": "2025-03-16T03:05:19+00:00"
  8337. },
  8338. {
  8339. "name": "pusher/pusher-php-server",
  8340. "version": "7.2.7",
  8341. "source": {
  8342. "type": "git",
  8343. "url": "https://github.com/pusher/pusher-http-php.git",
  8344. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7"
  8345. },
  8346. "dist": {
  8347. "type": "zip",
  8348. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  8349. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  8350. "shasum": ""
  8351. },
  8352. "require": {
  8353. "ext-curl": "*",
  8354. "ext-json": "*",
  8355. "guzzlehttp/guzzle": "^7.2",
  8356. "paragonie/sodium_compat": "^1.6|^2.0",
  8357. "php": "^7.3|^8.0",
  8358. "psr/log": "^1.0|^2.0|^3.0"
  8359. },
  8360. "require-dev": {
  8361. "overtrue/phplint": "^2.3",
  8362. "phpunit/phpunit": "^9.3"
  8363. },
  8364. "type": "library",
  8365. "extra": {
  8366. "branch-alias": {
  8367. "dev-master": "5.0-dev"
  8368. }
  8369. },
  8370. "autoload": {
  8371. "psr-4": {
  8372. "Pusher\\": "src/"
  8373. }
  8374. },
  8375. "notification-url": "https://packagist.org/downloads/",
  8376. "license": [
  8377. "MIT"
  8378. ],
  8379. "description": "Library for interacting with the Pusher REST API",
  8380. "keywords": [
  8381. "events",
  8382. "messaging",
  8383. "php-pusher-server",
  8384. "publish",
  8385. "push",
  8386. "pusher",
  8387. "real time",
  8388. "real-time",
  8389. "realtime",
  8390. "rest",
  8391. "trigger"
  8392. ],
  8393. "support": {
  8394. "issues": "https://github.com/pusher/pusher-http-php/issues",
  8395. "source": "https://github.com/pusher/pusher-http-php/tree/7.2.7"
  8396. },
  8397. "time": "2025-01-06T10:56:20+00:00"
  8398. },
  8399. {
  8400. "name": "ralouphie/getallheaders",
  8401. "version": "3.0.3",
  8402. "source": {
  8403. "type": "git",
  8404. "url": "https://github.com/ralouphie/getallheaders.git",
  8405. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8406. },
  8407. "dist": {
  8408. "type": "zip",
  8409. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8410. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8411. "shasum": ""
  8412. },
  8413. "require": {
  8414. "php": ">=5.6"
  8415. },
  8416. "require-dev": {
  8417. "php-coveralls/php-coveralls": "^2.1",
  8418. "phpunit/phpunit": "^5 || ^6.5"
  8419. },
  8420. "type": "library",
  8421. "autoload": {
  8422. "files": [
  8423. "src/getallheaders.php"
  8424. ]
  8425. },
  8426. "notification-url": "https://packagist.org/downloads/",
  8427. "license": [
  8428. "MIT"
  8429. ],
  8430. "authors": [
  8431. {
  8432. "name": "Ralph Khattar",
  8433. "email": "ralph.khattar@gmail.com"
  8434. }
  8435. ],
  8436. "description": "A polyfill for getallheaders.",
  8437. "support": {
  8438. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8439. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8440. },
  8441. "time": "2019-03-08T08:55:37+00:00"
  8442. },
  8443. {
  8444. "name": "ramsey/collection",
  8445. "version": "2.1.0",
  8446. "source": {
  8447. "type": "git",
  8448. "url": "https://github.com/ramsey/collection.git",
  8449. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109"
  8450. },
  8451. "dist": {
  8452. "type": "zip",
  8453. "url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  8454. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  8455. "shasum": ""
  8456. },
  8457. "require": {
  8458. "php": "^8.1"
  8459. },
  8460. "require-dev": {
  8461. "captainhook/plugin-composer": "^5.3",
  8462. "ergebnis/composer-normalize": "^2.45",
  8463. "fakerphp/faker": "^1.24",
  8464. "hamcrest/hamcrest-php": "^2.0",
  8465. "jangregor/phpstan-prophecy": "^2.1",
  8466. "mockery/mockery": "^1.6",
  8467. "php-parallel-lint/php-console-highlighter": "^1.0",
  8468. "php-parallel-lint/php-parallel-lint": "^1.4",
  8469. "phpspec/prophecy-phpunit": "^2.3",
  8470. "phpstan/extension-installer": "^1.4",
  8471. "phpstan/phpstan": "^2.1",
  8472. "phpstan/phpstan-mockery": "^2.0",
  8473. "phpstan/phpstan-phpunit": "^2.0",
  8474. "phpunit/phpunit": "^10.5",
  8475. "ramsey/coding-standard": "^2.3",
  8476. "ramsey/conventional-commits": "^1.6",
  8477. "roave/security-advisories": "dev-latest"
  8478. },
  8479. "type": "library",
  8480. "extra": {
  8481. "captainhook": {
  8482. "force-install": true
  8483. },
  8484. "ramsey/conventional-commits": {
  8485. "configFile": "conventional-commits.json"
  8486. }
  8487. },
  8488. "autoload": {
  8489. "psr-4": {
  8490. "Ramsey\\Collection\\": "src/"
  8491. }
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Ben Ramsey",
  8500. "email": "ben@benramsey.com",
  8501. "homepage": "https://benramsey.com"
  8502. }
  8503. ],
  8504. "description": "A PHP library for representing and manipulating collections.",
  8505. "keywords": [
  8506. "array",
  8507. "collection",
  8508. "hash",
  8509. "map",
  8510. "queue",
  8511. "set"
  8512. ],
  8513. "support": {
  8514. "issues": "https://github.com/ramsey/collection/issues",
  8515. "source": "https://github.com/ramsey/collection/tree/2.1.0"
  8516. },
  8517. "time": "2025-03-02T04:48:29+00:00"
  8518. },
  8519. {
  8520. "name": "ramsey/uuid",
  8521. "version": "4.7.6",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/ramsey/uuid.git",
  8525. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  8530. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  8531. "shasum": ""
  8532. },
  8533. "require": {
  8534. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  8535. "ext-json": "*",
  8536. "php": "^8.0",
  8537. "ramsey/collection": "^1.2 || ^2.0"
  8538. },
  8539. "replace": {
  8540. "rhumsaa/uuid": "self.version"
  8541. },
  8542. "require-dev": {
  8543. "captainhook/captainhook": "^5.10",
  8544. "captainhook/plugin-composer": "^5.3",
  8545. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  8546. "doctrine/annotations": "^1.8",
  8547. "ergebnis/composer-normalize": "^2.15",
  8548. "mockery/mockery": "^1.3",
  8549. "paragonie/random-lib": "^2",
  8550. "php-mock/php-mock": "^2.2",
  8551. "php-mock/php-mock-mockery": "^1.3",
  8552. "php-parallel-lint/php-parallel-lint": "^1.1",
  8553. "phpbench/phpbench": "^1.0",
  8554. "phpstan/extension-installer": "^1.1",
  8555. "phpstan/phpstan": "^1.8",
  8556. "phpstan/phpstan-mockery": "^1.1",
  8557. "phpstan/phpstan-phpunit": "^1.1",
  8558. "phpunit/phpunit": "^8.5 || ^9",
  8559. "ramsey/composer-repl": "^1.4",
  8560. "slevomat/coding-standard": "^8.4",
  8561. "squizlabs/php_codesniffer": "^3.5",
  8562. "vimeo/psalm": "^4.9"
  8563. },
  8564. "suggest": {
  8565. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  8566. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  8567. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  8568. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  8569. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  8570. },
  8571. "type": "library",
  8572. "extra": {
  8573. "captainhook": {
  8574. "force-install": true
  8575. }
  8576. },
  8577. "autoload": {
  8578. "files": [
  8579. "src/functions.php"
  8580. ],
  8581. "psr-4": {
  8582. "Ramsey\\Uuid\\": "src/"
  8583. }
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "MIT"
  8588. ],
  8589. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  8590. "keywords": [
  8591. "guid",
  8592. "identifier",
  8593. "uuid"
  8594. ],
  8595. "support": {
  8596. "issues": "https://github.com/ramsey/uuid/issues",
  8597. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  8598. },
  8599. "funding": [
  8600. {
  8601. "url": "https://github.com/ramsey",
  8602. "type": "github"
  8603. },
  8604. {
  8605. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  8606. "type": "tidelift"
  8607. }
  8608. ],
  8609. "time": "2024-04-27T21:32:50+00:00"
  8610. },
  8611. {
  8612. "name": "sabberworm/php-css-parser",
  8613. "version": "v8.7.0",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  8617. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/f414ff953002a9b18e3a116f5e462c56f21237cf",
  8622. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "ext-iconv": "*",
  8627. "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  8628. },
  8629. "require-dev": {
  8630. "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.40"
  8631. },
  8632. "suggest": {
  8633. "ext-mbstring": "for parsing UTF-8 CSS"
  8634. },
  8635. "type": "library",
  8636. "extra": {
  8637. "branch-alias": {
  8638. "dev-main": "9.0.x-dev"
  8639. }
  8640. },
  8641. "autoload": {
  8642. "psr-4": {
  8643. "Sabberworm\\CSS\\": "src/"
  8644. }
  8645. },
  8646. "notification-url": "https://packagist.org/downloads/",
  8647. "license": [
  8648. "MIT"
  8649. ],
  8650. "authors": [
  8651. {
  8652. "name": "Raphael Schweikert"
  8653. },
  8654. {
  8655. "name": "Oliver Klee",
  8656. "email": "github@oliverklee.de"
  8657. },
  8658. {
  8659. "name": "Jake Hotson",
  8660. "email": "jake.github@qzdesign.co.uk"
  8661. }
  8662. ],
  8663. "description": "Parser for CSS Files written in PHP",
  8664. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  8665. "keywords": [
  8666. "css",
  8667. "parser",
  8668. "stylesheet"
  8669. ],
  8670. "support": {
  8671. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  8672. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.7.0"
  8673. },
  8674. "time": "2024-10-27T17:38:32+00:00"
  8675. },
  8676. {
  8677. "name": "setasign/fpdi",
  8678. "version": "v2.6.4",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/Setasign/FPDI.git",
  8682. "reference": "4b53852fde2734ec6a07e458a085db627c60eada"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada",
  8687. "reference": "4b53852fde2734ec6a07e458a085db627c60eada",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "ext-zlib": "*",
  8692. "php": "^7.1 || ^8.0"
  8693. },
  8694. "conflict": {
  8695. "setasign/tfpdf": "<1.31"
  8696. },
  8697. "require-dev": {
  8698. "phpunit/phpunit": "^7",
  8699. "setasign/fpdf": "~1.8.6",
  8700. "setasign/tfpdf": "~1.33",
  8701. "squizlabs/php_codesniffer": "^3.5",
  8702. "tecnickcom/tcpdf": "^6.8"
  8703. },
  8704. "suggest": {
  8705. "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."
  8706. },
  8707. "type": "library",
  8708. "autoload": {
  8709. "psr-4": {
  8710. "setasign\\Fpdi\\": "src/"
  8711. }
  8712. },
  8713. "notification-url": "https://packagist.org/downloads/",
  8714. "license": [
  8715. "MIT"
  8716. ],
  8717. "authors": [
  8718. {
  8719. "name": "Jan Slabon",
  8720. "email": "jan.slabon@setasign.com",
  8721. "homepage": "https://www.setasign.com"
  8722. },
  8723. {
  8724. "name": "Maximilian Kresse",
  8725. "email": "maximilian.kresse@setasign.com",
  8726. "homepage": "https://www.setasign.com"
  8727. }
  8728. ],
  8729. "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.",
  8730. "homepage": "https://www.setasign.com/fpdi",
  8731. "keywords": [
  8732. "fpdf",
  8733. "fpdi",
  8734. "pdf"
  8735. ],
  8736. "support": {
  8737. "issues": "https://github.com/Setasign/FPDI/issues",
  8738. "source": "https://github.com/Setasign/FPDI/tree/v2.6.4"
  8739. },
  8740. "funding": [
  8741. {
  8742. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  8743. "type": "tidelift"
  8744. }
  8745. ],
  8746. "time": "2025-08-05T09:57:14+00:00"
  8747. },
  8748. {
  8749. "name": "shetabit/visitor",
  8750. "version": "v4.4.1",
  8751. "source": {
  8752. "type": "git",
  8753. "url": "https://github.com/shetabit/visitor.git",
  8754. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96"
  8755. },
  8756. "dist": {
  8757. "type": "zip",
  8758. "url": "https://api.github.com/repos/shetabit/visitor/zipball/4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  8759. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  8760. "shasum": ""
  8761. },
  8762. "require": {
  8763. "illuminate/support": "9.*|10.*|11.*|12.*",
  8764. "jaybizzle/crawler-detect": "^1.2",
  8765. "mobiledetect/mobiledetectlib": "^4.8",
  8766. "php": ">=8.0",
  8767. "ua-parser/uap-php": "^3.9"
  8768. },
  8769. "require-dev": {
  8770. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  8771. "phpunit/phpunit": ">=7.5",
  8772. "squizlabs/php_codesniffer": "^3.4"
  8773. },
  8774. "type": "library",
  8775. "extra": {
  8776. "laravel": {
  8777. "aliases": {
  8778. "Visitor": "Shetabit\\Visitor\\Facade\\Visitor"
  8779. },
  8780. "providers": [
  8781. "Shetabit\\Visitor\\Provider\\VisitorServiceProvider"
  8782. ]
  8783. }
  8784. },
  8785. "autoload": {
  8786. "files": [
  8787. "src/helpers.php"
  8788. ],
  8789. "psr-4": {
  8790. "Shetabit\\Visitor\\": "src"
  8791. }
  8792. },
  8793. "notification-url": "https://packagist.org/downloads/",
  8794. "license": [
  8795. "MIT"
  8796. ],
  8797. "authors": [
  8798. {
  8799. "name": "Mahdi Khanzadi",
  8800. "email": "khanzadimahdi@gmail.com",
  8801. "homepage": "https://github.com/khanzadimahdi",
  8802. "role": "Developer"
  8803. }
  8804. ],
  8805. "description": "Laravel visitor",
  8806. "homepage": "https://github.com/shetabit/visitor",
  8807. "keywords": [
  8808. "parse laravel user agents",
  8809. "shetabit",
  8810. "trace laravel visitors",
  8811. "track laravel visitors",
  8812. "visitor"
  8813. ],
  8814. "support": {
  8815. "issues": "https://github.com/shetabit/visitor/issues",
  8816. "source": "https://github.com/shetabit/visitor/tree/v4.4.1"
  8817. },
  8818. "time": "2025-03-18T14:58:13+00:00"
  8819. },
  8820. {
  8821. "name": "spatie/browsershot",
  8822. "version": "5.0.8",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/spatie/browsershot.git",
  8826. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/spatie/browsershot/zipball/0102971ae974022ec4a7a149e8924ea355b52cc3",
  8831. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3",
  8832. "shasum": ""
  8833. },
  8834. "require": {
  8835. "ext-fileinfo": "*",
  8836. "ext-json": "*",
  8837. "php": "^8.2",
  8838. "spatie/temporary-directory": "^2.0",
  8839. "symfony/process": "^6.0|^7.0"
  8840. },
  8841. "require-dev": {
  8842. "pestphp/pest": "^3.0",
  8843. "spatie/image": "^3.6",
  8844. "spatie/pdf-to-text": "^1.52",
  8845. "spatie/phpunit-snapshot-assertions": "^4.2.3|^5.0"
  8846. },
  8847. "type": "library",
  8848. "autoload": {
  8849. "psr-4": {
  8850. "Spatie\\Browsershot\\": "src"
  8851. }
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Freek Van der Herten",
  8860. "email": "freek@spatie.be",
  8861. "homepage": "https://github.com/freekmurze",
  8862. "role": "Developer"
  8863. }
  8864. ],
  8865. "description": "Convert a webpage to an image or pdf using headless Chrome",
  8866. "homepage": "https://github.com/spatie/browsershot",
  8867. "keywords": [
  8868. "chrome",
  8869. "convert",
  8870. "headless",
  8871. "image",
  8872. "pdf",
  8873. "puppeteer",
  8874. "screenshot",
  8875. "webpage"
  8876. ],
  8877. "support": {
  8878. "source": "https://github.com/spatie/browsershot/tree/5.0.8"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://github.com/spatie",
  8883. "type": "github"
  8884. }
  8885. ],
  8886. "time": "2025-02-17T09:56:12+00:00"
  8887. },
  8888. {
  8889. "name": "spatie/crawler",
  8890. "version": "8.4.2",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/spatie/crawler.git",
  8894. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/spatie/crawler/zipball/4dc593040018885229dfc8df7cc4bf12cd470cf3",
  8899. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "guzzlehttp/guzzle": "^7.3",
  8904. "guzzlehttp/psr7": "^2.0",
  8905. "illuminate/collections": "^10.0|^11.0|^12.0",
  8906. "nicmart/tree": "^0.9",
  8907. "php": "^8.2",
  8908. "spatie/browsershot": "^5.0.5",
  8909. "spatie/robots-txt": "^2.0",
  8910. "symfony/dom-crawler": "^6.0|^7.0"
  8911. },
  8912. "require-dev": {
  8913. "pestphp/pest": "^2.0",
  8914. "spatie/ray": "^1.37"
  8915. },
  8916. "type": "library",
  8917. "autoload": {
  8918. "psr-4": {
  8919. "Spatie\\Crawler\\": "src"
  8920. }
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "MIT"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Freek Van der Herten",
  8929. "email": "freek@spatie.be"
  8930. }
  8931. ],
  8932. "description": "Crawl all internal links found on a website",
  8933. "homepage": "https://github.com/spatie/crawler",
  8934. "keywords": [
  8935. "crawler",
  8936. "link",
  8937. "spatie",
  8938. "website"
  8939. ],
  8940. "support": {
  8941. "issues": "https://github.com/spatie/crawler/issues",
  8942. "source": "https://github.com/spatie/crawler/tree/8.4.2"
  8943. },
  8944. "funding": [
  8945. {
  8946. "url": "https://spatie.be/open-source/support-us",
  8947. "type": "custom"
  8948. },
  8949. {
  8950. "url": "https://github.com/spatie",
  8951. "type": "github"
  8952. }
  8953. ],
  8954. "time": "2025-02-24T09:20:47+00:00"
  8955. },
  8956. {
  8957. "name": "spatie/image",
  8958. "version": "3.9.4",
  8959. "source": {
  8960. "type": "git",
  8961. "url": "https://github.com/spatie/image.git",
  8962. "reference": "6a322b5e9268e3903d4fb6e1ff08b7dcc3aa9429"
  8963. },
  8964. "dist": {
  8965. "type": "zip",
  8966. "url": "https://api.github.com/repos/spatie/image/zipball/6a322b5e9268e3903d4fb6e1ff08b7dcc3aa9429",
  8967. "reference": "6a322b5e9268e3903d4fb6e1ff08b7dcc3aa9429",
  8968. "shasum": ""
  8969. },
  8970. "require": {
  8971. "ext-exif": "*",
  8972. "ext-json": "*",
  8973. "ext-mbstring": "*",
  8974. "php": "^8.2",
  8975. "spatie/image-optimizer": "^1.7.5",
  8976. "spatie/temporary-directory": "^2.2",
  8977. "symfony/process": "^6.4|^7.0|^8.0"
  8978. },
  8979. "require-dev": {
  8980. "ext-gd": "*",
  8981. "ext-imagick": "*",
  8982. "laravel/sail": "^1.34",
  8983. "pestphp/pest": "^3.0|^4.0",
  8984. "phpstan/phpstan": "^1.10.50",
  8985. "spatie/pest-plugin-snapshots": "^2.1",
  8986. "spatie/pixelmatch-php": "^1.0",
  8987. "spatie/ray": "^1.40.1",
  8988. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  8989. },
  8990. "type": "library",
  8991. "autoload": {
  8992. "psr-4": {
  8993. "Spatie\\Image\\": "src"
  8994. }
  8995. },
  8996. "notification-url": "https://packagist.org/downloads/",
  8997. "license": [
  8998. "MIT"
  8999. ],
  9000. "authors": [
  9001. {
  9002. "name": "Freek Van der Herten",
  9003. "email": "freek@spatie.be",
  9004. "homepage": "https://spatie.be",
  9005. "role": "Developer"
  9006. }
  9007. ],
  9008. "description": "Manipulate images with an expressive API",
  9009. "homepage": "https://github.com/spatie/image",
  9010. "keywords": [
  9011. "image",
  9012. "spatie"
  9013. ],
  9014. "support": {
  9015. "source": "https://github.com/spatie/image/tree/3.9.4"
  9016. },
  9017. "funding": [
  9018. {
  9019. "url": "https://spatie.be/open-source/support-us",
  9020. "type": "custom"
  9021. },
  9022. {
  9023. "url": "https://github.com/spatie",
  9024. "type": "github"
  9025. }
  9026. ],
  9027. "time": "2026-03-13T14:23:45+00:00"
  9028. },
  9029. {
  9030. "name": "spatie/image-optimizer",
  9031. "version": "1.8.1",
  9032. "source": {
  9033. "type": "git",
  9034. "url": "https://github.com/spatie/image-optimizer.git",
  9035. "reference": "2ad9ac7c19501739183359ae64ea6c15869c23d9"
  9036. },
  9037. "dist": {
  9038. "type": "zip",
  9039. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/2ad9ac7c19501739183359ae64ea6c15869c23d9",
  9040. "reference": "2ad9ac7c19501739183359ae64ea6c15869c23d9",
  9041. "shasum": ""
  9042. },
  9043. "require": {
  9044. "ext-fileinfo": "*",
  9045. "php": "^7.3|^8.0",
  9046. "psr/log": "^1.0 | ^2.0 | ^3.0",
  9047. "symfony/process": "^4.2|^5.0|^6.0|^7.0|^8.0"
  9048. },
  9049. "require-dev": {
  9050. "pestphp/pest": "^1.21|^2.0|^3.0|^4.0",
  9051. "phpunit/phpunit": "^8.5.21|^9.4.4|^10.0|^11.0|^12.0",
  9052. "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0|^8.0"
  9053. },
  9054. "type": "library",
  9055. "autoload": {
  9056. "psr-4": {
  9057. "Spatie\\ImageOptimizer\\": "src"
  9058. }
  9059. },
  9060. "notification-url": "https://packagist.org/downloads/",
  9061. "license": [
  9062. "MIT"
  9063. ],
  9064. "authors": [
  9065. {
  9066. "name": "Freek Van der Herten",
  9067. "email": "freek@spatie.be",
  9068. "homepage": "https://spatie.be",
  9069. "role": "Developer"
  9070. }
  9071. ],
  9072. "description": "Easily optimize images using PHP",
  9073. "homepage": "https://github.com/spatie/image-optimizer",
  9074. "keywords": [
  9075. "image-optimizer",
  9076. "spatie"
  9077. ],
  9078. "support": {
  9079. "issues": "https://github.com/spatie/image-optimizer/issues",
  9080. "source": "https://github.com/spatie/image-optimizer/tree/1.8.1"
  9081. },
  9082. "time": "2025-11-26T10:57:19+00:00"
  9083. },
  9084. {
  9085. "name": "spatie/laravel-medialibrary",
  9086. "version": "11.21.0",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/spatie/laravel-medialibrary.git",
  9090. "reference": "d6e2595033ffd130d4dd5d124510ab3304794c44"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/d6e2595033ffd130d4dd5d124510ab3304794c44",
  9095. "reference": "d6e2595033ffd130d4dd5d124510ab3304794c44",
  9096. "shasum": ""
  9097. },
  9098. "require": {
  9099. "composer/semver": "^3.4",
  9100. "ext-exif": "*",
  9101. "ext-fileinfo": "*",
  9102. "ext-json": "*",
  9103. "illuminate/bus": "^10.2|^11.0|^12.0|^13.0",
  9104. "illuminate/conditionable": "^10.2|^11.0|^12.0|^13.0",
  9105. "illuminate/console": "^10.2|^11.0|^12.0|^13.0",
  9106. "illuminate/database": "^10.2|^11.0|^12.0|^13.0",
  9107. "illuminate/pipeline": "^10.2|^11.0|^12.0|^13.0",
  9108. "illuminate/support": "^10.2|^11.0|^12.0|^13.0",
  9109. "maennchen/zipstream-php": "^3.1",
  9110. "php": "^8.2",
  9111. "spatie/image": "^3.3.2",
  9112. "spatie/laravel-package-tools": "^1.16.1",
  9113. "spatie/temporary-directory": "^2.2",
  9114. "symfony/console": "^6.4.1|^7.0|^8.0"
  9115. },
  9116. "conflict": {
  9117. "php-ffmpeg/php-ffmpeg": "<0.6.1"
  9118. },
  9119. "require-dev": {
  9120. "aws/aws-sdk-php": "^3.293.10",
  9121. "ext-imagick": "*",
  9122. "ext-pdo_sqlite": "*",
  9123. "ext-zip": "*",
  9124. "guzzlehttp/guzzle": "^7.8.1",
  9125. "larastan/larastan": "^2.7|^3.0",
  9126. "league/flysystem-aws-s3-v3": "^3.22",
  9127. "mockery/mockery": "^1.6.7",
  9128. "orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
  9129. "pestphp/pest": "^2.36|^3.0|^4.0",
  9130. "phpstan/extension-installer": "^1.3.1",
  9131. "spatie/laravel-ray": "^1.33",
  9132. "spatie/pdf-to-image": "^2.2|^3.0",
  9133. "spatie/pest-expectations": "^1.13",
  9134. "spatie/pest-plugin-snapshots": "^2.1"
  9135. },
  9136. "suggest": {
  9137. "league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage",
  9138. "php-ffmpeg/php-ffmpeg": "Required for generating video thumbnails",
  9139. "spatie/pdf-to-image": "Required for generating thumbnails of PDFs and SVGs"
  9140. },
  9141. "type": "library",
  9142. "extra": {
  9143. "laravel": {
  9144. "providers": [
  9145. "Spatie\\MediaLibrary\\MediaLibraryServiceProvider"
  9146. ]
  9147. }
  9148. },
  9149. "autoload": {
  9150. "psr-4": {
  9151. "Spatie\\MediaLibrary\\": "src"
  9152. }
  9153. },
  9154. "notification-url": "https://packagist.org/downloads/",
  9155. "license": [
  9156. "MIT"
  9157. ],
  9158. "authors": [
  9159. {
  9160. "name": "Freek Van der Herten",
  9161. "email": "freek@spatie.be",
  9162. "homepage": "https://spatie.be",
  9163. "role": "Developer"
  9164. }
  9165. ],
  9166. "description": "Associate files with Eloquent models",
  9167. "homepage": "https://github.com/spatie/laravel-medialibrary",
  9168. "keywords": [
  9169. "cms",
  9170. "conversion",
  9171. "downloads",
  9172. "images",
  9173. "laravel",
  9174. "laravel-medialibrary",
  9175. "media",
  9176. "spatie"
  9177. ],
  9178. "support": {
  9179. "issues": "https://github.com/spatie/laravel-medialibrary/issues",
  9180. "source": "https://github.com/spatie/laravel-medialibrary/tree/11.21.0"
  9181. },
  9182. "funding": [
  9183. {
  9184. "url": "https://spatie.be/open-source/support-us",
  9185. "type": "custom"
  9186. },
  9187. {
  9188. "url": "https://github.com/spatie",
  9189. "type": "github"
  9190. }
  9191. ],
  9192. "time": "2026-02-21T15:58:56+00:00"
  9193. },
  9194. {
  9195. "name": "spatie/laravel-package-tools",
  9196. "version": "1.19.0",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/spatie/laravel-package-tools.git",
  9200. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  9205. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  9210. "php": "^8.0"
  9211. },
  9212. "require-dev": {
  9213. "mockery/mockery": "^1.5",
  9214. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  9215. "pestphp/pest": "^1.23|^2.1|^3.1",
  9216. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  9217. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  9218. },
  9219. "type": "library",
  9220. "autoload": {
  9221. "psr-4": {
  9222. "Spatie\\LaravelPackageTools\\": "src"
  9223. }
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "MIT"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Freek Van der Herten",
  9232. "email": "freek@spatie.be",
  9233. "role": "Developer"
  9234. }
  9235. ],
  9236. "description": "Tools for creating Laravel packages",
  9237. "homepage": "https://github.com/spatie/laravel-package-tools",
  9238. "keywords": [
  9239. "laravel-package-tools",
  9240. "spatie"
  9241. ],
  9242. "support": {
  9243. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  9244. "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0"
  9245. },
  9246. "funding": [
  9247. {
  9248. "url": "https://github.com/spatie",
  9249. "type": "github"
  9250. }
  9251. ],
  9252. "time": "2025-02-06T14:58:20+00:00"
  9253. },
  9254. {
  9255. "name": "spatie/laravel-responsecache",
  9256. "version": "7.6.4",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/spatie/laravel-responsecache.git",
  9260. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/spatie/laravel-responsecache/zipball/fbac90e8df40bc6c877302934e3e971c2da409db",
  9265. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "illuminate/cache": "^10.0|^11.0|^12.0",
  9270. "illuminate/console": "^10.0|^11.0|^12.0",
  9271. "illuminate/container": "^10.0|^11.0|^12.0",
  9272. "illuminate/http": "^10.0|^11.0|^12.0",
  9273. "illuminate/support": "^10.0|^11.0|^12.0",
  9274. "nesbot/carbon": "^2.63|^3.0",
  9275. "php": "^8.2",
  9276. "spatie/laravel-package-tools": "^1.9"
  9277. },
  9278. "require-dev": {
  9279. "laravel/framework": "^10.0|^11.0|^12.0",
  9280. "mockery/mockery": "^1.4",
  9281. "orchestra/testbench": "^8.0|^9.0|^10.0",
  9282. "pestphp/pest": "^2.22|^3.0"
  9283. },
  9284. "type": "library",
  9285. "extra": {
  9286. "laravel": {
  9287. "aliases": {
  9288. "ResponseCache": "Spatie\\ResponseCache\\Facades\\ResponseCache"
  9289. },
  9290. "providers": [
  9291. "Spatie\\ResponseCache\\ResponseCacheServiceProvider"
  9292. ]
  9293. }
  9294. },
  9295. "autoload": {
  9296. "psr-4": {
  9297. "Spatie\\ResponseCache\\": "src"
  9298. }
  9299. },
  9300. "notification-url": "https://packagist.org/downloads/",
  9301. "license": [
  9302. "MIT"
  9303. ],
  9304. "authors": [
  9305. {
  9306. "name": "Freek Van der Herten",
  9307. "email": "freek@spatie.be",
  9308. "homepage": "https://spatie.be",
  9309. "role": "Developer"
  9310. }
  9311. ],
  9312. "description": "Speed up a Laravel application by caching the entire response",
  9313. "homepage": "https://github.com/spatie/laravel-responsecache",
  9314. "keywords": [
  9315. "cache",
  9316. "laravel",
  9317. "laravel-responsecache",
  9318. "performance",
  9319. "response",
  9320. "spatie"
  9321. ],
  9322. "support": {
  9323. "source": "https://github.com/spatie/laravel-responsecache/tree/7.6.4"
  9324. },
  9325. "funding": [
  9326. {
  9327. "url": "https://spatie.be/open-source/support-us",
  9328. "type": "custom"
  9329. },
  9330. {
  9331. "url": "https://github.com/spatie",
  9332. "type": "github"
  9333. }
  9334. ],
  9335. "time": "2025-02-25T15:05:05+00:00"
  9336. },
  9337. {
  9338. "name": "spatie/laravel-sitemap",
  9339. "version": "7.3.5",
  9340. "source": {
  9341. "type": "git",
  9342. "url": "https://github.com/spatie/laravel-sitemap.git",
  9343. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399"
  9344. },
  9345. "dist": {
  9346. "type": "zip",
  9347. "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/329b23c8bc6396de2d47d0633ce2cd3f04921399",
  9348. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399",
  9349. "shasum": ""
  9350. },
  9351. "require": {
  9352. "guzzlehttp/guzzle": "^7.8",
  9353. "illuminate/support": "^11.0|^12.0",
  9354. "nesbot/carbon": "^2.71|^3.0",
  9355. "php": "^8.2||^8.3||^8.4",
  9356. "spatie/crawler": "^8.0.1",
  9357. "spatie/laravel-package-tools": "^1.16.1",
  9358. "symfony/dom-crawler": "^6.3.4|^7.0"
  9359. },
  9360. "require-dev": {
  9361. "mockery/mockery": "^1.6.6",
  9362. "orchestra/testbench": "^9.0|^10.0",
  9363. "pestphp/pest": "^3.7.4",
  9364. "spatie/pest-plugin-snapshots": "^2.1",
  9365. "spatie/phpunit-snapshot-assertions": "^5.1.2",
  9366. "spatie/temporary-directory": "^2.2"
  9367. },
  9368. "type": "library",
  9369. "extra": {
  9370. "laravel": {
  9371. "providers": [
  9372. "Spatie\\Sitemap\\SitemapServiceProvider"
  9373. ]
  9374. }
  9375. },
  9376. "autoload": {
  9377. "psr-4": {
  9378. "Spatie\\Sitemap\\": "src"
  9379. }
  9380. },
  9381. "notification-url": "https://packagist.org/downloads/",
  9382. "license": [
  9383. "MIT"
  9384. ],
  9385. "authors": [
  9386. {
  9387. "name": "Freek Van der Herten",
  9388. "email": "freek@spatie.be",
  9389. "homepage": "https://spatie.be",
  9390. "role": "Developer"
  9391. }
  9392. ],
  9393. "description": "Create and generate sitemaps with ease",
  9394. "homepage": "https://github.com/spatie/laravel-sitemap",
  9395. "keywords": [
  9396. "laravel-sitemap",
  9397. "spatie"
  9398. ],
  9399. "support": {
  9400. "source": "https://github.com/spatie/laravel-sitemap/tree/7.3.5"
  9401. },
  9402. "funding": [
  9403. {
  9404. "url": "https://spatie.be/open-source/support-us",
  9405. "type": "custom"
  9406. }
  9407. ],
  9408. "time": "2025-02-21T09:20:51+00:00"
  9409. },
  9410. {
  9411. "name": "spatie/robots-txt",
  9412. "version": "2.3.1",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/spatie/robots-txt.git",
  9416. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/spatie/robots-txt/zipball/58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  9421. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  9422. "shasum": ""
  9423. },
  9424. "require": {
  9425. "php": "^8.1"
  9426. },
  9427. "require-dev": {
  9428. "phpunit/phpunit": "^11.5.2"
  9429. },
  9430. "type": "library",
  9431. "autoload": {
  9432. "psr-4": {
  9433. "Spatie\\Robots\\": "src"
  9434. }
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "MIT"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Brent Roose",
  9443. "email": "brent@spatie.be",
  9444. "homepage": "https://spatie.be",
  9445. "role": "Developer"
  9446. }
  9447. ],
  9448. "description": "Determine if a page may be crawled from robots.txt and robots meta tags",
  9449. "homepage": "https://github.com/spatie/robots-txt",
  9450. "keywords": [
  9451. "robots-txt",
  9452. "spatie"
  9453. ],
  9454. "support": {
  9455. "issues": "https://github.com/spatie/robots-txt/issues",
  9456. "source": "https://github.com/spatie/robots-txt/tree/2.3.1"
  9457. },
  9458. "funding": [
  9459. {
  9460. "url": "https://spatie.be/open-source/support-us",
  9461. "type": "custom"
  9462. },
  9463. {
  9464. "url": "https://github.com/spatie",
  9465. "type": "github"
  9466. }
  9467. ],
  9468. "time": "2025-01-31T09:33:25+00:00"
  9469. },
  9470. {
  9471. "name": "spatie/temporary-directory",
  9472. "version": "2.3.0",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/spatie/temporary-directory.git",
  9476. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  9481. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  9482. "shasum": ""
  9483. },
  9484. "require": {
  9485. "php": "^8.0"
  9486. },
  9487. "require-dev": {
  9488. "phpunit/phpunit": "^9.5"
  9489. },
  9490. "type": "library",
  9491. "autoload": {
  9492. "psr-4": {
  9493. "Spatie\\TemporaryDirectory\\": "src"
  9494. }
  9495. },
  9496. "notification-url": "https://packagist.org/downloads/",
  9497. "license": [
  9498. "MIT"
  9499. ],
  9500. "authors": [
  9501. {
  9502. "name": "Alex Vanderbist",
  9503. "email": "alex@spatie.be",
  9504. "homepage": "https://spatie.be",
  9505. "role": "Developer"
  9506. }
  9507. ],
  9508. "description": "Easily create, use and destroy temporary directories",
  9509. "homepage": "https://github.com/spatie/temporary-directory",
  9510. "keywords": [
  9511. "php",
  9512. "spatie",
  9513. "temporary-directory"
  9514. ],
  9515. "support": {
  9516. "issues": "https://github.com/spatie/temporary-directory/issues",
  9517. "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
  9518. },
  9519. "funding": [
  9520. {
  9521. "url": "https://spatie.be/open-source/support-us",
  9522. "type": "custom"
  9523. },
  9524. {
  9525. "url": "https://github.com/spatie",
  9526. "type": "github"
  9527. }
  9528. ],
  9529. "time": "2025-01-13T13:04:43+00:00"
  9530. },
  9531. {
  9532. "name": "stevebauman/purify",
  9533. "version": "v6.3.1",
  9534. "source": {
  9535. "type": "git",
  9536. "url": "https://github.com/stevebauman/purify.git",
  9537. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500"
  9538. },
  9539. "dist": {
  9540. "type": "zip",
  9541. "url": "https://api.github.com/repos/stevebauman/purify/zipball/3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  9542. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  9543. "shasum": ""
  9544. },
  9545. "require": {
  9546. "ezyang/htmlpurifier": "^4.17",
  9547. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  9548. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  9549. "php": ">=7.4"
  9550. },
  9551. "require-dev": {
  9552. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  9553. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.5.3"
  9554. },
  9555. "type": "library",
  9556. "extra": {
  9557. "laravel": {
  9558. "aliases": {
  9559. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  9560. },
  9561. "providers": [
  9562. "Stevebauman\\Purify\\PurifyServiceProvider"
  9563. ]
  9564. }
  9565. },
  9566. "autoload": {
  9567. "psr-4": {
  9568. "Stevebauman\\Purify\\": "src/"
  9569. }
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "MIT"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Steve Bauman",
  9578. "email": "steven_bauman@outlook.com"
  9579. }
  9580. ],
  9581. "description": "An HTML Purifier / Sanitizer for Laravel",
  9582. "keywords": [
  9583. "Purifier",
  9584. "clean",
  9585. "cleaner",
  9586. "html",
  9587. "laravel",
  9588. "purification",
  9589. "purify"
  9590. ],
  9591. "support": {
  9592. "issues": "https://github.com/stevebauman/purify/issues",
  9593. "source": "https://github.com/stevebauman/purify/tree/v6.3.1"
  9594. },
  9595. "time": "2025-05-21T16:53:09+00:00"
  9596. },
  9597. {
  9598. "name": "symfony/console",
  9599. "version": "v7.3.3",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/symfony/console.git",
  9603. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/symfony/console/zipball/cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  9608. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  9609. "shasum": ""
  9610. },
  9611. "require": {
  9612. "php": ">=8.2",
  9613. "symfony/deprecation-contracts": "^2.5|^3",
  9614. "symfony/polyfill-mbstring": "~1.0",
  9615. "symfony/service-contracts": "^2.5|^3",
  9616. "symfony/string": "^7.2"
  9617. },
  9618. "conflict": {
  9619. "symfony/dependency-injection": "<6.4",
  9620. "symfony/dotenv": "<6.4",
  9621. "symfony/event-dispatcher": "<6.4",
  9622. "symfony/lock": "<6.4",
  9623. "symfony/process": "<6.4"
  9624. },
  9625. "provide": {
  9626. "psr/log-implementation": "1.0|2.0|3.0"
  9627. },
  9628. "require-dev": {
  9629. "psr/log": "^1|^2|^3",
  9630. "symfony/config": "^6.4|^7.0",
  9631. "symfony/dependency-injection": "^6.4|^7.0",
  9632. "symfony/event-dispatcher": "^6.4|^7.0",
  9633. "symfony/http-foundation": "^6.4|^7.0",
  9634. "symfony/http-kernel": "^6.4|^7.0",
  9635. "symfony/lock": "^6.4|^7.0",
  9636. "symfony/messenger": "^6.4|^7.0",
  9637. "symfony/process": "^6.4|^7.0",
  9638. "symfony/stopwatch": "^6.4|^7.0",
  9639. "symfony/var-dumper": "^6.4|^7.0"
  9640. },
  9641. "type": "library",
  9642. "autoload": {
  9643. "psr-4": {
  9644. "Symfony\\Component\\Console\\": ""
  9645. },
  9646. "exclude-from-classmap": [
  9647. "/Tests/"
  9648. ]
  9649. },
  9650. "notification-url": "https://packagist.org/downloads/",
  9651. "license": [
  9652. "MIT"
  9653. ],
  9654. "authors": [
  9655. {
  9656. "name": "Fabien Potencier",
  9657. "email": "fabien@symfony.com"
  9658. },
  9659. {
  9660. "name": "Symfony Community",
  9661. "homepage": "https://symfony.com/contributors"
  9662. }
  9663. ],
  9664. "description": "Eases the creation of beautiful and testable command line interfaces",
  9665. "homepage": "https://symfony.com",
  9666. "keywords": [
  9667. "cli",
  9668. "command-line",
  9669. "console",
  9670. "terminal"
  9671. ],
  9672. "support": {
  9673. "source": "https://github.com/symfony/console/tree/v7.3.3"
  9674. },
  9675. "funding": [
  9676. {
  9677. "url": "https://symfony.com/sponsor",
  9678. "type": "custom"
  9679. },
  9680. {
  9681. "url": "https://github.com/fabpot",
  9682. "type": "github"
  9683. },
  9684. {
  9685. "url": "https://github.com/nicolas-grekas",
  9686. "type": "github"
  9687. },
  9688. {
  9689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9690. "type": "tidelift"
  9691. }
  9692. ],
  9693. "time": "2025-08-25T06:35:40+00:00"
  9694. },
  9695. {
  9696. "name": "symfony/css-selector",
  9697. "version": "v7.2.0",
  9698. "source": {
  9699. "type": "git",
  9700. "url": "https://github.com/symfony/css-selector.git",
  9701. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  9702. },
  9703. "dist": {
  9704. "type": "zip",
  9705. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9706. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9707. "shasum": ""
  9708. },
  9709. "require": {
  9710. "php": ">=8.2"
  9711. },
  9712. "type": "library",
  9713. "autoload": {
  9714. "psr-4": {
  9715. "Symfony\\Component\\CssSelector\\": ""
  9716. },
  9717. "exclude-from-classmap": [
  9718. "/Tests/"
  9719. ]
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "MIT"
  9724. ],
  9725. "authors": [
  9726. {
  9727. "name": "Fabien Potencier",
  9728. "email": "fabien@symfony.com"
  9729. },
  9730. {
  9731. "name": "Jean-François Simon",
  9732. "email": "jeanfrancois.simon@sensiolabs.com"
  9733. },
  9734. {
  9735. "name": "Symfony Community",
  9736. "homepage": "https://symfony.com/contributors"
  9737. }
  9738. ],
  9739. "description": "Converts CSS selectors to XPath expressions",
  9740. "homepage": "https://symfony.com",
  9741. "support": {
  9742. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  9743. },
  9744. "funding": [
  9745. {
  9746. "url": "https://symfony.com/sponsor",
  9747. "type": "custom"
  9748. },
  9749. {
  9750. "url": "https://github.com/fabpot",
  9751. "type": "github"
  9752. },
  9753. {
  9754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9755. "type": "tidelift"
  9756. }
  9757. ],
  9758. "time": "2024-09-25T14:21:43+00:00"
  9759. },
  9760. {
  9761. "name": "symfony/deprecation-contracts",
  9762. "version": "v3.6.0",
  9763. "source": {
  9764. "type": "git",
  9765. "url": "https://github.com/symfony/deprecation-contracts.git",
  9766. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  9767. },
  9768. "dist": {
  9769. "type": "zip",
  9770. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  9771. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  9772. "shasum": ""
  9773. },
  9774. "require": {
  9775. "php": ">=8.1"
  9776. },
  9777. "type": "library",
  9778. "extra": {
  9779. "thanks": {
  9780. "url": "https://github.com/symfony/contracts",
  9781. "name": "symfony/contracts"
  9782. },
  9783. "branch-alias": {
  9784. "dev-main": "3.6-dev"
  9785. }
  9786. },
  9787. "autoload": {
  9788. "files": [
  9789. "function.php"
  9790. ]
  9791. },
  9792. "notification-url": "https://packagist.org/downloads/",
  9793. "license": [
  9794. "MIT"
  9795. ],
  9796. "authors": [
  9797. {
  9798. "name": "Nicolas Grekas",
  9799. "email": "p@tchwork.com"
  9800. },
  9801. {
  9802. "name": "Symfony Community",
  9803. "homepage": "https://symfony.com/contributors"
  9804. }
  9805. ],
  9806. "description": "A generic function and convention to trigger deprecation notices",
  9807. "homepage": "https://symfony.com",
  9808. "support": {
  9809. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  9810. },
  9811. "funding": [
  9812. {
  9813. "url": "https://symfony.com/sponsor",
  9814. "type": "custom"
  9815. },
  9816. {
  9817. "url": "https://github.com/fabpot",
  9818. "type": "github"
  9819. },
  9820. {
  9821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9822. "type": "tidelift"
  9823. }
  9824. ],
  9825. "time": "2024-09-25T14:21:43+00:00"
  9826. },
  9827. {
  9828. "name": "symfony/dom-crawler",
  9829. "version": "v7.2.4",
  9830. "source": {
  9831. "type": "git",
  9832. "url": "https://github.com/symfony/dom-crawler.git",
  9833. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7"
  9834. },
  9835. "dist": {
  9836. "type": "zip",
  9837. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  9838. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  9839. "shasum": ""
  9840. },
  9841. "require": {
  9842. "masterminds/html5": "^2.6",
  9843. "php": ">=8.2",
  9844. "symfony/polyfill-ctype": "~1.8",
  9845. "symfony/polyfill-mbstring": "~1.0"
  9846. },
  9847. "require-dev": {
  9848. "symfony/css-selector": "^6.4|^7.0"
  9849. },
  9850. "type": "library",
  9851. "autoload": {
  9852. "psr-4": {
  9853. "Symfony\\Component\\DomCrawler\\": ""
  9854. },
  9855. "exclude-from-classmap": [
  9856. "/Tests/"
  9857. ]
  9858. },
  9859. "notification-url": "https://packagist.org/downloads/",
  9860. "license": [
  9861. "MIT"
  9862. ],
  9863. "authors": [
  9864. {
  9865. "name": "Fabien Potencier",
  9866. "email": "fabien@symfony.com"
  9867. },
  9868. {
  9869. "name": "Symfony Community",
  9870. "homepage": "https://symfony.com/contributors"
  9871. }
  9872. ],
  9873. "description": "Eases DOM navigation for HTML and XML documents",
  9874. "homepage": "https://symfony.com",
  9875. "support": {
  9876. "source": "https://github.com/symfony/dom-crawler/tree/v7.2.4"
  9877. },
  9878. "funding": [
  9879. {
  9880. "url": "https://symfony.com/sponsor",
  9881. "type": "custom"
  9882. },
  9883. {
  9884. "url": "https://github.com/fabpot",
  9885. "type": "github"
  9886. },
  9887. {
  9888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9889. "type": "tidelift"
  9890. }
  9891. ],
  9892. "time": "2025-02-17T15:53:07+00:00"
  9893. },
  9894. {
  9895. "name": "symfony/error-handler",
  9896. "version": "v7.2.4",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/symfony/error-handler.git",
  9900. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/symfony/error-handler/zipball/aabf79938aa795350c07ce6464dd1985607d95d5",
  9905. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "php": ">=8.2",
  9910. "psr/log": "^1|^2|^3",
  9911. "symfony/var-dumper": "^6.4|^7.0"
  9912. },
  9913. "conflict": {
  9914. "symfony/deprecation-contracts": "<2.5",
  9915. "symfony/http-kernel": "<6.4"
  9916. },
  9917. "require-dev": {
  9918. "symfony/deprecation-contracts": "^2.5|^3",
  9919. "symfony/http-kernel": "^6.4|^7.0",
  9920. "symfony/serializer": "^6.4|^7.0"
  9921. },
  9922. "bin": [
  9923. "Resources/bin/patch-type-declarations"
  9924. ],
  9925. "type": "library",
  9926. "autoload": {
  9927. "psr-4": {
  9928. "Symfony\\Component\\ErrorHandler\\": ""
  9929. },
  9930. "exclude-from-classmap": [
  9931. "/Tests/"
  9932. ]
  9933. },
  9934. "notification-url": "https://packagist.org/downloads/",
  9935. "license": [
  9936. "MIT"
  9937. ],
  9938. "authors": [
  9939. {
  9940. "name": "Fabien Potencier",
  9941. "email": "fabien@symfony.com"
  9942. },
  9943. {
  9944. "name": "Symfony Community",
  9945. "homepage": "https://symfony.com/contributors"
  9946. }
  9947. ],
  9948. "description": "Provides tools to manage errors and ease debugging PHP code",
  9949. "homepage": "https://symfony.com",
  9950. "support": {
  9951. "source": "https://github.com/symfony/error-handler/tree/v7.2.4"
  9952. },
  9953. "funding": [
  9954. {
  9955. "url": "https://symfony.com/sponsor",
  9956. "type": "custom"
  9957. },
  9958. {
  9959. "url": "https://github.com/fabpot",
  9960. "type": "github"
  9961. },
  9962. {
  9963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9964. "type": "tidelift"
  9965. }
  9966. ],
  9967. "time": "2025-02-02T20:27:07+00:00"
  9968. },
  9969. {
  9970. "name": "symfony/event-dispatcher",
  9971. "version": "v7.2.0",
  9972. "source": {
  9973. "type": "git",
  9974. "url": "https://github.com/symfony/event-dispatcher.git",
  9975. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  9976. },
  9977. "dist": {
  9978. "type": "zip",
  9979. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  9980. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  9981. "shasum": ""
  9982. },
  9983. "require": {
  9984. "php": ">=8.2",
  9985. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9986. },
  9987. "conflict": {
  9988. "symfony/dependency-injection": "<6.4",
  9989. "symfony/service-contracts": "<2.5"
  9990. },
  9991. "provide": {
  9992. "psr/event-dispatcher-implementation": "1.0",
  9993. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9994. },
  9995. "require-dev": {
  9996. "psr/log": "^1|^2|^3",
  9997. "symfony/config": "^6.4|^7.0",
  9998. "symfony/dependency-injection": "^6.4|^7.0",
  9999. "symfony/error-handler": "^6.4|^7.0",
  10000. "symfony/expression-language": "^6.4|^7.0",
  10001. "symfony/http-foundation": "^6.4|^7.0",
  10002. "symfony/service-contracts": "^2.5|^3",
  10003. "symfony/stopwatch": "^6.4|^7.0"
  10004. },
  10005. "type": "library",
  10006. "autoload": {
  10007. "psr-4": {
  10008. "Symfony\\Component\\EventDispatcher\\": ""
  10009. },
  10010. "exclude-from-classmap": [
  10011. "/Tests/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "MIT"
  10017. ],
  10018. "authors": [
  10019. {
  10020. "name": "Fabien Potencier",
  10021. "email": "fabien@symfony.com"
  10022. },
  10023. {
  10024. "name": "Symfony Community",
  10025. "homepage": "https://symfony.com/contributors"
  10026. }
  10027. ],
  10028. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10029. "homepage": "https://symfony.com",
  10030. "support": {
  10031. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  10032. },
  10033. "funding": [
  10034. {
  10035. "url": "https://symfony.com/sponsor",
  10036. "type": "custom"
  10037. },
  10038. {
  10039. "url": "https://github.com/fabpot",
  10040. "type": "github"
  10041. },
  10042. {
  10043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10044. "type": "tidelift"
  10045. }
  10046. ],
  10047. "time": "2024-09-25T14:21:43+00:00"
  10048. },
  10049. {
  10050. "name": "symfony/event-dispatcher-contracts",
  10051. "version": "v3.6.0",
  10052. "source": {
  10053. "type": "git",
  10054. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10055. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  10056. },
  10057. "dist": {
  10058. "type": "zip",
  10059. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  10060. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  10061. "shasum": ""
  10062. },
  10063. "require": {
  10064. "php": ">=8.1",
  10065. "psr/event-dispatcher": "^1"
  10066. },
  10067. "type": "library",
  10068. "extra": {
  10069. "thanks": {
  10070. "url": "https://github.com/symfony/contracts",
  10071. "name": "symfony/contracts"
  10072. },
  10073. "branch-alias": {
  10074. "dev-main": "3.6-dev"
  10075. }
  10076. },
  10077. "autoload": {
  10078. "psr-4": {
  10079. "Symfony\\Contracts\\EventDispatcher\\": ""
  10080. }
  10081. },
  10082. "notification-url": "https://packagist.org/downloads/",
  10083. "license": [
  10084. "MIT"
  10085. ],
  10086. "authors": [
  10087. {
  10088. "name": "Nicolas Grekas",
  10089. "email": "p@tchwork.com"
  10090. },
  10091. {
  10092. "name": "Symfony Community",
  10093. "homepage": "https://symfony.com/contributors"
  10094. }
  10095. ],
  10096. "description": "Generic abstractions related to dispatching event",
  10097. "homepage": "https://symfony.com",
  10098. "keywords": [
  10099. "abstractions",
  10100. "contracts",
  10101. "decoupling",
  10102. "interfaces",
  10103. "interoperability",
  10104. "standards"
  10105. ],
  10106. "support": {
  10107. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  10108. },
  10109. "funding": [
  10110. {
  10111. "url": "https://symfony.com/sponsor",
  10112. "type": "custom"
  10113. },
  10114. {
  10115. "url": "https://github.com/fabpot",
  10116. "type": "github"
  10117. },
  10118. {
  10119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10120. "type": "tidelift"
  10121. }
  10122. ],
  10123. "time": "2024-09-25T14:21:43+00:00"
  10124. },
  10125. {
  10126. "name": "symfony/filesystem",
  10127. "version": "v7.4.8",
  10128. "source": {
  10129. "type": "git",
  10130. "url": "https://github.com/symfony/filesystem.git",
  10131. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5"
  10132. },
  10133. "dist": {
  10134. "type": "zip",
  10135. "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5",
  10136. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5",
  10137. "shasum": ""
  10138. },
  10139. "require": {
  10140. "php": ">=8.2",
  10141. "symfony/polyfill-ctype": "~1.8",
  10142. "symfony/polyfill-mbstring": "~1.8"
  10143. },
  10144. "require-dev": {
  10145. "symfony/process": "^6.4|^7.0|^8.0"
  10146. },
  10147. "type": "library",
  10148. "autoload": {
  10149. "psr-4": {
  10150. "Symfony\\Component\\Filesystem\\": ""
  10151. },
  10152. "exclude-from-classmap": [
  10153. "/Tests/"
  10154. ]
  10155. },
  10156. "notification-url": "https://packagist.org/downloads/",
  10157. "license": [
  10158. "MIT"
  10159. ],
  10160. "authors": [
  10161. {
  10162. "name": "Fabien Potencier",
  10163. "email": "fabien@symfony.com"
  10164. },
  10165. {
  10166. "name": "Symfony Community",
  10167. "homepage": "https://symfony.com/contributors"
  10168. }
  10169. ],
  10170. "description": "Provides basic utilities for the filesystem",
  10171. "homepage": "https://symfony.com",
  10172. "support": {
  10173. "source": "https://github.com/symfony/filesystem/tree/v7.4.8"
  10174. },
  10175. "funding": [
  10176. {
  10177. "url": "https://symfony.com/sponsor",
  10178. "type": "custom"
  10179. },
  10180. {
  10181. "url": "https://github.com/fabpot",
  10182. "type": "github"
  10183. },
  10184. {
  10185. "url": "https://github.com/nicolas-grekas",
  10186. "type": "github"
  10187. },
  10188. {
  10189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10190. "type": "tidelift"
  10191. }
  10192. ],
  10193. "time": "2026-03-24T13:12:05+00:00"
  10194. },
  10195. {
  10196. "name": "symfony/finder",
  10197. "version": "v7.2.2",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/symfony/finder.git",
  10201. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  10206. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  10207. "shasum": ""
  10208. },
  10209. "require": {
  10210. "php": ">=8.2"
  10211. },
  10212. "require-dev": {
  10213. "symfony/filesystem": "^6.4|^7.0"
  10214. },
  10215. "type": "library",
  10216. "autoload": {
  10217. "psr-4": {
  10218. "Symfony\\Component\\Finder\\": ""
  10219. },
  10220. "exclude-from-classmap": [
  10221. "/Tests/"
  10222. ]
  10223. },
  10224. "notification-url": "https://packagist.org/downloads/",
  10225. "license": [
  10226. "MIT"
  10227. ],
  10228. "authors": [
  10229. {
  10230. "name": "Fabien Potencier",
  10231. "email": "fabien@symfony.com"
  10232. },
  10233. {
  10234. "name": "Symfony Community",
  10235. "homepage": "https://symfony.com/contributors"
  10236. }
  10237. ],
  10238. "description": "Finds files and directories via an intuitive fluent interface",
  10239. "homepage": "https://symfony.com",
  10240. "support": {
  10241. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  10242. },
  10243. "funding": [
  10244. {
  10245. "url": "https://symfony.com/sponsor",
  10246. "type": "custom"
  10247. },
  10248. {
  10249. "url": "https://github.com/fabpot",
  10250. "type": "github"
  10251. },
  10252. {
  10253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10254. "type": "tidelift"
  10255. }
  10256. ],
  10257. "time": "2024-12-30T19:00:17+00:00"
  10258. },
  10259. {
  10260. "name": "symfony/http-foundation",
  10261. "version": "v7.3.7",
  10262. "source": {
  10263. "type": "git",
  10264. "url": "https://github.com/symfony/http-foundation.git",
  10265. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4"
  10266. },
  10267. "dist": {
  10268. "type": "zip",
  10269. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  10270. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  10271. "shasum": ""
  10272. },
  10273. "require": {
  10274. "php": ">=8.2",
  10275. "symfony/deprecation-contracts": "^2.5|^3.0",
  10276. "symfony/polyfill-mbstring": "~1.1",
  10277. "symfony/polyfill-php83": "^1.27"
  10278. },
  10279. "conflict": {
  10280. "doctrine/dbal": "<3.6",
  10281. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10282. },
  10283. "require-dev": {
  10284. "doctrine/dbal": "^3.6|^4",
  10285. "predis/predis": "^1.1|^2.0",
  10286. "symfony/cache": "^6.4.12|^7.1.5",
  10287. "symfony/clock": "^6.4|^7.0",
  10288. "symfony/dependency-injection": "^6.4|^7.0",
  10289. "symfony/expression-language": "^6.4|^7.0",
  10290. "symfony/http-kernel": "^6.4|^7.0",
  10291. "symfony/mime": "^6.4|^7.0",
  10292. "symfony/rate-limiter": "^6.4|^7.0"
  10293. },
  10294. "type": "library",
  10295. "autoload": {
  10296. "psr-4": {
  10297. "Symfony\\Component\\HttpFoundation\\": ""
  10298. },
  10299. "exclude-from-classmap": [
  10300. "/Tests/"
  10301. ]
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "MIT"
  10306. ],
  10307. "authors": [
  10308. {
  10309. "name": "Fabien Potencier",
  10310. "email": "fabien@symfony.com"
  10311. },
  10312. {
  10313. "name": "Symfony Community",
  10314. "homepage": "https://symfony.com/contributors"
  10315. }
  10316. ],
  10317. "description": "Defines an object-oriented layer for the HTTP specification",
  10318. "homepage": "https://symfony.com",
  10319. "support": {
  10320. "source": "https://github.com/symfony/http-foundation/tree/v7.3.7"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://symfony.com/sponsor",
  10325. "type": "custom"
  10326. },
  10327. {
  10328. "url": "https://github.com/fabpot",
  10329. "type": "github"
  10330. },
  10331. {
  10332. "url": "https://github.com/nicolas-grekas",
  10333. "type": "github"
  10334. },
  10335. {
  10336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10337. "type": "tidelift"
  10338. }
  10339. ],
  10340. "time": "2025-11-08T16:41:12+00:00"
  10341. },
  10342. {
  10343. "name": "symfony/http-kernel",
  10344. "version": "v7.2.4",
  10345. "source": {
  10346. "type": "git",
  10347. "url": "https://github.com/symfony/http-kernel.git",
  10348. "reference": "9f1103734c5789798fefb90e91de4586039003ed"
  10349. },
  10350. "dist": {
  10351. "type": "zip",
  10352. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f1103734c5789798fefb90e91de4586039003ed",
  10353. "reference": "9f1103734c5789798fefb90e91de4586039003ed",
  10354. "shasum": ""
  10355. },
  10356. "require": {
  10357. "php": ">=8.2",
  10358. "psr/log": "^1|^2|^3",
  10359. "symfony/deprecation-contracts": "^2.5|^3",
  10360. "symfony/error-handler": "^6.4|^7.0",
  10361. "symfony/event-dispatcher": "^6.4|^7.0",
  10362. "symfony/http-foundation": "^6.4|^7.0",
  10363. "symfony/polyfill-ctype": "^1.8"
  10364. },
  10365. "conflict": {
  10366. "symfony/browser-kit": "<6.4",
  10367. "symfony/cache": "<6.4",
  10368. "symfony/config": "<6.4",
  10369. "symfony/console": "<6.4",
  10370. "symfony/dependency-injection": "<6.4",
  10371. "symfony/doctrine-bridge": "<6.4",
  10372. "symfony/form": "<6.4",
  10373. "symfony/http-client": "<6.4",
  10374. "symfony/http-client-contracts": "<2.5",
  10375. "symfony/mailer": "<6.4",
  10376. "symfony/messenger": "<6.4",
  10377. "symfony/translation": "<6.4",
  10378. "symfony/translation-contracts": "<2.5",
  10379. "symfony/twig-bridge": "<6.4",
  10380. "symfony/validator": "<6.4",
  10381. "symfony/var-dumper": "<6.4",
  10382. "twig/twig": "<3.12"
  10383. },
  10384. "provide": {
  10385. "psr/log-implementation": "1.0|2.0|3.0"
  10386. },
  10387. "require-dev": {
  10388. "psr/cache": "^1.0|^2.0|^3.0",
  10389. "symfony/browser-kit": "^6.4|^7.0",
  10390. "symfony/clock": "^6.4|^7.0",
  10391. "symfony/config": "^6.4|^7.0",
  10392. "symfony/console": "^6.4|^7.0",
  10393. "symfony/css-selector": "^6.4|^7.0",
  10394. "symfony/dependency-injection": "^6.4|^7.0",
  10395. "symfony/dom-crawler": "^6.4|^7.0",
  10396. "symfony/expression-language": "^6.4|^7.0",
  10397. "symfony/finder": "^6.4|^7.0",
  10398. "symfony/http-client-contracts": "^2.5|^3",
  10399. "symfony/process": "^6.4|^7.0",
  10400. "symfony/property-access": "^7.1",
  10401. "symfony/routing": "^6.4|^7.0",
  10402. "symfony/serializer": "^7.1",
  10403. "symfony/stopwatch": "^6.4|^7.0",
  10404. "symfony/translation": "^6.4|^7.0",
  10405. "symfony/translation-contracts": "^2.5|^3",
  10406. "symfony/uid": "^6.4|^7.0",
  10407. "symfony/validator": "^6.4|^7.0",
  10408. "symfony/var-dumper": "^6.4|^7.0",
  10409. "symfony/var-exporter": "^6.4|^7.0",
  10410. "twig/twig": "^3.12"
  10411. },
  10412. "type": "library",
  10413. "autoload": {
  10414. "psr-4": {
  10415. "Symfony\\Component\\HttpKernel\\": ""
  10416. },
  10417. "exclude-from-classmap": [
  10418. "/Tests/"
  10419. ]
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "MIT"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Fabien Potencier",
  10428. "email": "fabien@symfony.com"
  10429. },
  10430. {
  10431. "name": "Symfony Community",
  10432. "homepage": "https://symfony.com/contributors"
  10433. }
  10434. ],
  10435. "description": "Provides a structured process for converting a Request into a Response",
  10436. "homepage": "https://symfony.com",
  10437. "support": {
  10438. "source": "https://github.com/symfony/http-kernel/tree/v7.2.4"
  10439. },
  10440. "funding": [
  10441. {
  10442. "url": "https://symfony.com/sponsor",
  10443. "type": "custom"
  10444. },
  10445. {
  10446. "url": "https://github.com/fabpot",
  10447. "type": "github"
  10448. },
  10449. {
  10450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10451. "type": "tidelift"
  10452. }
  10453. ],
  10454. "time": "2025-02-26T11:01:22+00:00"
  10455. },
  10456. {
  10457. "name": "symfony/mailer",
  10458. "version": "v7.2.3",
  10459. "source": {
  10460. "type": "git",
  10461. "url": "https://github.com/symfony/mailer.git",
  10462. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  10463. },
  10464. "dist": {
  10465. "type": "zip",
  10466. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  10467. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  10468. "shasum": ""
  10469. },
  10470. "require": {
  10471. "egulias/email-validator": "^2.1.10|^3|^4",
  10472. "php": ">=8.2",
  10473. "psr/event-dispatcher": "^1",
  10474. "psr/log": "^1|^2|^3",
  10475. "symfony/event-dispatcher": "^6.4|^7.0",
  10476. "symfony/mime": "^7.2",
  10477. "symfony/service-contracts": "^2.5|^3"
  10478. },
  10479. "conflict": {
  10480. "symfony/http-client-contracts": "<2.5",
  10481. "symfony/http-kernel": "<6.4",
  10482. "symfony/messenger": "<6.4",
  10483. "symfony/mime": "<6.4",
  10484. "symfony/twig-bridge": "<6.4"
  10485. },
  10486. "require-dev": {
  10487. "symfony/console": "^6.4|^7.0",
  10488. "symfony/http-client": "^6.4|^7.0",
  10489. "symfony/messenger": "^6.4|^7.0",
  10490. "symfony/twig-bridge": "^6.4|^7.0"
  10491. },
  10492. "type": "library",
  10493. "autoload": {
  10494. "psr-4": {
  10495. "Symfony\\Component\\Mailer\\": ""
  10496. },
  10497. "exclude-from-classmap": [
  10498. "/Tests/"
  10499. ]
  10500. },
  10501. "notification-url": "https://packagist.org/downloads/",
  10502. "license": [
  10503. "MIT"
  10504. ],
  10505. "authors": [
  10506. {
  10507. "name": "Fabien Potencier",
  10508. "email": "fabien@symfony.com"
  10509. },
  10510. {
  10511. "name": "Symfony Community",
  10512. "homepage": "https://symfony.com/contributors"
  10513. }
  10514. ],
  10515. "description": "Helps sending emails",
  10516. "homepage": "https://symfony.com",
  10517. "support": {
  10518. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  10519. },
  10520. "funding": [
  10521. {
  10522. "url": "https://symfony.com/sponsor",
  10523. "type": "custom"
  10524. },
  10525. {
  10526. "url": "https://github.com/fabpot",
  10527. "type": "github"
  10528. },
  10529. {
  10530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10531. "type": "tidelift"
  10532. }
  10533. ],
  10534. "time": "2025-01-27T11:08:17+00:00"
  10535. },
  10536. {
  10537. "name": "symfony/mime",
  10538. "version": "v7.3.4",
  10539. "source": {
  10540. "type": "git",
  10541. "url": "https://github.com/symfony/mime.git",
  10542. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35"
  10543. },
  10544. "dist": {
  10545. "type": "zip",
  10546. "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35",
  10547. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35",
  10548. "shasum": ""
  10549. },
  10550. "require": {
  10551. "php": ">=8.2",
  10552. "symfony/polyfill-intl-idn": "^1.10",
  10553. "symfony/polyfill-mbstring": "^1.0"
  10554. },
  10555. "conflict": {
  10556. "egulias/email-validator": "~3.0.0",
  10557. "phpdocumentor/reflection-docblock": "<3.2.2",
  10558. "phpdocumentor/type-resolver": "<1.4.0",
  10559. "symfony/mailer": "<6.4",
  10560. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  10561. },
  10562. "require-dev": {
  10563. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10564. "league/html-to-markdown": "^5.0",
  10565. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10566. "symfony/dependency-injection": "^6.4|^7.0",
  10567. "symfony/process": "^6.4|^7.0",
  10568. "symfony/property-access": "^6.4|^7.0",
  10569. "symfony/property-info": "^6.4|^7.0",
  10570. "symfony/serializer": "^6.4.3|^7.0.3"
  10571. },
  10572. "type": "library",
  10573. "autoload": {
  10574. "psr-4": {
  10575. "Symfony\\Component\\Mime\\": ""
  10576. },
  10577. "exclude-from-classmap": [
  10578. "/Tests/"
  10579. ]
  10580. },
  10581. "notification-url": "https://packagist.org/downloads/",
  10582. "license": [
  10583. "MIT"
  10584. ],
  10585. "authors": [
  10586. {
  10587. "name": "Fabien Potencier",
  10588. "email": "fabien@symfony.com"
  10589. },
  10590. {
  10591. "name": "Symfony Community",
  10592. "homepage": "https://symfony.com/contributors"
  10593. }
  10594. ],
  10595. "description": "Allows manipulating MIME messages",
  10596. "homepage": "https://symfony.com",
  10597. "keywords": [
  10598. "mime",
  10599. "mime-type"
  10600. ],
  10601. "support": {
  10602. "source": "https://github.com/symfony/mime/tree/v7.3.4"
  10603. },
  10604. "funding": [
  10605. {
  10606. "url": "https://symfony.com/sponsor",
  10607. "type": "custom"
  10608. },
  10609. {
  10610. "url": "https://github.com/fabpot",
  10611. "type": "github"
  10612. },
  10613. {
  10614. "url": "https://github.com/nicolas-grekas",
  10615. "type": "github"
  10616. },
  10617. {
  10618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10619. "type": "tidelift"
  10620. }
  10621. ],
  10622. "time": "2025-09-16T08:38:17+00:00"
  10623. },
  10624. {
  10625. "name": "symfony/polyfill-ctype",
  10626. "version": "v1.33.0",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/symfony/polyfill-ctype.git",
  10630. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  10635. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "php": ">=7.2"
  10640. },
  10641. "provide": {
  10642. "ext-ctype": "*"
  10643. },
  10644. "suggest": {
  10645. "ext-ctype": "For best performance"
  10646. },
  10647. "type": "library",
  10648. "extra": {
  10649. "thanks": {
  10650. "url": "https://github.com/symfony/polyfill",
  10651. "name": "symfony/polyfill"
  10652. }
  10653. },
  10654. "autoload": {
  10655. "files": [
  10656. "bootstrap.php"
  10657. ],
  10658. "psr-4": {
  10659. "Symfony\\Polyfill\\Ctype\\": ""
  10660. }
  10661. },
  10662. "notification-url": "https://packagist.org/downloads/",
  10663. "license": [
  10664. "MIT"
  10665. ],
  10666. "authors": [
  10667. {
  10668. "name": "Gert de Pagter",
  10669. "email": "BackEndTea@gmail.com"
  10670. },
  10671. {
  10672. "name": "Symfony Community",
  10673. "homepage": "https://symfony.com/contributors"
  10674. }
  10675. ],
  10676. "description": "Symfony polyfill for ctype functions",
  10677. "homepage": "https://symfony.com",
  10678. "keywords": [
  10679. "compatibility",
  10680. "ctype",
  10681. "polyfill",
  10682. "portable"
  10683. ],
  10684. "support": {
  10685. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  10686. },
  10687. "funding": [
  10688. {
  10689. "url": "https://symfony.com/sponsor",
  10690. "type": "custom"
  10691. },
  10692. {
  10693. "url": "https://github.com/fabpot",
  10694. "type": "github"
  10695. },
  10696. {
  10697. "url": "https://github.com/nicolas-grekas",
  10698. "type": "github"
  10699. },
  10700. {
  10701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10702. "type": "tidelift"
  10703. }
  10704. ],
  10705. "time": "2024-09-09T11:45:10+00:00"
  10706. },
  10707. {
  10708. "name": "symfony/polyfill-intl-grapheme",
  10709. "version": "v1.33.0",
  10710. "source": {
  10711. "type": "git",
  10712. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10713. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  10714. },
  10715. "dist": {
  10716. "type": "zip",
  10717. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  10718. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  10719. "shasum": ""
  10720. },
  10721. "require": {
  10722. "php": ">=7.2"
  10723. },
  10724. "suggest": {
  10725. "ext-intl": "For best performance"
  10726. },
  10727. "type": "library",
  10728. "extra": {
  10729. "thanks": {
  10730. "url": "https://github.com/symfony/polyfill",
  10731. "name": "symfony/polyfill"
  10732. }
  10733. },
  10734. "autoload": {
  10735. "files": [
  10736. "bootstrap.php"
  10737. ],
  10738. "psr-4": {
  10739. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10740. }
  10741. },
  10742. "notification-url": "https://packagist.org/downloads/",
  10743. "license": [
  10744. "MIT"
  10745. ],
  10746. "authors": [
  10747. {
  10748. "name": "Nicolas Grekas",
  10749. "email": "p@tchwork.com"
  10750. },
  10751. {
  10752. "name": "Symfony Community",
  10753. "homepage": "https://symfony.com/contributors"
  10754. }
  10755. ],
  10756. "description": "Symfony polyfill for intl's grapheme_* functions",
  10757. "homepage": "https://symfony.com",
  10758. "keywords": [
  10759. "compatibility",
  10760. "grapheme",
  10761. "intl",
  10762. "polyfill",
  10763. "portable",
  10764. "shim"
  10765. ],
  10766. "support": {
  10767. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  10768. },
  10769. "funding": [
  10770. {
  10771. "url": "https://symfony.com/sponsor",
  10772. "type": "custom"
  10773. },
  10774. {
  10775. "url": "https://github.com/fabpot",
  10776. "type": "github"
  10777. },
  10778. {
  10779. "url": "https://github.com/nicolas-grekas",
  10780. "type": "github"
  10781. },
  10782. {
  10783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10784. "type": "tidelift"
  10785. }
  10786. ],
  10787. "time": "2025-06-27T09:58:17+00:00"
  10788. },
  10789. {
  10790. "name": "symfony/polyfill-intl-idn",
  10791. "version": "v1.33.0",
  10792. "source": {
  10793. "type": "git",
  10794. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10795. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  10796. },
  10797. "dist": {
  10798. "type": "zip",
  10799. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  10800. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  10801. "shasum": ""
  10802. },
  10803. "require": {
  10804. "php": ">=7.2",
  10805. "symfony/polyfill-intl-normalizer": "^1.10"
  10806. },
  10807. "suggest": {
  10808. "ext-intl": "For best performance"
  10809. },
  10810. "type": "library",
  10811. "extra": {
  10812. "thanks": {
  10813. "url": "https://github.com/symfony/polyfill",
  10814. "name": "symfony/polyfill"
  10815. }
  10816. },
  10817. "autoload": {
  10818. "files": [
  10819. "bootstrap.php"
  10820. ],
  10821. "psr-4": {
  10822. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10823. }
  10824. },
  10825. "notification-url": "https://packagist.org/downloads/",
  10826. "license": [
  10827. "MIT"
  10828. ],
  10829. "authors": [
  10830. {
  10831. "name": "Laurent Bassin",
  10832. "email": "laurent@bassin.info"
  10833. },
  10834. {
  10835. "name": "Trevor Rowbotham",
  10836. "email": "trevor.rowbotham@pm.me"
  10837. },
  10838. {
  10839. "name": "Symfony Community",
  10840. "homepage": "https://symfony.com/contributors"
  10841. }
  10842. ],
  10843. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10844. "homepage": "https://symfony.com",
  10845. "keywords": [
  10846. "compatibility",
  10847. "idn",
  10848. "intl",
  10849. "polyfill",
  10850. "portable",
  10851. "shim"
  10852. ],
  10853. "support": {
  10854. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  10855. },
  10856. "funding": [
  10857. {
  10858. "url": "https://symfony.com/sponsor",
  10859. "type": "custom"
  10860. },
  10861. {
  10862. "url": "https://github.com/fabpot",
  10863. "type": "github"
  10864. },
  10865. {
  10866. "url": "https://github.com/nicolas-grekas",
  10867. "type": "github"
  10868. },
  10869. {
  10870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10871. "type": "tidelift"
  10872. }
  10873. ],
  10874. "time": "2024-09-10T14:38:51+00:00"
  10875. },
  10876. {
  10877. "name": "symfony/polyfill-intl-normalizer",
  10878. "version": "v1.33.0",
  10879. "source": {
  10880. "type": "git",
  10881. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10882. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  10883. },
  10884. "dist": {
  10885. "type": "zip",
  10886. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  10887. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  10888. "shasum": ""
  10889. },
  10890. "require": {
  10891. "php": ">=7.2"
  10892. },
  10893. "suggest": {
  10894. "ext-intl": "For best performance"
  10895. },
  10896. "type": "library",
  10897. "extra": {
  10898. "thanks": {
  10899. "url": "https://github.com/symfony/polyfill",
  10900. "name": "symfony/polyfill"
  10901. }
  10902. },
  10903. "autoload": {
  10904. "files": [
  10905. "bootstrap.php"
  10906. ],
  10907. "psr-4": {
  10908. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10909. },
  10910. "classmap": [
  10911. "Resources/stubs"
  10912. ]
  10913. },
  10914. "notification-url": "https://packagist.org/downloads/",
  10915. "license": [
  10916. "MIT"
  10917. ],
  10918. "authors": [
  10919. {
  10920. "name": "Nicolas Grekas",
  10921. "email": "p@tchwork.com"
  10922. },
  10923. {
  10924. "name": "Symfony Community",
  10925. "homepage": "https://symfony.com/contributors"
  10926. }
  10927. ],
  10928. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10929. "homepage": "https://symfony.com",
  10930. "keywords": [
  10931. "compatibility",
  10932. "intl",
  10933. "normalizer",
  10934. "polyfill",
  10935. "portable",
  10936. "shim"
  10937. ],
  10938. "support": {
  10939. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  10940. },
  10941. "funding": [
  10942. {
  10943. "url": "https://symfony.com/sponsor",
  10944. "type": "custom"
  10945. },
  10946. {
  10947. "url": "https://github.com/fabpot",
  10948. "type": "github"
  10949. },
  10950. {
  10951. "url": "https://github.com/nicolas-grekas",
  10952. "type": "github"
  10953. },
  10954. {
  10955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10956. "type": "tidelift"
  10957. }
  10958. ],
  10959. "time": "2024-09-09T11:45:10+00:00"
  10960. },
  10961. {
  10962. "name": "symfony/polyfill-mbstring",
  10963. "version": "v1.33.0",
  10964. "source": {
  10965. "type": "git",
  10966. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10967. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  10968. },
  10969. "dist": {
  10970. "type": "zip",
  10971. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  10972. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  10973. "shasum": ""
  10974. },
  10975. "require": {
  10976. "ext-iconv": "*",
  10977. "php": ">=7.2"
  10978. },
  10979. "provide": {
  10980. "ext-mbstring": "*"
  10981. },
  10982. "suggest": {
  10983. "ext-mbstring": "For best performance"
  10984. },
  10985. "type": "library",
  10986. "extra": {
  10987. "thanks": {
  10988. "url": "https://github.com/symfony/polyfill",
  10989. "name": "symfony/polyfill"
  10990. }
  10991. },
  10992. "autoload": {
  10993. "files": [
  10994. "bootstrap.php"
  10995. ],
  10996. "psr-4": {
  10997. "Symfony\\Polyfill\\Mbstring\\": ""
  10998. }
  10999. },
  11000. "notification-url": "https://packagist.org/downloads/",
  11001. "license": [
  11002. "MIT"
  11003. ],
  11004. "authors": [
  11005. {
  11006. "name": "Nicolas Grekas",
  11007. "email": "p@tchwork.com"
  11008. },
  11009. {
  11010. "name": "Symfony Community",
  11011. "homepage": "https://symfony.com/contributors"
  11012. }
  11013. ],
  11014. "description": "Symfony polyfill for the Mbstring extension",
  11015. "homepage": "https://symfony.com",
  11016. "keywords": [
  11017. "compatibility",
  11018. "mbstring",
  11019. "polyfill",
  11020. "portable",
  11021. "shim"
  11022. ],
  11023. "support": {
  11024. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  11025. },
  11026. "funding": [
  11027. {
  11028. "url": "https://symfony.com/sponsor",
  11029. "type": "custom"
  11030. },
  11031. {
  11032. "url": "https://github.com/fabpot",
  11033. "type": "github"
  11034. },
  11035. {
  11036. "url": "https://github.com/nicolas-grekas",
  11037. "type": "github"
  11038. },
  11039. {
  11040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11041. "type": "tidelift"
  11042. }
  11043. ],
  11044. "time": "2024-12-23T08:48:59+00:00"
  11045. },
  11046. {
  11047. "name": "symfony/polyfill-php80",
  11048. "version": "v1.33.0",
  11049. "source": {
  11050. "type": "git",
  11051. "url": "https://github.com/symfony/polyfill-php80.git",
  11052. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  11053. },
  11054. "dist": {
  11055. "type": "zip",
  11056. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  11057. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  11058. "shasum": ""
  11059. },
  11060. "require": {
  11061. "php": ">=7.2"
  11062. },
  11063. "type": "library",
  11064. "extra": {
  11065. "thanks": {
  11066. "url": "https://github.com/symfony/polyfill",
  11067. "name": "symfony/polyfill"
  11068. }
  11069. },
  11070. "autoload": {
  11071. "files": [
  11072. "bootstrap.php"
  11073. ],
  11074. "psr-4": {
  11075. "Symfony\\Polyfill\\Php80\\": ""
  11076. },
  11077. "classmap": [
  11078. "Resources/stubs"
  11079. ]
  11080. },
  11081. "notification-url": "https://packagist.org/downloads/",
  11082. "license": [
  11083. "MIT"
  11084. ],
  11085. "authors": [
  11086. {
  11087. "name": "Ion Bazan",
  11088. "email": "ion.bazan@gmail.com"
  11089. },
  11090. {
  11091. "name": "Nicolas Grekas",
  11092. "email": "p@tchwork.com"
  11093. },
  11094. {
  11095. "name": "Symfony Community",
  11096. "homepage": "https://symfony.com/contributors"
  11097. }
  11098. ],
  11099. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11100. "homepage": "https://symfony.com",
  11101. "keywords": [
  11102. "compatibility",
  11103. "polyfill",
  11104. "portable",
  11105. "shim"
  11106. ],
  11107. "support": {
  11108. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  11109. },
  11110. "funding": [
  11111. {
  11112. "url": "https://symfony.com/sponsor",
  11113. "type": "custom"
  11114. },
  11115. {
  11116. "url": "https://github.com/fabpot",
  11117. "type": "github"
  11118. },
  11119. {
  11120. "url": "https://github.com/nicolas-grekas",
  11121. "type": "github"
  11122. },
  11123. {
  11124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11125. "type": "tidelift"
  11126. }
  11127. ],
  11128. "time": "2025-01-02T08:10:11+00:00"
  11129. },
  11130. {
  11131. "name": "symfony/polyfill-php82",
  11132. "version": "v1.31.0",
  11133. "source": {
  11134. "type": "git",
  11135. "url": "https://github.com/symfony/polyfill-php82.git",
  11136. "reference": "5d2ed36f7734637dacc025f179698031951b1692"
  11137. },
  11138. "dist": {
  11139. "type": "zip",
  11140. "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/5d2ed36f7734637dacc025f179698031951b1692",
  11141. "reference": "5d2ed36f7734637dacc025f179698031951b1692",
  11142. "shasum": ""
  11143. },
  11144. "require": {
  11145. "php": ">=7.2"
  11146. },
  11147. "type": "library",
  11148. "extra": {
  11149. "thanks": {
  11150. "url": "https://github.com/symfony/polyfill",
  11151. "name": "symfony/polyfill"
  11152. }
  11153. },
  11154. "autoload": {
  11155. "files": [
  11156. "bootstrap.php"
  11157. ],
  11158. "psr-4": {
  11159. "Symfony\\Polyfill\\Php82\\": ""
  11160. },
  11161. "classmap": [
  11162. "Resources/stubs"
  11163. ]
  11164. },
  11165. "notification-url": "https://packagist.org/downloads/",
  11166. "license": [
  11167. "MIT"
  11168. ],
  11169. "authors": [
  11170. {
  11171. "name": "Nicolas Grekas",
  11172. "email": "p@tchwork.com"
  11173. },
  11174. {
  11175. "name": "Symfony Community",
  11176. "homepage": "https://symfony.com/contributors"
  11177. }
  11178. ],
  11179. "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions",
  11180. "homepage": "https://symfony.com",
  11181. "keywords": [
  11182. "compatibility",
  11183. "polyfill",
  11184. "portable",
  11185. "shim"
  11186. ],
  11187. "support": {
  11188. "source": "https://github.com/symfony/polyfill-php82/tree/v1.31.0"
  11189. },
  11190. "funding": [
  11191. {
  11192. "url": "https://symfony.com/sponsor",
  11193. "type": "custom"
  11194. },
  11195. {
  11196. "url": "https://github.com/fabpot",
  11197. "type": "github"
  11198. },
  11199. {
  11200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11201. "type": "tidelift"
  11202. }
  11203. ],
  11204. "time": "2024-09-09T11:45:10+00:00"
  11205. },
  11206. {
  11207. "name": "symfony/polyfill-php83",
  11208. "version": "v1.33.0",
  11209. "source": {
  11210. "type": "git",
  11211. "url": "https://github.com/symfony/polyfill-php83.git",
  11212. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  11213. },
  11214. "dist": {
  11215. "type": "zip",
  11216. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  11217. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  11218. "shasum": ""
  11219. },
  11220. "require": {
  11221. "php": ">=7.2"
  11222. },
  11223. "type": "library",
  11224. "extra": {
  11225. "thanks": {
  11226. "url": "https://github.com/symfony/polyfill",
  11227. "name": "symfony/polyfill"
  11228. }
  11229. },
  11230. "autoload": {
  11231. "files": [
  11232. "bootstrap.php"
  11233. ],
  11234. "psr-4": {
  11235. "Symfony\\Polyfill\\Php83\\": ""
  11236. },
  11237. "classmap": [
  11238. "Resources/stubs"
  11239. ]
  11240. },
  11241. "notification-url": "https://packagist.org/downloads/",
  11242. "license": [
  11243. "MIT"
  11244. ],
  11245. "authors": [
  11246. {
  11247. "name": "Nicolas Grekas",
  11248. "email": "p@tchwork.com"
  11249. },
  11250. {
  11251. "name": "Symfony Community",
  11252. "homepage": "https://symfony.com/contributors"
  11253. }
  11254. ],
  11255. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11256. "homepage": "https://symfony.com",
  11257. "keywords": [
  11258. "compatibility",
  11259. "polyfill",
  11260. "portable",
  11261. "shim"
  11262. ],
  11263. "support": {
  11264. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  11265. },
  11266. "funding": [
  11267. {
  11268. "url": "https://symfony.com/sponsor",
  11269. "type": "custom"
  11270. },
  11271. {
  11272. "url": "https://github.com/fabpot",
  11273. "type": "github"
  11274. },
  11275. {
  11276. "url": "https://github.com/nicolas-grekas",
  11277. "type": "github"
  11278. },
  11279. {
  11280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11281. "type": "tidelift"
  11282. }
  11283. ],
  11284. "time": "2025-07-08T02:45:35+00:00"
  11285. },
  11286. {
  11287. "name": "symfony/polyfill-php84",
  11288. "version": "v1.33.0",
  11289. "source": {
  11290. "type": "git",
  11291. "url": "https://github.com/symfony/polyfill-php84.git",
  11292. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  11293. },
  11294. "dist": {
  11295. "type": "zip",
  11296. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  11297. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  11298. "shasum": ""
  11299. },
  11300. "require": {
  11301. "php": ">=7.2"
  11302. },
  11303. "type": "library",
  11304. "extra": {
  11305. "thanks": {
  11306. "url": "https://github.com/symfony/polyfill",
  11307. "name": "symfony/polyfill"
  11308. }
  11309. },
  11310. "autoload": {
  11311. "files": [
  11312. "bootstrap.php"
  11313. ],
  11314. "psr-4": {
  11315. "Symfony\\Polyfill\\Php84\\": ""
  11316. },
  11317. "classmap": [
  11318. "Resources/stubs"
  11319. ]
  11320. },
  11321. "notification-url": "https://packagist.org/downloads/",
  11322. "license": [
  11323. "MIT"
  11324. ],
  11325. "authors": [
  11326. {
  11327. "name": "Nicolas Grekas",
  11328. "email": "p@tchwork.com"
  11329. },
  11330. {
  11331. "name": "Symfony Community",
  11332. "homepage": "https://symfony.com/contributors"
  11333. }
  11334. ],
  11335. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  11336. "homepage": "https://symfony.com",
  11337. "keywords": [
  11338. "compatibility",
  11339. "polyfill",
  11340. "portable",
  11341. "shim"
  11342. ],
  11343. "support": {
  11344. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  11345. },
  11346. "funding": [
  11347. {
  11348. "url": "https://symfony.com/sponsor",
  11349. "type": "custom"
  11350. },
  11351. {
  11352. "url": "https://github.com/fabpot",
  11353. "type": "github"
  11354. },
  11355. {
  11356. "url": "https://github.com/nicolas-grekas",
  11357. "type": "github"
  11358. },
  11359. {
  11360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11361. "type": "tidelift"
  11362. }
  11363. ],
  11364. "time": "2025-06-24T13:30:11+00:00"
  11365. },
  11366. {
  11367. "name": "symfony/polyfill-uuid",
  11368. "version": "v1.31.0",
  11369. "source": {
  11370. "type": "git",
  11371. "url": "https://github.com/symfony/polyfill-uuid.git",
  11372. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  11373. },
  11374. "dist": {
  11375. "type": "zip",
  11376. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  11377. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  11378. "shasum": ""
  11379. },
  11380. "require": {
  11381. "php": ">=7.2"
  11382. },
  11383. "provide": {
  11384. "ext-uuid": "*"
  11385. },
  11386. "suggest": {
  11387. "ext-uuid": "For best performance"
  11388. },
  11389. "type": "library",
  11390. "extra": {
  11391. "thanks": {
  11392. "url": "https://github.com/symfony/polyfill",
  11393. "name": "symfony/polyfill"
  11394. }
  11395. },
  11396. "autoload": {
  11397. "files": [
  11398. "bootstrap.php"
  11399. ],
  11400. "psr-4": {
  11401. "Symfony\\Polyfill\\Uuid\\": ""
  11402. }
  11403. },
  11404. "notification-url": "https://packagist.org/downloads/",
  11405. "license": [
  11406. "MIT"
  11407. ],
  11408. "authors": [
  11409. {
  11410. "name": "Grégoire Pineau",
  11411. "email": "lyrixx@lyrixx.info"
  11412. },
  11413. {
  11414. "name": "Symfony Community",
  11415. "homepage": "https://symfony.com/contributors"
  11416. }
  11417. ],
  11418. "description": "Symfony polyfill for uuid functions",
  11419. "homepage": "https://symfony.com",
  11420. "keywords": [
  11421. "compatibility",
  11422. "polyfill",
  11423. "portable",
  11424. "uuid"
  11425. ],
  11426. "support": {
  11427. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  11428. },
  11429. "funding": [
  11430. {
  11431. "url": "https://symfony.com/sponsor",
  11432. "type": "custom"
  11433. },
  11434. {
  11435. "url": "https://github.com/fabpot",
  11436. "type": "github"
  11437. },
  11438. {
  11439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11440. "type": "tidelift"
  11441. }
  11442. ],
  11443. "time": "2024-09-09T11:45:10+00:00"
  11444. },
  11445. {
  11446. "name": "symfony/process",
  11447. "version": "v7.2.4",
  11448. "source": {
  11449. "type": "git",
  11450. "url": "https://github.com/symfony/process.git",
  11451. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf"
  11452. },
  11453. "dist": {
  11454. "type": "zip",
  11455. "url": "https://api.github.com/repos/symfony/process/zipball/d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  11456. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  11457. "shasum": ""
  11458. },
  11459. "require": {
  11460. "php": ">=8.2"
  11461. },
  11462. "type": "library",
  11463. "autoload": {
  11464. "psr-4": {
  11465. "Symfony\\Component\\Process\\": ""
  11466. },
  11467. "exclude-from-classmap": [
  11468. "/Tests/"
  11469. ]
  11470. },
  11471. "notification-url": "https://packagist.org/downloads/",
  11472. "license": [
  11473. "MIT"
  11474. ],
  11475. "authors": [
  11476. {
  11477. "name": "Fabien Potencier",
  11478. "email": "fabien@symfony.com"
  11479. },
  11480. {
  11481. "name": "Symfony Community",
  11482. "homepage": "https://symfony.com/contributors"
  11483. }
  11484. ],
  11485. "description": "Executes commands in sub-processes",
  11486. "homepage": "https://symfony.com",
  11487. "support": {
  11488. "source": "https://github.com/symfony/process/tree/v7.2.4"
  11489. },
  11490. "funding": [
  11491. {
  11492. "url": "https://symfony.com/sponsor",
  11493. "type": "custom"
  11494. },
  11495. {
  11496. "url": "https://github.com/fabpot",
  11497. "type": "github"
  11498. },
  11499. {
  11500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11501. "type": "tidelift"
  11502. }
  11503. ],
  11504. "time": "2025-02-05T08:33:46+00:00"
  11505. },
  11506. {
  11507. "name": "symfony/property-access",
  11508. "version": "v7.4.8",
  11509. "source": {
  11510. "type": "git",
  11511. "url": "https://github.com/symfony/property-access.git",
  11512. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc"
  11513. },
  11514. "dist": {
  11515. "type": "zip",
  11516. "url": "https://api.github.com/repos/symfony/property-access/zipball/b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  11517. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  11518. "shasum": ""
  11519. },
  11520. "require": {
  11521. "php": ">=8.2",
  11522. "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4"
  11523. },
  11524. "require-dev": {
  11525. "symfony/cache": "^6.4|^7.0|^8.0",
  11526. "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0"
  11527. },
  11528. "type": "library",
  11529. "autoload": {
  11530. "psr-4": {
  11531. "Symfony\\Component\\PropertyAccess\\": ""
  11532. },
  11533. "exclude-from-classmap": [
  11534. "/Tests/"
  11535. ]
  11536. },
  11537. "notification-url": "https://packagist.org/downloads/",
  11538. "license": [
  11539. "MIT"
  11540. ],
  11541. "authors": [
  11542. {
  11543. "name": "Fabien Potencier",
  11544. "email": "fabien@symfony.com"
  11545. },
  11546. {
  11547. "name": "Symfony Community",
  11548. "homepage": "https://symfony.com/contributors"
  11549. }
  11550. ],
  11551. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  11552. "homepage": "https://symfony.com",
  11553. "keywords": [
  11554. "access",
  11555. "array",
  11556. "extraction",
  11557. "index",
  11558. "injection",
  11559. "object",
  11560. "property",
  11561. "property-path",
  11562. "reflection"
  11563. ],
  11564. "support": {
  11565. "source": "https://github.com/symfony/property-access/tree/v7.4.8"
  11566. },
  11567. "funding": [
  11568. {
  11569. "url": "https://symfony.com/sponsor",
  11570. "type": "custom"
  11571. },
  11572. {
  11573. "url": "https://github.com/fabpot",
  11574. "type": "github"
  11575. },
  11576. {
  11577. "url": "https://github.com/nicolas-grekas",
  11578. "type": "github"
  11579. },
  11580. {
  11581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11582. "type": "tidelift"
  11583. }
  11584. ],
  11585. "time": "2026-03-24T13:12:05+00:00"
  11586. },
  11587. {
  11588. "name": "symfony/property-info",
  11589. "version": "v7.4.8",
  11590. "source": {
  11591. "type": "git",
  11592. "url": "https://github.com/symfony/property-info.git",
  11593. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175"
  11594. },
  11595. "dist": {
  11596. "type": "zip",
  11597. "url": "https://api.github.com/repos/symfony/property-info/zipball/ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  11598. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  11599. "shasum": ""
  11600. },
  11601. "require": {
  11602. "php": ">=8.2",
  11603. "symfony/deprecation-contracts": "^2.5|^3",
  11604. "symfony/string": "^6.4|^7.0|^8.0",
  11605. "symfony/type-info": "^7.4.7|^8.0.7"
  11606. },
  11607. "conflict": {
  11608. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  11609. "phpdocumentor/type-resolver": "<1.5.1",
  11610. "symfony/cache": "<6.4",
  11611. "symfony/dependency-injection": "<6.4",
  11612. "symfony/serializer": "<6.4"
  11613. },
  11614. "require-dev": {
  11615. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  11616. "phpstan/phpdoc-parser": "^1.0|^2.0",
  11617. "symfony/cache": "^6.4|^7.0|^8.0",
  11618. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  11619. "symfony/serializer": "^6.4|^7.0|^8.0"
  11620. },
  11621. "type": "library",
  11622. "autoload": {
  11623. "psr-4": {
  11624. "Symfony\\Component\\PropertyInfo\\": ""
  11625. },
  11626. "exclude-from-classmap": [
  11627. "/Tests/"
  11628. ]
  11629. },
  11630. "notification-url": "https://packagist.org/downloads/",
  11631. "license": [
  11632. "MIT"
  11633. ],
  11634. "authors": [
  11635. {
  11636. "name": "Kévin Dunglas",
  11637. "email": "dunglas@gmail.com"
  11638. },
  11639. {
  11640. "name": "Symfony Community",
  11641. "homepage": "https://symfony.com/contributors"
  11642. }
  11643. ],
  11644. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  11645. "homepage": "https://symfony.com",
  11646. "keywords": [
  11647. "doctrine",
  11648. "phpdoc",
  11649. "property",
  11650. "symfony",
  11651. "type",
  11652. "validator"
  11653. ],
  11654. "support": {
  11655. "source": "https://github.com/symfony/property-info/tree/v7.4.8"
  11656. },
  11657. "funding": [
  11658. {
  11659. "url": "https://symfony.com/sponsor",
  11660. "type": "custom"
  11661. },
  11662. {
  11663. "url": "https://github.com/fabpot",
  11664. "type": "github"
  11665. },
  11666. {
  11667. "url": "https://github.com/nicolas-grekas",
  11668. "type": "github"
  11669. },
  11670. {
  11671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11672. "type": "tidelift"
  11673. }
  11674. ],
  11675. "time": "2026-03-24T13:12:05+00:00"
  11676. },
  11677. {
  11678. "name": "symfony/psr-http-message-bridge",
  11679. "version": "v7.2.0",
  11680. "source": {
  11681. "type": "git",
  11682. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11683. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f"
  11684. },
  11685. "dist": {
  11686. "type": "zip",
  11687. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  11688. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  11689. "shasum": ""
  11690. },
  11691. "require": {
  11692. "php": ">=8.2",
  11693. "psr/http-message": "^1.0|^2.0",
  11694. "symfony/http-foundation": "^6.4|^7.0"
  11695. },
  11696. "conflict": {
  11697. "php-http/discovery": "<1.15",
  11698. "symfony/http-kernel": "<6.4"
  11699. },
  11700. "require-dev": {
  11701. "nyholm/psr7": "^1.1",
  11702. "php-http/discovery": "^1.15",
  11703. "psr/log": "^1.1.4|^2|^3",
  11704. "symfony/browser-kit": "^6.4|^7.0",
  11705. "symfony/config": "^6.4|^7.0",
  11706. "symfony/event-dispatcher": "^6.4|^7.0",
  11707. "symfony/framework-bundle": "^6.4|^7.0",
  11708. "symfony/http-kernel": "^6.4|^7.0"
  11709. },
  11710. "type": "symfony-bridge",
  11711. "autoload": {
  11712. "psr-4": {
  11713. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11714. },
  11715. "exclude-from-classmap": [
  11716. "/Tests/"
  11717. ]
  11718. },
  11719. "notification-url": "https://packagist.org/downloads/",
  11720. "license": [
  11721. "MIT"
  11722. ],
  11723. "authors": [
  11724. {
  11725. "name": "Fabien Potencier",
  11726. "email": "fabien@symfony.com"
  11727. },
  11728. {
  11729. "name": "Symfony Community",
  11730. "homepage": "https://symfony.com/contributors"
  11731. }
  11732. ],
  11733. "description": "PSR HTTP message bridge",
  11734. "homepage": "https://symfony.com",
  11735. "keywords": [
  11736. "http",
  11737. "http-message",
  11738. "psr-17",
  11739. "psr-7"
  11740. ],
  11741. "support": {
  11742. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.2.0"
  11743. },
  11744. "funding": [
  11745. {
  11746. "url": "https://symfony.com/sponsor",
  11747. "type": "custom"
  11748. },
  11749. {
  11750. "url": "https://github.com/fabpot",
  11751. "type": "github"
  11752. },
  11753. {
  11754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11755. "type": "tidelift"
  11756. }
  11757. ],
  11758. "time": "2024-09-26T08:57:56+00:00"
  11759. },
  11760. {
  11761. "name": "symfony/routing",
  11762. "version": "v7.2.3",
  11763. "source": {
  11764. "type": "git",
  11765. "url": "https://github.com/symfony/routing.git",
  11766. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  11767. },
  11768. "dist": {
  11769. "type": "zip",
  11770. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  11771. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  11772. "shasum": ""
  11773. },
  11774. "require": {
  11775. "php": ">=8.2",
  11776. "symfony/deprecation-contracts": "^2.5|^3"
  11777. },
  11778. "conflict": {
  11779. "symfony/config": "<6.4",
  11780. "symfony/dependency-injection": "<6.4",
  11781. "symfony/yaml": "<6.4"
  11782. },
  11783. "require-dev": {
  11784. "psr/log": "^1|^2|^3",
  11785. "symfony/config": "^6.4|^7.0",
  11786. "symfony/dependency-injection": "^6.4|^7.0",
  11787. "symfony/expression-language": "^6.4|^7.0",
  11788. "symfony/http-foundation": "^6.4|^7.0",
  11789. "symfony/yaml": "^6.4|^7.0"
  11790. },
  11791. "type": "library",
  11792. "autoload": {
  11793. "psr-4": {
  11794. "Symfony\\Component\\Routing\\": ""
  11795. },
  11796. "exclude-from-classmap": [
  11797. "/Tests/"
  11798. ]
  11799. },
  11800. "notification-url": "https://packagist.org/downloads/",
  11801. "license": [
  11802. "MIT"
  11803. ],
  11804. "authors": [
  11805. {
  11806. "name": "Fabien Potencier",
  11807. "email": "fabien@symfony.com"
  11808. },
  11809. {
  11810. "name": "Symfony Community",
  11811. "homepage": "https://symfony.com/contributors"
  11812. }
  11813. ],
  11814. "description": "Maps an HTTP request to a set of configuration variables",
  11815. "homepage": "https://symfony.com",
  11816. "keywords": [
  11817. "router",
  11818. "routing",
  11819. "uri",
  11820. "url"
  11821. ],
  11822. "support": {
  11823. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  11824. },
  11825. "funding": [
  11826. {
  11827. "url": "https://symfony.com/sponsor",
  11828. "type": "custom"
  11829. },
  11830. {
  11831. "url": "https://github.com/fabpot",
  11832. "type": "github"
  11833. },
  11834. {
  11835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11836. "type": "tidelift"
  11837. }
  11838. ],
  11839. "time": "2025-01-17T10:56:55+00:00"
  11840. },
  11841. {
  11842. "name": "symfony/serializer",
  11843. "version": "v7.4.8",
  11844. "source": {
  11845. "type": "git",
  11846. "url": "https://github.com/symfony/serializer.git",
  11847. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455"
  11848. },
  11849. "dist": {
  11850. "type": "zip",
  11851. "url": "https://api.github.com/repos/symfony/serializer/zipball/006fd51717addf2df2bd1a64dafef6b7fab6b455",
  11852. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455",
  11853. "shasum": ""
  11854. },
  11855. "require": {
  11856. "php": ">=8.2",
  11857. "symfony/deprecation-contracts": "^2.5|^3",
  11858. "symfony/polyfill-ctype": "~1.8",
  11859. "symfony/polyfill-php84": "^1.30"
  11860. },
  11861. "conflict": {
  11862. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  11863. "phpdocumentor/type-resolver": "<1.5.1",
  11864. "symfony/dependency-injection": "<6.4",
  11865. "symfony/property-access": "<6.4",
  11866. "symfony/property-info": "<6.4",
  11867. "symfony/type-info": "<7.2.5",
  11868. "symfony/uid": "<6.4",
  11869. "symfony/validator": "<6.4",
  11870. "symfony/yaml": "<6.4"
  11871. },
  11872. "require-dev": {
  11873. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  11874. "phpstan/phpdoc-parser": "^1.0|^2.0",
  11875. "seld/jsonlint": "^1.10",
  11876. "symfony/cache": "^6.4|^7.0|^8.0",
  11877. "symfony/config": "^6.4|^7.0|^8.0",
  11878. "symfony/console": "^6.4|^7.0|^8.0",
  11879. "symfony/dependency-injection": "^7.2|^8.0",
  11880. "symfony/error-handler": "^6.4|^7.0|^8.0",
  11881. "symfony/filesystem": "^6.4|^7.0|^8.0",
  11882. "symfony/form": "^6.4|^7.0|^8.0",
  11883. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  11884. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  11885. "symfony/messenger": "^6.4|^7.0|^8.0",
  11886. "symfony/mime": "^6.4|^7.0|^8.0",
  11887. "symfony/property-access": "^6.4|^7.0|^8.0",
  11888. "symfony/property-info": "^6.4|^7.0|^8.0",
  11889. "symfony/translation-contracts": "^2.5|^3",
  11890. "symfony/type-info": "^7.2.5|^8.0",
  11891. "symfony/uid": "^6.4|^7.0|^8.0",
  11892. "symfony/validator": "^6.4|^7.0|^8.0",
  11893. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  11894. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  11895. "symfony/yaml": "^6.4|^7.0|^8.0"
  11896. },
  11897. "type": "library",
  11898. "autoload": {
  11899. "psr-4": {
  11900. "Symfony\\Component\\Serializer\\": ""
  11901. },
  11902. "exclude-from-classmap": [
  11903. "/Tests/"
  11904. ]
  11905. },
  11906. "notification-url": "https://packagist.org/downloads/",
  11907. "license": [
  11908. "MIT"
  11909. ],
  11910. "authors": [
  11911. {
  11912. "name": "Fabien Potencier",
  11913. "email": "fabien@symfony.com"
  11914. },
  11915. {
  11916. "name": "Symfony Community",
  11917. "homepage": "https://symfony.com/contributors"
  11918. }
  11919. ],
  11920. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11921. "homepage": "https://symfony.com",
  11922. "support": {
  11923. "source": "https://github.com/symfony/serializer/tree/v7.4.8"
  11924. },
  11925. "funding": [
  11926. {
  11927. "url": "https://symfony.com/sponsor",
  11928. "type": "custom"
  11929. },
  11930. {
  11931. "url": "https://github.com/fabpot",
  11932. "type": "github"
  11933. },
  11934. {
  11935. "url": "https://github.com/nicolas-grekas",
  11936. "type": "github"
  11937. },
  11938. {
  11939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11940. "type": "tidelift"
  11941. }
  11942. ],
  11943. "time": "2026-03-30T21:34:42+00:00"
  11944. },
  11945. {
  11946. "name": "symfony/service-contracts",
  11947. "version": "v3.6.0",
  11948. "source": {
  11949. "type": "git",
  11950. "url": "https://github.com/symfony/service-contracts.git",
  11951. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  11952. },
  11953. "dist": {
  11954. "type": "zip",
  11955. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  11956. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  11957. "shasum": ""
  11958. },
  11959. "require": {
  11960. "php": ">=8.1",
  11961. "psr/container": "^1.1|^2.0",
  11962. "symfony/deprecation-contracts": "^2.5|^3"
  11963. },
  11964. "conflict": {
  11965. "ext-psr": "<1.1|>=2"
  11966. },
  11967. "type": "library",
  11968. "extra": {
  11969. "thanks": {
  11970. "url": "https://github.com/symfony/contracts",
  11971. "name": "symfony/contracts"
  11972. },
  11973. "branch-alias": {
  11974. "dev-main": "3.6-dev"
  11975. }
  11976. },
  11977. "autoload": {
  11978. "psr-4": {
  11979. "Symfony\\Contracts\\Service\\": ""
  11980. },
  11981. "exclude-from-classmap": [
  11982. "/Test/"
  11983. ]
  11984. },
  11985. "notification-url": "https://packagist.org/downloads/",
  11986. "license": [
  11987. "MIT"
  11988. ],
  11989. "authors": [
  11990. {
  11991. "name": "Nicolas Grekas",
  11992. "email": "p@tchwork.com"
  11993. },
  11994. {
  11995. "name": "Symfony Community",
  11996. "homepage": "https://symfony.com/contributors"
  11997. }
  11998. ],
  11999. "description": "Generic abstractions related to writing services",
  12000. "homepage": "https://symfony.com",
  12001. "keywords": [
  12002. "abstractions",
  12003. "contracts",
  12004. "decoupling",
  12005. "interfaces",
  12006. "interoperability",
  12007. "standards"
  12008. ],
  12009. "support": {
  12010. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  12011. },
  12012. "funding": [
  12013. {
  12014. "url": "https://symfony.com/sponsor",
  12015. "type": "custom"
  12016. },
  12017. {
  12018. "url": "https://github.com/fabpot",
  12019. "type": "github"
  12020. },
  12021. {
  12022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12023. "type": "tidelift"
  12024. }
  12025. ],
  12026. "time": "2025-04-25T09:37:31+00:00"
  12027. },
  12028. {
  12029. "name": "symfony/string",
  12030. "version": "v7.3.3",
  12031. "source": {
  12032. "type": "git",
  12033. "url": "https://github.com/symfony/string.git",
  12034. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c"
  12035. },
  12036. "dist": {
  12037. "type": "zip",
  12038. "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  12039. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  12040. "shasum": ""
  12041. },
  12042. "require": {
  12043. "php": ">=8.2",
  12044. "symfony/polyfill-ctype": "~1.8",
  12045. "symfony/polyfill-intl-grapheme": "~1.0",
  12046. "symfony/polyfill-intl-normalizer": "~1.0",
  12047. "symfony/polyfill-mbstring": "~1.0"
  12048. },
  12049. "conflict": {
  12050. "symfony/translation-contracts": "<2.5"
  12051. },
  12052. "require-dev": {
  12053. "symfony/emoji": "^7.1",
  12054. "symfony/error-handler": "^6.4|^7.0",
  12055. "symfony/http-client": "^6.4|^7.0",
  12056. "symfony/intl": "^6.4|^7.0",
  12057. "symfony/translation-contracts": "^2.5|^3.0",
  12058. "symfony/var-exporter": "^6.4|^7.0"
  12059. },
  12060. "type": "library",
  12061. "autoload": {
  12062. "files": [
  12063. "Resources/functions.php"
  12064. ],
  12065. "psr-4": {
  12066. "Symfony\\Component\\String\\": ""
  12067. },
  12068. "exclude-from-classmap": [
  12069. "/Tests/"
  12070. ]
  12071. },
  12072. "notification-url": "https://packagist.org/downloads/",
  12073. "license": [
  12074. "MIT"
  12075. ],
  12076. "authors": [
  12077. {
  12078. "name": "Nicolas Grekas",
  12079. "email": "p@tchwork.com"
  12080. },
  12081. {
  12082. "name": "Symfony Community",
  12083. "homepage": "https://symfony.com/contributors"
  12084. }
  12085. ],
  12086. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12087. "homepage": "https://symfony.com",
  12088. "keywords": [
  12089. "grapheme",
  12090. "i18n",
  12091. "string",
  12092. "unicode",
  12093. "utf-8",
  12094. "utf8"
  12095. ],
  12096. "support": {
  12097. "source": "https://github.com/symfony/string/tree/v7.3.3"
  12098. },
  12099. "funding": [
  12100. {
  12101. "url": "https://symfony.com/sponsor",
  12102. "type": "custom"
  12103. },
  12104. {
  12105. "url": "https://github.com/fabpot",
  12106. "type": "github"
  12107. },
  12108. {
  12109. "url": "https://github.com/nicolas-grekas",
  12110. "type": "github"
  12111. },
  12112. {
  12113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12114. "type": "tidelift"
  12115. }
  12116. ],
  12117. "time": "2025-08-25T06:35:40+00:00"
  12118. },
  12119. {
  12120. "name": "symfony/translation",
  12121. "version": "v6.4.19",
  12122. "source": {
  12123. "type": "git",
  12124. "url": "https://github.com/symfony/translation.git",
  12125. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e"
  12126. },
  12127. "dist": {
  12128. "type": "zip",
  12129. "url": "https://api.github.com/repos/symfony/translation/zipball/3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  12130. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  12131. "shasum": ""
  12132. },
  12133. "require": {
  12134. "php": ">=8.1",
  12135. "symfony/deprecation-contracts": "^2.5|^3",
  12136. "symfony/polyfill-mbstring": "~1.0",
  12137. "symfony/translation-contracts": "^2.5|^3.0"
  12138. },
  12139. "conflict": {
  12140. "symfony/config": "<5.4",
  12141. "symfony/console": "<5.4",
  12142. "symfony/dependency-injection": "<5.4",
  12143. "symfony/http-client-contracts": "<2.5",
  12144. "symfony/http-kernel": "<5.4",
  12145. "symfony/service-contracts": "<2.5",
  12146. "symfony/twig-bundle": "<5.4",
  12147. "symfony/yaml": "<5.4"
  12148. },
  12149. "provide": {
  12150. "symfony/translation-implementation": "2.3|3.0"
  12151. },
  12152. "require-dev": {
  12153. "nikic/php-parser": "^4.18|^5.0",
  12154. "psr/log": "^1|^2|^3",
  12155. "symfony/config": "^5.4|^6.0|^7.0",
  12156. "symfony/console": "^5.4|^6.0|^7.0",
  12157. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12158. "symfony/finder": "^5.4|^6.0|^7.0",
  12159. "symfony/http-client-contracts": "^2.5|^3.0",
  12160. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12161. "symfony/intl": "^5.4|^6.0|^7.0",
  12162. "symfony/polyfill-intl-icu": "^1.21",
  12163. "symfony/routing": "^5.4|^6.0|^7.0",
  12164. "symfony/service-contracts": "^2.5|^3",
  12165. "symfony/yaml": "^5.4|^6.0|^7.0"
  12166. },
  12167. "type": "library",
  12168. "autoload": {
  12169. "files": [
  12170. "Resources/functions.php"
  12171. ],
  12172. "psr-4": {
  12173. "Symfony\\Component\\Translation\\": ""
  12174. },
  12175. "exclude-from-classmap": [
  12176. "/Tests/"
  12177. ]
  12178. },
  12179. "notification-url": "https://packagist.org/downloads/",
  12180. "license": [
  12181. "MIT"
  12182. ],
  12183. "authors": [
  12184. {
  12185. "name": "Fabien Potencier",
  12186. "email": "fabien@symfony.com"
  12187. },
  12188. {
  12189. "name": "Symfony Community",
  12190. "homepage": "https://symfony.com/contributors"
  12191. }
  12192. ],
  12193. "description": "Provides tools to internationalize your application",
  12194. "homepage": "https://symfony.com",
  12195. "support": {
  12196. "source": "https://github.com/symfony/translation/tree/v6.4.19"
  12197. },
  12198. "funding": [
  12199. {
  12200. "url": "https://symfony.com/sponsor",
  12201. "type": "custom"
  12202. },
  12203. {
  12204. "url": "https://github.com/fabpot",
  12205. "type": "github"
  12206. },
  12207. {
  12208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12209. "type": "tidelift"
  12210. }
  12211. ],
  12212. "time": "2025-02-13T10:18:43+00:00"
  12213. },
  12214. {
  12215. "name": "symfony/translation-contracts",
  12216. "version": "v3.6.0",
  12217. "source": {
  12218. "type": "git",
  12219. "url": "https://github.com/symfony/translation-contracts.git",
  12220. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  12221. },
  12222. "dist": {
  12223. "type": "zip",
  12224. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  12225. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  12226. "shasum": ""
  12227. },
  12228. "require": {
  12229. "php": ">=8.1"
  12230. },
  12231. "type": "library",
  12232. "extra": {
  12233. "thanks": {
  12234. "url": "https://github.com/symfony/contracts",
  12235. "name": "symfony/contracts"
  12236. },
  12237. "branch-alias": {
  12238. "dev-main": "3.6-dev"
  12239. }
  12240. },
  12241. "autoload": {
  12242. "psr-4": {
  12243. "Symfony\\Contracts\\Translation\\": ""
  12244. },
  12245. "exclude-from-classmap": [
  12246. "/Test/"
  12247. ]
  12248. },
  12249. "notification-url": "https://packagist.org/downloads/",
  12250. "license": [
  12251. "MIT"
  12252. ],
  12253. "authors": [
  12254. {
  12255. "name": "Nicolas Grekas",
  12256. "email": "p@tchwork.com"
  12257. },
  12258. {
  12259. "name": "Symfony Community",
  12260. "homepage": "https://symfony.com/contributors"
  12261. }
  12262. ],
  12263. "description": "Generic abstractions related to translation",
  12264. "homepage": "https://symfony.com",
  12265. "keywords": [
  12266. "abstractions",
  12267. "contracts",
  12268. "decoupling",
  12269. "interfaces",
  12270. "interoperability",
  12271. "standards"
  12272. ],
  12273. "support": {
  12274. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  12275. },
  12276. "funding": [
  12277. {
  12278. "url": "https://symfony.com/sponsor",
  12279. "type": "custom"
  12280. },
  12281. {
  12282. "url": "https://github.com/fabpot",
  12283. "type": "github"
  12284. },
  12285. {
  12286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12287. "type": "tidelift"
  12288. }
  12289. ],
  12290. "time": "2024-09-27T08:32:26+00:00"
  12291. },
  12292. {
  12293. "name": "symfony/type-info",
  12294. "version": "v7.4.8",
  12295. "source": {
  12296. "type": "git",
  12297. "url": "https://github.com/symfony/type-info.git",
  12298. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd"
  12299. },
  12300. "dist": {
  12301. "type": "zip",
  12302. "url": "https://api.github.com/repos/symfony/type-info/zipball/6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  12303. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  12304. "shasum": ""
  12305. },
  12306. "require": {
  12307. "php": ">=8.2",
  12308. "psr/container": "^1.1|^2.0",
  12309. "symfony/deprecation-contracts": "^2.5|^3"
  12310. },
  12311. "conflict": {
  12312. "phpstan/phpdoc-parser": "<1.30"
  12313. },
  12314. "require-dev": {
  12315. "phpstan/phpdoc-parser": "^1.30|^2.0"
  12316. },
  12317. "type": "library",
  12318. "autoload": {
  12319. "psr-4": {
  12320. "Symfony\\Component\\TypeInfo\\": ""
  12321. },
  12322. "exclude-from-classmap": [
  12323. "/Tests/"
  12324. ]
  12325. },
  12326. "notification-url": "https://packagist.org/downloads/",
  12327. "license": [
  12328. "MIT"
  12329. ],
  12330. "authors": [
  12331. {
  12332. "name": "Mathias Arlaud",
  12333. "email": "mathias.arlaud@gmail.com"
  12334. },
  12335. {
  12336. "name": "Baptiste LEDUC",
  12337. "email": "baptiste.leduc@gmail.com"
  12338. },
  12339. {
  12340. "name": "Symfony Community",
  12341. "homepage": "https://symfony.com/contributors"
  12342. }
  12343. ],
  12344. "description": "Extracts PHP types information.",
  12345. "homepage": "https://symfony.com",
  12346. "keywords": [
  12347. "PHPStan",
  12348. "phpdoc",
  12349. "symfony",
  12350. "type"
  12351. ],
  12352. "support": {
  12353. "source": "https://github.com/symfony/type-info/tree/v7.4.8"
  12354. },
  12355. "funding": [
  12356. {
  12357. "url": "https://symfony.com/sponsor",
  12358. "type": "custom"
  12359. },
  12360. {
  12361. "url": "https://github.com/fabpot",
  12362. "type": "github"
  12363. },
  12364. {
  12365. "url": "https://github.com/nicolas-grekas",
  12366. "type": "github"
  12367. },
  12368. {
  12369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12370. "type": "tidelift"
  12371. }
  12372. ],
  12373. "time": "2026-03-24T13:12:05+00:00"
  12374. },
  12375. {
  12376. "name": "symfony/uid",
  12377. "version": "v7.2.0",
  12378. "source": {
  12379. "type": "git",
  12380. "url": "https://github.com/symfony/uid.git",
  12381. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  12382. },
  12383. "dist": {
  12384. "type": "zip",
  12385. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  12386. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  12387. "shasum": ""
  12388. },
  12389. "require": {
  12390. "php": ">=8.2",
  12391. "symfony/polyfill-uuid": "^1.15"
  12392. },
  12393. "require-dev": {
  12394. "symfony/console": "^6.4|^7.0"
  12395. },
  12396. "type": "library",
  12397. "autoload": {
  12398. "psr-4": {
  12399. "Symfony\\Component\\Uid\\": ""
  12400. },
  12401. "exclude-from-classmap": [
  12402. "/Tests/"
  12403. ]
  12404. },
  12405. "notification-url": "https://packagist.org/downloads/",
  12406. "license": [
  12407. "MIT"
  12408. ],
  12409. "authors": [
  12410. {
  12411. "name": "Grégoire Pineau",
  12412. "email": "lyrixx@lyrixx.info"
  12413. },
  12414. {
  12415. "name": "Nicolas Grekas",
  12416. "email": "p@tchwork.com"
  12417. },
  12418. {
  12419. "name": "Symfony Community",
  12420. "homepage": "https://symfony.com/contributors"
  12421. }
  12422. ],
  12423. "description": "Provides an object-oriented API to generate and represent UIDs",
  12424. "homepage": "https://symfony.com",
  12425. "keywords": [
  12426. "UID",
  12427. "ulid",
  12428. "uuid"
  12429. ],
  12430. "support": {
  12431. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  12432. },
  12433. "funding": [
  12434. {
  12435. "url": "https://symfony.com/sponsor",
  12436. "type": "custom"
  12437. },
  12438. {
  12439. "url": "https://github.com/fabpot",
  12440. "type": "github"
  12441. },
  12442. {
  12443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12444. "type": "tidelift"
  12445. }
  12446. ],
  12447. "time": "2024-09-25T14:21:43+00:00"
  12448. },
  12449. {
  12450. "name": "symfony/validator",
  12451. "version": "v7.4.8",
  12452. "source": {
  12453. "type": "git",
  12454. "url": "https://github.com/symfony/validator.git",
  12455. "reference": "8f73cbddae916756f319b3e195088da216f0f12f"
  12456. },
  12457. "dist": {
  12458. "type": "zip",
  12459. "url": "https://api.github.com/repos/symfony/validator/zipball/8f73cbddae916756f319b3e195088da216f0f12f",
  12460. "reference": "8f73cbddae916756f319b3e195088da216f0f12f",
  12461. "shasum": ""
  12462. },
  12463. "require": {
  12464. "php": ">=8.2",
  12465. "symfony/deprecation-contracts": "^2.5|^3",
  12466. "symfony/polyfill-ctype": "~1.8",
  12467. "symfony/polyfill-mbstring": "~1.0",
  12468. "symfony/polyfill-php83": "^1.27",
  12469. "symfony/translation-contracts": "^2.5|^3"
  12470. },
  12471. "conflict": {
  12472. "doctrine/lexer": "<1.1",
  12473. "symfony/dependency-injection": "<6.4",
  12474. "symfony/doctrine-bridge": "<7.0",
  12475. "symfony/expression-language": "<6.4",
  12476. "symfony/http-kernel": "<6.4",
  12477. "symfony/intl": "<6.4",
  12478. "symfony/property-info": "<6.4",
  12479. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  12480. "symfony/var-exporter": "<6.4.25|>=7.0,<7.3.3",
  12481. "symfony/yaml": "<6.4"
  12482. },
  12483. "require-dev": {
  12484. "egulias/email-validator": "^2.1.10|^3|^4",
  12485. "symfony/cache": "^6.4|^7.0|^8.0",
  12486. "symfony/config": "^6.4|^7.0|^8.0",
  12487. "symfony/console": "^6.4|^7.0|^8.0",
  12488. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  12489. "symfony/expression-language": "^6.4|^7.0|^8.0",
  12490. "symfony/finder": "^6.4|^7.0|^8.0",
  12491. "symfony/http-client": "^6.4|^7.0|^8.0",
  12492. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  12493. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  12494. "symfony/intl": "^6.4|^7.0|^8.0",
  12495. "symfony/mime": "^6.4|^7.0|^8.0",
  12496. "symfony/process": "^6.4|^7.0|^8.0",
  12497. "symfony/property-access": "^6.4|^7.0|^8.0",
  12498. "symfony/property-info": "^6.4|^7.0|^8.0",
  12499. "symfony/string": "^6.4|^7.0|^8.0",
  12500. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  12501. "symfony/type-info": "^7.1.8",
  12502. "symfony/yaml": "^6.4|^7.0|^8.0"
  12503. },
  12504. "type": "library",
  12505. "autoload": {
  12506. "psr-4": {
  12507. "Symfony\\Component\\Validator\\": ""
  12508. },
  12509. "exclude-from-classmap": [
  12510. "/Tests/",
  12511. "/Resources/bin/"
  12512. ]
  12513. },
  12514. "notification-url": "https://packagist.org/downloads/",
  12515. "license": [
  12516. "MIT"
  12517. ],
  12518. "authors": [
  12519. {
  12520. "name": "Fabien Potencier",
  12521. "email": "fabien@symfony.com"
  12522. },
  12523. {
  12524. "name": "Symfony Community",
  12525. "homepage": "https://symfony.com/contributors"
  12526. }
  12527. ],
  12528. "description": "Provides tools to validate values",
  12529. "homepage": "https://symfony.com",
  12530. "support": {
  12531. "source": "https://github.com/symfony/validator/tree/v7.4.8"
  12532. },
  12533. "funding": [
  12534. {
  12535. "url": "https://symfony.com/sponsor",
  12536. "type": "custom"
  12537. },
  12538. {
  12539. "url": "https://github.com/fabpot",
  12540. "type": "github"
  12541. },
  12542. {
  12543. "url": "https://github.com/nicolas-grekas",
  12544. "type": "github"
  12545. },
  12546. {
  12547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12548. "type": "tidelift"
  12549. }
  12550. ],
  12551. "time": "2026-03-30T12:55:43+00:00"
  12552. },
  12553. {
  12554. "name": "symfony/var-dumper",
  12555. "version": "v7.2.3",
  12556. "source": {
  12557. "type": "git",
  12558. "url": "https://github.com/symfony/var-dumper.git",
  12559. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  12560. },
  12561. "dist": {
  12562. "type": "zip",
  12563. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  12564. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  12565. "shasum": ""
  12566. },
  12567. "require": {
  12568. "php": ">=8.2",
  12569. "symfony/polyfill-mbstring": "~1.0"
  12570. },
  12571. "conflict": {
  12572. "symfony/console": "<6.4"
  12573. },
  12574. "require-dev": {
  12575. "ext-iconv": "*",
  12576. "symfony/console": "^6.4|^7.0",
  12577. "symfony/http-kernel": "^6.4|^7.0",
  12578. "symfony/process": "^6.4|^7.0",
  12579. "symfony/uid": "^6.4|^7.0",
  12580. "twig/twig": "^3.12"
  12581. },
  12582. "bin": [
  12583. "Resources/bin/var-dump-server"
  12584. ],
  12585. "type": "library",
  12586. "autoload": {
  12587. "files": [
  12588. "Resources/functions/dump.php"
  12589. ],
  12590. "psr-4": {
  12591. "Symfony\\Component\\VarDumper\\": ""
  12592. },
  12593. "exclude-from-classmap": [
  12594. "/Tests/"
  12595. ]
  12596. },
  12597. "notification-url": "https://packagist.org/downloads/",
  12598. "license": [
  12599. "MIT"
  12600. ],
  12601. "authors": [
  12602. {
  12603. "name": "Nicolas Grekas",
  12604. "email": "p@tchwork.com"
  12605. },
  12606. {
  12607. "name": "Symfony Community",
  12608. "homepage": "https://symfony.com/contributors"
  12609. }
  12610. ],
  12611. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12612. "homepage": "https://symfony.com",
  12613. "keywords": [
  12614. "debug",
  12615. "dump"
  12616. ],
  12617. "support": {
  12618. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  12619. },
  12620. "funding": [
  12621. {
  12622. "url": "https://symfony.com/sponsor",
  12623. "type": "custom"
  12624. },
  12625. {
  12626. "url": "https://github.com/fabpot",
  12627. "type": "github"
  12628. },
  12629. {
  12630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12631. "type": "tidelift"
  12632. }
  12633. ],
  12634. "time": "2025-01-17T11:39:41+00:00"
  12635. },
  12636. {
  12637. "name": "symfony/web-link",
  12638. "version": "v7.4.8",
  12639. "source": {
  12640. "type": "git",
  12641. "url": "https://github.com/symfony/web-link.git",
  12642. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25"
  12643. },
  12644. "dist": {
  12645. "type": "zip",
  12646. "url": "https://api.github.com/repos/symfony/web-link/zipball/0711009963009e7d6d59149327f3ad633ee3fe25",
  12647. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25",
  12648. "shasum": ""
  12649. },
  12650. "require": {
  12651. "php": ">=8.2",
  12652. "psr/link": "^1.1|^2.0"
  12653. },
  12654. "conflict": {
  12655. "symfony/http-kernel": "<6.4"
  12656. },
  12657. "provide": {
  12658. "psr/link-implementation": "1.0|2.0"
  12659. },
  12660. "require-dev": {
  12661. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  12662. },
  12663. "type": "library",
  12664. "autoload": {
  12665. "psr-4": {
  12666. "Symfony\\Component\\WebLink\\": ""
  12667. },
  12668. "exclude-from-classmap": [
  12669. "/Tests/"
  12670. ]
  12671. },
  12672. "notification-url": "https://packagist.org/downloads/",
  12673. "license": [
  12674. "MIT"
  12675. ],
  12676. "authors": [
  12677. {
  12678. "name": "Kévin Dunglas",
  12679. "email": "dunglas@gmail.com"
  12680. },
  12681. {
  12682. "name": "Symfony Community",
  12683. "homepage": "https://symfony.com/contributors"
  12684. }
  12685. ],
  12686. "description": "Manages links between resources",
  12687. "homepage": "https://symfony.com",
  12688. "keywords": [
  12689. "dns-prefetch",
  12690. "http",
  12691. "http2",
  12692. "link",
  12693. "performance",
  12694. "prefetch",
  12695. "preload",
  12696. "prerender",
  12697. "psr13",
  12698. "push"
  12699. ],
  12700. "support": {
  12701. "source": "https://github.com/symfony/web-link/tree/v7.4.8"
  12702. },
  12703. "funding": [
  12704. {
  12705. "url": "https://symfony.com/sponsor",
  12706. "type": "custom"
  12707. },
  12708. {
  12709. "url": "https://github.com/fabpot",
  12710. "type": "github"
  12711. },
  12712. {
  12713. "url": "https://github.com/nicolas-grekas",
  12714. "type": "github"
  12715. },
  12716. {
  12717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12718. "type": "tidelift"
  12719. }
  12720. ],
  12721. "time": "2026-03-24T13:12:05+00:00"
  12722. },
  12723. {
  12724. "name": "tijsverkoyen/css-to-inline-styles",
  12725. "version": "v2.3.0",
  12726. "source": {
  12727. "type": "git",
  12728. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  12729. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  12730. },
  12731. "dist": {
  12732. "type": "zip",
  12733. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  12734. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  12735. "shasum": ""
  12736. },
  12737. "require": {
  12738. "ext-dom": "*",
  12739. "ext-libxml": "*",
  12740. "php": "^7.4 || ^8.0",
  12741. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  12742. },
  12743. "require-dev": {
  12744. "phpstan/phpstan": "^2.0",
  12745. "phpstan/phpstan-phpunit": "^2.0",
  12746. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  12747. },
  12748. "type": "library",
  12749. "extra": {
  12750. "branch-alias": {
  12751. "dev-master": "2.x-dev"
  12752. }
  12753. },
  12754. "autoload": {
  12755. "psr-4": {
  12756. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  12757. }
  12758. },
  12759. "notification-url": "https://packagist.org/downloads/",
  12760. "license": [
  12761. "BSD-3-Clause"
  12762. ],
  12763. "authors": [
  12764. {
  12765. "name": "Tijs Verkoyen",
  12766. "email": "css_to_inline_styles@verkoyen.eu",
  12767. "role": "Developer"
  12768. }
  12769. ],
  12770. "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.",
  12771. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  12772. "support": {
  12773. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  12774. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  12775. },
  12776. "time": "2024-12-21T16:25:41+00:00"
  12777. },
  12778. {
  12779. "name": "ua-parser/uap-php",
  12780. "version": "v3.9.14",
  12781. "source": {
  12782. "type": "git",
  12783. "url": "https://github.com/ua-parser/uap-php.git",
  12784. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6"
  12785. },
  12786. "dist": {
  12787. "type": "zip",
  12788. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  12789. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  12790. "shasum": ""
  12791. },
  12792. "require": {
  12793. "composer/ca-bundle": "^1.1",
  12794. "php": "^7.2 || ^8.0"
  12795. },
  12796. "require-dev": {
  12797. "phpstan/phpstan": "^0.12.33",
  12798. "phpunit/phpunit": "^8 || ^9",
  12799. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12800. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12801. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12802. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  12803. "vimeo/psalm": "^3.12"
  12804. },
  12805. "suggest": {
  12806. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12807. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12808. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  12809. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  12810. },
  12811. "bin": [
  12812. "bin/uaparser"
  12813. ],
  12814. "type": "library",
  12815. "autoload": {
  12816. "psr-4": {
  12817. "UAParser\\": "src"
  12818. }
  12819. },
  12820. "notification-url": "https://packagist.org/downloads/",
  12821. "license": [
  12822. "MIT"
  12823. ],
  12824. "authors": [
  12825. {
  12826. "name": "Dave Olsen",
  12827. "email": "dmolsen@gmail.com"
  12828. },
  12829. {
  12830. "name": "Lars Strojny",
  12831. "email": "lars@strojny.net"
  12832. }
  12833. ],
  12834. "description": "A multi-language port of Browserscope's user agent parser.",
  12835. "support": {
  12836. "issues": "https://github.com/ua-parser/uap-php/issues",
  12837. "source": "https://github.com/ua-parser/uap-php/tree/v3.9.14"
  12838. },
  12839. "time": "2020-10-02T23:36:20+00:00"
  12840. },
  12841. {
  12842. "name": "vlucas/phpdotenv",
  12843. "version": "v5.6.1",
  12844. "source": {
  12845. "type": "git",
  12846. "url": "https://github.com/vlucas/phpdotenv.git",
  12847. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  12848. },
  12849. "dist": {
  12850. "type": "zip",
  12851. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  12852. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  12853. "shasum": ""
  12854. },
  12855. "require": {
  12856. "ext-pcre": "*",
  12857. "graham-campbell/result-type": "^1.1.3",
  12858. "php": "^7.2.5 || ^8.0",
  12859. "phpoption/phpoption": "^1.9.3",
  12860. "symfony/polyfill-ctype": "^1.24",
  12861. "symfony/polyfill-mbstring": "^1.24",
  12862. "symfony/polyfill-php80": "^1.24"
  12863. },
  12864. "require-dev": {
  12865. "bamarni/composer-bin-plugin": "^1.8.2",
  12866. "ext-filter": "*",
  12867. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  12868. },
  12869. "suggest": {
  12870. "ext-filter": "Required to use the boolean validator."
  12871. },
  12872. "type": "library",
  12873. "extra": {
  12874. "bamarni-bin": {
  12875. "bin-links": true,
  12876. "forward-command": false
  12877. },
  12878. "branch-alias": {
  12879. "dev-master": "5.6-dev"
  12880. }
  12881. },
  12882. "autoload": {
  12883. "psr-4": {
  12884. "Dotenv\\": "src/"
  12885. }
  12886. },
  12887. "notification-url": "https://packagist.org/downloads/",
  12888. "license": [
  12889. "BSD-3-Clause"
  12890. ],
  12891. "authors": [
  12892. {
  12893. "name": "Graham Campbell",
  12894. "email": "hello@gjcampbell.co.uk",
  12895. "homepage": "https://github.com/GrahamCampbell"
  12896. },
  12897. {
  12898. "name": "Vance Lucas",
  12899. "email": "vance@vancelucas.com",
  12900. "homepage": "https://github.com/vlucas"
  12901. }
  12902. ],
  12903. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  12904. "keywords": [
  12905. "dotenv",
  12906. "env",
  12907. "environment"
  12908. ],
  12909. "support": {
  12910. "issues": "https://github.com/vlucas/phpdotenv/issues",
  12911. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  12912. },
  12913. "funding": [
  12914. {
  12915. "url": "https://github.com/GrahamCampbell",
  12916. "type": "github"
  12917. },
  12918. {
  12919. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  12920. "type": "tidelift"
  12921. }
  12922. ],
  12923. "time": "2024-07-20T21:52:34+00:00"
  12924. },
  12925. {
  12926. "name": "voku/portable-ascii",
  12927. "version": "2.0.3",
  12928. "source": {
  12929. "type": "git",
  12930. "url": "https://github.com/voku/portable-ascii.git",
  12931. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  12932. },
  12933. "dist": {
  12934. "type": "zip",
  12935. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  12936. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  12937. "shasum": ""
  12938. },
  12939. "require": {
  12940. "php": ">=7.0.0"
  12941. },
  12942. "require-dev": {
  12943. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  12944. },
  12945. "suggest": {
  12946. "ext-intl": "Use Intl for transliterator_transliterate() support"
  12947. },
  12948. "type": "library",
  12949. "autoload": {
  12950. "psr-4": {
  12951. "voku\\": "src/voku/"
  12952. }
  12953. },
  12954. "notification-url": "https://packagist.org/downloads/",
  12955. "license": [
  12956. "MIT"
  12957. ],
  12958. "authors": [
  12959. {
  12960. "name": "Lars Moelleken",
  12961. "homepage": "https://www.moelleken.org/"
  12962. }
  12963. ],
  12964. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  12965. "homepage": "https://github.com/voku/portable-ascii",
  12966. "keywords": [
  12967. "ascii",
  12968. "clean",
  12969. "php"
  12970. ],
  12971. "support": {
  12972. "issues": "https://github.com/voku/portable-ascii/issues",
  12973. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  12974. },
  12975. "funding": [
  12976. {
  12977. "url": "https://www.paypal.me/moelleken",
  12978. "type": "custom"
  12979. },
  12980. {
  12981. "url": "https://github.com/voku",
  12982. "type": "github"
  12983. },
  12984. {
  12985. "url": "https://opencollective.com/portable-ascii",
  12986. "type": "open_collective"
  12987. },
  12988. {
  12989. "url": "https://www.patreon.com/voku",
  12990. "type": "patreon"
  12991. },
  12992. {
  12993. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  12994. "type": "tidelift"
  12995. }
  12996. ],
  12997. "time": "2024-11-21T01:49:47+00:00"
  12998. },
  12999. {
  13000. "name": "webmozart/assert",
  13001. "version": "1.11.0",
  13002. "source": {
  13003. "type": "git",
  13004. "url": "https://github.com/webmozarts/assert.git",
  13005. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  13006. },
  13007. "dist": {
  13008. "type": "zip",
  13009. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  13010. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  13011. "shasum": ""
  13012. },
  13013. "require": {
  13014. "ext-ctype": "*",
  13015. "php": "^7.2 || ^8.0"
  13016. },
  13017. "conflict": {
  13018. "phpstan/phpstan": "<0.12.20",
  13019. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13020. },
  13021. "require-dev": {
  13022. "phpunit/phpunit": "^8.5.13"
  13023. },
  13024. "type": "library",
  13025. "extra": {
  13026. "branch-alias": {
  13027. "dev-master": "1.10-dev"
  13028. }
  13029. },
  13030. "autoload": {
  13031. "psr-4": {
  13032. "Webmozart\\Assert\\": "src/"
  13033. }
  13034. },
  13035. "notification-url": "https://packagist.org/downloads/",
  13036. "license": [
  13037. "MIT"
  13038. ],
  13039. "authors": [
  13040. {
  13041. "name": "Bernhard Schussek",
  13042. "email": "bschussek@gmail.com"
  13043. }
  13044. ],
  13045. "description": "Assertions to validate method input/output with nice error messages.",
  13046. "keywords": [
  13047. "assert",
  13048. "check",
  13049. "validate"
  13050. ],
  13051. "support": {
  13052. "issues": "https://github.com/webmozarts/assert/issues",
  13053. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  13054. },
  13055. "time": "2022-06-03T18:03:27+00:00"
  13056. },
  13057. {
  13058. "name": "webonyx/graphql-php",
  13059. "version": "v15.31.3",
  13060. "source": {
  13061. "type": "git",
  13062. "url": "https://github.com/webonyx/graphql-php.git",
  13063. "reference": "c20acbef1cb4af427ef6797512bfb2e651a85db9"
  13064. },
  13065. "dist": {
  13066. "type": "zip",
  13067. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/c20acbef1cb4af427ef6797512bfb2e651a85db9",
  13068. "reference": "c20acbef1cb4af427ef6797512bfb2e651a85db9",
  13069. "shasum": ""
  13070. },
  13071. "require": {
  13072. "ext-json": "*",
  13073. "ext-mbstring": "*",
  13074. "php": "^7.4 || ^8"
  13075. },
  13076. "require-dev": {
  13077. "amphp/amp": "^2.6",
  13078. "amphp/http-server": "^2.1",
  13079. "dms/phpunit-arraysubset-asserts": "dev-master",
  13080. "ergebnis/composer-normalize": "^2.28",
  13081. "friendsofphp/php-cs-fixer": "3.94.2",
  13082. "mll-lab/php-cs-fixer-config": "5.13.0",
  13083. "nyholm/psr7": "^1.5",
  13084. "phpbench/phpbench": "^1.2",
  13085. "phpstan/extension-installer": "^1.1",
  13086. "phpstan/phpstan": "2.1.43",
  13087. "phpstan/phpstan-phpunit": "2.0.16",
  13088. "phpstan/phpstan-strict-rules": "2.0.10",
  13089. "phpunit/phpunit": "^9.5 || ^10.5.21 || ^11",
  13090. "psr/http-message": "^1 || ^2",
  13091. "react/http": "^1.6",
  13092. "react/promise": "^2.0 || ^3.0",
  13093. "rector/rector": "^2.0",
  13094. "symfony/polyfill-php81": "^1.23",
  13095. "symfony/var-exporter": "^5 || ^6 || ^7 || ^8",
  13096. "thecodingmachine/safe": "^1.3 || ^2 || ^3",
  13097. "ticketswap/phpstan-error-formatter": "1.2.6"
  13098. },
  13099. "suggest": {
  13100. "amphp/http-server": "To leverage async resolving with webserver on AMPHP platform",
  13101. "psr/http-message": "To use standard GraphQL server",
  13102. "react/promise": "To leverage async resolving on React PHP platform"
  13103. },
  13104. "type": "library",
  13105. "autoload": {
  13106. "psr-4": {
  13107. "GraphQL\\": "src/"
  13108. }
  13109. },
  13110. "notification-url": "https://packagist.org/downloads/",
  13111. "license": [
  13112. "MIT"
  13113. ],
  13114. "description": "A PHP port of GraphQL reference implementation",
  13115. "homepage": "https://github.com/webonyx/graphql-php",
  13116. "keywords": [
  13117. "api",
  13118. "graphql"
  13119. ],
  13120. "support": {
  13121. "issues": "https://github.com/webonyx/graphql-php/issues",
  13122. "source": "https://github.com/webonyx/graphql-php/tree/v15.31.3"
  13123. },
  13124. "funding": [
  13125. {
  13126. "url": "https://github.com/spawnia",
  13127. "type": "github"
  13128. },
  13129. {
  13130. "url": "https://opencollective.com/webonyx-graphql-php",
  13131. "type": "open_collective"
  13132. }
  13133. ],
  13134. "time": "2026-03-29T18:22:41+00:00"
  13135. },
  13136. {
  13137. "name": "willdurand/negotiation",
  13138. "version": "3.1.0",
  13139. "source": {
  13140. "type": "git",
  13141. "url": "https://github.com/willdurand/Negotiation.git",
  13142. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  13143. },
  13144. "dist": {
  13145. "type": "zip",
  13146. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  13147. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  13148. "shasum": ""
  13149. },
  13150. "require": {
  13151. "php": ">=7.1.0"
  13152. },
  13153. "require-dev": {
  13154. "symfony/phpunit-bridge": "^5.0"
  13155. },
  13156. "type": "library",
  13157. "extra": {
  13158. "branch-alias": {
  13159. "dev-master": "3.0-dev"
  13160. }
  13161. },
  13162. "autoload": {
  13163. "psr-4": {
  13164. "Negotiation\\": "src/Negotiation"
  13165. }
  13166. },
  13167. "notification-url": "https://packagist.org/downloads/",
  13168. "license": [
  13169. "MIT"
  13170. ],
  13171. "authors": [
  13172. {
  13173. "name": "William Durand",
  13174. "email": "will+git@drnd.me"
  13175. }
  13176. ],
  13177. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  13178. "homepage": "http://williamdurand.fr/Negotiation/",
  13179. "keywords": [
  13180. "accept",
  13181. "content",
  13182. "format",
  13183. "header",
  13184. "negotiation"
  13185. ],
  13186. "support": {
  13187. "issues": "https://github.com/willdurand/Negotiation/issues",
  13188. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  13189. },
  13190. "time": "2022-01-30T20:08:53+00:00"
  13191. }
  13192. ],
  13193. "packages-dev": [
  13194. {
  13195. "name": "bagisto/laravel-datafaker",
  13196. "version": "v2.3.0",
  13197. "source": {
  13198. "type": "git",
  13199. "url": "https://github.com/bagisto/laravel-data-faker.git",
  13200. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289"
  13201. },
  13202. "dist": {
  13203. "type": "zip",
  13204. "url": "https://api.github.com/repos/bagisto/laravel-data-faker/zipball/b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  13205. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  13206. "shasum": ""
  13207. },
  13208. "type": "library",
  13209. "extra": {
  13210. "laravel": {
  13211. "aliases": [],
  13212. "providers": [
  13213. "Webkul\\Faker\\Providers\\FakerServiceProvider"
  13214. ]
  13215. }
  13216. },
  13217. "autoload": {
  13218. "psr-4": {
  13219. "Webkul\\Faker\\": "src"
  13220. }
  13221. },
  13222. "notification-url": "https://packagist.org/downloads/",
  13223. "license": [
  13224. "MIT"
  13225. ],
  13226. "authors": [
  13227. {
  13228. "name": "Bagisto Data Faker",
  13229. "email": "support@bagisto.com"
  13230. }
  13231. ],
  13232. "description": "Create fake customers, categories and products in Bagisto.",
  13233. "homepage": "https://github.com/bagisto/laravel-data-faker",
  13234. "keywords": [
  13235. "bagisto",
  13236. "fake categories",
  13237. "fake customers",
  13238. "fake products"
  13239. ],
  13240. "support": {
  13241. "issues": "https://github.com/bagisto/laravel-data-faker/issues",
  13242. "source": "https://github.com/bagisto/laravel-data-faker/tree/v2.3.0"
  13243. },
  13244. "time": "2025-08-05T12:30:38+00:00"
  13245. },
  13246. {
  13247. "name": "barryvdh/laravel-debugbar",
  13248. "version": "v3.15.2",
  13249. "source": {
  13250. "type": "git",
  13251. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  13252. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729"
  13253. },
  13254. "dist": {
  13255. "type": "zip",
  13256. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  13257. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  13258. "shasum": ""
  13259. },
  13260. "require": {
  13261. "illuminate/routing": "^9|^10|^11|^12",
  13262. "illuminate/session": "^9|^10|^11|^12",
  13263. "illuminate/support": "^9|^10|^11|^12",
  13264. "php": "^8.1",
  13265. "php-debugbar/php-debugbar": "~2.1.1",
  13266. "symfony/finder": "^6|^7"
  13267. },
  13268. "conflict": {
  13269. "maximebf/debugbar": "*"
  13270. },
  13271. "require-dev": {
  13272. "mockery/mockery": "^1.3.3",
  13273. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  13274. "phpunit/phpunit": "^9.5.10|^10|^11",
  13275. "squizlabs/php_codesniffer": "^3.5"
  13276. },
  13277. "type": "library",
  13278. "extra": {
  13279. "laravel": {
  13280. "aliases": {
  13281. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  13282. },
  13283. "providers": [
  13284. "Barryvdh\\Debugbar\\ServiceProvider"
  13285. ]
  13286. },
  13287. "branch-alias": {
  13288. "dev-master": "3.15-dev"
  13289. }
  13290. },
  13291. "autoload": {
  13292. "files": [
  13293. "src/helpers.php"
  13294. ],
  13295. "psr-4": {
  13296. "Barryvdh\\Debugbar\\": "src/"
  13297. }
  13298. },
  13299. "notification-url": "https://packagist.org/downloads/",
  13300. "license": [
  13301. "MIT"
  13302. ],
  13303. "authors": [
  13304. {
  13305. "name": "Barry vd. Heuvel",
  13306. "email": "barryvdh@gmail.com"
  13307. }
  13308. ],
  13309. "description": "PHP Debugbar integration for Laravel",
  13310. "keywords": [
  13311. "debug",
  13312. "debugbar",
  13313. "dev",
  13314. "laravel",
  13315. "profiler",
  13316. "webprofiler"
  13317. ],
  13318. "support": {
  13319. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  13320. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.2"
  13321. },
  13322. "funding": [
  13323. {
  13324. "url": "https://fruitcake.nl",
  13325. "type": "custom"
  13326. },
  13327. {
  13328. "url": "https://github.com/barryvdh",
  13329. "type": "github"
  13330. }
  13331. ],
  13332. "time": "2025-02-25T15:25:22+00:00"
  13333. },
  13334. {
  13335. "name": "brianium/paratest",
  13336. "version": "v7.7.0",
  13337. "source": {
  13338. "type": "git",
  13339. "url": "https://github.com/paratestphp/paratest.git",
  13340. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  13341. },
  13342. "dist": {
  13343. "type": "zip",
  13344. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  13345. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  13346. "shasum": ""
  13347. },
  13348. "require": {
  13349. "ext-dom": "*",
  13350. "ext-pcre": "*",
  13351. "ext-reflection": "*",
  13352. "ext-simplexml": "*",
  13353. "fidry/cpu-core-counter": "^1.2.0",
  13354. "jean85/pretty-package-versions": "^2.1.0",
  13355. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  13356. "phpunit/php-code-coverage": "^11.0.8",
  13357. "phpunit/php-file-iterator": "^5.1.0",
  13358. "phpunit/php-timer": "^7.0.1",
  13359. "phpunit/phpunit": "^11.5.1",
  13360. "sebastian/environment": "^7.2.0",
  13361. "symfony/console": "^6.4.14 || ^7.2.1",
  13362. "symfony/process": "^6.4.14 || ^7.2.0"
  13363. },
  13364. "require-dev": {
  13365. "doctrine/coding-standard": "^12.0.0",
  13366. "ext-pcov": "*",
  13367. "ext-posix": "*",
  13368. "phpstan/phpstan": "^2.0.3",
  13369. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  13370. "phpstan/phpstan-phpunit": "^2.0.1",
  13371. "phpstan/phpstan-strict-rules": "^2",
  13372. "squizlabs/php_codesniffer": "^3.11.1",
  13373. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  13374. },
  13375. "bin": [
  13376. "bin/paratest",
  13377. "bin/paratest_for_phpstorm"
  13378. ],
  13379. "type": "library",
  13380. "autoload": {
  13381. "psr-4": {
  13382. "ParaTest\\": [
  13383. "src/"
  13384. ]
  13385. }
  13386. },
  13387. "notification-url": "https://packagist.org/downloads/",
  13388. "license": [
  13389. "MIT"
  13390. ],
  13391. "authors": [
  13392. {
  13393. "name": "Brian Scaturro",
  13394. "email": "scaturrob@gmail.com",
  13395. "role": "Developer"
  13396. },
  13397. {
  13398. "name": "Filippo Tessarotto",
  13399. "email": "zoeslam@gmail.com",
  13400. "role": "Developer"
  13401. }
  13402. ],
  13403. "description": "Parallel testing for PHP",
  13404. "homepage": "https://github.com/paratestphp/paratest",
  13405. "keywords": [
  13406. "concurrent",
  13407. "parallel",
  13408. "phpunit",
  13409. "testing"
  13410. ],
  13411. "support": {
  13412. "issues": "https://github.com/paratestphp/paratest/issues",
  13413. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  13414. },
  13415. "funding": [
  13416. {
  13417. "url": "https://github.com/sponsors/Slamdunk",
  13418. "type": "github"
  13419. },
  13420. {
  13421. "url": "https://paypal.me/filippotessarotto",
  13422. "type": "paypal"
  13423. }
  13424. ],
  13425. "time": "2024-12-11T14:50:44+00:00"
  13426. },
  13427. {
  13428. "name": "doctrine/deprecations",
  13429. "version": "1.1.5",
  13430. "source": {
  13431. "type": "git",
  13432. "url": "https://github.com/doctrine/deprecations.git",
  13433. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  13434. },
  13435. "dist": {
  13436. "type": "zip",
  13437. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  13438. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  13439. "shasum": ""
  13440. },
  13441. "require": {
  13442. "php": "^7.1 || ^8.0"
  13443. },
  13444. "conflict": {
  13445. "phpunit/phpunit": "<=7.5 || >=13"
  13446. },
  13447. "require-dev": {
  13448. "doctrine/coding-standard": "^9 || ^12 || ^13",
  13449. "phpstan/phpstan": "1.4.10 || 2.1.11",
  13450. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  13451. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  13452. "psr/log": "^1 || ^2 || ^3"
  13453. },
  13454. "suggest": {
  13455. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  13456. },
  13457. "type": "library",
  13458. "autoload": {
  13459. "psr-4": {
  13460. "Doctrine\\Deprecations\\": "src"
  13461. }
  13462. },
  13463. "notification-url": "https://packagist.org/downloads/",
  13464. "license": [
  13465. "MIT"
  13466. ],
  13467. "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.",
  13468. "homepage": "https://www.doctrine-project.org/",
  13469. "support": {
  13470. "issues": "https://github.com/doctrine/deprecations/issues",
  13471. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  13472. },
  13473. "time": "2025-04-07T20:06:18+00:00"
  13474. },
  13475. {
  13476. "name": "fakerphp/faker",
  13477. "version": "v1.24.1",
  13478. "source": {
  13479. "type": "git",
  13480. "url": "https://github.com/FakerPHP/Faker.git",
  13481. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  13482. },
  13483. "dist": {
  13484. "type": "zip",
  13485. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  13486. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  13487. "shasum": ""
  13488. },
  13489. "require": {
  13490. "php": "^7.4 || ^8.0",
  13491. "psr/container": "^1.0 || ^2.0",
  13492. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  13493. },
  13494. "conflict": {
  13495. "fzaninotto/faker": "*"
  13496. },
  13497. "require-dev": {
  13498. "bamarni/composer-bin-plugin": "^1.4.1",
  13499. "doctrine/persistence": "^1.3 || ^2.0",
  13500. "ext-intl": "*",
  13501. "phpunit/phpunit": "^9.5.26",
  13502. "symfony/phpunit-bridge": "^5.4.16"
  13503. },
  13504. "suggest": {
  13505. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  13506. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  13507. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  13508. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  13509. "ext-mbstring": "Required for multibyte Unicode string functionality."
  13510. },
  13511. "type": "library",
  13512. "autoload": {
  13513. "psr-4": {
  13514. "Faker\\": "src/Faker/"
  13515. }
  13516. },
  13517. "notification-url": "https://packagist.org/downloads/",
  13518. "license": [
  13519. "MIT"
  13520. ],
  13521. "authors": [
  13522. {
  13523. "name": "François Zaninotto"
  13524. }
  13525. ],
  13526. "description": "Faker is a PHP library that generates fake data for you.",
  13527. "keywords": [
  13528. "data",
  13529. "faker",
  13530. "fixtures"
  13531. ],
  13532. "support": {
  13533. "issues": "https://github.com/FakerPHP/Faker/issues",
  13534. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  13535. },
  13536. "time": "2024-11-21T13:46:39+00:00"
  13537. },
  13538. {
  13539. "name": "fidry/cpu-core-counter",
  13540. "version": "1.2.0",
  13541. "source": {
  13542. "type": "git",
  13543. "url": "https://github.com/theofidry/cpu-core-counter.git",
  13544. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  13545. },
  13546. "dist": {
  13547. "type": "zip",
  13548. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  13549. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  13550. "shasum": ""
  13551. },
  13552. "require": {
  13553. "php": "^7.2 || ^8.0"
  13554. },
  13555. "require-dev": {
  13556. "fidry/makefile": "^0.2.0",
  13557. "fidry/php-cs-fixer-config": "^1.1.2",
  13558. "phpstan/extension-installer": "^1.2.0",
  13559. "phpstan/phpstan": "^1.9.2",
  13560. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  13561. "phpstan/phpstan-phpunit": "^1.2.2",
  13562. "phpstan/phpstan-strict-rules": "^1.4.4",
  13563. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  13564. "webmozarts/strict-phpunit": "^7.5"
  13565. },
  13566. "type": "library",
  13567. "autoload": {
  13568. "psr-4": {
  13569. "Fidry\\CpuCoreCounter\\": "src/"
  13570. }
  13571. },
  13572. "notification-url": "https://packagist.org/downloads/",
  13573. "license": [
  13574. "MIT"
  13575. ],
  13576. "authors": [
  13577. {
  13578. "name": "Théo FIDRY",
  13579. "email": "theo.fidry@gmail.com"
  13580. }
  13581. ],
  13582. "description": "Tiny utility to get the number of CPU cores.",
  13583. "keywords": [
  13584. "CPU",
  13585. "core"
  13586. ],
  13587. "support": {
  13588. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  13589. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  13590. },
  13591. "funding": [
  13592. {
  13593. "url": "https://github.com/theofidry",
  13594. "type": "github"
  13595. }
  13596. ],
  13597. "time": "2024-08-06T10:04:20+00:00"
  13598. },
  13599. {
  13600. "name": "filp/whoops",
  13601. "version": "2.18.0",
  13602. "source": {
  13603. "type": "git",
  13604. "url": "https://github.com/filp/whoops.git",
  13605. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
  13606. },
  13607. "dist": {
  13608. "type": "zip",
  13609. "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  13610. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  13611. "shasum": ""
  13612. },
  13613. "require": {
  13614. "php": "^7.1 || ^8.0",
  13615. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  13616. },
  13617. "require-dev": {
  13618. "mockery/mockery": "^1.0",
  13619. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  13620. "symfony/var-dumper": "^4.0 || ^5.0"
  13621. },
  13622. "suggest": {
  13623. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  13624. "whoops/soap": "Formats errors as SOAP responses"
  13625. },
  13626. "type": "library",
  13627. "extra": {
  13628. "branch-alias": {
  13629. "dev-master": "2.7-dev"
  13630. }
  13631. },
  13632. "autoload": {
  13633. "psr-4": {
  13634. "Whoops\\": "src/Whoops/"
  13635. }
  13636. },
  13637. "notification-url": "https://packagist.org/downloads/",
  13638. "license": [
  13639. "MIT"
  13640. ],
  13641. "authors": [
  13642. {
  13643. "name": "Filipe Dobreira",
  13644. "homepage": "https://github.com/filp",
  13645. "role": "Developer"
  13646. }
  13647. ],
  13648. "description": "php error handling for cool kids",
  13649. "homepage": "https://filp.github.io/whoops/",
  13650. "keywords": [
  13651. "error",
  13652. "exception",
  13653. "handling",
  13654. "library",
  13655. "throwable",
  13656. "whoops"
  13657. ],
  13658. "support": {
  13659. "issues": "https://github.com/filp/whoops/issues",
  13660. "source": "https://github.com/filp/whoops/tree/2.18.0"
  13661. },
  13662. "funding": [
  13663. {
  13664. "url": "https://github.com/denis-sokolov",
  13665. "type": "github"
  13666. }
  13667. ],
  13668. "time": "2025-03-15T12:00:00+00:00"
  13669. },
  13670. {
  13671. "name": "hamcrest/hamcrest-php",
  13672. "version": "v2.0.1",
  13673. "source": {
  13674. "type": "git",
  13675. "url": "https://github.com/hamcrest/hamcrest-php.git",
  13676. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  13677. },
  13678. "dist": {
  13679. "type": "zip",
  13680. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  13681. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  13682. "shasum": ""
  13683. },
  13684. "require": {
  13685. "php": "^5.3|^7.0|^8.0"
  13686. },
  13687. "replace": {
  13688. "cordoval/hamcrest-php": "*",
  13689. "davedevelopment/hamcrest-php": "*",
  13690. "kodova/hamcrest-php": "*"
  13691. },
  13692. "require-dev": {
  13693. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  13694. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  13695. },
  13696. "type": "library",
  13697. "extra": {
  13698. "branch-alias": {
  13699. "dev-master": "2.1-dev"
  13700. }
  13701. },
  13702. "autoload": {
  13703. "classmap": [
  13704. "hamcrest"
  13705. ]
  13706. },
  13707. "notification-url": "https://packagist.org/downloads/",
  13708. "license": [
  13709. "BSD-3-Clause"
  13710. ],
  13711. "description": "This is the PHP port of Hamcrest Matchers",
  13712. "keywords": [
  13713. "test"
  13714. ],
  13715. "support": {
  13716. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  13717. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  13718. },
  13719. "time": "2020-07-09T08:09:16+00:00"
  13720. },
  13721. {
  13722. "name": "jean85/pretty-package-versions",
  13723. "version": "2.1.1",
  13724. "source": {
  13725. "type": "git",
  13726. "url": "https://github.com/Jean85/pretty-package-versions.git",
  13727. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  13728. },
  13729. "dist": {
  13730. "type": "zip",
  13731. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  13732. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  13733. "shasum": ""
  13734. },
  13735. "require": {
  13736. "composer-runtime-api": "^2.1.0",
  13737. "php": "^7.4|^8.0"
  13738. },
  13739. "require-dev": {
  13740. "friendsofphp/php-cs-fixer": "^3.2",
  13741. "jean85/composer-provided-replaced-stub-package": "^1.0",
  13742. "phpstan/phpstan": "^2.0",
  13743. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  13744. "rector/rector": "^2.0",
  13745. "vimeo/psalm": "^4.3 || ^5.0"
  13746. },
  13747. "type": "library",
  13748. "extra": {
  13749. "branch-alias": {
  13750. "dev-master": "1.x-dev"
  13751. }
  13752. },
  13753. "autoload": {
  13754. "psr-4": {
  13755. "Jean85\\": "src/"
  13756. }
  13757. },
  13758. "notification-url": "https://packagist.org/downloads/",
  13759. "license": [
  13760. "MIT"
  13761. ],
  13762. "authors": [
  13763. {
  13764. "name": "Alessandro Lai",
  13765. "email": "alessandro.lai85@gmail.com"
  13766. }
  13767. ],
  13768. "description": "A library to get pretty versions strings of installed dependencies",
  13769. "keywords": [
  13770. "composer",
  13771. "package",
  13772. "release",
  13773. "versions"
  13774. ],
  13775. "support": {
  13776. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  13777. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  13778. },
  13779. "time": "2025-03-19T14:43:43+00:00"
  13780. },
  13781. {
  13782. "name": "laravel/pint",
  13783. "version": "v1.21.2",
  13784. "source": {
  13785. "type": "git",
  13786. "url": "https://github.com/laravel/pint.git",
  13787. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558"
  13788. },
  13789. "dist": {
  13790. "type": "zip",
  13791. "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558",
  13792. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558",
  13793. "shasum": ""
  13794. },
  13795. "require": {
  13796. "ext-json": "*",
  13797. "ext-mbstring": "*",
  13798. "ext-tokenizer": "*",
  13799. "ext-xml": "*",
  13800. "php": "^8.2.0"
  13801. },
  13802. "require-dev": {
  13803. "friendsofphp/php-cs-fixer": "^3.72.0",
  13804. "illuminate/view": "^11.44.2",
  13805. "larastan/larastan": "^3.2.0",
  13806. "laravel-zero/framework": "^11.36.1",
  13807. "mockery/mockery": "^1.6.12",
  13808. "nunomaduro/termwind": "^2.3",
  13809. "pestphp/pest": "^2.36.0"
  13810. },
  13811. "bin": [
  13812. "builds/pint"
  13813. ],
  13814. "type": "project",
  13815. "autoload": {
  13816. "psr-4": {
  13817. "App\\": "app/",
  13818. "Database\\Seeders\\": "database/seeders/",
  13819. "Database\\Factories\\": "database/factories/"
  13820. }
  13821. },
  13822. "notification-url": "https://packagist.org/downloads/",
  13823. "license": [
  13824. "MIT"
  13825. ],
  13826. "authors": [
  13827. {
  13828. "name": "Nuno Maduro",
  13829. "email": "enunomaduro@gmail.com"
  13830. }
  13831. ],
  13832. "description": "An opinionated code formatter for PHP.",
  13833. "homepage": "https://laravel.com",
  13834. "keywords": [
  13835. "format",
  13836. "formatter",
  13837. "lint",
  13838. "linter",
  13839. "php"
  13840. ],
  13841. "support": {
  13842. "issues": "https://github.com/laravel/pint/issues",
  13843. "source": "https://github.com/laravel/pint"
  13844. },
  13845. "time": "2025-03-14T22:31:42+00:00"
  13846. },
  13847. {
  13848. "name": "mockery/mockery",
  13849. "version": "1.6.12",
  13850. "source": {
  13851. "type": "git",
  13852. "url": "https://github.com/mockery/mockery.git",
  13853. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  13854. },
  13855. "dist": {
  13856. "type": "zip",
  13857. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  13858. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  13859. "shasum": ""
  13860. },
  13861. "require": {
  13862. "hamcrest/hamcrest-php": "^2.0.1",
  13863. "lib-pcre": ">=7.0",
  13864. "php": ">=7.3"
  13865. },
  13866. "conflict": {
  13867. "phpunit/phpunit": "<8.0"
  13868. },
  13869. "require-dev": {
  13870. "phpunit/phpunit": "^8.5 || ^9.6.17",
  13871. "symplify/easy-coding-standard": "^12.1.14"
  13872. },
  13873. "type": "library",
  13874. "autoload": {
  13875. "files": [
  13876. "library/helpers.php",
  13877. "library/Mockery.php"
  13878. ],
  13879. "psr-4": {
  13880. "Mockery\\": "library/Mockery"
  13881. }
  13882. },
  13883. "notification-url": "https://packagist.org/downloads/",
  13884. "license": [
  13885. "BSD-3-Clause"
  13886. ],
  13887. "authors": [
  13888. {
  13889. "name": "Pádraic Brady",
  13890. "email": "padraic.brady@gmail.com",
  13891. "homepage": "https://github.com/padraic",
  13892. "role": "Author"
  13893. },
  13894. {
  13895. "name": "Dave Marshall",
  13896. "email": "dave.marshall@atstsolutions.co.uk",
  13897. "homepage": "https://davedevelopment.co.uk",
  13898. "role": "Developer"
  13899. },
  13900. {
  13901. "name": "Nathanael Esayeas",
  13902. "email": "nathanael.esayeas@protonmail.com",
  13903. "homepage": "https://github.com/ghostwriter",
  13904. "role": "Lead Developer"
  13905. }
  13906. ],
  13907. "description": "Mockery is a simple yet flexible PHP mock object framework",
  13908. "homepage": "https://github.com/mockery/mockery",
  13909. "keywords": [
  13910. "BDD",
  13911. "TDD",
  13912. "library",
  13913. "mock",
  13914. "mock objects",
  13915. "mockery",
  13916. "stub",
  13917. "test",
  13918. "test double",
  13919. "testing"
  13920. ],
  13921. "support": {
  13922. "docs": "https://docs.mockery.io/",
  13923. "issues": "https://github.com/mockery/mockery/issues",
  13924. "rss": "https://github.com/mockery/mockery/releases.atom",
  13925. "security": "https://github.com/mockery/mockery/security/advisories",
  13926. "source": "https://github.com/mockery/mockery"
  13927. },
  13928. "time": "2024-05-16T03:13:13+00:00"
  13929. },
  13930. {
  13931. "name": "nunomaduro/collision",
  13932. "version": "v8.7.0",
  13933. "source": {
  13934. "type": "git",
  13935. "url": "https://github.com/nunomaduro/collision.git",
  13936. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26"
  13937. },
  13938. "dist": {
  13939. "type": "zip",
  13940. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/586cb8181a257a2152b6a855ca8d9598878a1a26",
  13941. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26",
  13942. "shasum": ""
  13943. },
  13944. "require": {
  13945. "filp/whoops": "^2.17.0",
  13946. "nunomaduro/termwind": "^2.3.0",
  13947. "php": "^8.2.0",
  13948. "symfony/console": "^7.2.1"
  13949. },
  13950. "conflict": {
  13951. "laravel/framework": "<11.39.1 || >=13.0.0",
  13952. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  13953. },
  13954. "require-dev": {
  13955. "larastan/larastan": "^2.10.0",
  13956. "laravel/framework": "^11.44.2",
  13957. "laravel/pint": "^1.21.2",
  13958. "laravel/sail": "^1.41.0",
  13959. "laravel/sanctum": "^4.0.8",
  13960. "laravel/tinker": "^2.10.1",
  13961. "orchestra/testbench-core": "^9.12.0",
  13962. "pestphp/pest": "^3.7.4",
  13963. "sebastian/environment": "^6.1.0 || ^7.2.0"
  13964. },
  13965. "type": "library",
  13966. "extra": {
  13967. "laravel": {
  13968. "providers": [
  13969. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  13970. ]
  13971. },
  13972. "branch-alias": {
  13973. "dev-8.x": "8.x-dev"
  13974. }
  13975. },
  13976. "autoload": {
  13977. "files": [
  13978. "./src/Adapters/Phpunit/Autoload.php"
  13979. ],
  13980. "psr-4": {
  13981. "NunoMaduro\\Collision\\": "src/"
  13982. }
  13983. },
  13984. "notification-url": "https://packagist.org/downloads/",
  13985. "license": [
  13986. "MIT"
  13987. ],
  13988. "authors": [
  13989. {
  13990. "name": "Nuno Maduro",
  13991. "email": "enunomaduro@gmail.com"
  13992. }
  13993. ],
  13994. "description": "Cli error handling for console/command-line PHP applications.",
  13995. "keywords": [
  13996. "artisan",
  13997. "cli",
  13998. "command-line",
  13999. "console",
  14000. "dev",
  14001. "error",
  14002. "handling",
  14003. "laravel",
  14004. "laravel-zero",
  14005. "php",
  14006. "symfony"
  14007. ],
  14008. "support": {
  14009. "issues": "https://github.com/nunomaduro/collision/issues",
  14010. "source": "https://github.com/nunomaduro/collision"
  14011. },
  14012. "funding": [
  14013. {
  14014. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14015. "type": "custom"
  14016. },
  14017. {
  14018. "url": "https://github.com/nunomaduro",
  14019. "type": "github"
  14020. },
  14021. {
  14022. "url": "https://www.patreon.com/nunomaduro",
  14023. "type": "patreon"
  14024. }
  14025. ],
  14026. "time": "2025-03-14T22:37:40+00:00"
  14027. },
  14028. {
  14029. "name": "pestphp/pest",
  14030. "version": "v3.7.4",
  14031. "source": {
  14032. "type": "git",
  14033. "url": "https://github.com/pestphp/pest.git",
  14034. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b"
  14035. },
  14036. "dist": {
  14037. "type": "zip",
  14038. "url": "https://api.github.com/repos/pestphp/pest/zipball/4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  14039. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  14040. "shasum": ""
  14041. },
  14042. "require": {
  14043. "brianium/paratest": "^7.7.0",
  14044. "nunomaduro/collision": "^8.6.1",
  14045. "nunomaduro/termwind": "^2.3.0",
  14046. "pestphp/pest-plugin": "^3.0.0",
  14047. "pestphp/pest-plugin-arch": "^3.0.0",
  14048. "pestphp/pest-plugin-mutate": "^3.0.5",
  14049. "php": "^8.2.0",
  14050. "phpunit/phpunit": "^11.5.3"
  14051. },
  14052. "conflict": {
  14053. "filp/whoops": "<2.16.0",
  14054. "phpunit/phpunit": ">11.5.3",
  14055. "sebastian/exporter": "<6.0.0",
  14056. "webmozart/assert": "<1.11.0"
  14057. },
  14058. "require-dev": {
  14059. "pestphp/pest-dev-tools": "^3.3.0",
  14060. "pestphp/pest-plugin-type-coverage": "^3.2.3",
  14061. "symfony/process": "^7.2.0"
  14062. },
  14063. "bin": [
  14064. "bin/pest"
  14065. ],
  14066. "type": "library",
  14067. "extra": {
  14068. "pest": {
  14069. "plugins": [
  14070. "Pest\\Mutate\\Plugins\\Mutate",
  14071. "Pest\\Plugins\\Configuration",
  14072. "Pest\\Plugins\\Bail",
  14073. "Pest\\Plugins\\Cache",
  14074. "Pest\\Plugins\\Coverage",
  14075. "Pest\\Plugins\\Init",
  14076. "Pest\\Plugins\\Environment",
  14077. "Pest\\Plugins\\Help",
  14078. "Pest\\Plugins\\Memory",
  14079. "Pest\\Plugins\\Only",
  14080. "Pest\\Plugins\\Printer",
  14081. "Pest\\Plugins\\ProcessIsolation",
  14082. "Pest\\Plugins\\Profile",
  14083. "Pest\\Plugins\\Retry",
  14084. "Pest\\Plugins\\Snapshot",
  14085. "Pest\\Plugins\\Verbose",
  14086. "Pest\\Plugins\\Version",
  14087. "Pest\\Plugins\\Parallel"
  14088. ]
  14089. },
  14090. "phpstan": {
  14091. "includes": [
  14092. "extension.neon"
  14093. ]
  14094. }
  14095. },
  14096. "autoload": {
  14097. "files": [
  14098. "src/Functions.php",
  14099. "src/Pest.php"
  14100. ],
  14101. "psr-4": {
  14102. "Pest\\": "src/"
  14103. }
  14104. },
  14105. "notification-url": "https://packagist.org/downloads/",
  14106. "license": [
  14107. "MIT"
  14108. ],
  14109. "authors": [
  14110. {
  14111. "name": "Nuno Maduro",
  14112. "email": "enunomaduro@gmail.com"
  14113. }
  14114. ],
  14115. "description": "The elegant PHP Testing Framework.",
  14116. "keywords": [
  14117. "framework",
  14118. "pest",
  14119. "php",
  14120. "test",
  14121. "testing",
  14122. "unit"
  14123. ],
  14124. "support": {
  14125. "issues": "https://github.com/pestphp/pest/issues",
  14126. "source": "https://github.com/pestphp/pest/tree/v3.7.4"
  14127. },
  14128. "funding": [
  14129. {
  14130. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14131. "type": "custom"
  14132. },
  14133. {
  14134. "url": "https://github.com/nunomaduro",
  14135. "type": "github"
  14136. }
  14137. ],
  14138. "time": "2025-01-23T14:03:29+00:00"
  14139. },
  14140. {
  14141. "name": "pestphp/pest-plugin",
  14142. "version": "v3.0.0",
  14143. "source": {
  14144. "type": "git",
  14145. "url": "https://github.com/pestphp/pest-plugin.git",
  14146. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  14147. },
  14148. "dist": {
  14149. "type": "zip",
  14150. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  14151. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  14152. "shasum": ""
  14153. },
  14154. "require": {
  14155. "composer-plugin-api": "^2.0.0",
  14156. "composer-runtime-api": "^2.2.2",
  14157. "php": "^8.2"
  14158. },
  14159. "conflict": {
  14160. "pestphp/pest": "<3.0.0"
  14161. },
  14162. "require-dev": {
  14163. "composer/composer": "^2.7.9",
  14164. "pestphp/pest": "^3.0.0",
  14165. "pestphp/pest-dev-tools": "^3.0.0"
  14166. },
  14167. "type": "composer-plugin",
  14168. "extra": {
  14169. "class": "Pest\\Plugin\\Manager"
  14170. },
  14171. "autoload": {
  14172. "psr-4": {
  14173. "Pest\\Plugin\\": "src/"
  14174. }
  14175. },
  14176. "notification-url": "https://packagist.org/downloads/",
  14177. "license": [
  14178. "MIT"
  14179. ],
  14180. "description": "The Pest plugin manager",
  14181. "keywords": [
  14182. "framework",
  14183. "manager",
  14184. "pest",
  14185. "php",
  14186. "plugin",
  14187. "test",
  14188. "testing",
  14189. "unit"
  14190. ],
  14191. "support": {
  14192. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  14193. },
  14194. "funding": [
  14195. {
  14196. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  14197. "type": "custom"
  14198. },
  14199. {
  14200. "url": "https://github.com/nunomaduro",
  14201. "type": "github"
  14202. },
  14203. {
  14204. "url": "https://www.patreon.com/nunomaduro",
  14205. "type": "patreon"
  14206. }
  14207. ],
  14208. "time": "2024-09-08T23:21:41+00:00"
  14209. },
  14210. {
  14211. "name": "pestphp/pest-plugin-arch",
  14212. "version": "v3.0.0",
  14213. "source": {
  14214. "type": "git",
  14215. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  14216. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  14217. },
  14218. "dist": {
  14219. "type": "zip",
  14220. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  14221. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  14222. "shasum": ""
  14223. },
  14224. "require": {
  14225. "pestphp/pest-plugin": "^3.0.0",
  14226. "php": "^8.2",
  14227. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  14228. },
  14229. "require-dev": {
  14230. "pestphp/pest": "^3.0.0",
  14231. "pestphp/pest-dev-tools": "^3.0.0"
  14232. },
  14233. "type": "library",
  14234. "extra": {
  14235. "pest": {
  14236. "plugins": [
  14237. "Pest\\Arch\\Plugin"
  14238. ]
  14239. }
  14240. },
  14241. "autoload": {
  14242. "files": [
  14243. "src/Autoload.php"
  14244. ],
  14245. "psr-4": {
  14246. "Pest\\Arch\\": "src/"
  14247. }
  14248. },
  14249. "notification-url": "https://packagist.org/downloads/",
  14250. "license": [
  14251. "MIT"
  14252. ],
  14253. "description": "The Arch plugin for Pest PHP.",
  14254. "keywords": [
  14255. "arch",
  14256. "architecture",
  14257. "framework",
  14258. "pest",
  14259. "php",
  14260. "plugin",
  14261. "test",
  14262. "testing",
  14263. "unit"
  14264. ],
  14265. "support": {
  14266. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  14267. },
  14268. "funding": [
  14269. {
  14270. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14271. "type": "custom"
  14272. },
  14273. {
  14274. "url": "https://github.com/nunomaduro",
  14275. "type": "github"
  14276. }
  14277. ],
  14278. "time": "2024-09-08T23:23:55+00:00"
  14279. },
  14280. {
  14281. "name": "pestphp/pest-plugin-laravel",
  14282. "version": "v3.1.0",
  14283. "source": {
  14284. "type": "git",
  14285. "url": "https://github.com/pestphp/pest-plugin-laravel.git",
  14286. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd"
  14287. },
  14288. "dist": {
  14289. "type": "zip",
  14290. "url": "https://api.github.com/repos/pestphp/pest-plugin-laravel/zipball/1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  14291. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  14292. "shasum": ""
  14293. },
  14294. "require": {
  14295. "laravel/framework": "^11.39.1|^12.0.0",
  14296. "pestphp/pest": "^3.7.4",
  14297. "php": "^8.2.0"
  14298. },
  14299. "require-dev": {
  14300. "laravel/dusk": "^8.2.13|dev-develop",
  14301. "orchestra/testbench": "^9.9.0|^10.0.0",
  14302. "pestphp/pest-dev-tools": "^3.3.0"
  14303. },
  14304. "type": "library",
  14305. "extra": {
  14306. "pest": {
  14307. "plugins": [
  14308. "Pest\\Laravel\\Plugin"
  14309. ]
  14310. },
  14311. "laravel": {
  14312. "providers": [
  14313. "Pest\\Laravel\\PestServiceProvider"
  14314. ]
  14315. }
  14316. },
  14317. "autoload": {
  14318. "files": [
  14319. "src/Autoload.php"
  14320. ],
  14321. "psr-4": {
  14322. "Pest\\Laravel\\": "src/"
  14323. }
  14324. },
  14325. "notification-url": "https://packagist.org/downloads/",
  14326. "license": [
  14327. "MIT"
  14328. ],
  14329. "description": "The Pest Laravel Plugin",
  14330. "keywords": [
  14331. "framework",
  14332. "laravel",
  14333. "pest",
  14334. "php",
  14335. "test",
  14336. "testing",
  14337. "unit"
  14338. ],
  14339. "support": {
  14340. "source": "https://github.com/pestphp/pest-plugin-laravel/tree/v3.1.0"
  14341. },
  14342. "funding": [
  14343. {
  14344. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14345. "type": "custom"
  14346. },
  14347. {
  14348. "url": "https://github.com/nunomaduro",
  14349. "type": "github"
  14350. }
  14351. ],
  14352. "time": "2025-01-24T13:22:39+00:00"
  14353. },
  14354. {
  14355. "name": "pestphp/pest-plugin-mutate",
  14356. "version": "v3.0.5",
  14357. "source": {
  14358. "type": "git",
  14359. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  14360. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  14361. },
  14362. "dist": {
  14363. "type": "zip",
  14364. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  14365. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  14366. "shasum": ""
  14367. },
  14368. "require": {
  14369. "nikic/php-parser": "^5.2.0",
  14370. "pestphp/pest-plugin": "^3.0.0",
  14371. "php": "^8.2",
  14372. "psr/simple-cache": "^3.0.0"
  14373. },
  14374. "require-dev": {
  14375. "pestphp/pest": "^3.0.8",
  14376. "pestphp/pest-dev-tools": "^3.0.0",
  14377. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  14378. },
  14379. "type": "library",
  14380. "autoload": {
  14381. "psr-4": {
  14382. "Pest\\Mutate\\": "src/"
  14383. }
  14384. },
  14385. "notification-url": "https://packagist.org/downloads/",
  14386. "license": [
  14387. "MIT"
  14388. ],
  14389. "authors": [
  14390. {
  14391. "name": "Sandro Gehri",
  14392. "email": "sandrogehri@gmail.com"
  14393. }
  14394. ],
  14395. "description": "Mutates your code to find untested cases",
  14396. "keywords": [
  14397. "framework",
  14398. "mutate",
  14399. "mutation",
  14400. "pest",
  14401. "php",
  14402. "plugin",
  14403. "test",
  14404. "testing",
  14405. "unit"
  14406. ],
  14407. "support": {
  14408. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  14409. },
  14410. "funding": [
  14411. {
  14412. "url": "https://www.paypal.com/paypalme/enunomaduro",
  14413. "type": "custom"
  14414. },
  14415. {
  14416. "url": "https://github.com/gehrisandro",
  14417. "type": "github"
  14418. },
  14419. {
  14420. "url": "https://github.com/nunomaduro",
  14421. "type": "github"
  14422. }
  14423. ],
  14424. "time": "2024-09-22T07:54:40+00:00"
  14425. },
  14426. {
  14427. "name": "phar-io/manifest",
  14428. "version": "2.0.4",
  14429. "source": {
  14430. "type": "git",
  14431. "url": "https://github.com/phar-io/manifest.git",
  14432. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  14433. },
  14434. "dist": {
  14435. "type": "zip",
  14436. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  14437. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  14438. "shasum": ""
  14439. },
  14440. "require": {
  14441. "ext-dom": "*",
  14442. "ext-libxml": "*",
  14443. "ext-phar": "*",
  14444. "ext-xmlwriter": "*",
  14445. "phar-io/version": "^3.0.1",
  14446. "php": "^7.2 || ^8.0"
  14447. },
  14448. "type": "library",
  14449. "extra": {
  14450. "branch-alias": {
  14451. "dev-master": "2.0.x-dev"
  14452. }
  14453. },
  14454. "autoload": {
  14455. "classmap": [
  14456. "src/"
  14457. ]
  14458. },
  14459. "notification-url": "https://packagist.org/downloads/",
  14460. "license": [
  14461. "BSD-3-Clause"
  14462. ],
  14463. "authors": [
  14464. {
  14465. "name": "Arne Blankerts",
  14466. "email": "arne@blankerts.de",
  14467. "role": "Developer"
  14468. },
  14469. {
  14470. "name": "Sebastian Heuer",
  14471. "email": "sebastian@phpeople.de",
  14472. "role": "Developer"
  14473. },
  14474. {
  14475. "name": "Sebastian Bergmann",
  14476. "email": "sebastian@phpunit.de",
  14477. "role": "Developer"
  14478. }
  14479. ],
  14480. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  14481. "support": {
  14482. "issues": "https://github.com/phar-io/manifest/issues",
  14483. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  14484. },
  14485. "funding": [
  14486. {
  14487. "url": "https://github.com/theseer",
  14488. "type": "github"
  14489. }
  14490. ],
  14491. "time": "2024-03-03T12:33:53+00:00"
  14492. },
  14493. {
  14494. "name": "phar-io/version",
  14495. "version": "3.2.1",
  14496. "source": {
  14497. "type": "git",
  14498. "url": "https://github.com/phar-io/version.git",
  14499. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  14500. },
  14501. "dist": {
  14502. "type": "zip",
  14503. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  14504. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  14505. "shasum": ""
  14506. },
  14507. "require": {
  14508. "php": "^7.2 || ^8.0"
  14509. },
  14510. "type": "library",
  14511. "autoload": {
  14512. "classmap": [
  14513. "src/"
  14514. ]
  14515. },
  14516. "notification-url": "https://packagist.org/downloads/",
  14517. "license": [
  14518. "BSD-3-Clause"
  14519. ],
  14520. "authors": [
  14521. {
  14522. "name": "Arne Blankerts",
  14523. "email": "arne@blankerts.de",
  14524. "role": "Developer"
  14525. },
  14526. {
  14527. "name": "Sebastian Heuer",
  14528. "email": "sebastian@phpeople.de",
  14529. "role": "Developer"
  14530. },
  14531. {
  14532. "name": "Sebastian Bergmann",
  14533. "email": "sebastian@phpunit.de",
  14534. "role": "Developer"
  14535. }
  14536. ],
  14537. "description": "Library for handling version information and constraints",
  14538. "support": {
  14539. "issues": "https://github.com/phar-io/version/issues",
  14540. "source": "https://github.com/phar-io/version/tree/3.2.1"
  14541. },
  14542. "time": "2022-02-21T01:04:05+00:00"
  14543. },
  14544. {
  14545. "name": "php-debugbar/php-debugbar",
  14546. "version": "v2.1.6",
  14547. "source": {
  14548. "type": "git",
  14549. "url": "https://github.com/php-debugbar/php-debugbar.git",
  14550. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  14551. },
  14552. "dist": {
  14553. "type": "zip",
  14554. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  14555. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  14556. "shasum": ""
  14557. },
  14558. "require": {
  14559. "php": "^8",
  14560. "psr/log": "^1|^2|^3",
  14561. "symfony/var-dumper": "^4|^5|^6|^7"
  14562. },
  14563. "require-dev": {
  14564. "dbrekelmans/bdi": "^1",
  14565. "phpunit/phpunit": "^8|^9",
  14566. "symfony/panther": "^1|^2.1",
  14567. "twig/twig": "^1.38|^2.7|^3.0"
  14568. },
  14569. "suggest": {
  14570. "kriswallsmith/assetic": "The best way to manage assets",
  14571. "monolog/monolog": "Log using Monolog",
  14572. "predis/predis": "Redis storage"
  14573. },
  14574. "type": "library",
  14575. "extra": {
  14576. "branch-alias": {
  14577. "dev-master": "2.0-dev"
  14578. }
  14579. },
  14580. "autoload": {
  14581. "psr-4": {
  14582. "DebugBar\\": "src/DebugBar/"
  14583. }
  14584. },
  14585. "notification-url": "https://packagist.org/downloads/",
  14586. "license": [
  14587. "MIT"
  14588. ],
  14589. "authors": [
  14590. {
  14591. "name": "Maxime Bouroumeau-Fuseau",
  14592. "email": "maxime.bouroumeau@gmail.com",
  14593. "homepage": "http://maximebf.com"
  14594. },
  14595. {
  14596. "name": "Barry vd. Heuvel",
  14597. "email": "barryvdh@gmail.com"
  14598. }
  14599. ],
  14600. "description": "Debug bar in the browser for php application",
  14601. "homepage": "https://github.com/php-debugbar/php-debugbar",
  14602. "keywords": [
  14603. "debug",
  14604. "debug bar",
  14605. "debugbar",
  14606. "dev"
  14607. ],
  14608. "support": {
  14609. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  14610. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  14611. },
  14612. "time": "2025-02-21T17:47:03+00:00"
  14613. },
  14614. {
  14615. "name": "phpdocumentor/reflection-common",
  14616. "version": "2.2.0",
  14617. "source": {
  14618. "type": "git",
  14619. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  14620. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  14621. },
  14622. "dist": {
  14623. "type": "zip",
  14624. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  14625. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  14626. "shasum": ""
  14627. },
  14628. "require": {
  14629. "php": "^7.2 || ^8.0"
  14630. },
  14631. "type": "library",
  14632. "extra": {
  14633. "branch-alias": {
  14634. "dev-2.x": "2.x-dev"
  14635. }
  14636. },
  14637. "autoload": {
  14638. "psr-4": {
  14639. "phpDocumentor\\Reflection\\": "src/"
  14640. }
  14641. },
  14642. "notification-url": "https://packagist.org/downloads/",
  14643. "license": [
  14644. "MIT"
  14645. ],
  14646. "authors": [
  14647. {
  14648. "name": "Jaap van Otterdijk",
  14649. "email": "opensource@ijaap.nl"
  14650. }
  14651. ],
  14652. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  14653. "homepage": "http://www.phpdoc.org",
  14654. "keywords": [
  14655. "FQSEN",
  14656. "phpDocumentor",
  14657. "phpdoc",
  14658. "reflection",
  14659. "static analysis"
  14660. ],
  14661. "support": {
  14662. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  14663. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  14664. },
  14665. "time": "2020-06-27T09:03:43+00:00"
  14666. },
  14667. {
  14668. "name": "phpdocumentor/reflection-docblock",
  14669. "version": "5.6.3",
  14670. "source": {
  14671. "type": "git",
  14672. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  14673. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
  14674. },
  14675. "dist": {
  14676. "type": "zip",
  14677. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
  14678. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
  14679. "shasum": ""
  14680. },
  14681. "require": {
  14682. "doctrine/deprecations": "^1.1",
  14683. "ext-filter": "*",
  14684. "php": "^7.4 || ^8.0",
  14685. "phpdocumentor/reflection-common": "^2.2",
  14686. "phpdocumentor/type-resolver": "^1.7",
  14687. "phpstan/phpdoc-parser": "^1.7|^2.0",
  14688. "webmozart/assert": "^1.9.1"
  14689. },
  14690. "require-dev": {
  14691. "mockery/mockery": "~1.3.5 || ~1.6.0",
  14692. "phpstan/extension-installer": "^1.1",
  14693. "phpstan/phpstan": "^1.8",
  14694. "phpstan/phpstan-mockery": "^1.1",
  14695. "phpstan/phpstan-webmozart-assert": "^1.2",
  14696. "phpunit/phpunit": "^9.5",
  14697. "psalm/phar": "^5.26"
  14698. },
  14699. "type": "library",
  14700. "extra": {
  14701. "branch-alias": {
  14702. "dev-master": "5.x-dev"
  14703. }
  14704. },
  14705. "autoload": {
  14706. "psr-4": {
  14707. "phpDocumentor\\Reflection\\": "src"
  14708. }
  14709. },
  14710. "notification-url": "https://packagist.org/downloads/",
  14711. "license": [
  14712. "MIT"
  14713. ],
  14714. "authors": [
  14715. {
  14716. "name": "Mike van Riel",
  14717. "email": "me@mikevanriel.com"
  14718. },
  14719. {
  14720. "name": "Jaap van Otterdijk",
  14721. "email": "opensource@ijaap.nl"
  14722. }
  14723. ],
  14724. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  14725. "support": {
  14726. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  14727. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
  14728. },
  14729. "time": "2025-08-01T19:43:32+00:00"
  14730. },
  14731. {
  14732. "name": "phpdocumentor/type-resolver",
  14733. "version": "1.10.0",
  14734. "source": {
  14735. "type": "git",
  14736. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  14737. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  14738. },
  14739. "dist": {
  14740. "type": "zip",
  14741. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  14742. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  14743. "shasum": ""
  14744. },
  14745. "require": {
  14746. "doctrine/deprecations": "^1.0",
  14747. "php": "^7.3 || ^8.0",
  14748. "phpdocumentor/reflection-common": "^2.0",
  14749. "phpstan/phpdoc-parser": "^1.18|^2.0"
  14750. },
  14751. "require-dev": {
  14752. "ext-tokenizer": "*",
  14753. "phpbench/phpbench": "^1.2",
  14754. "phpstan/extension-installer": "^1.1",
  14755. "phpstan/phpstan": "^1.8",
  14756. "phpstan/phpstan-phpunit": "^1.1",
  14757. "phpunit/phpunit": "^9.5",
  14758. "rector/rector": "^0.13.9",
  14759. "vimeo/psalm": "^4.25"
  14760. },
  14761. "type": "library",
  14762. "extra": {
  14763. "branch-alias": {
  14764. "dev-1.x": "1.x-dev"
  14765. }
  14766. },
  14767. "autoload": {
  14768. "psr-4": {
  14769. "phpDocumentor\\Reflection\\": "src"
  14770. }
  14771. },
  14772. "notification-url": "https://packagist.org/downloads/",
  14773. "license": [
  14774. "MIT"
  14775. ],
  14776. "authors": [
  14777. {
  14778. "name": "Mike van Riel",
  14779. "email": "me@mikevanriel.com"
  14780. }
  14781. ],
  14782. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  14783. "support": {
  14784. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  14785. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  14786. },
  14787. "time": "2024-11-09T15:12:26+00:00"
  14788. },
  14789. {
  14790. "name": "phpstan/phpdoc-parser",
  14791. "version": "2.3.0",
  14792. "source": {
  14793. "type": "git",
  14794. "url": "https://github.com/phpstan/phpdoc-parser.git",
  14795. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
  14796. },
  14797. "dist": {
  14798. "type": "zip",
  14799. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
  14800. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
  14801. "shasum": ""
  14802. },
  14803. "require": {
  14804. "php": "^7.4 || ^8.0"
  14805. },
  14806. "require-dev": {
  14807. "doctrine/annotations": "^2.0",
  14808. "nikic/php-parser": "^5.3.0",
  14809. "php-parallel-lint/php-parallel-lint": "^1.2",
  14810. "phpstan/extension-installer": "^1.0",
  14811. "phpstan/phpstan": "^2.0",
  14812. "phpstan/phpstan-phpunit": "^2.0",
  14813. "phpstan/phpstan-strict-rules": "^2.0",
  14814. "phpunit/phpunit": "^9.6",
  14815. "symfony/process": "^5.2"
  14816. },
  14817. "type": "library",
  14818. "autoload": {
  14819. "psr-4": {
  14820. "PHPStan\\PhpDocParser\\": [
  14821. "src/"
  14822. ]
  14823. }
  14824. },
  14825. "notification-url": "https://packagist.org/downloads/",
  14826. "license": [
  14827. "MIT"
  14828. ],
  14829. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  14830. "support": {
  14831. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  14832. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
  14833. },
  14834. "time": "2025-08-30T15:50:23+00:00"
  14835. },
  14836. {
  14837. "name": "phpunit/php-code-coverage",
  14838. "version": "11.0.9",
  14839. "source": {
  14840. "type": "git",
  14841. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  14842. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  14843. },
  14844. "dist": {
  14845. "type": "zip",
  14846. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  14847. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  14848. "shasum": ""
  14849. },
  14850. "require": {
  14851. "ext-dom": "*",
  14852. "ext-libxml": "*",
  14853. "ext-xmlwriter": "*",
  14854. "nikic/php-parser": "^5.4.0",
  14855. "php": ">=8.2",
  14856. "phpunit/php-file-iterator": "^5.1.0",
  14857. "phpunit/php-text-template": "^4.0.1",
  14858. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  14859. "sebastian/complexity": "^4.0.1",
  14860. "sebastian/environment": "^7.2.0",
  14861. "sebastian/lines-of-code": "^3.0.1",
  14862. "sebastian/version": "^5.0.2",
  14863. "theseer/tokenizer": "^1.2.3"
  14864. },
  14865. "require-dev": {
  14866. "phpunit/phpunit": "^11.5.2"
  14867. },
  14868. "suggest": {
  14869. "ext-pcov": "PHP extension that provides line coverage",
  14870. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  14871. },
  14872. "type": "library",
  14873. "extra": {
  14874. "branch-alias": {
  14875. "dev-main": "11.0.x-dev"
  14876. }
  14877. },
  14878. "autoload": {
  14879. "classmap": [
  14880. "src/"
  14881. ]
  14882. },
  14883. "notification-url": "https://packagist.org/downloads/",
  14884. "license": [
  14885. "BSD-3-Clause"
  14886. ],
  14887. "authors": [
  14888. {
  14889. "name": "Sebastian Bergmann",
  14890. "email": "sebastian@phpunit.de",
  14891. "role": "lead"
  14892. }
  14893. ],
  14894. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  14895. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  14896. "keywords": [
  14897. "coverage",
  14898. "testing",
  14899. "xunit"
  14900. ],
  14901. "support": {
  14902. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  14903. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  14904. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  14905. },
  14906. "funding": [
  14907. {
  14908. "url": "https://github.com/sebastianbergmann",
  14909. "type": "github"
  14910. }
  14911. ],
  14912. "time": "2025-02-25T13:26:39+00:00"
  14913. },
  14914. {
  14915. "name": "phpunit/php-file-iterator",
  14916. "version": "5.1.0",
  14917. "source": {
  14918. "type": "git",
  14919. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  14920. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  14921. },
  14922. "dist": {
  14923. "type": "zip",
  14924. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  14925. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  14926. "shasum": ""
  14927. },
  14928. "require": {
  14929. "php": ">=8.2"
  14930. },
  14931. "require-dev": {
  14932. "phpunit/phpunit": "^11.0"
  14933. },
  14934. "type": "library",
  14935. "extra": {
  14936. "branch-alias": {
  14937. "dev-main": "5.0-dev"
  14938. }
  14939. },
  14940. "autoload": {
  14941. "classmap": [
  14942. "src/"
  14943. ]
  14944. },
  14945. "notification-url": "https://packagist.org/downloads/",
  14946. "license": [
  14947. "BSD-3-Clause"
  14948. ],
  14949. "authors": [
  14950. {
  14951. "name": "Sebastian Bergmann",
  14952. "email": "sebastian@phpunit.de",
  14953. "role": "lead"
  14954. }
  14955. ],
  14956. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  14957. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  14958. "keywords": [
  14959. "filesystem",
  14960. "iterator"
  14961. ],
  14962. "support": {
  14963. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  14964. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  14965. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  14966. },
  14967. "funding": [
  14968. {
  14969. "url": "https://github.com/sebastianbergmann",
  14970. "type": "github"
  14971. }
  14972. ],
  14973. "time": "2024-08-27T05:02:59+00:00"
  14974. },
  14975. {
  14976. "name": "phpunit/php-invoker",
  14977. "version": "5.0.1",
  14978. "source": {
  14979. "type": "git",
  14980. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  14981. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  14982. },
  14983. "dist": {
  14984. "type": "zip",
  14985. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  14986. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  14987. "shasum": ""
  14988. },
  14989. "require": {
  14990. "php": ">=8.2"
  14991. },
  14992. "require-dev": {
  14993. "ext-pcntl": "*",
  14994. "phpunit/phpunit": "^11.0"
  14995. },
  14996. "suggest": {
  14997. "ext-pcntl": "*"
  14998. },
  14999. "type": "library",
  15000. "extra": {
  15001. "branch-alias": {
  15002. "dev-main": "5.0-dev"
  15003. }
  15004. },
  15005. "autoload": {
  15006. "classmap": [
  15007. "src/"
  15008. ]
  15009. },
  15010. "notification-url": "https://packagist.org/downloads/",
  15011. "license": [
  15012. "BSD-3-Clause"
  15013. ],
  15014. "authors": [
  15015. {
  15016. "name": "Sebastian Bergmann",
  15017. "email": "sebastian@phpunit.de",
  15018. "role": "lead"
  15019. }
  15020. ],
  15021. "description": "Invoke callables with a timeout",
  15022. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  15023. "keywords": [
  15024. "process"
  15025. ],
  15026. "support": {
  15027. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  15028. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  15029. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  15030. },
  15031. "funding": [
  15032. {
  15033. "url": "https://github.com/sebastianbergmann",
  15034. "type": "github"
  15035. }
  15036. ],
  15037. "time": "2024-07-03T05:07:44+00:00"
  15038. },
  15039. {
  15040. "name": "phpunit/php-text-template",
  15041. "version": "4.0.1",
  15042. "source": {
  15043. "type": "git",
  15044. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  15045. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  15046. },
  15047. "dist": {
  15048. "type": "zip",
  15049. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  15050. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  15051. "shasum": ""
  15052. },
  15053. "require": {
  15054. "php": ">=8.2"
  15055. },
  15056. "require-dev": {
  15057. "phpunit/phpunit": "^11.0"
  15058. },
  15059. "type": "library",
  15060. "extra": {
  15061. "branch-alias": {
  15062. "dev-main": "4.0-dev"
  15063. }
  15064. },
  15065. "autoload": {
  15066. "classmap": [
  15067. "src/"
  15068. ]
  15069. },
  15070. "notification-url": "https://packagist.org/downloads/",
  15071. "license": [
  15072. "BSD-3-Clause"
  15073. ],
  15074. "authors": [
  15075. {
  15076. "name": "Sebastian Bergmann",
  15077. "email": "sebastian@phpunit.de",
  15078. "role": "lead"
  15079. }
  15080. ],
  15081. "description": "Simple template engine.",
  15082. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  15083. "keywords": [
  15084. "template"
  15085. ],
  15086. "support": {
  15087. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  15088. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  15089. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  15090. },
  15091. "funding": [
  15092. {
  15093. "url": "https://github.com/sebastianbergmann",
  15094. "type": "github"
  15095. }
  15096. ],
  15097. "time": "2024-07-03T05:08:43+00:00"
  15098. },
  15099. {
  15100. "name": "phpunit/php-timer",
  15101. "version": "7.0.1",
  15102. "source": {
  15103. "type": "git",
  15104. "url": "https://github.com/sebastianbergmann/php-timer.git",
  15105. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  15106. },
  15107. "dist": {
  15108. "type": "zip",
  15109. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  15110. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  15111. "shasum": ""
  15112. },
  15113. "require": {
  15114. "php": ">=8.2"
  15115. },
  15116. "require-dev": {
  15117. "phpunit/phpunit": "^11.0"
  15118. },
  15119. "type": "library",
  15120. "extra": {
  15121. "branch-alias": {
  15122. "dev-main": "7.0-dev"
  15123. }
  15124. },
  15125. "autoload": {
  15126. "classmap": [
  15127. "src/"
  15128. ]
  15129. },
  15130. "notification-url": "https://packagist.org/downloads/",
  15131. "license": [
  15132. "BSD-3-Clause"
  15133. ],
  15134. "authors": [
  15135. {
  15136. "name": "Sebastian Bergmann",
  15137. "email": "sebastian@phpunit.de",
  15138. "role": "lead"
  15139. }
  15140. ],
  15141. "description": "Utility class for timing",
  15142. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  15143. "keywords": [
  15144. "timer"
  15145. ],
  15146. "support": {
  15147. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  15148. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  15149. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  15150. },
  15151. "funding": [
  15152. {
  15153. "url": "https://github.com/sebastianbergmann",
  15154. "type": "github"
  15155. }
  15156. ],
  15157. "time": "2024-07-03T05:09:35+00:00"
  15158. },
  15159. {
  15160. "name": "phpunit/phpunit",
  15161. "version": "11.5.3",
  15162. "source": {
  15163. "type": "git",
  15164. "url": "https://github.com/sebastianbergmann/phpunit.git",
  15165. "reference": "30e319e578a7b5da3543073e30002bf82042f701"
  15166. },
  15167. "dist": {
  15168. "type": "zip",
  15169. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701",
  15170. "reference": "30e319e578a7b5da3543073e30002bf82042f701",
  15171. "shasum": ""
  15172. },
  15173. "require": {
  15174. "ext-dom": "*",
  15175. "ext-json": "*",
  15176. "ext-libxml": "*",
  15177. "ext-mbstring": "*",
  15178. "ext-xml": "*",
  15179. "ext-xmlwriter": "*",
  15180. "myclabs/deep-copy": "^1.12.1",
  15181. "phar-io/manifest": "^2.0.4",
  15182. "phar-io/version": "^3.2.1",
  15183. "php": ">=8.2",
  15184. "phpunit/php-code-coverage": "^11.0.8",
  15185. "phpunit/php-file-iterator": "^5.1.0",
  15186. "phpunit/php-invoker": "^5.0.1",
  15187. "phpunit/php-text-template": "^4.0.1",
  15188. "phpunit/php-timer": "^7.0.1",
  15189. "sebastian/cli-parser": "^3.0.2",
  15190. "sebastian/code-unit": "^3.0.2",
  15191. "sebastian/comparator": "^6.3.0",
  15192. "sebastian/diff": "^6.0.2",
  15193. "sebastian/environment": "^7.2.0",
  15194. "sebastian/exporter": "^6.3.0",
  15195. "sebastian/global-state": "^7.0.2",
  15196. "sebastian/object-enumerator": "^6.0.1",
  15197. "sebastian/type": "^5.1.0",
  15198. "sebastian/version": "^5.0.2",
  15199. "staabm/side-effects-detector": "^1.0.5"
  15200. },
  15201. "suggest": {
  15202. "ext-soap": "To be able to generate mocks based on WSDL files"
  15203. },
  15204. "bin": [
  15205. "phpunit"
  15206. ],
  15207. "type": "library",
  15208. "extra": {
  15209. "branch-alias": {
  15210. "dev-main": "11.5-dev"
  15211. }
  15212. },
  15213. "autoload": {
  15214. "files": [
  15215. "src/Framework/Assert/Functions.php"
  15216. ],
  15217. "classmap": [
  15218. "src/"
  15219. ]
  15220. },
  15221. "notification-url": "https://packagist.org/downloads/",
  15222. "license": [
  15223. "BSD-3-Clause"
  15224. ],
  15225. "authors": [
  15226. {
  15227. "name": "Sebastian Bergmann",
  15228. "email": "sebastian@phpunit.de",
  15229. "role": "lead"
  15230. }
  15231. ],
  15232. "description": "The PHP Unit Testing framework.",
  15233. "homepage": "https://phpunit.de/",
  15234. "keywords": [
  15235. "phpunit",
  15236. "testing",
  15237. "xunit"
  15238. ],
  15239. "support": {
  15240. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  15241. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  15242. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3"
  15243. },
  15244. "funding": [
  15245. {
  15246. "url": "https://phpunit.de/sponsors.html",
  15247. "type": "custom"
  15248. },
  15249. {
  15250. "url": "https://github.com/sebastianbergmann",
  15251. "type": "github"
  15252. },
  15253. {
  15254. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  15255. "type": "tidelift"
  15256. }
  15257. ],
  15258. "time": "2025-01-13T09:36:00+00:00"
  15259. },
  15260. {
  15261. "name": "sebastian/cli-parser",
  15262. "version": "3.0.2",
  15263. "source": {
  15264. "type": "git",
  15265. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  15266. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  15267. },
  15268. "dist": {
  15269. "type": "zip",
  15270. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  15271. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  15272. "shasum": ""
  15273. },
  15274. "require": {
  15275. "php": ">=8.2"
  15276. },
  15277. "require-dev": {
  15278. "phpunit/phpunit": "^11.0"
  15279. },
  15280. "type": "library",
  15281. "extra": {
  15282. "branch-alias": {
  15283. "dev-main": "3.0-dev"
  15284. }
  15285. },
  15286. "autoload": {
  15287. "classmap": [
  15288. "src/"
  15289. ]
  15290. },
  15291. "notification-url": "https://packagist.org/downloads/",
  15292. "license": [
  15293. "BSD-3-Clause"
  15294. ],
  15295. "authors": [
  15296. {
  15297. "name": "Sebastian Bergmann",
  15298. "email": "sebastian@phpunit.de",
  15299. "role": "lead"
  15300. }
  15301. ],
  15302. "description": "Library for parsing CLI options",
  15303. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  15304. "support": {
  15305. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  15306. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  15307. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  15308. },
  15309. "funding": [
  15310. {
  15311. "url": "https://github.com/sebastianbergmann",
  15312. "type": "github"
  15313. }
  15314. ],
  15315. "time": "2024-07-03T04:41:36+00:00"
  15316. },
  15317. {
  15318. "name": "sebastian/code-unit",
  15319. "version": "3.0.3",
  15320. "source": {
  15321. "type": "git",
  15322. "url": "https://github.com/sebastianbergmann/code-unit.git",
  15323. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  15324. },
  15325. "dist": {
  15326. "type": "zip",
  15327. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  15328. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  15329. "shasum": ""
  15330. },
  15331. "require": {
  15332. "php": ">=8.2"
  15333. },
  15334. "require-dev": {
  15335. "phpunit/phpunit": "^11.5"
  15336. },
  15337. "type": "library",
  15338. "extra": {
  15339. "branch-alias": {
  15340. "dev-main": "3.0-dev"
  15341. }
  15342. },
  15343. "autoload": {
  15344. "classmap": [
  15345. "src/"
  15346. ]
  15347. },
  15348. "notification-url": "https://packagist.org/downloads/",
  15349. "license": [
  15350. "BSD-3-Clause"
  15351. ],
  15352. "authors": [
  15353. {
  15354. "name": "Sebastian Bergmann",
  15355. "email": "sebastian@phpunit.de",
  15356. "role": "lead"
  15357. }
  15358. ],
  15359. "description": "Collection of value objects that represent the PHP code units",
  15360. "homepage": "https://github.com/sebastianbergmann/code-unit",
  15361. "support": {
  15362. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  15363. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  15364. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  15365. },
  15366. "funding": [
  15367. {
  15368. "url": "https://github.com/sebastianbergmann",
  15369. "type": "github"
  15370. }
  15371. ],
  15372. "time": "2025-03-19T07:56:08+00:00"
  15373. },
  15374. {
  15375. "name": "sebastian/code-unit-reverse-lookup",
  15376. "version": "4.0.1",
  15377. "source": {
  15378. "type": "git",
  15379. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  15380. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  15381. },
  15382. "dist": {
  15383. "type": "zip",
  15384. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  15385. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  15386. "shasum": ""
  15387. },
  15388. "require": {
  15389. "php": ">=8.2"
  15390. },
  15391. "require-dev": {
  15392. "phpunit/phpunit": "^11.0"
  15393. },
  15394. "type": "library",
  15395. "extra": {
  15396. "branch-alias": {
  15397. "dev-main": "4.0-dev"
  15398. }
  15399. },
  15400. "autoload": {
  15401. "classmap": [
  15402. "src/"
  15403. ]
  15404. },
  15405. "notification-url": "https://packagist.org/downloads/",
  15406. "license": [
  15407. "BSD-3-Clause"
  15408. ],
  15409. "authors": [
  15410. {
  15411. "name": "Sebastian Bergmann",
  15412. "email": "sebastian@phpunit.de"
  15413. }
  15414. ],
  15415. "description": "Looks up which function or method a line of code belongs to",
  15416. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  15417. "support": {
  15418. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  15419. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  15420. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  15421. },
  15422. "funding": [
  15423. {
  15424. "url": "https://github.com/sebastianbergmann",
  15425. "type": "github"
  15426. }
  15427. ],
  15428. "time": "2024-07-03T04:45:54+00:00"
  15429. },
  15430. {
  15431. "name": "sebastian/comparator",
  15432. "version": "6.3.1",
  15433. "source": {
  15434. "type": "git",
  15435. "url": "https://github.com/sebastianbergmann/comparator.git",
  15436. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  15437. },
  15438. "dist": {
  15439. "type": "zip",
  15440. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  15441. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  15442. "shasum": ""
  15443. },
  15444. "require": {
  15445. "ext-dom": "*",
  15446. "ext-mbstring": "*",
  15447. "php": ">=8.2",
  15448. "sebastian/diff": "^6.0",
  15449. "sebastian/exporter": "^6.0"
  15450. },
  15451. "require-dev": {
  15452. "phpunit/phpunit": "^11.4"
  15453. },
  15454. "suggest": {
  15455. "ext-bcmath": "For comparing BcMath\\Number objects"
  15456. },
  15457. "type": "library",
  15458. "extra": {
  15459. "branch-alias": {
  15460. "dev-main": "6.3-dev"
  15461. }
  15462. },
  15463. "autoload": {
  15464. "classmap": [
  15465. "src/"
  15466. ]
  15467. },
  15468. "notification-url": "https://packagist.org/downloads/",
  15469. "license": [
  15470. "BSD-3-Clause"
  15471. ],
  15472. "authors": [
  15473. {
  15474. "name": "Sebastian Bergmann",
  15475. "email": "sebastian@phpunit.de"
  15476. },
  15477. {
  15478. "name": "Jeff Welch",
  15479. "email": "whatthejeff@gmail.com"
  15480. },
  15481. {
  15482. "name": "Volker Dusch",
  15483. "email": "github@wallbash.com"
  15484. },
  15485. {
  15486. "name": "Bernhard Schussek",
  15487. "email": "bschussek@2bepublished.at"
  15488. }
  15489. ],
  15490. "description": "Provides the functionality to compare PHP values for equality",
  15491. "homepage": "https://github.com/sebastianbergmann/comparator",
  15492. "keywords": [
  15493. "comparator",
  15494. "compare",
  15495. "equality"
  15496. ],
  15497. "support": {
  15498. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  15499. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  15500. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  15501. },
  15502. "funding": [
  15503. {
  15504. "url": "https://github.com/sebastianbergmann",
  15505. "type": "github"
  15506. }
  15507. ],
  15508. "time": "2025-03-07T06:57:01+00:00"
  15509. },
  15510. {
  15511. "name": "sebastian/complexity",
  15512. "version": "4.0.1",
  15513. "source": {
  15514. "type": "git",
  15515. "url": "https://github.com/sebastianbergmann/complexity.git",
  15516. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  15517. },
  15518. "dist": {
  15519. "type": "zip",
  15520. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  15521. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  15522. "shasum": ""
  15523. },
  15524. "require": {
  15525. "nikic/php-parser": "^5.0",
  15526. "php": ">=8.2"
  15527. },
  15528. "require-dev": {
  15529. "phpunit/phpunit": "^11.0"
  15530. },
  15531. "type": "library",
  15532. "extra": {
  15533. "branch-alias": {
  15534. "dev-main": "4.0-dev"
  15535. }
  15536. },
  15537. "autoload": {
  15538. "classmap": [
  15539. "src/"
  15540. ]
  15541. },
  15542. "notification-url": "https://packagist.org/downloads/",
  15543. "license": [
  15544. "BSD-3-Clause"
  15545. ],
  15546. "authors": [
  15547. {
  15548. "name": "Sebastian Bergmann",
  15549. "email": "sebastian@phpunit.de",
  15550. "role": "lead"
  15551. }
  15552. ],
  15553. "description": "Library for calculating the complexity of PHP code units",
  15554. "homepage": "https://github.com/sebastianbergmann/complexity",
  15555. "support": {
  15556. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  15557. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  15558. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  15559. },
  15560. "funding": [
  15561. {
  15562. "url": "https://github.com/sebastianbergmann",
  15563. "type": "github"
  15564. }
  15565. ],
  15566. "time": "2024-07-03T04:49:50+00:00"
  15567. },
  15568. {
  15569. "name": "sebastian/diff",
  15570. "version": "6.0.2",
  15571. "source": {
  15572. "type": "git",
  15573. "url": "https://github.com/sebastianbergmann/diff.git",
  15574. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  15575. },
  15576. "dist": {
  15577. "type": "zip",
  15578. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  15579. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  15580. "shasum": ""
  15581. },
  15582. "require": {
  15583. "php": ">=8.2"
  15584. },
  15585. "require-dev": {
  15586. "phpunit/phpunit": "^11.0",
  15587. "symfony/process": "^4.2 || ^5"
  15588. },
  15589. "type": "library",
  15590. "extra": {
  15591. "branch-alias": {
  15592. "dev-main": "6.0-dev"
  15593. }
  15594. },
  15595. "autoload": {
  15596. "classmap": [
  15597. "src/"
  15598. ]
  15599. },
  15600. "notification-url": "https://packagist.org/downloads/",
  15601. "license": [
  15602. "BSD-3-Clause"
  15603. ],
  15604. "authors": [
  15605. {
  15606. "name": "Sebastian Bergmann",
  15607. "email": "sebastian@phpunit.de"
  15608. },
  15609. {
  15610. "name": "Kore Nordmann",
  15611. "email": "mail@kore-nordmann.de"
  15612. }
  15613. ],
  15614. "description": "Diff implementation",
  15615. "homepage": "https://github.com/sebastianbergmann/diff",
  15616. "keywords": [
  15617. "diff",
  15618. "udiff",
  15619. "unidiff",
  15620. "unified diff"
  15621. ],
  15622. "support": {
  15623. "issues": "https://github.com/sebastianbergmann/diff/issues",
  15624. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  15625. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  15626. },
  15627. "funding": [
  15628. {
  15629. "url": "https://github.com/sebastianbergmann",
  15630. "type": "github"
  15631. }
  15632. ],
  15633. "time": "2024-07-03T04:53:05+00:00"
  15634. },
  15635. {
  15636. "name": "sebastian/environment",
  15637. "version": "7.2.0",
  15638. "source": {
  15639. "type": "git",
  15640. "url": "https://github.com/sebastianbergmann/environment.git",
  15641. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  15642. },
  15643. "dist": {
  15644. "type": "zip",
  15645. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  15646. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  15647. "shasum": ""
  15648. },
  15649. "require": {
  15650. "php": ">=8.2"
  15651. },
  15652. "require-dev": {
  15653. "phpunit/phpunit": "^11.0"
  15654. },
  15655. "suggest": {
  15656. "ext-posix": "*"
  15657. },
  15658. "type": "library",
  15659. "extra": {
  15660. "branch-alias": {
  15661. "dev-main": "7.2-dev"
  15662. }
  15663. },
  15664. "autoload": {
  15665. "classmap": [
  15666. "src/"
  15667. ]
  15668. },
  15669. "notification-url": "https://packagist.org/downloads/",
  15670. "license": [
  15671. "BSD-3-Clause"
  15672. ],
  15673. "authors": [
  15674. {
  15675. "name": "Sebastian Bergmann",
  15676. "email": "sebastian@phpunit.de"
  15677. }
  15678. ],
  15679. "description": "Provides functionality to handle HHVM/PHP environments",
  15680. "homepage": "https://github.com/sebastianbergmann/environment",
  15681. "keywords": [
  15682. "Xdebug",
  15683. "environment",
  15684. "hhvm"
  15685. ],
  15686. "support": {
  15687. "issues": "https://github.com/sebastianbergmann/environment/issues",
  15688. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  15689. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  15690. },
  15691. "funding": [
  15692. {
  15693. "url": "https://github.com/sebastianbergmann",
  15694. "type": "github"
  15695. }
  15696. ],
  15697. "time": "2024-07-03T04:54:44+00:00"
  15698. },
  15699. {
  15700. "name": "sebastian/exporter",
  15701. "version": "6.3.0",
  15702. "source": {
  15703. "type": "git",
  15704. "url": "https://github.com/sebastianbergmann/exporter.git",
  15705. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  15706. },
  15707. "dist": {
  15708. "type": "zip",
  15709. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  15710. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  15711. "shasum": ""
  15712. },
  15713. "require": {
  15714. "ext-mbstring": "*",
  15715. "php": ">=8.2",
  15716. "sebastian/recursion-context": "^6.0"
  15717. },
  15718. "require-dev": {
  15719. "phpunit/phpunit": "^11.3"
  15720. },
  15721. "type": "library",
  15722. "extra": {
  15723. "branch-alias": {
  15724. "dev-main": "6.1-dev"
  15725. }
  15726. },
  15727. "autoload": {
  15728. "classmap": [
  15729. "src/"
  15730. ]
  15731. },
  15732. "notification-url": "https://packagist.org/downloads/",
  15733. "license": [
  15734. "BSD-3-Clause"
  15735. ],
  15736. "authors": [
  15737. {
  15738. "name": "Sebastian Bergmann",
  15739. "email": "sebastian@phpunit.de"
  15740. },
  15741. {
  15742. "name": "Jeff Welch",
  15743. "email": "whatthejeff@gmail.com"
  15744. },
  15745. {
  15746. "name": "Volker Dusch",
  15747. "email": "github@wallbash.com"
  15748. },
  15749. {
  15750. "name": "Adam Harvey",
  15751. "email": "aharvey@php.net"
  15752. },
  15753. {
  15754. "name": "Bernhard Schussek",
  15755. "email": "bschussek@gmail.com"
  15756. }
  15757. ],
  15758. "description": "Provides the functionality to export PHP variables for visualization",
  15759. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  15760. "keywords": [
  15761. "export",
  15762. "exporter"
  15763. ],
  15764. "support": {
  15765. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  15766. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  15767. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  15768. },
  15769. "funding": [
  15770. {
  15771. "url": "https://github.com/sebastianbergmann",
  15772. "type": "github"
  15773. }
  15774. ],
  15775. "time": "2024-12-05T09:17:50+00:00"
  15776. },
  15777. {
  15778. "name": "sebastian/global-state",
  15779. "version": "7.0.2",
  15780. "source": {
  15781. "type": "git",
  15782. "url": "https://github.com/sebastianbergmann/global-state.git",
  15783. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  15784. },
  15785. "dist": {
  15786. "type": "zip",
  15787. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  15788. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  15789. "shasum": ""
  15790. },
  15791. "require": {
  15792. "php": ">=8.2",
  15793. "sebastian/object-reflector": "^4.0",
  15794. "sebastian/recursion-context": "^6.0"
  15795. },
  15796. "require-dev": {
  15797. "ext-dom": "*",
  15798. "phpunit/phpunit": "^11.0"
  15799. },
  15800. "type": "library",
  15801. "extra": {
  15802. "branch-alias": {
  15803. "dev-main": "7.0-dev"
  15804. }
  15805. },
  15806. "autoload": {
  15807. "classmap": [
  15808. "src/"
  15809. ]
  15810. },
  15811. "notification-url": "https://packagist.org/downloads/",
  15812. "license": [
  15813. "BSD-3-Clause"
  15814. ],
  15815. "authors": [
  15816. {
  15817. "name": "Sebastian Bergmann",
  15818. "email": "sebastian@phpunit.de"
  15819. }
  15820. ],
  15821. "description": "Snapshotting of global state",
  15822. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  15823. "keywords": [
  15824. "global state"
  15825. ],
  15826. "support": {
  15827. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  15828. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  15829. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  15830. },
  15831. "funding": [
  15832. {
  15833. "url": "https://github.com/sebastianbergmann",
  15834. "type": "github"
  15835. }
  15836. ],
  15837. "time": "2024-07-03T04:57:36+00:00"
  15838. },
  15839. {
  15840. "name": "sebastian/lines-of-code",
  15841. "version": "3.0.1",
  15842. "source": {
  15843. "type": "git",
  15844. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  15845. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  15846. },
  15847. "dist": {
  15848. "type": "zip",
  15849. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  15850. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  15851. "shasum": ""
  15852. },
  15853. "require": {
  15854. "nikic/php-parser": "^5.0",
  15855. "php": ">=8.2"
  15856. },
  15857. "require-dev": {
  15858. "phpunit/phpunit": "^11.0"
  15859. },
  15860. "type": "library",
  15861. "extra": {
  15862. "branch-alias": {
  15863. "dev-main": "3.0-dev"
  15864. }
  15865. },
  15866. "autoload": {
  15867. "classmap": [
  15868. "src/"
  15869. ]
  15870. },
  15871. "notification-url": "https://packagist.org/downloads/",
  15872. "license": [
  15873. "BSD-3-Clause"
  15874. ],
  15875. "authors": [
  15876. {
  15877. "name": "Sebastian Bergmann",
  15878. "email": "sebastian@phpunit.de",
  15879. "role": "lead"
  15880. }
  15881. ],
  15882. "description": "Library for counting the lines of code in PHP source code",
  15883. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  15884. "support": {
  15885. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  15886. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  15887. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  15888. },
  15889. "funding": [
  15890. {
  15891. "url": "https://github.com/sebastianbergmann",
  15892. "type": "github"
  15893. }
  15894. ],
  15895. "time": "2024-07-03T04:58:38+00:00"
  15896. },
  15897. {
  15898. "name": "sebastian/object-enumerator",
  15899. "version": "6.0.1",
  15900. "source": {
  15901. "type": "git",
  15902. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  15903. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  15904. },
  15905. "dist": {
  15906. "type": "zip",
  15907. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  15908. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  15909. "shasum": ""
  15910. },
  15911. "require": {
  15912. "php": ">=8.2",
  15913. "sebastian/object-reflector": "^4.0",
  15914. "sebastian/recursion-context": "^6.0"
  15915. },
  15916. "require-dev": {
  15917. "phpunit/phpunit": "^11.0"
  15918. },
  15919. "type": "library",
  15920. "extra": {
  15921. "branch-alias": {
  15922. "dev-main": "6.0-dev"
  15923. }
  15924. },
  15925. "autoload": {
  15926. "classmap": [
  15927. "src/"
  15928. ]
  15929. },
  15930. "notification-url": "https://packagist.org/downloads/",
  15931. "license": [
  15932. "BSD-3-Clause"
  15933. ],
  15934. "authors": [
  15935. {
  15936. "name": "Sebastian Bergmann",
  15937. "email": "sebastian@phpunit.de"
  15938. }
  15939. ],
  15940. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  15941. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  15942. "support": {
  15943. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  15944. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  15945. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  15946. },
  15947. "funding": [
  15948. {
  15949. "url": "https://github.com/sebastianbergmann",
  15950. "type": "github"
  15951. }
  15952. ],
  15953. "time": "2024-07-03T05:00:13+00:00"
  15954. },
  15955. {
  15956. "name": "sebastian/object-reflector",
  15957. "version": "4.0.1",
  15958. "source": {
  15959. "type": "git",
  15960. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  15961. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  15962. },
  15963. "dist": {
  15964. "type": "zip",
  15965. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  15966. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  15967. "shasum": ""
  15968. },
  15969. "require": {
  15970. "php": ">=8.2"
  15971. },
  15972. "require-dev": {
  15973. "phpunit/phpunit": "^11.0"
  15974. },
  15975. "type": "library",
  15976. "extra": {
  15977. "branch-alias": {
  15978. "dev-main": "4.0-dev"
  15979. }
  15980. },
  15981. "autoload": {
  15982. "classmap": [
  15983. "src/"
  15984. ]
  15985. },
  15986. "notification-url": "https://packagist.org/downloads/",
  15987. "license": [
  15988. "BSD-3-Clause"
  15989. ],
  15990. "authors": [
  15991. {
  15992. "name": "Sebastian Bergmann",
  15993. "email": "sebastian@phpunit.de"
  15994. }
  15995. ],
  15996. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  15997. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  15998. "support": {
  15999. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  16000. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  16001. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  16002. },
  16003. "funding": [
  16004. {
  16005. "url": "https://github.com/sebastianbergmann",
  16006. "type": "github"
  16007. }
  16008. ],
  16009. "time": "2024-07-03T05:01:32+00:00"
  16010. },
  16011. {
  16012. "name": "sebastian/recursion-context",
  16013. "version": "6.0.2",
  16014. "source": {
  16015. "type": "git",
  16016. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  16017. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  16018. },
  16019. "dist": {
  16020. "type": "zip",
  16021. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  16022. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  16023. "shasum": ""
  16024. },
  16025. "require": {
  16026. "php": ">=8.2"
  16027. },
  16028. "require-dev": {
  16029. "phpunit/phpunit": "^11.0"
  16030. },
  16031. "type": "library",
  16032. "extra": {
  16033. "branch-alias": {
  16034. "dev-main": "6.0-dev"
  16035. }
  16036. },
  16037. "autoload": {
  16038. "classmap": [
  16039. "src/"
  16040. ]
  16041. },
  16042. "notification-url": "https://packagist.org/downloads/",
  16043. "license": [
  16044. "BSD-3-Clause"
  16045. ],
  16046. "authors": [
  16047. {
  16048. "name": "Sebastian Bergmann",
  16049. "email": "sebastian@phpunit.de"
  16050. },
  16051. {
  16052. "name": "Jeff Welch",
  16053. "email": "whatthejeff@gmail.com"
  16054. },
  16055. {
  16056. "name": "Adam Harvey",
  16057. "email": "aharvey@php.net"
  16058. }
  16059. ],
  16060. "description": "Provides functionality to recursively process PHP variables",
  16061. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  16062. "support": {
  16063. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  16064. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  16065. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  16066. },
  16067. "funding": [
  16068. {
  16069. "url": "https://github.com/sebastianbergmann",
  16070. "type": "github"
  16071. }
  16072. ],
  16073. "time": "2024-07-03T05:10:34+00:00"
  16074. },
  16075. {
  16076. "name": "sebastian/type",
  16077. "version": "5.1.2",
  16078. "source": {
  16079. "type": "git",
  16080. "url": "https://github.com/sebastianbergmann/type.git",
  16081. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  16082. },
  16083. "dist": {
  16084. "type": "zip",
  16085. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  16086. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  16087. "shasum": ""
  16088. },
  16089. "require": {
  16090. "php": ">=8.2"
  16091. },
  16092. "require-dev": {
  16093. "phpunit/phpunit": "^11.3"
  16094. },
  16095. "type": "library",
  16096. "extra": {
  16097. "branch-alias": {
  16098. "dev-main": "5.1-dev"
  16099. }
  16100. },
  16101. "autoload": {
  16102. "classmap": [
  16103. "src/"
  16104. ]
  16105. },
  16106. "notification-url": "https://packagist.org/downloads/",
  16107. "license": [
  16108. "BSD-3-Clause"
  16109. ],
  16110. "authors": [
  16111. {
  16112. "name": "Sebastian Bergmann",
  16113. "email": "sebastian@phpunit.de",
  16114. "role": "lead"
  16115. }
  16116. ],
  16117. "description": "Collection of value objects that represent the types of the PHP type system",
  16118. "homepage": "https://github.com/sebastianbergmann/type",
  16119. "support": {
  16120. "issues": "https://github.com/sebastianbergmann/type/issues",
  16121. "security": "https://github.com/sebastianbergmann/type/security/policy",
  16122. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  16123. },
  16124. "funding": [
  16125. {
  16126. "url": "https://github.com/sebastianbergmann",
  16127. "type": "github"
  16128. }
  16129. ],
  16130. "time": "2025-03-18T13:35:50+00:00"
  16131. },
  16132. {
  16133. "name": "sebastian/version",
  16134. "version": "5.0.2",
  16135. "source": {
  16136. "type": "git",
  16137. "url": "https://github.com/sebastianbergmann/version.git",
  16138. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  16139. },
  16140. "dist": {
  16141. "type": "zip",
  16142. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  16143. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  16144. "shasum": ""
  16145. },
  16146. "require": {
  16147. "php": ">=8.2"
  16148. },
  16149. "type": "library",
  16150. "extra": {
  16151. "branch-alias": {
  16152. "dev-main": "5.0-dev"
  16153. }
  16154. },
  16155. "autoload": {
  16156. "classmap": [
  16157. "src/"
  16158. ]
  16159. },
  16160. "notification-url": "https://packagist.org/downloads/",
  16161. "license": [
  16162. "BSD-3-Clause"
  16163. ],
  16164. "authors": [
  16165. {
  16166. "name": "Sebastian Bergmann",
  16167. "email": "sebastian@phpunit.de",
  16168. "role": "lead"
  16169. }
  16170. ],
  16171. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  16172. "homepage": "https://github.com/sebastianbergmann/version",
  16173. "support": {
  16174. "issues": "https://github.com/sebastianbergmann/version/issues",
  16175. "security": "https://github.com/sebastianbergmann/version/security/policy",
  16176. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  16177. },
  16178. "funding": [
  16179. {
  16180. "url": "https://github.com/sebastianbergmann",
  16181. "type": "github"
  16182. }
  16183. ],
  16184. "time": "2024-10-09T05:16:32+00:00"
  16185. },
  16186. {
  16187. "name": "staabm/side-effects-detector",
  16188. "version": "1.0.5",
  16189. "source": {
  16190. "type": "git",
  16191. "url": "https://github.com/staabm/side-effects-detector.git",
  16192. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  16193. },
  16194. "dist": {
  16195. "type": "zip",
  16196. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  16197. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  16198. "shasum": ""
  16199. },
  16200. "require": {
  16201. "ext-tokenizer": "*",
  16202. "php": "^7.4 || ^8.0"
  16203. },
  16204. "require-dev": {
  16205. "phpstan/extension-installer": "^1.4.3",
  16206. "phpstan/phpstan": "^1.12.6",
  16207. "phpunit/phpunit": "^9.6.21",
  16208. "symfony/var-dumper": "^5.4.43",
  16209. "tomasvotruba/type-coverage": "1.0.0",
  16210. "tomasvotruba/unused-public": "1.0.0"
  16211. },
  16212. "type": "library",
  16213. "autoload": {
  16214. "classmap": [
  16215. "lib/"
  16216. ]
  16217. },
  16218. "notification-url": "https://packagist.org/downloads/",
  16219. "license": [
  16220. "MIT"
  16221. ],
  16222. "description": "A static analysis tool to detect side effects in PHP code",
  16223. "keywords": [
  16224. "static analysis"
  16225. ],
  16226. "support": {
  16227. "issues": "https://github.com/staabm/side-effects-detector/issues",
  16228. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  16229. },
  16230. "funding": [
  16231. {
  16232. "url": "https://github.com/staabm",
  16233. "type": "github"
  16234. }
  16235. ],
  16236. "time": "2024-10-20T05:08:20+00:00"
  16237. },
  16238. {
  16239. "name": "ta-tikoma/phpunit-architecture-test",
  16240. "version": "0.8.4",
  16241. "source": {
  16242. "type": "git",
  16243. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  16244. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  16245. },
  16246. "dist": {
  16247. "type": "zip",
  16248. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  16249. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  16250. "shasum": ""
  16251. },
  16252. "require": {
  16253. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  16254. "php": "^8.1.0",
  16255. "phpdocumentor/reflection-docblock": "^5.3.0",
  16256. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  16257. "symfony/finder": "^6.4.0 || ^7.0.0"
  16258. },
  16259. "require-dev": {
  16260. "laravel/pint": "^1.13.7",
  16261. "phpstan/phpstan": "^1.10.52"
  16262. },
  16263. "type": "library",
  16264. "autoload": {
  16265. "psr-4": {
  16266. "PHPUnit\\Architecture\\": "src/"
  16267. }
  16268. },
  16269. "notification-url": "https://packagist.org/downloads/",
  16270. "license": [
  16271. "MIT"
  16272. ],
  16273. "authors": [
  16274. {
  16275. "name": "Ni Shi",
  16276. "email": "futik0ma011@gmail.com"
  16277. },
  16278. {
  16279. "name": "Nuno Maduro",
  16280. "email": "enunomaduro@gmail.com"
  16281. }
  16282. ],
  16283. "description": "Methods for testing application architecture",
  16284. "keywords": [
  16285. "architecture",
  16286. "phpunit",
  16287. "stucture",
  16288. "test",
  16289. "testing"
  16290. ],
  16291. "support": {
  16292. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  16293. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  16294. },
  16295. "time": "2024-01-05T14:10:56+00:00"
  16296. },
  16297. {
  16298. "name": "theseer/tokenizer",
  16299. "version": "1.2.3",
  16300. "source": {
  16301. "type": "git",
  16302. "url": "https://github.com/theseer/tokenizer.git",
  16303. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  16304. },
  16305. "dist": {
  16306. "type": "zip",
  16307. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  16308. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  16309. "shasum": ""
  16310. },
  16311. "require": {
  16312. "ext-dom": "*",
  16313. "ext-tokenizer": "*",
  16314. "ext-xmlwriter": "*",
  16315. "php": "^7.2 || ^8.0"
  16316. },
  16317. "type": "library",
  16318. "autoload": {
  16319. "classmap": [
  16320. "src/"
  16321. ]
  16322. },
  16323. "notification-url": "https://packagist.org/downloads/",
  16324. "license": [
  16325. "BSD-3-Clause"
  16326. ],
  16327. "authors": [
  16328. {
  16329. "name": "Arne Blankerts",
  16330. "email": "arne@blankerts.de",
  16331. "role": "Developer"
  16332. }
  16333. ],
  16334. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  16335. "support": {
  16336. "issues": "https://github.com/theseer/tokenizer/issues",
  16337. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  16338. },
  16339. "funding": [
  16340. {
  16341. "url": "https://github.com/theseer",
  16342. "type": "github"
  16343. }
  16344. ],
  16345. "time": "2024-03-03T12:36:25+00:00"
  16346. }
  16347. ],
  16348. "aliases": [],
  16349. "minimum-stability": "stable",
  16350. "stability-flags": {
  16351. "bagisto/image-cache": 20
  16352. },
  16353. "prefer-stable": true,
  16354. "prefer-lowest": false,
  16355. "platform": {
  16356. "php": "^8.2",
  16357. "ext-calendar": "*",
  16358. "ext-curl": "*",
  16359. "ext-intl": "*",
  16360. "ext-mbstring": "*",
  16361. "ext-openssl": "*",
  16362. "ext-pdo": "*",
  16363. "ext-pdo_mysql": "*",
  16364. "ext-tokenizer": "*"
  16365. },
  16366. "platform-dev": [],
  16367. "plugin-api-version": "2.6.0"
  16368. }